ETH Price: $3,098.43 (+1.01%)
Gas: 14 Gwei

Token

GoblinDragonz (AG)
 

Overview

Max Total Supply

5,159 AG

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 AG
0xed8dbe738cebb03b220907e40b9b5aa59f1c9a32
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:
GoblinDragonz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]
//Instagram: @sheraz.manzoor
//Telegram: @sherazmanzoor

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

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

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

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

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

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

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

/**
 * @dev 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);
            }
        }
    }
}
pragma solidity ^0.8.0;

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

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


/**
 * @dev 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);
    }
}
pragma solidity ^0.8.0;


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


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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional 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);
}
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex = 1;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract GoblinDragonz is Ownable, ERC721A {

    uint256 public maxPerTransaction = 20;
    uint256 public maxInAddress = 20;

    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;

    bool public publicSaleState = false;

    string public baseURI = "ipfs://QmVxDAuuSxQFY9KPJbHGEvQAwb84WP2bxjN5zuc6SSh3sJ/";
    string public _extension = ".json";
    string public hiddenMetadataUri = "ipfs://HASH/";
    bool public revealed = true; 
    uint256 public price =  .0044 ether;

    uint256 public maxSupply = 10000;

    constructor() ERC721A("GoblinDragonz", "AG"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= maxPerTransaction, "Wrong Quantity.");
        require(totalSupply() + _quantity <= maxSupply, "Reaching max supply");
        require(getMintedCount(msg.sender) + _quantity <= maxInAddress, "Exceed max minting amount");
        require(publicSaleState, "Public Sale Not Started Yet!");

        if(totalSupply() > 1500){
            require(msg.value == price * _quantity, "Needs to send more eth");
        }

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
            require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataUri;
        }
        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));

    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function updatePrice(uint256 _price) public onlyOwner() {
        price = _price;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }
    function updateMaxSupply(uint256 _supply) public onlyOwner() {
        maxSupply = _supply;
    }

    function toggleMainSaleState() public onlyOwner() {
        publicSaleState = !publicSaleState;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
   function updatemaxPerTransaction(uint256 _temp) public onlyOwner() {
        maxPerTransaction = _temp;
    }

    function setmaxInAddresss(uint256 _maxInAddress) public onlyOwner() {
        maxInAddress = _maxInAddress;
    }
    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(msg.sender).transfer(_balance); //Owner
    }



    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","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":"_quantity","type":"uint256"}],"name":"mintNFT","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","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":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxInAddress","type":"uint256"}],"name":"setmaxInAddresss","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":"toggleMainSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"updatemaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6001805560146009819055600a55600c805460ff1916905560e06040526036608081815290620024ab60a03980516200004191600d91602090910190620001b6565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007091600e91620001b6565b5060408051808201909152600c8082526b697066733a2f2f484153482f60a01b6020909201918252620000a691600f91620001b6565b506010805460ff19166001179055660fa1c6d5030000601155612710601255348015620000d257600080fd5b506040518060400160405280600d81526020016c23b7b13634b7223930b3b7b73d60991b81525060405180604001604052806002815260200161414760f01b8152506200012e620001286200016260201b60201c565b62000166565b815162000143906003906020850190620001b6565b50805162000159906004906020840190620001b6565b50505062000299565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c4906200025c565b90600052602060002090601f016020900481019282620001e8576000855562000233565b82601f106200020357805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023357825182559160200191906001019062000216565b506200024192915062000245565b5090565b5b8082111562000241576000815560010162000246565b600181811c908216806200027157607f821691505b602082108114156200029357634e487b7160e01b600052602260045260246000fd5b50919050565b61220280620002a96000396000f3fe6080604052600436106102555760003560e01c80638d6cc56d11610139578063b3152130116100b6578063d5abeb011161007a578063d5abeb01146106b4578063e0a80853146106ca578063e985e9c5146106ea578063f103b43314610733578063f2fde38b14610753578063f6d201e81461077357600080fd5b8063b31521301461061e578063b88d4fde14610634578063c48acf4014610654578063c87b56dd14610674578063d1f919ed1461069457600080fd5b806395d89b41116100fd57806395d89b411461059e57806397d6696b146105b3578063a035b1fe146105d3578063a22cb465146105e9578063a45ba8e71461060957600080fd5b80638d6cc56d146104d75780638da5cb5b146104f75780639231ab2a14610515578063926427441461056b578063931688cb1461057e57600080fd5b806342842e0e116101d257806370a082311161019657806370a0823114610433578063714c539814610453578063715018a61461046857806371adc02a1461047d5780637c8255db146104975780637e6182d9146104b757600080fd5b806342842e0e146103ae5780634b980d67146103ce57806351830227146103e45780636352211e146103fe5780636c0360eb1461041e57600080fd5b806318160ddd1161021957806318160ddd1461032f57806323b872dd14610344578063372be2c6146103645780633ae1dd9d146103845780633ccfd60b1461039957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806312065fe01461031257600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611e1d565b610788565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107da565b60405161028d9190611fee565b3480156102c457600080fd5b506102d86102d3366004611e9f565b61086c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d25565b6108b0565b005b34801561031e57600080fd5b50475b60405190815260200161028d565b34801561033b57600080fd5b5061032161093e565b34801561035057600080fd5b5061031061035f366004611c44565b61094c565b34801561037057600080fd5b5061031061037f366004611e9f565b610957565b34801561039057600080fd5b506102ab61098f565b3480156103a557600080fd5b50610310610a1d565b3480156103ba57600080fd5b506103106103c9366004611c44565b610a7a565b3480156103da57600080fd5b5061032160095481565b3480156103f057600080fd5b506010546102819060ff1681565b34801561040a57600080fd5b506102d8610419366004611e9f565b610a95565b34801561042a57600080fd5b506102ab610aa7565b34801561043f57600080fd5b5061032161044e366004611bef565b610ab4565b34801561045f57600080fd5b506102ab610b02565b34801561047457600080fd5b50610310610b11565b34801561048957600080fd5b50600c546102819060ff1681565b3480156104a357600080fd5b506103106104b2366004611d4f565b610b47565b3480156104c357600080fd5b506103106104d2366004611e57565b610c0e565b3480156104e357600080fd5b506103106104f2366004611e9f565b610c4b565b34801561050357600080fd5b506000546001600160a01b03166102d8565b34801561052157600080fd5b50610535610530366004611e9f565b610c7a565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161028d565b610310610579366004611e9f565b610ca0565b34801561058a57600080fd5b50610310610599366004611e57565b610e74565b3480156105aa57600080fd5b506102ab610eb1565b3480156105bf57600080fd5b506103216105ce366004611bef565b610ec0565b3480156105df57600080fd5b5061032160115481565b3480156105f557600080fd5b50610310610604366004611cfb565b610ecb565b34801561061557600080fd5b506102ab610f61565b34801561062a57600080fd5b50610321600a5481565b34801561064057600080fd5b5061031061064f366004611c80565b610f6e565b34801561066057600080fd5b5061031061066f366004611e9f565b610fa8565b34801561068057600080fd5b506102ab61068f366004611e9f565b610fd7565b3480156106a057600080fd5b506103106106af366004611d25565b611114565b3480156106c057600080fd5b5061032160125481565b3480156106d657600080fd5b506103106106e5366004611e02565b6111a2565b3480156106f657600080fd5b50610281610705366004611c11565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561073f57600080fd5b5061031061074e366004611e9f565b6111df565b34801561075f57600080fd5b5061031061076e366004611bef565b61120e565b34801561077f57600080fd5b506103106112a6565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107e9906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906120f4565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826112e4565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108bb82610a95565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610910575061090e8133610705565b155b1561092e576040516367d9dca160e11b815260040160405180910390fd5b610939838383611310565b505050565b600254600154036000190190565b61093983838361136c565b6000546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190612001565b60405180910390fd5b600955565b600e805461099c906120f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906120f4565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b505050505081565b6000546001600160a01b03163314610a475760405162461bcd60e51b815260040161098190612001565b6040514790339082156108fc029083906000818181858888f19350505050158015610a76573d6000803e3d6000fd5b5050565b61093983838360405180602001604052806000815250610f6e565b6000610aa082611580565b5192915050565b600d805461099c906120f4565b60006001600160a01b038216610add576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d80546107e9906120f4565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260040161098190612001565b610b45600061169b565b565b6000546001600160a01b03163314610b715760405162461bcd60e51b815260040161098190612001565b6012548151610b7e61093e565b610b889190612066565b1115610bcc5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610981565b60005b8151811015610a7657610bfc828281518110610bed57610bed61218a565b602002602001015160016116eb565b80610c068161212f565b915050610bcf565b6000546001600160a01b03163314610c385760405162461bcd60e51b815260040161098190612001565b8051610a7690600e906020840190611ad3565b6000546001600160a01b03163314610c755760405162461bcd60e51b815260040161098190612001565b601155565b60408051606081018252600080825260208201819052918101919091526107d482611580565b600081118015610cb257506009548111155b610cf05760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b6044820152606401610981565b60125481610cfc61093e565b610d069190612066565b1115610d4a5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b6044820152606401610981565b600a5481610d5733610ec0565b610d619190612066565b1115610daf5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e74000000000000006044820152606401610981565b600c5460ff16610e015760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f7420537461727465642059657421000000006044820152606401610981565b6105dc610e0c61093e565b1115610e675780601154610e209190612092565b3414610e675760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b6044820152606401610981565b610e7133826116eb565b50565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161098190612001565b8051610a7690600d906020840190611ad3565b6060600480546107e9906120f4565b60006107d482611705565b6001600160a01b038216331415610ef55760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461099c906120f4565b610f7984848461136c565b610f858484848461175a565b610fa2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610fd25760405162461bcd60e51b815260040161098190612001565b600a55565b6060610fe2826112e4565b6110435760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610981565b60105460ff166110df57600f805461105a906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611086906120f4565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b50505050509050919050565b600d6110ea83611869565b600e6040516020016110fe93929190611f7e565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461113e5760405162461bcd60e51b815260040161098190612001565b6012548161114a61093e565b6111549190612066565b11156111985760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610981565b610a7682826116eb565b6000546001600160a01b031633146111cc5760405162461bcd60e51b815260040161098190612001565b6010805460ff1916911515919091179055565b6000546001600160a01b031633146112095760405162461bcd60e51b815260040161098190612001565b601255565b6000546001600160a01b031633146112385760405162461bcd60e51b815260040161098190612001565b6001600160a01b03811661129d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b610e718161169b565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161098190612001565b600c805460ff19811660ff90911615179055565b6000600154821080156107d4575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137782611580565b80519091506000906001600160a01b0316336001600160a01b031614806113a5575081516113a59033610705565b806113c05750336113b58461086c565b6001600160a01b0316145b9050806113e057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114155760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661143c57604051633a954ecd60e21b815260040160405180910390fd5b61144c6000848460000151611310565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115365760015481101561153657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561168257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116805780516001600160a01b031615611617579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167b579392505050565b611617565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a76828260405180602001604052806000815250611966565b60006001600160a01b03821661172e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b1561185d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061179e903390899088908890600401611fb1565b602060405180830381600087803b1580156117b857600080fd5b505af19250505080156117e8575060408051601f3d908101601f191682019092526117e591810190611e3a565b60015b611843573d808015611816576040519150601f19603f3d011682016040523d82523d6000602084013e61181b565b606091505b50805161183b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611861565b5060015b949350505050565b60608161188d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118b757806118a18161212f565b91506118b09050600a8361207e565b9150611891565b6000816001600160401b038111156118d1576118d16121a0565b6040519080825280601f01601f1916602001820160405280156118fb576020820181803683370190505b5090505b8415611861576119106001836120b1565b915061191d600a8661214a565b611928906030612066565b60f81b81838151811061193d5761193d61218a565b60200101906001600160f81b031916908160001a90535061195f600a8661207e565b94506118ff565b610939838383600180546001600160a01b03851661199657604051622e076360e81b815260040160405180910390fd5b836119b45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611aca5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611aa05750611a9e600088848861175a565b155b15611abe576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a49565b50600155611579565b828054611adf906120f4565b90600052602060002090601f016020900481019282611b015760008555611b47565b82601f10611b1a57805160ff1916838001178555611b47565b82800160010185558215611b47579182015b82811115611b47578251825591602001919060010190611b2c565b50611b53929150611b57565b5090565b5b80821115611b535760008155600101611b58565b60006001600160401b03831115611b8557611b856121a0565b611b98601f8401601f1916602001612036565b9050828152838383011115611bac57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bda57600080fd5b919050565b80358015158114611bda57600080fd5b600060208284031215611c0157600080fd5b611c0a82611bc3565b9392505050565b60008060408385031215611c2457600080fd5b611c2d83611bc3565b9150611c3b60208401611bc3565b90509250929050565b600080600060608486031215611c5957600080fd5b611c6284611bc3565b9250611c7060208501611bc3565b9150604084013590509250925092565b60008060008060808587031215611c9657600080fd5b611c9f85611bc3565b9350611cad60208601611bc3565b92506040850135915060608501356001600160401b03811115611ccf57600080fd5b8501601f81018713611ce057600080fd5b611cef87823560208401611b6c565b91505092959194509250565b60008060408385031215611d0e57600080fd5b611d1783611bc3565b9150611c3b60208401611bdf565b60008060408385031215611d3857600080fd5b611d4183611bc3565b946020939093013593505050565b60006020808385031215611d6257600080fd5b82356001600160401b0380821115611d7957600080fd5b818501915085601f830112611d8d57600080fd5b813581811115611d9f57611d9f6121a0565b8060051b9150611db0848301612036565b8181528481019084860184860187018a1015611dcb57600080fd5b600095505b83861015611df557611de181611bc3565b835260019590950194918601918601611dd0565b5098975050505050505050565b600060208284031215611e1457600080fd5b611c0a82611bdf565b600060208284031215611e2f57600080fd5b8135611c0a816121b6565b600060208284031215611e4c57600080fd5b8151611c0a816121b6565b600060208284031215611e6957600080fd5b81356001600160401b03811115611e7f57600080fd5b8201601f81018413611e9057600080fd5b61186184823560208401611b6c565b600060208284031215611eb157600080fd5b5035919050565b60008151808452611ed08160208601602086016120c8565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611efe57607f831692505b6020808410821415611f2057634e487b7160e01b600052602260045260246000fd5b818015611f345760018114611f4557611f72565b60ff19861689528489019650611f72565b60008881526020902060005b86811015611f6a5781548b820152908501908301611f51565b505084890196505b50505050505092915050565b6000611f8a8286611ee4565b8451611f9a8183602089016120c8565b611fa681830186611ee4565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe490830184611eb8565b9695505050505050565b602081526000611c0a6020830184611eb8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561205e5761205e6121a0565b604052919050565b600082198211156120795761207961215e565b500190565b60008261208d5761208d612174565b500490565b60008160001904831182151516156120ac576120ac61215e565b500290565b6000828210156120c3576120c361215e565b500390565b60005b838110156120e35781810151838201526020016120cb565b83811115610fa25750506000910152565b600181811c9082168061210857607f821691505b6020821081141561212957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121435761214361215e565b5060010190565b60008261215957612159612174565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7157600080fdfea2646970667358221220ce54a404188eaf6a8091d807cbea49c89d04f5f07b49da4705c4997ee8b1608464736f6c63430008070033697066733a2f2f516d5678444175755378514659394b504a624847457651417762383457503262786a4e357a75633653536833734a2f

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638d6cc56d11610139578063b3152130116100b6578063d5abeb011161007a578063d5abeb01146106b4578063e0a80853146106ca578063e985e9c5146106ea578063f103b43314610733578063f2fde38b14610753578063f6d201e81461077357600080fd5b8063b31521301461061e578063b88d4fde14610634578063c48acf4014610654578063c87b56dd14610674578063d1f919ed1461069457600080fd5b806395d89b41116100fd57806395d89b411461059e57806397d6696b146105b3578063a035b1fe146105d3578063a22cb465146105e9578063a45ba8e71461060957600080fd5b80638d6cc56d146104d75780638da5cb5b146104f75780639231ab2a14610515578063926427441461056b578063931688cb1461057e57600080fd5b806342842e0e116101d257806370a082311161019657806370a0823114610433578063714c539814610453578063715018a61461046857806371adc02a1461047d5780637c8255db146104975780637e6182d9146104b757600080fd5b806342842e0e146103ae5780634b980d67146103ce57806351830227146103e45780636352211e146103fe5780636c0360eb1461041e57600080fd5b806318160ddd1161021957806318160ddd1461032f57806323b872dd14610344578063372be2c6146103645780633ae1dd9d146103845780633ccfd60b1461039957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806312065fe01461031257600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611e1d565b610788565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107da565b60405161028d9190611fee565b3480156102c457600080fd5b506102d86102d3366004611e9f565b61086c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d25565b6108b0565b005b34801561031e57600080fd5b50475b60405190815260200161028d565b34801561033b57600080fd5b5061032161093e565b34801561035057600080fd5b5061031061035f366004611c44565b61094c565b34801561037057600080fd5b5061031061037f366004611e9f565b610957565b34801561039057600080fd5b506102ab61098f565b3480156103a557600080fd5b50610310610a1d565b3480156103ba57600080fd5b506103106103c9366004611c44565b610a7a565b3480156103da57600080fd5b5061032160095481565b3480156103f057600080fd5b506010546102819060ff1681565b34801561040a57600080fd5b506102d8610419366004611e9f565b610a95565b34801561042a57600080fd5b506102ab610aa7565b34801561043f57600080fd5b5061032161044e366004611bef565b610ab4565b34801561045f57600080fd5b506102ab610b02565b34801561047457600080fd5b50610310610b11565b34801561048957600080fd5b50600c546102819060ff1681565b3480156104a357600080fd5b506103106104b2366004611d4f565b610b47565b3480156104c357600080fd5b506103106104d2366004611e57565b610c0e565b3480156104e357600080fd5b506103106104f2366004611e9f565b610c4b565b34801561050357600080fd5b506000546001600160a01b03166102d8565b34801561052157600080fd5b50610535610530366004611e9f565b610c7a565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161028d565b610310610579366004611e9f565b610ca0565b34801561058a57600080fd5b50610310610599366004611e57565b610e74565b3480156105aa57600080fd5b506102ab610eb1565b3480156105bf57600080fd5b506103216105ce366004611bef565b610ec0565b3480156105df57600080fd5b5061032160115481565b3480156105f557600080fd5b50610310610604366004611cfb565b610ecb565b34801561061557600080fd5b506102ab610f61565b34801561062a57600080fd5b50610321600a5481565b34801561064057600080fd5b5061031061064f366004611c80565b610f6e565b34801561066057600080fd5b5061031061066f366004611e9f565b610fa8565b34801561068057600080fd5b506102ab61068f366004611e9f565b610fd7565b3480156106a057600080fd5b506103106106af366004611d25565b611114565b3480156106c057600080fd5b5061032160125481565b3480156106d657600080fd5b506103106106e5366004611e02565b6111a2565b3480156106f657600080fd5b50610281610705366004611c11565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561073f57600080fd5b5061031061074e366004611e9f565b6111df565b34801561075f57600080fd5b5061031061076e366004611bef565b61120e565b34801561077f57600080fd5b506103106112a6565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107e9906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906120f4565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826112e4565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108bb82610a95565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610910575061090e8133610705565b155b1561092e576040516367d9dca160e11b815260040160405180910390fd5b610939838383611310565b505050565b600254600154036000190190565b61093983838361136c565b6000546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190612001565b60405180910390fd5b600955565b600e805461099c906120f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906120f4565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b505050505081565b6000546001600160a01b03163314610a475760405162461bcd60e51b815260040161098190612001565b6040514790339082156108fc029083906000818181858888f19350505050158015610a76573d6000803e3d6000fd5b5050565b61093983838360405180602001604052806000815250610f6e565b6000610aa082611580565b5192915050565b600d805461099c906120f4565b60006001600160a01b038216610add576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6060600d80546107e9906120f4565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260040161098190612001565b610b45600061169b565b565b6000546001600160a01b03163314610b715760405162461bcd60e51b815260040161098190612001565b6012548151610b7e61093e565b610b889190612066565b1115610bcc5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610981565b60005b8151811015610a7657610bfc828281518110610bed57610bed61218a565b602002602001015160016116eb565b80610c068161212f565b915050610bcf565b6000546001600160a01b03163314610c385760405162461bcd60e51b815260040161098190612001565b8051610a7690600e906020840190611ad3565b6000546001600160a01b03163314610c755760405162461bcd60e51b815260040161098190612001565b601155565b60408051606081018252600080825260208201819052918101919091526107d482611580565b600081118015610cb257506009548111155b610cf05760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b6044820152606401610981565b60125481610cfc61093e565b610d069190612066565b1115610d4a5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b6044820152606401610981565b600a5481610d5733610ec0565b610d619190612066565b1115610daf5760405162461bcd60e51b815260206004820152601960248201527f457863656564206d6178206d696e74696e6720616d6f756e74000000000000006044820152606401610981565b600c5460ff16610e015760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f7420537461727465642059657421000000006044820152606401610981565b6105dc610e0c61093e565b1115610e675780601154610e209190612092565b3414610e675760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b6044820152606401610981565b610e7133826116eb565b50565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161098190612001565b8051610a7690600d906020840190611ad3565b6060600480546107e9906120f4565b60006107d482611705565b6001600160a01b038216331415610ef55760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461099c906120f4565b610f7984848461136c565b610f858484848461175a565b610fa2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610fd25760405162461bcd60e51b815260040161098190612001565b600a55565b6060610fe2826112e4565b6110435760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610981565b60105460ff166110df57600f805461105a906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611086906120f4565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b50505050509050919050565b600d6110ea83611869565b600e6040516020016110fe93929190611f7e565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461113e5760405162461bcd60e51b815260040161098190612001565b6012548161114a61093e565b6111549190612066565b11156111985760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b6044820152606401610981565b610a7682826116eb565b6000546001600160a01b031633146111cc5760405162461bcd60e51b815260040161098190612001565b6010805460ff1916911515919091179055565b6000546001600160a01b031633146112095760405162461bcd60e51b815260040161098190612001565b601255565b6000546001600160a01b031633146112385760405162461bcd60e51b815260040161098190612001565b6001600160a01b03811661129d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b610e718161169b565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161098190612001565b600c805460ff19811660ff90911615179055565b6000600154821080156107d4575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137782611580565b80519091506000906001600160a01b0316336001600160a01b031614806113a5575081516113a59033610705565b806113c05750336113b58461086c565b6001600160a01b0316145b9050806113e057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114155760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661143c57604051633a954ecd60e21b815260040160405180910390fd5b61144c6000848460000151611310565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115365760015481101561153657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561168257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116805780516001600160a01b031615611617579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167b579392505050565b611617565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a76828260405180602001604052806000815250611966565b60006001600160a01b03821661172e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b1561185d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061179e903390899088908890600401611fb1565b602060405180830381600087803b1580156117b857600080fd5b505af19250505080156117e8575060408051601f3d908101601f191682019092526117e591810190611e3a565b60015b611843573d808015611816576040519150601f19603f3d011682016040523d82523d6000602084013e61181b565b606091505b50805161183b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611861565b5060015b949350505050565b60608161188d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118b757806118a18161212f565b91506118b09050600a8361207e565b9150611891565b6000816001600160401b038111156118d1576118d16121a0565b6040519080825280601f01601f1916602001820160405280156118fb576020820181803683370190505b5090505b8415611861576119106001836120b1565b915061191d600a8661214a565b611928906030612066565b60f81b81838151811061193d5761193d61218a565b60200101906001600160f81b031916908160001a90535061195f600a8661207e565b94506118ff565b610939838383600180546001600160a01b03851661199657604051622e076360e81b815260040160405180910390fd5b836119b45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611aca5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611aa05750611a9e600088848861175a565b155b15611abe576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a49565b50600155611579565b828054611adf906120f4565b90600052602060002090601f016020900481019282611b015760008555611b47565b82601f10611b1a57805160ff1916838001178555611b47565b82800160010185558215611b47579182015b82811115611b47578251825591602001919060010190611b2c565b50611b53929150611b57565b5090565b5b80821115611b535760008155600101611b58565b60006001600160401b03831115611b8557611b856121a0565b611b98601f8401601f1916602001612036565b9050828152838383011115611bac57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bda57600080fd5b919050565b80358015158114611bda57600080fd5b600060208284031215611c0157600080fd5b611c0a82611bc3565b9392505050565b60008060408385031215611c2457600080fd5b611c2d83611bc3565b9150611c3b60208401611bc3565b90509250929050565b600080600060608486031215611c5957600080fd5b611c6284611bc3565b9250611c7060208501611bc3565b9150604084013590509250925092565b60008060008060808587031215611c9657600080fd5b611c9f85611bc3565b9350611cad60208601611bc3565b92506040850135915060608501356001600160401b03811115611ccf57600080fd5b8501601f81018713611ce057600080fd5b611cef87823560208401611b6c565b91505092959194509250565b60008060408385031215611d0e57600080fd5b611d1783611bc3565b9150611c3b60208401611bdf565b60008060408385031215611d3857600080fd5b611d4183611bc3565b946020939093013593505050565b60006020808385031215611d6257600080fd5b82356001600160401b0380821115611d7957600080fd5b818501915085601f830112611d8d57600080fd5b813581811115611d9f57611d9f6121a0565b8060051b9150611db0848301612036565b8181528481019084860184860187018a1015611dcb57600080fd5b600095505b83861015611df557611de181611bc3565b835260019590950194918601918601611dd0565b5098975050505050505050565b600060208284031215611e1457600080fd5b611c0a82611bdf565b600060208284031215611e2f57600080fd5b8135611c0a816121b6565b600060208284031215611e4c57600080fd5b8151611c0a816121b6565b600060208284031215611e6957600080fd5b81356001600160401b03811115611e7f57600080fd5b8201601f81018413611e9057600080fd5b61186184823560208401611b6c565b600060208284031215611eb157600080fd5b5035919050565b60008151808452611ed08160208601602086016120c8565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611efe57607f831692505b6020808410821415611f2057634e487b7160e01b600052602260045260246000fd5b818015611f345760018114611f4557611f72565b60ff19861689528489019650611f72565b60008881526020902060005b86811015611f6a5781548b820152908501908301611f51565b505084890196505b50505050505092915050565b6000611f8a8286611ee4565b8451611f9a8183602089016120c8565b611fa681830186611ee4565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe490830184611eb8565b9695505050505050565b602081526000611c0a6020830184611eb8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561205e5761205e6121a0565b604052919050565b600082198211156120795761207961215e565b500190565b60008261208d5761208d612174565b500490565b60008160001904831182151516156120ac576120ac61215e565b500290565b6000828210156120c3576120c361215e565b500390565b60005b838110156120e35781810151838201526020016120cb565b83811115610fa25750506000910152565b600181811c9082168061210857607f821691505b6020821081141561212957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121435761214361215e565b5060010190565b60008261215957612159612174565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7157600080fdfea2646970667358221220ce54a404188eaf6a8091d807cbea49c89d04f5f07b49da4705c4997ee8b1608464736f6c63430008070033

Deployed Bytecode Sourcemap

42693:3617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25489:305;;;;;;;;;;-1:-1:-1;25489:305:0;;;;;:::i;:::-;;:::i;:::-;;;7610:14:1;;7603:22;7585:41;;7573:2;7558:18;25489:305:0;;;;;;;;28849:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30352:204::-;;;;;;;;;;-1:-1:-1;30352:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6908:32:1;;;6890:51;;6878:2;6863:18;30352:204:0;6744:203:1;29915:371:0;;;;;;;;;;-1:-1:-1;29915:371:0;;;;;:::i;:::-;;:::i;:::-;;45500:95;;;;;;;;;;-1:-1:-1;45566:21:0;45500:95;;;11734:25:1;;;11722:2;11707:18;45500:95:0;11588:177:1;25140:277:0;;;;;;;;;;;;;:::i;31209:170::-;;;;;;;;;;-1:-1:-1;31209:170:0;;;;;:::i;:::-;;:::i;45717:111::-;;;;;;;;;;-1:-1:-1;45717:111:0;;;;;:::i;:::-;;:::i;43049:34::-;;;;;;;;;;;;;:::i;45957:152::-;;;;;;;;;;;;;:::i;31450:185::-;;;;;;;;;;-1:-1:-1;31450:185:0;;;;;:::i;:::-;;:::i;42745:37::-;;;;;;;;;;;;;;;;43145:27;;;;;;;;;;-1:-1:-1;43145:27:0;;;;;;;;28658:124;;;;;;;;;;-1:-1:-1;28658:124:0;;;;;:::i;:::-;;:::i;42962:80::-;;;;;;;;;;;;;:::i;25858:206::-;;;;;;;;;;-1:-1:-1;25858:206:0;;;;;:::i;:::-;;:::i;44990:92::-;;;;;;;;;;;;;:::i;14255:94::-;;;;;;;;;;;;;:::i;42918:35::-;;;;;;;;;;-1:-1:-1;42918:35:0;;;;;;;;43904:252;;;;;;;;;;-1:-1:-1;43904:252:0;;;;;:::i;:::-;;:::i;44882:100::-;;;;;;;;;;-1:-1:-1;44882:100:0;;;;;:::i;:::-;;:::i;45090:89::-;;;;;;;;;;-1:-1:-1;45090:89:0;;;;;:::i;:::-;;:::i;13604:87::-;;;;;;;;;;-1:-1:-1;13650:7:0;13677:6;-1:-1:-1;;;;;13677:6:0;13604:87;;46121:147;;;;;;;;;;-1:-1:-1;46121:147:0;;;;;:::i;:::-;;:::i;:::-;;;;11374:13:1;;-1:-1:-1;;;;;11370:39:1;11352:58;;11470:4;11458:17;;;11452:24;-1:-1:-1;;;;;11448:49:1;11426:20;;;11419:79;11556:17;;;11550:24;11543:32;11536:40;11514:20;;;11507:70;11340:2;11325:18;46121:147:0;11144:439:1;43323:571:0;;;;;;:::i;:::-;;:::i;44769:107::-;;;;;;;;;;-1:-1:-1;44769:107:0;;;;;:::i;:::-;;:::i;29018:104::-;;;;;;;;;;;;;:::i;45603:109::-;;;;;;;;;;-1:-1:-1;45603:109:0;;;;;:::i;:::-;;:::i;43180:35::-;;;;;;;;;;;;;;;;30628:279;;;;;;;;;;-1:-1:-1;30628:279:0;;;;;:::i;:::-;;:::i;43090:48::-;;;;;;;;;;;;;:::i;42789:32::-;;;;;;;;;;;;;;;;31706:342;;;;;;;;;;-1:-1:-1;31706:342:0;;;;;:::i;:::-;;:::i;45836:115::-;;;;;;;;;;-1:-1:-1;45836:115:0;;;;;:::i;:::-;;:::i;44372:389::-;;;;;;;;;;-1:-1:-1;44372:389:0;;;;;:::i;:::-;;:::i;44161:203::-;;;;;;;;;;-1:-1:-1;44161:203:0;;;;;:::i;:::-;;:::i;43224:32::-;;;;;;;;;;;;;;;;45187:87;;;;;;;;;;-1:-1:-1;45187:87:0;;;;;:::i;:::-;;:::i;30978:164::-;;;;;;;;;;-1:-1:-1;30978:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31099:25:0;;;31075:4;31099:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30978:164;45280:99;;;;;;;;;;-1:-1:-1;45280:99:0;;;;;:::i;:::-;;:::i;14504:192::-;;;;;;;;;;-1:-1:-1;14504:192:0;;;;;:::i;:::-;;:::i;45387:103::-;;;;;;;;;;;;;:::i;25489:305::-;25591:4;-1:-1:-1;;;;;;25628:40:0;;-1:-1:-1;;;25628:40:0;;:105;;-1:-1:-1;;;;;;;25685:48:0;;-1:-1:-1;;;25685:48:0;25628:105;:158;;;-1:-1:-1;;;;;;;;;;15718:40:0;;;25750:36;25608:178;25489:305;-1:-1:-1;;25489:305:0:o;28849:100::-;28903:13;28936:5;28929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28849:100;:::o;30352:204::-;30420:7;30445:16;30453:7;30445;:16::i;:::-;30440:64;;30470:34;;-1:-1:-1;;;30470:34:0;;;;;;;;;;;30440:64;-1:-1:-1;30524:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30524:24:0;;30352:204::o;29915:371::-;29988:13;30004:24;30020:7;30004:15;:24::i;:::-;29988:40;;30049:5;-1:-1:-1;;;;;30043:11:0;:2;-1:-1:-1;;;;;30043:11:0;;30039:48;;;30063:24;;-1:-1:-1;;;30063:24:0;;;;;;;;;;;30039:48;824:10;-1:-1:-1;;;;;30104:21:0;;;;;;:63;;-1:-1:-1;30130:37:0;30147:5;824:10;30978:164;:::i;30130:37::-;30129:38;30104:63;30100:138;;;30191:35;;-1:-1:-1;;;30191:35:0;;;;;;;;;;;30100:138;30250:28;30259:2;30263:7;30272:5;30250:8;:28::i;:::-;29977:309;29915:371;;:::o;25140:277::-;25377:12;;25393:1;25361:13;:28;-1:-1:-1;;25360:34:0;;25140:277::o;31209:170::-;31343:28;31353:4;31359:2;31363:7;31343:9;:28::i;45717:111::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;;;;;;;;;45795:17:::1;:25:::0;45717:111::o;43049:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45957:152::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;46055:38:::1;::::0;46023:21:::1;::::0;46063:10:::1;::::0;46055:38;::::1;;;::::0;46023:21;;46007:13:::1;46055:38:::0;46007:13;46055:38;46023:21;46063:10;46055:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45996:113;45957:152::o:0;31450:185::-;31588:39;31605:4;31611:2;31615:7;31588:39;;;;;;;;;;;;:16;:39::i;28658:124::-;28722:7;28749:20;28761:7;28749:11;:20::i;:::-;:25;;28658:124;-1:-1:-1;;28658:124:0:o;42962:80::-;;;;;;;:::i;25858:206::-;25922:7;-1:-1:-1;;;;;25946:19:0;;25942:60;;25974:28;;-1:-1:-1;;;25974:28:0;;;;;;;;;;;25942:60;-1:-1:-1;;;;;;26028:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26028:27:0;;25858:206::o;44990:92::-;45034:13;45067:7;45060:14;;;;;:::i;14255:94::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;43904:252::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;44022:9:::1;;44003:8;:15;43987:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;43979:76;;;::::0;-1:-1:-1;;;43979:76:0;;10650:2:1;43979:76:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:49;10767:18;;43979:76:0::1;10448:343:1::0;43979:76:0::1;44070:6;44066:80;44086:8;:15;44082:1;:19;44066:80;;;44121:25;44131:8;44140:1;44131:11;;;;;;;;:::i;:::-;;;;;;;44144:1;44121:9;:25::i;:::-;44103:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44066:80;;44882:100:::0;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;44956:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;45090:89::-:0;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;45157:5:::1;:14:::0;45090:89::o;46121:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;46242:20:0;46254:7;46242:11;:20::i;43323:571::-;43405:1;43393:9;:13;:47;;;;;43423:17;;43410:9;:30;;43393:47;43385:75;;;;-1:-1:-1;;;43385:75:0;;8470:2:1;43385:75:0;;;8452:21:1;8509:2;8489:18;;;8482:30;-1:-1:-1;;;8528:18:1;;;8521:45;8583:18;;43385:75:0;8268:339:1;43385:75:0;43508:9;;43495;43479:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;43471:70;;;;-1:-1:-1;;;43471:70:0;;10998:2:1;43471:70:0;;;10980:21:1;11037:2;11017:18;;;11010:30;-1:-1:-1;;;11056:18:1;;;11049:49;11115:18;;43471:70:0;10796:343:1;43471:70:0;43602:12;;43589:9;43560:26;43575:10;43560:14;:26::i;:::-;:38;;;;:::i;:::-;:54;;43552:92;;;;-1:-1:-1;;;43552:92:0;;8814:2:1;43552:92:0;;;8796:21:1;8853:2;8833:18;;;8826:30;8892:27;8872:18;;;8865:55;8937:18;;43552:92:0;8612:349:1;43552:92:0;43663:15;;;;43655:56;;;;-1:-1:-1;;;43655:56:0;;10293:2:1;43655:56:0;;;10275:21:1;10332:2;10312:18;;;10305:30;10371;10351:18;;;10344:58;10419:18;;43655:56:0;10091:352:1;43655:56:0;43743:4;43727:13;:11;:13::i;:::-;:20;43724:116;;;43792:9;43784:5;;:17;;;;:::i;:::-;43771:9;:30;43763:65;;;;-1:-1:-1;;;43763:65:0;;9942:2:1;43763:65:0;;;9924:21:1;9981:2;9961:18;;;9954:30;-1:-1:-1;;;10000:18:1;;;9993:52;10062:18;;43763:65:0;9740:346:1;43763:65:0;43852:32;43862:10;43874:9;43852;:32::i;:::-;43323:571;:::o;44769:107::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;44847:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;29018:104::-:0;29074:13;29107:7;29100:14;;;;;:::i;45603:109::-;45663:7;45686:20;45700:5;45686:13;:20::i;30628:279::-;-1:-1:-1;;;;;30719:24:0;;824:10;30719:24;30715:54;;;30752:17;;-1:-1:-1;;;30752:17:0;;;;;;;;;;;30715:54;824:10;30782:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30782:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30782:53:0;;;;;;;;;;30851:48;;7585:41:1;;;30782:42:0;;824:10;30851:48;;7558:18:1;30851:48:0;;;;;;;30628:279;;:::o;43090:48::-;;;;;;;:::i;31706:342::-;31873:28;31883:4;31889:2;31893:7;31873:9;:28::i;:::-;31917:48;31940:4;31946:2;31950:7;31959:5;31917:22;:48::i;:::-;31912:129;;31989:40;;-1:-1:-1;;;31989:40:0;;;;;;;;;;;31912:129;31706:342;;;;:::o;45836:115::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;45915:12:::1;:28:::0;45836:115::o;44372:389::-;44446:13;44494:17;44502:8;44494:7;:17::i;:::-;44472:111;;;;-1:-1:-1;;;44472:111:0;;9168:2:1;44472:111:0;;;9150:21:1;9207:2;9187:18;;;9180:30;9246:34;9226:18;;;9219:62;-1:-1:-1;;;9297:18:1;;;9290:42;9349:19;;44472:111:0;8966:408:1;44472:111:0;44598:8;;;;44594:74;;44639:17;44632:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44372:389;;;:::o;44594:74::-;44709:7;44718:19;:8;:17;:19::i;:::-;44739:10;44692:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44678:73;;44372:389;;;:::o;44161:203::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;44284:9:::1;;44276:4;44260:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;44252:65;;;::::0;-1:-1:-1;;;44252:65:0;;10650:2:1;44252:65:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:49;10767:18;;44252:65:0::1;10448:343:1::0;44252:65:0::1;44332:24;44342:7;44351:4;44332:9;:24::i;45187:87::-:0;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;45249:8:::1;:17:::0;;-1:-1:-1;;45249:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45187:87::o;45280:99::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;45352:9:::1;:19:::0;45280:99::o;14504:192::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14593:22:0;::::1;14585:73;;;::::0;-1:-1:-1;;;14585:73:0;;8063:2:1;14585:73:0::1;::::0;::::1;8045:21:1::0;8102:2;8082:18;;;8075:30;8141:34;8121:18;;;8114:62;-1:-1:-1;;;8192:18:1;;;8185:36;8238:19;;14585:73:0::1;7861:402:1::0;14585:73:0::1;14669:19;14679:8;14669:9;:19::i;45387:103::-:0;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;45467:15:::1;::::0;;-1:-1:-1;;45448:34:0;::::1;45467:15;::::0;;::::1;45466:16;45448:34;::::0;;45387:103::o;32303:144::-;32360:4;32394:13;;32384:7;:23;:55;;;;-1:-1:-1;;32412:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32412:27:0;;;;32411:28;;32303:144::o;39509:196::-;39624:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39624:29:0;-1:-1:-1;;;;;39624:29:0;;;;;;;;;39669:28;;39624:24;;39669:28;;;;;;;39509:196;;;:::o;35010:2112::-;35125:35;35163:20;35175:7;35163:11;:20::i;:::-;35238:18;;35125:58;;-1:-1:-1;35196:22:0;;-1:-1:-1;;;;;35222:34:0;824:10;-1:-1:-1;;;;;35222:34:0;;:101;;;-1:-1:-1;35290:18:0;;35273:50;;824:10;30978:164;:::i;35273:50::-;35222:154;;;-1:-1:-1;824:10:0;35340:20;35352:7;35340:11;:20::i;:::-;-1:-1:-1;;;;;35340:36:0;;35222:154;35196:181;;35395:17;35390:66;;35421:35;;-1:-1:-1;;;35421:35:0;;;;;;;;;;;35390:66;35493:4;-1:-1:-1;;;;;35471:26:0;:13;:18;;;-1:-1:-1;;;;;35471:26:0;;35467:67;;35506:28;;-1:-1:-1;;;35506:28:0;;;;;;;;;;;35467:67;-1:-1:-1;;;;;35549:16:0;;35545:52;;35574:23;;-1:-1:-1;;;35574:23:0;;;;;;;;;;;35545:52;35718:49;35735:1;35739:7;35748:13;:18;;;35718:8;:49::i;:::-;-1:-1:-1;;;;;36063:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36063:31:0;;;-1:-1:-1;;;;;36063:31:0;;;-1:-1:-1;;36063:31:0;;;;;;;36109:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36109:29:0;;;;;;;;;;;36155:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36200:61:0;;;;-1:-1:-1;;;36245:15:0;36200:61;;;;;;;;;;;36535:11;;;36565:24;;;;;:29;36535:11;;36565:29;36561:445;;36790:13;;36776:11;:27;36772:219;;;36860:18;;;36828:24;;;:11;:24;;;;;;;;:50;;36943:28;;;;-1:-1:-1;;;;;36901:70:0;-1:-1:-1;;;36901:70:0;-1:-1:-1;;;;;;36901:70:0;;;-1:-1:-1;;;;;36828:50:0;;;36901:70;;;;;;;36772:219;36038:979;37053:7;37049:2;-1:-1:-1;;;;;37034:27:0;37043:4;-1:-1:-1;;;;;37034:27:0;;;;;;;;;;;37072:42;35114:2008;;35010:2112;;;:::o;27513:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27679:13:0;;27623:7;;27672:20;;27668:861;;;27713:31;27747:17;;;:11;:17;;;;;;;;;27713:51;;;;;;;;;-1:-1:-1;;;;;27713:51:0;;;;-1:-1:-1;;;27713:51:0;;-1:-1:-1;;;;;27713:51:0;;;;;;;;-1:-1:-1;;;27713:51:0;;;;;;;;;;;;;;27783:731;;27833:14;;-1:-1:-1;;;;;27833:28:0;;27829:101;;27897:9;27513:1083;-1:-1:-1;;;27513:1083:0:o;27829:101::-;-1:-1:-1;;;28274:6:0;28319:17;;;;:11;:17;;;;;;;;;28307:29;;;;;;;;;-1:-1:-1;;;;;28307:29:0;;;;;-1:-1:-1;;;28307:29:0;;-1:-1:-1;;;;;28307:29:0;;;;;;;;-1:-1:-1;;;28307:29:0;;;;;;;;;;;;;28367:28;28363:109;;28435:9;27513:1083;-1:-1:-1;;;27513:1083:0:o;28363:109::-;28234:261;;;27694:835;27668:861;28557:31;;-1:-1:-1;;;28557:31:0;;;;;;;;;;;14704:173;14760:16;14779:6;;-1:-1:-1;;;;;14796:17:0;;;-1:-1:-1;;;;;;14796:17:0;;;;;;14829:40;;14779:6;;;;;;;14829:40;;14760:16;14829:40;14749:128;14704:173;:::o;32455:104::-;32524:27;32534:2;32538:8;32524:27;;;;;;;;;;;;:9;:27::i;26146:207::-;26207:7;-1:-1:-1;;;;;26231:19:0;;26227:59;;26259:27;;-1:-1:-1;;;26259:27:0;;;;;;;;;;;26227:59;-1:-1:-1;;;;;;26312:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26312:32:0;;-1:-1:-1;;;;;26312:32:0;;26146:207::o;40270:790::-;40425:4;-1:-1:-1;;;;;40446:13:0;;3997:20;4045:8;40442:611;;40482:72;;-1:-1:-1;;;40482:72:0;;-1:-1:-1;;;;;40482:36:0;;;;;:72;;824:10;;40533:4;;40539:7;;40548:5;;40482:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40482:72:0;;;;;;;;-1:-1:-1;;40482:72:0;;;;;;;;;;;;:::i;:::-;;;40478:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40728:13:0;;40724:259;;40778:40;;-1:-1:-1;;;40778:40:0;;;;;;;;;;;40724:259;40933:6;40927:13;40918:6;40914:2;40910:15;40903:38;40478:520;-1:-1:-1;;;;;;40605:55:0;-1:-1:-1;;;40605:55:0;;-1:-1:-1;40598:62:0;;40442:611;-1:-1:-1;41037:4:0;40442:611;40270:790;;;;;;:::o;1209:723::-;1265:13;1486:10;1482:53;;-1:-1:-1;;1513:10:0;;;;;;;;;;;;-1:-1:-1;;;1513:10:0;;;;;1209:723::o;1482:53::-;1560:5;1545:12;1601:78;1608:9;;1601:78;;1634:8;;;;:::i;:::-;;-1:-1:-1;1657:10:0;;-1:-1:-1;1665:2:0;1657:10;;:::i;:::-;;;1601:78;;;1689:19;1721:6;-1:-1:-1;;;;;1711:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1711:17:0;;1689:39;;1739:154;1746:10;;1739:154;;1773:11;1783:1;1773:11;;:::i;:::-;;-1:-1:-1;1842:10:0;1850:2;1842:5;:10;:::i;:::-;1829:24;;:2;:24;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1799:56:0;;;;;;;;-1:-1:-1;1870:11:0;1879:2;1870:11;;:::i;:::-;;;1739:154;;32922:163;33045:32;33051:2;33055:8;33065:5;33072:4;33506:13;;-1:-1:-1;;;;;33534:16:0;;33530:48;;33559:19;;-1:-1:-1;;;33559:19:0;;;;;;;;;;;33530:48;33593:13;33589:44;;33615:18;;-1:-1:-1;;;33615:18:0;;;;;;;;;;;33589:44;-1:-1:-1;;;;;33984:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34043:49:0;;-1:-1:-1;;;;;33984:44:0;;;;;;;34043:49;;;-1:-1:-1;;;;;33984:44:0;;;;;;34043:49;;;;;;;;;;;;;;;;34109:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34159:66:0;;;;-1:-1:-1;;;34209:15:0;34159:66;;;;;;;;;;;34109:25;;34294:328;34314:8;34310:1;:12;34294:328;;;34353:38;;34378:12;;-1:-1:-1;;;;;34353:38:0;;;34370:1;;34353:38;;34370:1;;34353:38;34414:4;:68;;;;;34423:59;34454:1;34458:2;34462:12;34476:5;34423:22;:59::i;:::-;34422:60;34414:68;34410:164;;;34514:40;;-1:-1:-1;;;34514:40:0;;;;;;;;;;;34410:164;34592:14;;;;;34324:3;34294:328;;;-1:-1:-1;34638:13:0;:28;34688:60;31706:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;-1:-1:-1;;;;;4606:6:1;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:973::-;5390:12;;5355:3;;5445:1;5465:18;;;;5518;;;;5545:61;;5599:4;5591:6;5587:17;5577:27;;5545:61;5625:2;5673;5665:6;5662:14;5642:18;5639:38;5636:161;;;5719:10;5714:3;5710:20;5707:1;5700:31;5754:4;5751:1;5744:15;5782:4;5779:1;5772:15;5636:161;5813:18;5840:104;;;;5958:1;5953:319;;;;5806:466;;5840:104;-1:-1:-1;;5873:24:1;;5861:37;;5918:16;;;;-1:-1:-1;5840:104:1;;5953:319;12123:1;12116:14;;;12160:4;12147:18;;6047:1;6061:165;6075:6;6072:1;6069:13;6061:165;;;6153:14;;6140:11;;;6133:35;6196:16;;;;6090:10;;6061:165;;;6065:3;;6255:6;6250:3;6246:16;6239:23;;5806:466;;;;;;;5305:973;;;;:::o;6283:456::-;6504:3;6532:38;6566:3;6558:6;6532:38;:::i;:::-;6599:6;6593:13;6615:52;6660:6;6656:2;6649:4;6641:6;6637:17;6615:52;:::i;:::-;6683:50;6725:6;6721:2;6717:15;6709:6;6683:50;:::i;:::-;6676:57;6283:456;-1:-1:-1;;;;;;;6283:456:1:o;6952:488::-;-1:-1:-1;;;;;7221:15:1;;;7203:34;;7273:15;;7268:2;7253:18;;7246:43;7320:2;7305:18;;7298:34;;;7368:3;7363:2;7348:18;;7341:31;;;7146:4;;7389:45;;7414:19;;7406:6;7389:45;:::i;:::-;7381:53;6952:488;-1:-1:-1;;;;;;6952:488:1:o;7637:219::-;7786:2;7775:9;7768:21;7749:4;7806:44;7846:2;7835:9;7831:18;7823:6;7806:44;:::i;9379:356::-;9581:2;9563:21;;;9600:18;;;9593:30;9659:34;9654:2;9639:18;;9632:62;9726:2;9711:18;;9379:356::o;11770:275::-;11841:2;11835:9;11906:2;11887:13;;-1:-1:-1;;11883:27:1;11871:40;;-1:-1:-1;;;;;11926:34:1;;11962:22;;;11923:62;11920:88;;;11988:18;;:::i;:::-;12024:2;12017:22;11770:275;;-1:-1:-1;11770:275:1:o;12176:128::-;12216:3;12247:1;12243:6;12240:1;12237:13;12234:39;;;12253:18;;:::i;:::-;-1:-1:-1;12289:9:1;;12176:128::o;12309:120::-;12349:1;12375;12365:35;;12380:18;;:::i;:::-;-1:-1:-1;12414:9:1;;12309:120::o;12434:168::-;12474:7;12540:1;12536;12532:6;12528:14;12525:1;12522:21;12517:1;12510:9;12503:17;12499:45;12496:71;;;12547:18;;:::i;:::-;-1:-1:-1;12587:9:1;;12434:168::o;12607:125::-;12647:4;12675:1;12672;12669:8;12666:34;;;12680:18;;:::i;:::-;-1:-1:-1;12717:9:1;;12607:125::o;12737:258::-;12809:1;12819:113;12833:6;12830:1;12827:13;12819:113;;;12909:11;;;12903:18;12890:11;;;12883:39;12855:2;12848:10;12819:113;;;12950:6;12947:1;12944:13;12941:48;;;-1:-1:-1;;12985:1:1;12967:16;;12960:27;12737:258::o;13000:380::-;13079:1;13075:12;;;;13122;;;13143:61;;13197:4;13189:6;13185:17;13175:27;;13143:61;13250:2;13242:6;13239:14;13219:18;13216:38;13213:161;;;13296:10;13291:3;13287:20;13284:1;13277:31;13331:4;13328:1;13321:15;13359:4;13356:1;13349:15;13213:161;;13000:380;;;:::o;13385:135::-;13424:3;-1:-1:-1;;13445:17:1;;13442:43;;;13465:18;;:::i;:::-;-1:-1:-1;13512:1:1;13501:13;;13385:135::o;13525:112::-;13557:1;13583;13573:35;;13588:18;;:::i;:::-;-1:-1:-1;13622:9:1;;13525:112::o;13642:127::-;13703:10;13698:3;13694:20;13691:1;13684:31;13734:4;13731:1;13724:15;13758:4;13755:1;13748:15;13774:127;13835:10;13830:3;13826:20;13823:1;13816:31;13866:4;13863:1;13856:15;13890:4;13887:1;13880:15;13906:127;13967:10;13962:3;13958:20;13955:1;13948:31;13998:4;13995:1;13988:15;14022:4;14019:1;14012:15;14038:127;14099:10;14094:3;14090:20;14087:1;14080:31;14130:4;14127:1;14120:15;14154:4;14151:1;14144:15;14170:131;-1:-1:-1;;;;;;14244:32:1;;14234:43;;14224:71;;14291:1;14288;14281:12

Swarm Source

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