ETH Price: $2,891.10 (-5.17%)
Gas: 4 Gwei

Token

Anal Gazers (ANAL)
 

Overview

Max Total Supply

6,969 ANAL

Holders

1,006

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 ANAL
0x3027358eb5d3fb271eeb8f46b99e2b8d748179cb
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:
AnalGazers

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-08
*/

/**
                                                                                          
                                                                                          
                                 --=-.                                                    
                       -++=:    #:..:=+-      .                                           
                     ++-...=+.  #.    .=+   -*=*:        .:   -+===                       
                   .*:. ....:*- +-.    .:#. #:=:#.      ++:*-:*..-:*:                     
                   #:.  ......*: #:.    .:*:* --:*     +=.:.#=#..:-:#.                    
                  +=.   .:-:..:# .#:..  ..-#+  ..#    :*. +.-+#: .=:-+   .==-=+           
                  %:.   -.=....-+==........*+ ...*.   #. +-..#-+  .-:#  +=....+-          
                  #.   ::=**....*=*:-:.....::....*:  +- =%:..*.#. ...# ====-=-:           
                  #.   -:# +-...:*:* .:-....*....#. :* .#*:..=-+-  .-+ ++.                
                  %.   =*:.=*.:-.#-*  :++:..=:...#=+=.:.:::..-+:*  :#*++==+=:             
                -==...:-+==:...::=*#   .##:.....:*+-.:-.::-..:* # .=-.......==            
               +=.........:+*....-#*   :*.#.  ..+=#. ..=+#- .:# #..:........:*            
               *=---....=+-.#....-*#  .== .#. .:#*:  ..#.#. .:#.#.::=========             
                 .:#. =.#  .#....+-#. .#   :*..+-#:..:*::*  .-*.#=+=.:----.               
                  *-  =.#  :*....#.%..-*    +=::#.====  *-  .+:   -==:.  .*:              
   ===---+==     .#.  =.+- -+.::== #.:#.    .#:+*       %.  :#   **===--===               
  +=   .:-==#-   +=.  =.-+ -+::-*  %:*-     .*+         #: :*.                            
   :----:.       #.   =.=+ -+.=+   =+:                   ==-              .=*%#*+:        
       =----=--. #:...-.*:  ++:                                     :--=*%#=:        --   
      -+---==--=  -=#:.:*                                     .     +@@@*:.      .:+%@@-  
        .           .+==.:.     +*                           *@@@%#+=:.-+*%%%%%%%%*=:=@:  
                    :=*#@@%    #@%          .:    -=*####*+:  *@#-=+@@-             :@#   
             .-+*%@@@@@@@@*  =@@@+#%%#**+*#%@@:  @%-:          +@#-#@+           .-#@+    
          :+%@@#*++==+*#*= =%@@@- :::-=+++@@%:   +@-            #@@@*-.      =#%@%*-      
        .#@+: .-=++*+   -*@**@@-       .+@%-      %@::--==++=   .@@*=*@%=     .-.         
       :@#. -=-=+#%+:=#%*-:=@@:      :*@%-        :@@**+++=-.    +@#   -#@%##%%=          
      .@@=+*#%#*+++#@@%##*+@@-:++  -#@%-         -.%@            -@@      :::.            
       ++=-::=+++=-.    .:%@#+=:.+@@*:          :@*%@.    ..-++  .%*                      
           .-.           :@@. :*@%=            -@@%@#+#%%%##*=                            
                         :@% #@@@**+==-:::::=*@@*#@#+:                                    
                          :. ==----=+*##%%%%#+-                                           
                                                                                          
                                                                                          

*/

// SPDX-License-Identifier: MIT



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 _startTokenId() (defaults to 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;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

    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;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}
// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}


    pragma solidity ^0.8.13;
    
    contract AnalGazers is ERC721A, Ownable,  OperatorFilterer, ERC721Burnable {
    using Strings for uint256;


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

  
  

  uint256 public cost = 0.005 ether;
 
  

  uint16 public maxSupply = 6969;
  uint8 public maxMintAmountPerTx = 10;
   uint8 public maxMintAmountPerWallet = 10;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 6969;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function Mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 function setmaxMintAmountPerWallet(uint8 _maxWL) external onlyOwner{
      maxMintAmountPerWallet = _maxWL;

  }

  function withdraw() public onlyOwner  {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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":"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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxWL","type":"uint8"}],"name":"setmaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002d6f60a039600990620000239082620002a1565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004f9082620002a1565b506611c37937e08000600c55600d805464ffffffffff191664010a0a1b391790556000600e55611b39600f556010805462ffff001916620101001790553480156200009957600080fd5b5060405162002db238038062002db2833981016040819052620000bc916200041c565b81816002620000cc8382620002a1565b506003620000db8282620002a1565b5050600160005550620000ee336200010d565b620000f86200015f565b50506010805460ff1916600117905562000486565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000180733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000182565b565b6001600160a01b0390911690637d3e3dbe81620001b25782620001ab5750634420e486620001b2565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f2578060005160e01c03620001f257600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029c57600081815260208120601f850160051c81016020861015620002775750805b601f850160051c820191505b81811015620002985782815560010162000283565b5050505b505050565b81516001600160401b03811115620002bd57620002bd620001fc565b620002d581620002ce845462000212565b846200024e565b602080601f8311600181146200030d5760008415620002f45750858301515b600019600386901b1c1916600185901b17855562000298565b600085815260208120601f198616915b828110156200033e578886015182559484019460019091019084016200031d565b50858210156200035d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200037f57600080fd5b81516001600160401b03808211156200039c576200039c620001fc565b604051601f8301601f19908116603f01168101908282118183101715620003c757620003c7620001fc565b81604052838152602092508683858801011115620003e457600080fd5b600091505b83821015620004085785820183015181830184015290820190620003e9565b600093810190920192909252949350505050565b600080604083850312156200043057600080fd5b82516001600160401b03808211156200044857600080fd5b62000456868387016200036d565b935060208501519150808211156200046d57600080fd5b506200047c858286016200036d565b9150509250929050565b6128d980620004966000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063b7c0b8e8116100b6578063d5abeb011161007a578063d5abeb0114610717578063dd2ced5c14610745578063e985e9c514610765578063f2fde38b14610785578063f8bf5172146107a5578063fb796e6c146107c757600080fd5b8063b7c0b8e814610676578063b88d4fde14610696578063bc951b91146106b6578063c87b56dd146106d7578063cffb6e20146106f757600080fd5b806394354fd01161010857806394354fd0146105b957806395d89b41146105eb578063982d669e14610600578063a22cb46514610616578063a475b5dd14610636578063aa0622901461065657600080fd5b80636352211e1461052657806370a0823114610546578063715018a6146105665780637ec4a6591461057b5780638da5cb5b1461059b57600080fd5b806323b872dd116101dd5780633ccfd60b116101a15780633ccfd60b1461047257806342842e0e1461048757806342966c68146104a757806344a0d68a146104c75780634d9c1848146104e75780635c975abb1461050757600080fd5b806323b872dd146103e85780632f6f98e114610408578063305ae7751461042857806337a66d85146104485780633bd649681461045d57600080fd5b8063095ea7b31161022f578063095ea7b3146103305780630a00ae83146103505780631067fcc71461037057806313faede61461039057806318160ddd146103b4578063193ad7b4146103d257600080fd5b806301ffc9a71461026c57806306421c2f146102a157806306fdde03146102c357806307883703146102e5578063081812fc146102f8575b600080fd5b34801561027857600080fd5b5061028c6102873660046120eb565b6107e1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461211f565b610833565b005b3480156102cf57600080fd5b506102d861087e565b604051610298919061218a565b6102c16102f336600461219d565b610910565b34801561030457600080fd5b5061031861031336600461219d565b610c00565b6040516001600160a01b039091168152602001610298565b34801561033c57600080fd5b506102c161034b3660046121cd565b610c44565b34801561035c57600080fd5b506102c161036b36600461219d565b610cd1565b34801561037c57600080fd5b506102c161038b366004612282565b610d00565b34801561039c57600080fd5b506103a6600c5481565b604051908152602001610298565b3480156103c057600080fd5b506103a6600154600054036000190190565b3480156103de57600080fd5b506103a6600e5481565b3480156103f457600080fd5b506102c16104033660046122ca565b610d3a565b34801561041457600080fd5b506102c1610423366004612306565b610d70565b34801561043457600080fd5b506102c1610443366004612282565b610e17565b34801561045457600080fd5b506102c1610e4d565b34801561046957600080fd5b506102c1610e94565b34801561047e57600080fd5b506102c1610edd565b34801561049357600080fd5b506102c16104a23660046122ca565b610f78565b3480156104b357600080fd5b506102c16104c236600461219d565b610fa8565b3480156104d357600080fd5b506102c16104e236600461219d565b61101d565b3480156104f357600080fd5b506102c161050236600461234a565b61104c565b34801561051357600080fd5b5060105461028c90610100900460ff1681565b34801561053257600080fd5b5061031861054136600461219d565b611098565b34801561055257600080fd5b506103a6610561366004612365565b6110aa565b34801561057257600080fd5b506102c16110f8565b34801561058757600080fd5b506102c1610596366004612282565b61112e565b3480156105a757600080fd5b506008546001600160a01b0316610318565b3480156105c557600080fd5b50600d546105d99062010000900460ff1681565b60405160ff9091168152602001610298565b3480156105f757600080fd5b506102d8611164565b34801561060c57600080fd5b506103a6600f5481565b34801561062257600080fd5b506102c1610631366004612390565b611173565b34801561064257600080fd5b5060105461028c9062010000900460ff1681565b34801561066257600080fd5b506102c161067136600461234a565b611208565b34801561068257600080fd5b506102c16106913660046123ba565b611250565b3480156106a257600080fd5b506102c16106b13660046123d5565b61128d565b3480156106c257600080fd5b50600d546105d9906301000000900460ff1681565b3480156106e357600080fd5b506102d86106f236600461219d565b6112c5565b34801561070357600080fd5b506102c1610712366004612450565b61143a565b34801561072357600080fd5b50600d546107329061ffff1681565b60405161ffff9091168152602001610298565b34801561075157600080fd5b506102c161076036600461234a565b61153e565b34801561077157600080fd5b5061028c6107803660046124d5565b611588565b34801561079157600080fd5b506102c16107a0366004612365565b6115b6565b3480156107b157600080fd5b50600d546105d990640100000000900460ff1681565b3480156107d357600080fd5b5060105461028c9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081257506001600160e01b03198216635b5e139f60e01b145b8061082d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d906124f1565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461088d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612526565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b32331461095f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161085d565b601054610100900460ff16156109b75760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161085d565b600d546109c99061ffff166001612576565b61ffff16816109df600154600054036000190190565b6109e99190612598565b10610a205760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161085d565b600d546301000000900460ff1681610a37336110aa565b610a419190612598565b1115610a8f5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161085d565b600f5481600e54610aa09190612598565b1115610b03573481600c54610ab591906125ab565b1115610afe5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b610bf3565b600d54640100000000900460ff1681610b1b336110aa565b610b259190612598565b1115610bae573481600c54610b3a91906125ab565b1115610b835760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b600d5462010000900460ff16811115610afe5760405162461bcd60e51b815260040161085d906125c2565b600d54640100000000900460ff16811115610bdb5760405162461bcd60e51b815260040161085d906125c2565b80600e6000828254610bed9190612598565b90915550505b610bfd338261164e565b50565b6000610c0b82611668565b610c28576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c4f82611098565b9050806001600160a01b0316836001600160a01b031603610c835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ca35750610ca18133611588565b155b15610cc1576040516367d9dca160e11b815260040160405180910390fd5b610ccc8383836116a1565b505050565b6008546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161085d906124f1565b600f55565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161085d906124f1565b600b610d36828261264a565b5050565b826001600160a01b0381163314610d5f5760105460ff1615610d5f57610d5f336116fd565b610d6a848484611741565b50505050565b6008546001600160a01b03163314610d9a5760405162461bcd60e51b815260040161085d906124f1565b6000610dad600154600054036000190190565b600d5490915061ffff16610dc18483612576565b61ffff161115610e095760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b610ccc828461ffff1661164e565b6008546001600160a01b03163314610e415760405162461bcd60e51b815260040161085d906124f1565b600a610d36828261264a565b6008546001600160a01b03163314610e775760405162461bcd60e51b815260040161085d906124f1565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ebe5760405162461bcd60e51b815260040161085d906124f1565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610f075760405162461bcd60e51b815260040161085d906124f1565b6000610f1b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f65576040519150601f19603f3d011682016040523d82523d6000602084013e610f6a565b606091505b5050905080610bfd57600080fd5b826001600160a01b0381163314610f9d5760105460ff1615610f9d57610f9d336116fd565b610d6a84848461174c565b610fb23382611767565b6110145760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161085d565b610bfd816117c6565b6008546001600160a01b031633146110475760405162461bcd60e51b815260040161085d906124f1565b600c55565b6008546001600160a01b031633146110765760405162461bcd60e51b815260040161085d906124f1565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b60006110a3826117d1565b5192915050565b60006001600160a01b0382166110d3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111225760405162461bcd60e51b815260040161085d906124f1565b61112c60006118f8565b565b6008546001600160a01b031633146111585760405162461bcd60e51b815260040161085d906124f1565b6009610d36828261264a565b60606003805461088d90612526565b336001600160a01b0383160361119c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112325760405162461bcd60e51b815260040161085d906124f1565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b0316331461127a5760405162461bcd60e51b815260040161085d906124f1565b6010805460ff1916911515919091179055565b836001600160a01b03811633146112b25760105460ff16156112b2576112b2336116fd565b6112be8585858561194a565b5050505050565b60606112d082611668565b6113345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b60105462010000900460ff1615156000036113db57600b805461135690612526565b80601f016020809104026020016040519081016040528092919081815260200182805461138290612526565b80156113cf5780601f106113a4576101008083540402835291602001916113cf565b820191906000526020600020905b8154815290600101906020018083116113b257829003601f168201915b50505050509050919050565b60006113e5611995565b905060008151116114055760405180602001604052806000815250611433565b8061140f846119a4565b600a60405160200161142393929190612709565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114645760405162461bcd60e51b815260040161085d906124f1565b6000611477600154600054036000190190565b905060006114888360ff87166125ab565b600d5490915061ffff908116906114a29083908516612598565b11156114e65760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b60005b8381101561153657611524858583818110611506576115066127a9565b905060200201602081019061151b9190612365565b8760ff1661164e565b8061152e816127bf565b9150506114e9565b505050505050565b6008546001600160a01b031633146115685760405162461bcd60e51b815260040161085d906124f1565b600d805460ff90921663010000000263ff00000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115e05760405162461bcd60e51b815260040161085d906124f1565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610bfd816118f8565b610d36828260405180602001604052806000815250611aa4565b60008160011115801561167c575060005482105b801561082d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611739573d6000803e3d6000fd5b6000603a5250565b610ccc838383611ab1565b610ccc8383836040518060200160405280600081525061128d565b60008061177383611098565b9050806001600160a01b0316846001600160a01b0316148061179a575061179a8185611588565b806117be5750836001600160a01b03166117b384610c00565b6001600160a01b0316145b949350505050565b610bfd816000611c8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611801575060005481105b156118df57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118dd5780516001600160a01b031615611874579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118d8579392505050565b611874565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611955848484611ab1565b6001600160a01b0383163b15158015611977575061197584848484611e3d565b155b15610d6a576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461088d90612526565b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df816127bf565b91506119ee9050600a836127ee565b91506119cf565b6000816001600160401b03811115611a0f57611a0f6121f7565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b84156117be57611a4e600183612802565b9150611a5b600a86612815565b611a66906030612598565b60f81b818381518110611a7b57611a7b6127a9565b60200101906001600160f81b031916908160001a905350611a9d600a866127ee565b9450611a3d565b610ccc8383836001611f28565b6000611abc826117d1565b9050836001600160a01b031681600001516001600160a01b031614611af35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b115750611b118533611588565b80611b2c575033611b2184610c00565b6001600160a01b0316145b905080611b4c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7357604051633a954ecd60e21b815260040160405180910390fd5b611b7f600084876116a1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c53576000548214611c5357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061288483398151915260405160405180910390a46112be565b6000611c95836117d1565b80519091508215611cfb576000336001600160a01b0383161480611cbe5750611cbe8233611588565b80611cd9575033611cce86610c00565b6001600160a01b0316145b905080611cf957604051632ce44b5f60e11b815260040160405180910390fd5b505b611d07600085836116a1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e05576000548214611e0557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612884833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e72903390899088908890600401612829565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa91810190612866565b60015b611f0b573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f03576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f5157604051622e076360e81b815260040160405180910390fd5b83600003611f725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561202357506001600160a01b0387163b15155b15612099575b60405182906001600160a01b03891690600090600080516020612884833981519152908290a46120626000888480600101955088611e3d565b61207f576040516368d2bf6b60e11b815260040160405180910390fd5b80820361202957826000541461209457600080fd5b6120cc565b5b6040516001830192906001600160a01b03891690600090600080516020612884833981519152908290a480820361209a575b506000556112be565b6001600160e01b031981168114610bfd57600080fd5b6000602082840312156120fd57600080fd5b8135611433816120d5565b803561ffff8116811461211a57600080fd5b919050565b60006020828403121561213157600080fd5b61143382612108565b60005b8381101561215557818101518382015260200161213d565b50506000910152565b6000815180845261217681602086016020860161213a565b601f01601f19169290920160200192915050565b602081526000611433602083018461215e565b6000602082840312156121af57600080fd5b5035919050565b80356001600160a01b038116811461211a57600080fd5b600080604083850312156121e057600080fd5b6121e9836121b6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612227576122276121f7565b604051601f8501601f19908116603f0116810190828211818310171561224f5761224f6121f7565b8160405280935085815286868601111561226857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229457600080fd5b81356001600160401b038111156122aa57600080fd5b8201601f810184136122bb57600080fd5b6117be8482356020840161220d565b6000806000606084860312156122df57600080fd5b6122e8846121b6565b92506122f6602085016121b6565b9150604084013590509250925092565b6000806040838503121561231957600080fd5b61232283612108565b9150612330602084016121b6565b90509250929050565b803560ff8116811461211a57600080fd5b60006020828403121561235c57600080fd5b61143382612339565b60006020828403121561237757600080fd5b611433826121b6565b8035801515811461211a57600080fd5b600080604083850312156123a357600080fd5b6123ac836121b6565b915061233060208401612380565b6000602082840312156123cc57600080fd5b61143382612380565b600080600080608085870312156123eb57600080fd5b6123f4856121b6565b9350612402602086016121b6565b92506040850135915060608501356001600160401b0381111561242457600080fd5b8501601f8101871361243557600080fd5b6124448782356020840161220d565b91505092959194509250565b60008060006040848603121561246557600080fd5b61246e84612339565b925060208401356001600160401b038082111561248a57600080fd5b818601915086601f83011261249e57600080fd5b8135818111156124ad57600080fd5b8760208260051b85010111156124c257600080fd5b6020830194508093505050509250925092565b600080604083850312156124e857600080fd5b612322836121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061253a57607f821691505b60208210810361255a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561259157612591612560565b5092915050565b8082018082111561082d5761082d612560565b808202811582820484141761082d5761082d612560565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b601f821115610ccc57600081815260208120601f850160051c8101602086101561262b5750805b601f850160051c820191505b8181101561153657828155600101612637565b81516001600160401b03811115612663576126636121f7565b612677816126718454612526565b84612604565b602080601f8311600181146126ac57600084156126945750858301515b600019600386901b1c1916600185901b178555611536565b600085815260208120601f198616915b828110156126db578886015182559484019460019091019084016126bc565b50858210156126f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008451602061271c8285838a0161213a565b85519184019161272f8184848a0161213a565b855492019160009061274081612526565b60018281168015612758576001811461276d57612799565b60ff1984168752821515830287019450612799565b896000528560002060005b8481101561279157815489820152908301908701612778565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016127d1576127d1612560565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127fd576127fd6127d8565b500490565b8181038181111561082d5761082d612560565b600082612824576128246127d8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285c9083018461215e565b9695505050505050565b60006020828403121561287857600080fd5b8151611433816120d556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205cae1a60a1d8f1b7db0550ea9f37157e63e1cd946a4e44a49a1928a97bf5994264736f6c63430008120033697066733a2f2f62616679626569627a35633635776e757637736c637068707a65767679677735796a6e6d6332757a78633376656c63736f656a75636e75677132752f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b416e616c2047617a6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414e414c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063b7c0b8e8116100b6578063d5abeb011161007a578063d5abeb0114610717578063dd2ced5c14610745578063e985e9c514610765578063f2fde38b14610785578063f8bf5172146107a5578063fb796e6c146107c757600080fd5b8063b7c0b8e814610676578063b88d4fde14610696578063bc951b91146106b6578063c87b56dd146106d7578063cffb6e20146106f757600080fd5b806394354fd01161010857806394354fd0146105b957806395d89b41146105eb578063982d669e14610600578063a22cb46514610616578063a475b5dd14610636578063aa0622901461065657600080fd5b80636352211e1461052657806370a0823114610546578063715018a6146105665780637ec4a6591461057b5780638da5cb5b1461059b57600080fd5b806323b872dd116101dd5780633ccfd60b116101a15780633ccfd60b1461047257806342842e0e1461048757806342966c68146104a757806344a0d68a146104c75780634d9c1848146104e75780635c975abb1461050757600080fd5b806323b872dd146103e85780632f6f98e114610408578063305ae7751461042857806337a66d85146104485780633bd649681461045d57600080fd5b8063095ea7b31161022f578063095ea7b3146103305780630a00ae83146103505780631067fcc71461037057806313faede61461039057806318160ddd146103b4578063193ad7b4146103d257600080fd5b806301ffc9a71461026c57806306421c2f146102a157806306fdde03146102c357806307883703146102e5578063081812fc146102f8575b600080fd5b34801561027857600080fd5b5061028c6102873660046120eb565b6107e1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461211f565b610833565b005b3480156102cf57600080fd5b506102d861087e565b604051610298919061218a565b6102c16102f336600461219d565b610910565b34801561030457600080fd5b5061031861031336600461219d565b610c00565b6040516001600160a01b039091168152602001610298565b34801561033c57600080fd5b506102c161034b3660046121cd565b610c44565b34801561035c57600080fd5b506102c161036b36600461219d565b610cd1565b34801561037c57600080fd5b506102c161038b366004612282565b610d00565b34801561039c57600080fd5b506103a6600c5481565b604051908152602001610298565b3480156103c057600080fd5b506103a6600154600054036000190190565b3480156103de57600080fd5b506103a6600e5481565b3480156103f457600080fd5b506102c16104033660046122ca565b610d3a565b34801561041457600080fd5b506102c1610423366004612306565b610d70565b34801561043457600080fd5b506102c1610443366004612282565b610e17565b34801561045457600080fd5b506102c1610e4d565b34801561046957600080fd5b506102c1610e94565b34801561047e57600080fd5b506102c1610edd565b34801561049357600080fd5b506102c16104a23660046122ca565b610f78565b3480156104b357600080fd5b506102c16104c236600461219d565b610fa8565b3480156104d357600080fd5b506102c16104e236600461219d565b61101d565b3480156104f357600080fd5b506102c161050236600461234a565b61104c565b34801561051357600080fd5b5060105461028c90610100900460ff1681565b34801561053257600080fd5b5061031861054136600461219d565b611098565b34801561055257600080fd5b506103a6610561366004612365565b6110aa565b34801561057257600080fd5b506102c16110f8565b34801561058757600080fd5b506102c1610596366004612282565b61112e565b3480156105a757600080fd5b506008546001600160a01b0316610318565b3480156105c557600080fd5b50600d546105d99062010000900460ff1681565b60405160ff9091168152602001610298565b3480156105f757600080fd5b506102d8611164565b34801561060c57600080fd5b506103a6600f5481565b34801561062257600080fd5b506102c1610631366004612390565b611173565b34801561064257600080fd5b5060105461028c9062010000900460ff1681565b34801561066257600080fd5b506102c161067136600461234a565b611208565b34801561068257600080fd5b506102c16106913660046123ba565b611250565b3480156106a257600080fd5b506102c16106b13660046123d5565b61128d565b3480156106c257600080fd5b50600d546105d9906301000000900460ff1681565b3480156106e357600080fd5b506102d86106f236600461219d565b6112c5565b34801561070357600080fd5b506102c1610712366004612450565b61143a565b34801561072357600080fd5b50600d546107329061ffff1681565b60405161ffff9091168152602001610298565b34801561075157600080fd5b506102c161076036600461234a565b61153e565b34801561077157600080fd5b5061028c6107803660046124d5565b611588565b34801561079157600080fd5b506102c16107a0366004612365565b6115b6565b3480156107b157600080fd5b50600d546105d990640100000000900460ff1681565b3480156107d357600080fd5b5060105461028c9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081257506001600160e01b03198216635b5e139f60e01b145b8061082d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d906124f1565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461088d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612526565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b32331461095f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161085d565b601054610100900460ff16156109b75760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161085d565b600d546109c99061ffff166001612576565b61ffff16816109df600154600054036000190190565b6109e99190612598565b10610a205760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161085d565b600d546301000000900460ff1681610a37336110aa565b610a419190612598565b1115610a8f5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161085d565b600f5481600e54610aa09190612598565b1115610b03573481600c54610ab591906125ab565b1115610afe5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b610bf3565b600d54640100000000900460ff1681610b1b336110aa565b610b259190612598565b1115610bae573481600c54610b3a91906125ab565b1115610b835760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b600d5462010000900460ff16811115610afe5760405162461bcd60e51b815260040161085d906125c2565b600d54640100000000900460ff16811115610bdb5760405162461bcd60e51b815260040161085d906125c2565b80600e6000828254610bed9190612598565b90915550505b610bfd338261164e565b50565b6000610c0b82611668565b610c28576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c4f82611098565b9050806001600160a01b0316836001600160a01b031603610c835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ca35750610ca18133611588565b155b15610cc1576040516367d9dca160e11b815260040160405180910390fd5b610ccc8383836116a1565b505050565b6008546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161085d906124f1565b600f55565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161085d906124f1565b600b610d36828261264a565b5050565b826001600160a01b0381163314610d5f5760105460ff1615610d5f57610d5f336116fd565b610d6a848484611741565b50505050565b6008546001600160a01b03163314610d9a5760405162461bcd60e51b815260040161085d906124f1565b6000610dad600154600054036000190190565b600d5490915061ffff16610dc18483612576565b61ffff161115610e095760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b610ccc828461ffff1661164e565b6008546001600160a01b03163314610e415760405162461bcd60e51b815260040161085d906124f1565b600a610d36828261264a565b6008546001600160a01b03163314610e775760405162461bcd60e51b815260040161085d906124f1565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ebe5760405162461bcd60e51b815260040161085d906124f1565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610f075760405162461bcd60e51b815260040161085d906124f1565b6000610f1b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f65576040519150601f19603f3d011682016040523d82523d6000602084013e610f6a565b606091505b5050905080610bfd57600080fd5b826001600160a01b0381163314610f9d5760105460ff1615610f9d57610f9d336116fd565b610d6a84848461174c565b610fb23382611767565b6110145760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161085d565b610bfd816117c6565b6008546001600160a01b031633146110475760405162461bcd60e51b815260040161085d906124f1565b600c55565b6008546001600160a01b031633146110765760405162461bcd60e51b815260040161085d906124f1565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b60006110a3826117d1565b5192915050565b60006001600160a01b0382166110d3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111225760405162461bcd60e51b815260040161085d906124f1565b61112c60006118f8565b565b6008546001600160a01b031633146111585760405162461bcd60e51b815260040161085d906124f1565b6009610d36828261264a565b60606003805461088d90612526565b336001600160a01b0383160361119c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112325760405162461bcd60e51b815260040161085d906124f1565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b0316331461127a5760405162461bcd60e51b815260040161085d906124f1565b6010805460ff1916911515919091179055565b836001600160a01b03811633146112b25760105460ff16156112b2576112b2336116fd565b6112be8585858561194a565b5050505050565b60606112d082611668565b6113345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b60105462010000900460ff1615156000036113db57600b805461135690612526565b80601f016020809104026020016040519081016040528092919081815260200182805461138290612526565b80156113cf5780601f106113a4576101008083540402835291602001916113cf565b820191906000526020600020905b8154815290600101906020018083116113b257829003601f168201915b50505050509050919050565b60006113e5611995565b905060008151116114055760405180602001604052806000815250611433565b8061140f846119a4565b600a60405160200161142393929190612709565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114645760405162461bcd60e51b815260040161085d906124f1565b6000611477600154600054036000190190565b905060006114888360ff87166125ab565b600d5490915061ffff908116906114a29083908516612598565b11156114e65760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b60005b8381101561153657611524858583818110611506576115066127a9565b905060200201602081019061151b9190612365565b8760ff1661164e565b8061152e816127bf565b9150506114e9565b505050505050565b6008546001600160a01b031633146115685760405162461bcd60e51b815260040161085d906124f1565b600d805460ff90921663010000000263ff00000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115e05760405162461bcd60e51b815260040161085d906124f1565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610bfd816118f8565b610d36828260405180602001604052806000815250611aa4565b60008160011115801561167c575060005482105b801561082d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611739573d6000803e3d6000fd5b6000603a5250565b610ccc838383611ab1565b610ccc8383836040518060200160405280600081525061128d565b60008061177383611098565b9050806001600160a01b0316846001600160a01b0316148061179a575061179a8185611588565b806117be5750836001600160a01b03166117b384610c00565b6001600160a01b0316145b949350505050565b610bfd816000611c8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611801575060005481105b156118df57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118dd5780516001600160a01b031615611874579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118d8579392505050565b611874565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611955848484611ab1565b6001600160a01b0383163b15158015611977575061197584848484611e3d565b155b15610d6a576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461088d90612526565b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df816127bf565b91506119ee9050600a836127ee565b91506119cf565b6000816001600160401b03811115611a0f57611a0f6121f7565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b84156117be57611a4e600183612802565b9150611a5b600a86612815565b611a66906030612598565b60f81b818381518110611a7b57611a7b6127a9565b60200101906001600160f81b031916908160001a905350611a9d600a866127ee565b9450611a3d565b610ccc8383836001611f28565b6000611abc826117d1565b9050836001600160a01b031681600001516001600160a01b031614611af35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b115750611b118533611588565b80611b2c575033611b2184610c00565b6001600160a01b0316145b905080611b4c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b7357604051633a954ecd60e21b815260040160405180910390fd5b611b7f600084876116a1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c53576000548214611c5357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061288483398151915260405160405180910390a46112be565b6000611c95836117d1565b80519091508215611cfb576000336001600160a01b0383161480611cbe5750611cbe8233611588565b80611cd9575033611cce86610c00565b6001600160a01b0316145b905080611cf957604051632ce44b5f60e11b815260040160405180910390fd5b505b611d07600085836116a1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e05576000548214611e0557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612884833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e72903390899088908890600401612829565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa91810190612866565b60015b611f0b573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f03576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f5157604051622e076360e81b815260040160405180910390fd5b83600003611f725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561202357506001600160a01b0387163b15155b15612099575b60405182906001600160a01b03891690600090600080516020612884833981519152908290a46120626000888480600101955088611e3d565b61207f576040516368d2bf6b60e11b815260040160405180910390fd5b80820361202957826000541461209457600080fd5b6120cc565b5b6040516001830192906001600160a01b03891690600090600080516020612884833981519152908290a480820361209a575b506000556112be565b6001600160e01b031981168114610bfd57600080fd5b6000602082840312156120fd57600080fd5b8135611433816120d5565b803561ffff8116811461211a57600080fd5b919050565b60006020828403121561213157600080fd5b61143382612108565b60005b8381101561215557818101518382015260200161213d565b50506000910152565b6000815180845261217681602086016020860161213a565b601f01601f19169290920160200192915050565b602081526000611433602083018461215e565b6000602082840312156121af57600080fd5b5035919050565b80356001600160a01b038116811461211a57600080fd5b600080604083850312156121e057600080fd5b6121e9836121b6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612227576122276121f7565b604051601f8501601f19908116603f0116810190828211818310171561224f5761224f6121f7565b8160405280935085815286868601111561226857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229457600080fd5b81356001600160401b038111156122aa57600080fd5b8201601f810184136122bb57600080fd5b6117be8482356020840161220d565b6000806000606084860312156122df57600080fd5b6122e8846121b6565b92506122f6602085016121b6565b9150604084013590509250925092565b6000806040838503121561231957600080fd5b61232283612108565b9150612330602084016121b6565b90509250929050565b803560ff8116811461211a57600080fd5b60006020828403121561235c57600080fd5b61143382612339565b60006020828403121561237757600080fd5b611433826121b6565b8035801515811461211a57600080fd5b600080604083850312156123a357600080fd5b6123ac836121b6565b915061233060208401612380565b6000602082840312156123cc57600080fd5b61143382612380565b600080600080608085870312156123eb57600080fd5b6123f4856121b6565b9350612402602086016121b6565b92506040850135915060608501356001600160401b0381111561242457600080fd5b8501601f8101871361243557600080fd5b6124448782356020840161220d565b91505092959194509250565b60008060006040848603121561246557600080fd5b61246e84612339565b925060208401356001600160401b038082111561248a57600080fd5b818601915086601f83011261249e57600080fd5b8135818111156124ad57600080fd5b8760208260051b85010111156124c257600080fd5b6020830194508093505050509250925092565b600080604083850312156124e857600080fd5b612322836121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061253a57607f821691505b60208210810361255a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561259157612591612560565b5092915050565b8082018082111561082d5761082d612560565b808202811582820484141761082d5761082d612560565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b601f821115610ccc57600081815260208120601f850160051c8101602086101561262b5750805b601f850160051c820191505b8181101561153657828155600101612637565b81516001600160401b03811115612663576126636121f7565b612677816126718454612526565b84612604565b602080601f8311600181146126ac57600084156126945750858301515b600019600386901b1c1916600185901b178555611536565b600085815260208120601f198616915b828110156126db578886015182559484019460019091019084016126bc565b50858210156126f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008451602061271c8285838a0161213a565b85519184019161272f8184848a0161213a565b855492019160009061274081612526565b60018281168015612758576001811461276d57612799565b60ff1984168752821515830287019450612799565b896000528560002060005b8481101561279157815489820152908301908701612778565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016127d1576127d1612560565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826127fd576127fd6127d8565b500490565b8181038181111561082d5761082d612560565b600082612824576128246127d8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285c9083018461215e565b9695505050505050565b60006020828403121561287857600080fd5b8151611433816120d556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205cae1a60a1d8f1b7db0550ea9f37157e63e1cd946a4e44a49a1928a97bf5994264736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b416e616c2047617a6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414e414c00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Anal Gazers
Arg [1] : _tokenSymbol (string): ANAL

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 416e616c2047617a657273000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 414e414c00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54340:6164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27678:305;;;;;;;;;;-1:-1:-1;27678:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27678:305:0;;;;;;;;57443:97;;;;;;;;;;-1:-1:-1;57443:97:0;;;;;:::i;:::-;;:::i;:::-;;30791:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55482:1140::-;;;;;;:::i;:::-;;:::i;32294:204::-;;;;;;;;;;-1:-1:-1;32294:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;32294:204:0;1886:203:1;31857:371:0;;;;;;;;;;-1:-1:-1;31857:371:0;;;;;:::i;:::-;;:::i;58520:129::-;;;;;;;;;;-1:-1:-1;58520:129:0;;;;;:::i;:::-;;:::i;58416:102::-;;;;;;;;;;-1:-1:-1;58416:102:0;;;;;:::i;:::-;;:::i;54637:33::-;;;;;;;;;;;;;;;;;;;3902:25:1;;;3890:2;3875:18;54637:33:0;3756:177:1;26927:303:0;;;;;;;;;;;;26784:1;27181:12;26971:7;27165:13;:28;-1:-1:-1;;27165:46:0;;26927:303;54858:39;;;;;;;;;;;;;;;;59696:159;;;;;;;;;;-1:-1:-1;59696:159:0;;;;;:::i;:::-;;:::i;56628:326::-;;;;;;;;;;-1:-1:-1;56628:326:0;;;;;:::i;:::-;;:::i;58199:102::-;;;;;;;;;;-1:-1:-1;58199:102:0;;;;;:::i;:::-;;:::i;58655:71::-;;;;;;;;;;;;;:::i;58813:70::-;;;;;;;;;;;;;:::i;59122:463::-;;;;;;;;;;;;;:::i;59861:167::-;;;;;;;;;;-1:-1:-1;59861:167:0;;;;;:::i;:::-;;:::i;54049:242::-;;;;;;;;;;-1:-1:-1;54049:242:0;;;;;:::i;:::-;;:::i;58732:76::-;;;;;;;;;;-1:-1:-1;58732:76:0;;;;;:::i;:::-;;:::i;58052:134::-;;;;;;;;;;-1:-1:-1;58052:134:0;;;;;:::i;:::-;;:::i;55057:25::-;;;;;;;;;;-1:-1:-1;55057:25:0;;;;;;;;;;;30599:125;;;;;;;;;;-1:-1:-1;30599:125:0;;;;;:::i;:::-;;:::i;28047:206::-;;;;;;;;;;-1:-1:-1;28047:206:0;;;;;:::i;:::-;;:::i;46933:103::-;;;;;;;;;;;;;:::i;58309:102::-;;;;;;;;;;-1:-1:-1;58309:102:0;;;;;:::i;:::-;;:::i;46281:87::-;;;;;;;;;;-1:-1:-1;46354:6:0;;-1:-1:-1;;;;;46354:6:0;46281:87;;54719:36;;;;;;;;;;-1:-1:-1;54719:36:0;;;;;;;;;;;;;;5245:4:1;5233:17;;;5215:36;;5203:2;5188:18;54719:36:0;5073:184:1;30960:104:0;;;;;;;;;;;;;:::i;54905:37::-;;;;;;;;;;;;;;;;32570:287;;;;;;;;;;-1:-1:-1;32570:287:0;;;;;:::i;:::-;;:::i;55087:25::-;;;;;;;;;;-1:-1:-1;55087:25:0;;;;;;;;;;;58889:107;;;;;;;;;;-1:-1:-1;58889:107:0;;;;;:::i;:::-;;:::i;60251:117::-;;;;;;;;;;-1:-1:-1;60251:117:0;;;;;:::i;:::-;;:::i;60034:210::-;;;;;;;;;;-1:-1:-1;60034:210:0;;;;;:::i;:::-;;:::i;54761:40::-;;;;;;;;;;-1:-1:-1;54761:40:0;;;;;;;;;;;57555:490;;;;;;;;;;-1:-1:-1;57555:490:0;;;;;:::i;:::-;;:::i;56960:472::-;;;;;;;;;;-1:-1:-1;56960:472:0;;;;;:::i;:::-;;:::i;54684:30::-;;;;;;;;;;-1:-1:-1;54684:30:0;;;;;;;;;;;7407:6:1;7395:19;;;7377:38;;7365:2;7350:18;54684:30:0;7233:188:1;59001:115:0;;;;;;;;;;-1:-1:-1;59001:115:0;;;;;:::i;:::-;;:::i;32928:164::-;;;;;;;;;;-1:-1:-1;32928:164:0;;;;;:::i;:::-;;:::i;47191:201::-;;;;;;;;;;-1:-1:-1;47191:201:0;;;;;:::i;:::-;;:::i;54808:43::-;;;;;;;;;;-1:-1:-1;54808:43:0;;;;;;;;;;;54950:36;;;;;;;;;;-1:-1:-1;54950:36:0;;;;;;;;27678:305;27780:4;-1:-1:-1;;;;;;27817:40:0;;-1:-1:-1;;;27817:40:0;;:105;;-1:-1:-1;;;;;;;27874:48:0;;-1:-1:-1;;;27874:48:0;27817:105;:158;;;-1:-1:-1;;;;;;;;;;17712:40:0;;;27939:36;27797:178;27678:305;-1:-1:-1;;27678:305:0:o;57443:97::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;;;;;;;;;57512:9:::1;:22:::0;;-1:-1:-1;;57512:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;57443:97::o;30791:100::-;30845:13;30878:5;30871:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30791:100;:::o;55482:1140::-;55396:9;55409:10;55396:23;55388:66;;;;-1:-1:-1;;;55388:66:0;;8639:2:1;55388:66:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:32;8697:18;;;8690:60;8767:18;;55388:66:0;8437:354:1;55388:66:0;55587:6:::1;::::0;::::1;::::0;::::1;;;55586:7;55578:43;;;::::0;-1:-1:-1;;;55578:43:0;;8998:2:1;55578:43:0::1;::::0;::::1;8980:21:1::0;9037:2;9017:18;;;9010:30;9076:25;9056:18;;;9049:53;9119:18;;55578:43:0::1;8796:347:1::0;55578:43:0::1;55666:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;55636:43;;55652:11;55636:13;26784:1:::0;27181:12;26971:7;27165:13;:28;-1:-1:-1;;27165:46:0;;26927:303;55636:13:::1;:27;;;;:::i;:::-;:43;55628:63;;;::::0;-1:-1:-1;;;55628:63:0;;9785:2:1;55628:63:0::1;::::0;::::1;9767:21:1::0;9824:1;9804:18;;;9797:29;-1:-1:-1;;;9842:18:1;;;9835:37;9889:18;;55628:63:0::1;9583:330:1::0;55628:63:0::1;55747:22;::::0;;;::::1;;;55732:11:::0;55708:21:::1;55718:10;55708:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;55699:103;;;::::0;-1:-1:-1;;;55699:103:0;;10120:2:1;55699:103:0::1;::::0;::::1;10102:21:1::0;10159:2;10139:18;;;10132:30;10198;10178:18;;;10171:58;10246:18;;55699:103:0::1;9918:352:1::0;55699:103:0::1;55857:14;;55843:11;55820:20;;:34;;;;:::i;:::-;:51;55817:759;;;55929:9;55913:11;55906:4;;:18;;;;:::i;:::-;55905:33;;55883:107;;;::::0;-1:-1:-1;;;55883:107:0;;10650:2:1;55883:107:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:54;10772:18;;55883:107:0::1;10448:348:1::0;55883:107:0::1;55817:759;;;56063:26;::::0;;;::::1;;;56049:11:::0;56025:21:::1;56035:10;56025:9;:21::i;:::-;:35;;;;:::i;:::-;:64;56021:548;;;56148:9;56132:11;56125:4;;:18;;;;:::i;:::-;56124:33;;56102:107;;;::::0;-1:-1:-1;;;56102:107:0;;10650:2:1;56102:107:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:54;10772:18;;56102:107:0::1;10448:348:1::0;56102:107:0::1;56257:18;::::0;;;::::1;;;56242:33:::0;::::1;;56220:117;;;;-1:-1:-1::0;;;56220:117:0::1;;;;;;;:::i;56021:548::-;56411:26;::::0;;;::::1;;;56396:41:::0;::::1;;56370:137;;;;-1:-1:-1::0;;;56370:137:0::1;;;;;;;:::i;:::-;56546:11;56522:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;56021:548:0::1;56582:34;56592:10;56604:11;56582:9;:34::i;:::-;55482:1140:::0;:::o;32294:204::-;32362:7;32387:16;32395:7;32387;:16::i;:::-;32382:64;;32412:34;;-1:-1:-1;;;32412:34:0;;;;;;;;;;;32382:64;-1:-1:-1;32466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32466:24:0;;32294:204::o;31857:371::-;31930:13;31946:24;31962:7;31946:15;:24::i;:::-;31930:40;;31991:5;-1:-1:-1;;;;;31985:11:0;:2;-1:-1:-1;;;;;31985:11:0;;31981:48;;32005:24;;-1:-1:-1;;;32005:24:0;;;;;;;;;;;31981:48;6153:10;-1:-1:-1;;;;;32046:21:0;;;;;;:63;;-1:-1:-1;32072:37:0;32089:5;6153:10;32928:164;:::i;32072:37::-;32071:38;32046:63;32042:138;;;32133:35;;-1:-1:-1;;;32133:35:0;;;;;;;;;;;32042:138;32192:28;32201:2;32205:7;32214:5;32192:8;:28::i;:::-;31919:309;31857:371;;:::o;58520:129::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58613:14:::1;:30:::0;58520:129::o;58416:102::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58490:9:::1;:22;58502:10:::0;58490:9;:22:::1;:::i;:::-;;58416:102:::0;:::o;59696:159::-;59797:4;-1:-1:-1;;;;;50979:18:0;;50987:10;50979:18;50975:184;;60469:24;;;;51071:61;;;51104:28;51121:10;51104:16;:28::i;:::-;59810:39:::1;59831:4;59837:2;59841:7;59810:20;:39::i;:::-;59696:159:::0;;;;:::o;56628:326::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;56711:18:::1;56739:13;26784:1:::0;27181:12;26971:7;27165:13;:28;-1:-1:-1;;27165:46:0;;26927:303;56739:13:::1;56797:9;::::0;56711:42;;-1:-1:-1;56797:9:0::1;;56768:25;56782:11:::0;56711:42;56768:25:::1;:::i;:::-;:38;;;;56760:70;;;::::0;-1:-1:-1;;;56760:70:0;;13610:2:1;56760:70:0::1;::::0;::::1;13592:21:1::0;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;56760:70:0::1;13408:343:1::0;56760:70:0::1;56838:34;56848:9;56860:11;56838:34;;:9;:34::i;58199:102::-:0;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58273:9:::1;:22;58285:10:::0;58273:9;:22:::1;:::i;58655:71::-:0;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58712:6:::1;::::0;;-1:-1:-1;;58702:16:0;::::1;58712:6;::::0;;;::::1;;;58711:7;58702:16:::0;;::::1;;::::0;;58655:71::o;58813:70::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58872:6:::1;::::0;;-1:-1:-1;;58862:16:0;::::1;58872:6:::0;;;;::::1;;;58871:7;58862:16:::0;;::::1;;::::0;;58813:70::o;59122:463::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;59407:7:::1;59428;46354:6:::0;;-1:-1:-1;;;;;46354:6:0;;46281:87;59428:7:::1;-1:-1:-1::0;;;;;59420:21:0::1;59449;59420:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59406:69;;;59490:2;59482:11;;;::::0;::::1;59861:167:::0;59966:4;-1:-1:-1;;;;;50979:18:0;;50987:10;50979:18;50975:184;;60469:24;;;;51071:61;;;51104:28;51121:10;51104:16;:28::i;:::-;59979:43:::1;60004:4;60010:2;60014:7;59979:24;:43::i;54049:242::-:0;54167:41;6153:10;54200:7;54167:18;:41::i;:::-;54159:99;;;;-1:-1:-1;;;54159:99:0;;14168:2:1;54159:99:0;;;14150:21:1;14207:2;14187:18;;;14180:30;14246:34;14226:18;;;14219:62;-1:-1:-1;;;14297:18:1;;;14290:43;14350:19;;54159:99:0;13966:409:1;54159:99:0;54269:14;54275:7;54269:5;:14::i;58732:76::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58788:4:::1;:12:::0;58732:76::o;58052:134::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58126:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58126:35:0;;::::1;::::0;;;::::1;::::0;;58052:134::o;30599:125::-;30663:7;30690:21;30703:7;30690:12;:21::i;:::-;:26;;30599:125;-1:-1:-1;;30599:125:0:o;28047:206::-;28111:7;-1:-1:-1;;;;;28135:19:0;;28131:60;;28163:28;;-1:-1:-1;;;28163:28:0;;;;;;;;;;;28131:60;-1:-1:-1;;;;;;28217:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28217:27:0;;28047:206::o;46933:103::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;46998:30:::1;47025:1;46998:18;:30::i;:::-;46933:103::o:0;58309:102::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58383:9:::1;:22;58395:10:::0;58383:9;:22:::1;:::i;30960:104::-:0;31016:13;31049:7;31042:14;;;;;:::i;32570:287::-;6153:10;-1:-1:-1;;;;;32669:24:0;;;32665:54;;32702:17;;-1:-1:-1;;;32702:17:0;;;;;;;;;;;32665:54;6153:10;32732:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32732:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32732:53:0;;;;;;;;;;32801:48;;540:41:1;;;32732:42:0;;6153:10;32801:48;;513:18:1;32801:48:0;;;;;;;32570:287;;:::o;58889:107::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;58961:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58961:27:0;;::::1;::::0;;;::::1;::::0;;58889:107::o;60251:117::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;60328:24:::1;:32:::0;;-1:-1:-1;;60328:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60251:117::o;60034:210::-;60173:4;-1:-1:-1;;;;;50979:18:0;;50987:10;50979:18;50975:184;;60469:24;;;;51071:61;;;51104:28;51121:10;51104:16;:28::i;:::-;60189:49:::1;60214:4;60220:2;60224:7;60233:4;60189:24;:49::i;:::-;60034:210:::0;;;;;:::o;57555:490::-;57654:13;57695:17;57703:8;57695:7;:17::i;:::-;57679:98;;;;-1:-1:-1;;;57679:98:0;;14582:2:1;57679:98:0;;;14564:21:1;14621:2;14601:18;;;14594:30;14660:34;14640:18;;;14633:62;-1:-1:-1;;;14711:18:1;;;14704:45;14766:19;;57679:98:0;14380:411:1;57679:98:0;57795:6;;;;;;;:15;;57805:5;57795:15;57790:50;;57827:9;57820:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57555:490;;;:::o;57790:50::-;57854:28;57885:10;:8;:10::i;:::-;57854:41;;57940:1;57915:14;57909:28;:32;:130;;;;;;;;;;;;;;;;;57977:14;57993:19;:8;:17;:19::i;:::-;58014:9;57960:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57909:130;57902:137;57555:490;-1:-1:-1;;;57555:490:0:o;56960:472::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;57059:18:::1;57087:13;26784:1:::0;27181:12;26971:7;27165:13;:28;-1:-1:-1;;27165:46:0;;26927:303;57087:13:::1;57059:42:::0;-1:-1:-1;57109:16:0::1;57130:36;57150:9:::0;57130:36:::1;::::0;::::1;;:::i;:::-;57210:9;::::0;57109:57;;-1:-1:-1;57210:9:0::1;::::0;;::::1;::::0;57181:25:::1;::::0;57109:57;;57181:25;::::1;;:::i;:::-;:38;;57173:70;;;::::0;-1:-1:-1;;;57173:70:0;;13610:2:1;57173:70:0::1;::::0;::::1;13592:21:1::0;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;57173:70:0::1;13408:343:1::0;57173:70:0::1;57256:9;57251:116;57271:20:::0;;::::1;57251:116;;;57313:42;57323:9;;57333:1;57323:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57337:17;57313:42;;:9;:42::i;:::-;57293:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57251:116;;;-1:-1:-1::0;;;;;;56960:472:0:o;59001:115::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;59077:22:::1;:31:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;59077:31:0;;::::1;::::0;;;::::1;::::0;;59001:115::o;32928:164::-;-1:-1:-1;;;;;33049:25:0;;;33025:4;33049:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32928:164::o;47191:201::-;46354:6;;-1:-1:-1;;;;;46354:6:0;6153:10;46501:23;46493:69;;;;-1:-1:-1;;;46493:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47280:22:0;::::1;47272:73;;;::::0;-1:-1:-1;;;47272:73:0;;16531:2:1;47272:73:0::1;::::0;::::1;16513:21:1::0;16570:2;16550:18;;;16543:30;16609:34;16589:18;;;16582:62;-1:-1:-1;;;16660:18:1;;;16653:36;16706:19;;47272:73:0::1;16329:402:1::0;47272:73:0::1;47356:28;47375:8;47356:18;:28::i;34908:104::-:0;34977:27;34987:2;34991:8;34977:27;;;;;;;;;;;;:9;:27::i;34280:187::-;34337:4;34380:7;26784:1;34361:26;;:53;;;;;34401:13;;34391:7;:23;34361:53;:98;;;;-1:-1:-1;;34432:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34432:27:0;;;;34431:28;;34280:187::o;42883:196::-;42998:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42998:29:0;-1:-1:-1;;;;;42998:29:0;;;;;;;;;43043:28;;42998:24;;43043:28;;;;;;;42883:196;;;:::o;51577:1359::-;51970:22;51964:4;51957:36;52063:9;52057:4;52050:23;52138:8;52132:4;52125:22;52315:4;52309;52303;52297;52270:25;52263:5;52252:68;52242:274;;52436:16;52430:4;52424;52409:44;52484:16;52478:4;52471:30;52242:274;52916:1;52910:4;52903:15;51577:1359;:::o;33159:170::-;33293:28;33303:4;33309:2;33313:7;33293:9;:28::i;33400:185::-;33538:39;33555:4;33561:2;33565:7;33538:39;;;;;;;;;;;;:16;:39::i;34635:265::-;34728:4;34745:13;34761:24;34777:7;34761:15;:24::i;:::-;34745:40;;34815:5;-1:-1:-1;;;;;34804:16:0;:7;-1:-1:-1;;;;;34804:16:0;;:52;;;;34824:32;34841:5;34848:7;34824:16;:32::i;:::-;34804:87;;;;34884:7;-1:-1:-1;;;;;34860:31:0;:20;34872:7;34860:11;:20::i;:::-;-1:-1:-1;;;;;34860:31:0;;34804:87;34796:96;34635:265;-1:-1:-1;;;;34635:265:0:o;40039:89::-;40099:21;40105:7;40114:5;40099;:21::i;29428:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29539:7:0;;26784:1;29588:23;;:47;;;;;29622:13;;29615:4;:20;29588:47;29584:886;;;29656:31;29690:17;;;:11;:17;;;;;;;;;29656:51;;;;;;;;;-1:-1:-1;;;;;29656:51:0;;;;-1:-1:-1;;;29656:51:0;;-1:-1:-1;;;;;29656:51:0;;;;;;;;-1:-1:-1;;;29656:51:0;;;;;;;;;;;;;;29726:729;;29776:14;;-1:-1:-1;;;;;29776:28:0;;29772:101;;29840:9;29428:1109;-1:-1:-1;;;29428:1109:0:o;29772:101::-;-1:-1:-1;;;30215:6:0;30260:17;;;;:11;:17;;;;;;;;;30248:29;;;;;;;;;-1:-1:-1;;;;;30248:29:0;;;;;-1:-1:-1;;;30248:29:0;;-1:-1:-1;;;;;30248:29:0;;;;;;;;-1:-1:-1;;;30248:29:0;;;;;;;;;;;;;30308:28;30304:109;;30376:9;29428:1109;-1:-1:-1;;;29428:1109:0:o;30304:109::-;30175:261;;;29637:833;29584:886;30498:31;;-1:-1:-1;;;30498:31:0;;;;;;;;;;;47552:191;47645:6;;;-1:-1:-1;;;;;47662:17:0;;;-1:-1:-1;;;;;;47662:17:0;;;;;;;47695:40;;47645:6;;;47662:17;47645:6;;47695:40;;47626:16;;47695:40;47615:128;47552:191;:::o;33656:369::-;33823:28;33833:4;33839:2;33843:7;33823:9;:28::i;:::-;-1:-1:-1;;;;;33866:13:0;;7815:19;:23;;33866:76;;;;;33886:56;33917:4;33923:2;33927:7;33936:5;33886:30;:56::i;:::-;33885:57;33866:76;33862:156;;;33966:40;;-1:-1:-1;;;33966:40:0;;;;;;;;;;;59593:97;59646:13;59675:9;59668:16;;;;;:::i;3635:723::-;3691:13;3912:5;3921:1;3912:10;3908:53;;-1:-1:-1;;3939:10:0;;;;;;;;;;;;-1:-1:-1;;;3939:10:0;;;;;3635:723::o;3908:53::-;3986:5;3971:12;4027:78;4034:9;;4027:78;;4060:8;;;;:::i;:::-;;-1:-1:-1;4083:10:0;;-1:-1:-1;4091:2:0;4083:10;;:::i;:::-;;;4027:78;;;4115:19;4147:6;-1:-1:-1;;;;;4137:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4137:17:0;;4115:39;;4165:154;4172:10;;4165:154;;4199:11;4209:1;4199:11;;:::i;:::-;;-1:-1:-1;4268:10:0;4276:2;4268:5;:10;:::i;:::-;4255:24;;:2;:24;:::i;:::-;4242:39;;4225:6;4232;4225:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4225:56:0;;;;;;;;-1:-1:-1;4296:11:0;4305:2;4296:11;;:::i;:::-;;;4165:154;;35375:163;35498:32;35504:2;35508:8;35518:5;35525:4;35498:5;:32::i;37826:2130::-;37941:35;37979:21;37992:7;37979:12;:21::i;:::-;37941:59;;38039:4;-1:-1:-1;;;;;38017:26:0;:13;:18;;;-1:-1:-1;;;;;38017:26:0;;38013:67;;38052:28;;-1:-1:-1;;;38052:28:0;;;;;;;;;;;38013:67;38093:22;6153:10;-1:-1:-1;;;;;38119:20:0;;;;:73;;-1:-1:-1;38156:36:0;38173:4;6153:10;32928:164;:::i;38156:36::-;38119:126;;;-1:-1:-1;6153:10:0;38209:20;38221:7;38209:11;:20::i;:::-;-1:-1:-1;;;;;38209:36:0;;38119:126;38093:153;;38264:17;38259:66;;38290:35;;-1:-1:-1;;;38290:35:0;;;;;;;;;;;38259:66;-1:-1:-1;;;;;38340:16:0;;38336:52;;38365:23;;-1:-1:-1;;;38365:23:0;;;;;;;;;;;38336:52;38509:35;38526:1;38530:7;38539:4;38509:8;:35::i;:::-;-1:-1:-1;;;;;38840:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38840:31:0;;;-1:-1:-1;;;;;38840:31:0;;;-1:-1:-1;;38840:31:0;;;;;;;38886:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38886:29:0;;;;;;;;;;;38966:20;;;:11;:20;;;;;;39001:18;;-1:-1:-1;;;;;;39034:49:0;;;;-1:-1:-1;;;39067:15:0;39034:49;;;;;;;;;;39357:11;;39417:24;;;;;39460:13;;38966:20;;39417:24;;39460:13;39456:384;;39670:13;;39655:11;:28;39651:174;;39708:20;;39777:28;;;;-1:-1:-1;;;;;39751:54:0;-1:-1:-1;;;39751:54:0;-1:-1:-1;;;;;;39751:54:0;;;-1:-1:-1;;;;;39708:20:0;;39751:54;;;;39651:174;38815:1036;;;39887:7;39883:2;-1:-1:-1;;;;;39868:27:0;39877:4;-1:-1:-1;;;;;39868:27:0;-1:-1:-1;;;;;;;;;;;39868:27:0;;;;;;;;;39906:42;59696:159;40357:2408;40437:35;40475:21;40488:7;40475:12;:21::i;:::-;40524:18;;40437:59;;-1:-1:-1;40555:290:0;;;;40589:22;6153:10;-1:-1:-1;;;;;40615:20:0;;;;:77;;-1:-1:-1;40656:36:0;40673:4;6153:10;32928:164;:::i;40656:36::-;40615:134;;;-1:-1:-1;6153:10:0;40713:20;40725:7;40713:11;:20::i;:::-;-1:-1:-1;;;;;40713:36:0;;40615:134;40589:161;;40772:17;40767:66;;40798:35;;-1:-1:-1;;;40798:35:0;;;;;;;;;;;40767:66;40574:271;40555:290;40973:35;40990:1;40994:7;41003:4;40973:8;:35::i;:::-;-1:-1:-1;;;;;41338:18:0;;;41304:31;41338:18;;;:12;:18;;;;;;;;41371:24;;-1:-1:-1;;;;;;;;;;41371:24:0;;;;;;;;;-1:-1:-1;;41371:24:0;;;;41410:29;;;;;41394:1;41410:29;;;;;;;;-1:-1:-1;;41410:29:0;;;;;;;;;;41572:20;;;:11;:20;;;;;;41607;;-1:-1:-1;;;;41675:15:0;41642:49;;;-1:-1:-1;;;41642:49:0;-1:-1:-1;;;;;;41642:49:0;;;;;;;;;;41706:22;-1:-1:-1;;;41706:22:0;;;41998:11;;;42058:24;;;;;42101:13;;41338:18;;42058:24;;42101:13;42097:384;;42311:13;;42296:11;:28;42292:174;;42349:20;;42418:28;;;;-1:-1:-1;;;;;42392:54:0;-1:-1:-1;;;42392:54:0;-1:-1:-1;;;;;;42392:54:0;;;-1:-1:-1;;;;;42349:20:0;;42392:54;;;;42292:174;-1:-1:-1;;42509:35:0;;42536:7;;-1:-1:-1;42532:1:0;;-1:-1:-1;;;;;;42509:35:0;;;-1:-1:-1;;;;;;;;;;;42509:35:0;42532:1;;42509:35;-1:-1:-1;;42732:12:0;:14;;;;;;-1:-1:-1;;40357:2408:0:o;43571:667::-;43755:72;;-1:-1:-1;;;43755:72:0;;43734:4;;-1:-1:-1;;;;;43755:36:0;;;;;:72;;6153:10;;43806:4;;43812:7;;43821:5;;43755:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43755:72:0;;;;;;;;-1:-1:-1;;43755:72:0;;;;;;;;;;;;:::i;:::-;;;43751:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43989:6;:13;44006:1;43989:18;43985:235;;44035:40;;-1:-1:-1;;;44035:40:0;;;;;;;;;;;43985:235;44178:6;44172:13;44163:6;44159:2;44155:15;44148:38;43751:480;-1:-1:-1;;;;;;43874:55:0;-1:-1:-1;;;43874:55:0;;-1:-1:-1;43571:667:0;;;;;;:::o;35797:1775::-;35936:20;35959:13;-1:-1:-1;;;;;35987:16:0;;35983:48;;36012:19;;-1:-1:-1;;;36012:19:0;;;;;;;;;;;35983:48;36046:8;36058:1;36046:13;36042:44;;36068:18;;-1:-1:-1;;;36068:18:0;;;;;;;;;;;36042:44;-1:-1:-1;;;;;36437:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36496:49:0;;-1:-1:-1;;;;;36437:44:0;;;;;;;36496:49;;;;-1:-1:-1;;36437:44:0;;;;;;36496:49;;;;;;;;;;;;;;;;36562:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36612:66:0;;;;-1:-1:-1;;;36662:15:0;36612:66;;;;;;;;;;36562:25;36759:23;;;36803:4;:23;;;;-1:-1:-1;;;;;;36811:13:0;;7815:19;:23;;36811:15;36799:641;;;36847:314;36878:38;;36903:12;;-1:-1:-1;;;;;36878:38:0;;;36895:1;;-1:-1:-1;;;;;;;;;;;36878:38:0;36895:1;;36878:38;36944:69;36983:1;36987:2;36991:14;;;;;;37007:5;36944:30;:69::i;:::-;36939:174;;37049:40;;-1:-1:-1;;;37049:40:0;;;;;;;;;;;36939:174;37156:3;37140:12;:19;36847:314;;37242:12;37225:13;;:29;37221:43;;37256:8;;;37221:43;36799:641;;;37305:120;37336:40;;37361:14;;;;;-1:-1:-1;;;;;37336:40:0;;;37353:1;;-1:-1:-1;;;;;;;;;;;37336:40:0;37353:1;;37336:40;37420:3;37404:12;:19;37305:120;;36799:641;-1:-1:-1;37454:13:0;:28;37504:60;59696:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2272:254;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:127::-;2592:10;2587:3;2583:20;2580:1;2573:31;2623:4;2620:1;2613:15;2647:4;2644:1;2637:15;2663:632;2728:5;-1:-1:-1;;;;;2799:2:1;2791:6;2788:14;2785:40;;;2805:18;;:::i;:::-;2880:2;2874:9;2848:2;2934:15;;-1:-1:-1;;2930:24:1;;;2956:2;2926:33;2922:42;2910:55;;;2980:18;;;3000:22;;;2977:46;2974:72;;;3026:18;;:::i;:::-;3066:10;3062:2;3055:22;3095:6;3086:15;;3125:6;3117;3110:22;3165:3;3156:6;3151:3;3147:16;3144:25;3141:45;;;3182:1;3179;3172:12;3141:45;3232:6;3227:3;3220:4;3212:6;3208:17;3195:44;3287:1;3280:4;3271:6;3263;3259:19;3255:30;3248:41;;;;2663:632;;;;;:::o;3300:451::-;3369:6;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3478:9;3465:23;-1:-1:-1;;;;;3503:6:1;3500:30;3497:50;;;3543:1;3540;3533:12;3497:50;3566:22;;3619:4;3611:13;;3607:27;-1:-1:-1;3597:55:1;;3648:1;3645;3638:12;3597:55;3671:74;3737:7;3732:2;3719:16;3714:2;3710;3706:11;3671:74;:::i;3938:328::-;4015:6;4023;4031;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4123:29;4142:9;4123:29;:::i;:::-;4113:39;;4171:38;4205:2;4194:9;4190:18;4171:38;:::i;:::-;4161:48;;4256:2;4245:9;4241:18;4228:32;4218:42;;3938:328;;;;;:::o;4271:258::-;4338:6;4346;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:28;4456:9;4438:28;:::i;:::-;4428:38;;4485;4519:2;4508:9;4504:18;4485:38;:::i;:::-;4475:48;;4271:258;;;;;:::o;4534:156::-;4600:20;;4660:4;4649:16;;4639:27;;4629:55;;4680:1;4677;4670:12;4695:182;4752:6;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:27;4861:9;4844:27;:::i;4882:186::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5033:29;5052:9;5033:29;:::i;5262:160::-;5327:20;;5383:13;;5376:21;5366:32;;5356:60;;5412:1;5409;5402:12;5427:254;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:52;;;5569:1;5566;5559:12;5521:52;5592:29;5611:9;5592:29;:::i;:::-;5582:39;;5640:35;5671:2;5660:9;5656:18;5640:35;:::i;5686:180::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;5834:26;5850:9;5834:26;:::i;5871:667::-;5966:6;5974;5982;5990;6043:3;6031:9;6022:7;6018:23;6014:33;6011:53;;;6060:1;6057;6050:12;6011:53;6083:29;6102:9;6083:29;:::i;:::-;6073:39;;6131:38;6165:2;6154:9;6150:18;6131:38;:::i;:::-;6121:48;;6216:2;6205:9;6201:18;6188:32;6178:42;;6271:2;6260:9;6256:18;6243:32;-1:-1:-1;;;;;6290:6:1;6287:30;6284:50;;;6330:1;6327;6320:12;6284:50;6353:22;;6406:4;6398:13;;6394:27;-1:-1:-1;6384:55:1;;6435:1;6432;6425:12;6384:55;6458:74;6524:7;6519:2;6506:16;6501:2;6497;6493:11;6458:74;:::i;:::-;6448:84;;;5871:667;;;;;;;:::o;6543:685::-;6636:6;6644;6652;6705:2;6693:9;6684:7;6680:23;6676:32;6673:52;;;6721:1;6718;6711:12;6673:52;6744:27;6761:9;6744:27;:::i;:::-;6734:37;;6822:2;6811:9;6807:18;6794:32;-1:-1:-1;;;;;6886:2:1;6878:6;6875:14;6872:34;;;6902:1;6899;6892:12;6872:34;6940:6;6929:9;6925:22;6915:32;;6985:7;6978:4;6974:2;6970:13;6966:27;6956:55;;7007:1;7004;6997:12;6956:55;7047:2;7034:16;7073:2;7065:6;7062:14;7059:34;;;7089:1;7086;7079:12;7059:34;7142:7;7137:2;7127:6;7124:1;7120:14;7116:2;7112:23;7108:32;7105:45;7102:65;;;7163:1;7160;7153:12;7102:65;7194:2;7190;7186:11;7176:21;;7216:6;7206:16;;;;;6543:685;;;;;:::o;7426:260::-;7494:6;7502;7555:2;7543:9;7534:7;7530:23;7526:32;7523:52;;;7571:1;7568;7561:12;7523:52;7594:29;7613:9;7594:29;:::i;7691:356::-;7893:2;7875:21;;;7912:18;;;7905:30;7971:34;7966:2;7951:18;;7944:62;8038:2;8023:18;;7691:356::o;8052:380::-;8131:1;8127:12;;;;8174;;;8195:61;;8249:4;8241:6;8237:17;8227:27;;8195:61;8302:2;8294:6;8291:14;8271:18;8268:38;8265:161;;8348:10;8343:3;8339:20;8336:1;8329:31;8383:4;8380:1;8373:15;8411:4;8408:1;8401:15;8265:161;;8052:380;;;:::o;9148:127::-;9209:10;9204:3;9200:20;9197:1;9190:31;9240:4;9237:1;9230:15;9264:4;9261:1;9254:15;9280:168;9347:6;9373:10;;;9385;;;9369:27;;9408:11;;;9405:37;;;9422:18;;:::i;:::-;9405:37;9280:168;;;;:::o;9453:125::-;9518:9;;;9539:10;;;9536:36;;;9552:18;;:::i;10275:168::-;10348:9;;;10379;;10396:15;;;10390:22;;10376:37;10366:71;;10417:18;;:::i;10801:398::-;11003:2;10985:21;;;11042:2;11022:18;;;11015:30;11081:34;11076:2;11061:18;;11054:62;-1:-1:-1;;;11147:2:1;11132:18;;11125:32;11189:3;11174:19;;10801:398::o;11330:545::-;11432:2;11427:3;11424:11;11421:448;;;11468:1;11493:5;11489:2;11482:17;11538:4;11534:2;11524:19;11608:2;11596:10;11592:19;11589:1;11585:27;11579:4;11575:38;11644:4;11632:10;11629:20;11626:47;;;-1:-1:-1;11667:4:1;11626:47;11722:2;11717:3;11713:12;11710:1;11706:20;11700:4;11696:31;11686:41;;11777:82;11795:2;11788:5;11785:13;11777:82;;;11840:17;;;11821:1;11810:13;11777:82;;12051:1352;12177:3;12171:10;-1:-1:-1;;;;;12196:6:1;12193:30;12190:56;;;12226:18;;:::i;:::-;12255:97;12345:6;12305:38;12337:4;12331:11;12305:38;:::i;:::-;12299:4;12255:97;:::i;:::-;12407:4;;12471:2;12460:14;;12488:1;12483:663;;;;13190:1;13207:6;13204:89;;;-1:-1:-1;13259:19:1;;;13253:26;13204:89;-1:-1:-1;;12008:1:1;12004:11;;;12000:24;11996:29;11986:40;12032:1;12028:11;;;11983:57;13306:81;;12453:944;;12483:663;11277:1;11270:14;;;11314:4;11301:18;;-1:-1:-1;;12519:20:1;;;12637:236;12651:7;12648:1;12645:14;12637:236;;;12740:19;;;12734:26;12719:42;;12832:27;;;;12800:1;12788:14;;;;12667:19;;12637:236;;;12641:3;12901:6;12892:7;12889:19;12886:201;;;12962:19;;;12956:26;-1:-1:-1;;13045:1:1;13041:14;;;13057:3;13037:24;13033:37;13029:42;13014:58;12999:74;;12886:201;-1:-1:-1;;;;;13133:1:1;13117:14;;;13113:22;13100:36;;-1:-1:-1;12051:1352:1:o;14796:1256::-;15020:3;15058:6;15052:13;15084:4;15097:64;15154:6;15149:3;15144:2;15136:6;15132:15;15097:64;:::i;:::-;15224:13;;15183:16;;;;15246:68;15224:13;15183:16;15281:15;;;15246:68;:::i;:::-;15403:13;;15336:20;;;15376:1;;15441:36;15403:13;15441:36;:::i;:::-;15496:1;15513:18;;;15540:141;;;;15695:1;15690:337;;;;15506:521;;15540:141;-1:-1:-1;;15575:24:1;;15561:39;;15652:16;;15645:24;15631:39;;15620:51;;;-1:-1:-1;15540:141:1;;15690:337;15721:6;15718:1;15711:17;15769:2;15766:1;15756:16;15794:1;15808:169;15822:8;15819:1;15816:15;15808:169;;;15904:14;;15889:13;;;15882:37;15947:16;;;;15839:10;;15808:169;;;15812:3;;16008:8;16001:5;15997:20;15990:27;;15506:521;-1:-1:-1;16043:3:1;;14796:1256;-1:-1:-1;;;;;;;;;;14796:1256:1:o;16057:127::-;16118:10;16113:3;16109:20;16106:1;16099:31;16149:4;16146:1;16139:15;16173:4;16170:1;16163:15;16189:135;16228:3;16249:17;;;16246:43;;16269:18;;:::i;:::-;-1:-1:-1;16316:1:1;16305:13;;16189:135::o;16736:127::-;16797:10;16792:3;16788:20;16785:1;16778:31;16828:4;16825:1;16818:15;16852:4;16849:1;16842:15;16868:120;16908:1;16934;16924:35;;16939:18;;:::i;:::-;-1:-1:-1;16973:9:1;;16868:120::o;16993:128::-;17060:9;;;17081:11;;;17078:37;;;17095:18;;:::i;17126:112::-;17158:1;17184;17174:35;;17189:18;;:::i;:::-;-1:-1:-1;17223:9:1;;17126:112::o;17243:489::-;-1:-1:-1;;;;;17512:15:1;;;17494:34;;17564:15;;17559:2;17544:18;;17537:43;17611:2;17596:18;;17589:34;;;17659:3;17654:2;17639:18;;17632:31;;;17437:4;;17680:46;;17706:19;;17698:6;17680:46;:::i;:::-;17672:54;17243:489;-1:-1:-1;;;;;;17243:489:1:o;17737:249::-;17806:6;17859:2;17847:9;17838:7;17834:23;17830:32;17827:52;;;17875:1;17872;17865:12;17827:52;17907:9;17901:16;17926:30;17950:5;17926:30;:::i

Swarm Source

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