ETH Price: $3,418.57 (-1.43%)
Gas: 3 Gwei

Token

Ape_Girls (ApeGirls_Nft)
 

Overview

Max Total Supply

1,601 ApeGirls_Nft

Holders

970

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ApeGirls_Nft
0x663c759793c279dc6ac39d956ff041bd6732eada
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:
ApeGirls

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-10-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// Sources flattened with hardhat v2.3.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = '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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, 'Strings: hex length insufficient');
        return string(buffer);
    }


    /**
     * @dev format given uint to memory string
     *
     * @param _i uint to convert
     * @return string is uint converted to string
     */
    function _uint2str(uint _i) internal pure returns (string memory) {
      if (_i == 0) {
        return "0";
      }
      uint j = _i;
      uint len;
      while (j != 0) {
        len++;
        j /= 10;
      }
      bytes memory bstr = new bytes(len);
      uint k = len;
      while (_i != 0) {
        k = k-1;
        uint8 temp = (48 + uint8(_i - _i / 10 * 10));
        bytes1 b1 = bytes1(temp);
        bstr[k] = b1;
        _i /= 10;
      }
      return string(bstr);
    }


}

// File @openzeppelin/contracts/utils/introspection/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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



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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds');
        return _ownedTokens[owner][index];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), 'ERC721URIStorage: URI set of nonexistent token');
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), 'Pausable: paused');
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), 'Pausable: not paused');
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @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), 'ERC721Burnable: caller is not owner nor approved');
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

pragma solidity ^0.8.0;

contract ApeGirls is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public maxSupply = 10000;
    uint256 public price = 20000000000000000;
    bool public saleOpen = true;
    bool public presaleOpen = false;
    string public baseURI='https://gateway.pinata.cloud/ipfs/QmeX8stgBgV73dKEFXeyqvpRkpYKadWCRugvCq91G1ZNip/';
    address princeWallet = 0x4d8D3EaF47e8eade2D65181A0F999c9ABE624EB7;


    mapping(address => uint256) public Whitelist;

    receive() external payable {}

    constructor() ERC721('Ape_Girls', 'ApeGirls_Nft') {}

    function reserveMints(address to) public onlyOwner {
        for (uint256 i = 0; i < 50; i++) internalMint(to);
    }

    function whitelistAddress(address[] memory who, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < who.length; i++) Whitelist[who[i]] = amount;
    }
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(princeWallet).transfer(balance);

    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function togglePresale() public onlyOwner {
        presaleOpen = !presaleOpen;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function internalMint(address to) internal {
        require(totalSupply() < maxSupply, 'supply depleted');
        _tokenIdCounter.increment();
        _safeMint(to, _tokenIdCounter.current());

    }

    function safeMint(address to,uint256 amount) public onlyOwner {

      require(amount <= 1000, 'only 3 per transaction allowed');
      for (uint256 i = 0; i < amount; i++) internalMint(to);
      //  internalMint(to);
    }

    function mint(uint256 amount) public payable {
        uint256 supply = totalSupply();
        if (supply + amount <=500){
          require(amount > 0);
          require(amount <= 1);
          for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
          return;
        }
        require(msg.value >= price * amount, 'not enough was paid');
        require(amount <= 10, 'only 3 per transaction allowed');
        for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
    }
    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserveMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

612710600d5566470de4df820000600e55600f805461ffff19166001179055610100604052605160808181529062002dcf60a039805162000049916010916020909101906200013d565b50601180546001600160a01b031916734d8d3eaf47e8eade2d65181a0f999c9abe624eb71790553480156200007d57600080fd5b5060408051808201825260098152684170655f4769726c7360b81b60208083019182528351808501909452600c84526b105c1951da5c9b1cd7d3999d60a21b908401528151919291620000d3916000916200013d565b508051620000e99060019060208401906200013d565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000220565b8280546200014b90620001e3565b90600052602060002090601f0160209004810192826200016f5760008555620001ba565b82601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b5b80821115620001c85760008155600101620001cd565b600181811c90821680620001f857607f821691505b602082108114156200021a57634e487b7160e01b600052602260045260246000fd5b50919050565b612b9f80620002306000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063a1448194116100ab578063d5abeb011161006f578063d5abeb0114610642578063da5f684314610658578063e985e9c514610678578063eb73900b146106c1578063f2fde38b146106ee57600080fd5b8063a1448194146105a3578063a22cb465146105c3578063b88d4fde146105e3578063bee6348a14610603578063c87b56dd1461062257600080fd5b806391b7f5ed116100f257806391b7f5ed1461052b57806395d89b411461054b57806399288dbb14610560578063a035b1fe1461057a578063a0712d681461059057600080fd5b806370a08231146104a9578063715018a6146104c95780637d8966e4146104de5780638456cb59146104f35780638da5cb5b1461050857600080fd5b80633f4ba83a116101bc57806355f804b31161018057806355f804b31461041c5780635c975abb1461043c5780636352211e146104545780636b6384db146104745780636c0360eb1461049457600080fd5b80633f4ba83a1461037a57806342842e0e1461038f57806342966c68146103af578063438b6300146103cf5780634f6ccce7146103fc57600080fd5b806318160ddd1161020357806318160ddd146102f157806323b872dd146103105780632f745c591461033057806334393743146103505780633ccfd60b1461036557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612762565b61070e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61071f565b60405161026c91906128fd565b3480156102a357600080fd5b506102b76102b23660046127e0565b6107b1565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612684565b61084b565b005b3480156102fd57600080fd5b506008545b60405190815260200161026c565b34801561031c57600080fd5b506102ef61032b366004612596565b610961565b34801561033c57600080fd5b5061030261034b366004612684565b610993565b34801561035c57600080fd5b506102ef610a29565b34801561037157600080fd5b506102ef610a76565b34801561038657600080fd5b506102ef610ae4565b34801561039b57600080fd5b506102ef6103aa366004612596565b610b1e565b3480156103bb57600080fd5b506102ef6103ca3660046127e0565b610b39565b3480156103db57600080fd5b506103ef6103ea36600461254a565b610bb3565b60405161026c91906128b9565b34801561040857600080fd5b506103026104173660046127e0565b610c71565b34801561042857600080fd5b506102ef61043736600461279a565b610d12565b34801561044857600080fd5b50600b5460ff16610260565b34801561046057600080fd5b506102b761046f3660046127e0565b610d55565b34801561048057600080fd5b506102ef61048f3660046126ad565b610dcc565b3480156104a057600080fd5b5061028a610e6c565b3480156104b557600080fd5b506103026104c436600461254a565b610efa565b3480156104d557600080fd5b506102ef610f81565b3480156104ea57600080fd5b506102ef611001565b3480156104ff57600080fd5b506102ef611045565b34801561051457600080fd5b50600b5461010090046001600160a01b03166102b7565b34801561053757600080fd5b506102ef6105463660046127e0565b61107d565b34801561055757600080fd5b5061028a6110b2565b34801561056c57600080fd5b50600f546102609060ff1681565b34801561058657600080fd5b50610302600e5481565b6102ef61059e3660046127e0565b6110c1565b3480156105af57600080fd5b506102ef6105be366004612684565b6111eb565b3480156105cf57600080fd5b506102ef6105de36600461264a565b611293565b3480156105ef57600080fd5b506102ef6105fe3660046125d1565b611358565b34801561060f57600080fd5b50600f5461026090610100900460ff1681565b34801561062e57600080fd5b5061028a61063d3660046127e0565b611390565b34801561064e57600080fd5b50610302600d5481565b34801561066457600080fd5b506102ef61067336600461254a565b61139b565b34801561068457600080fd5b50610260610693366004612564565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cd57600080fd5b506103026106dc36600461254a565b60126020526000908152604090205481565b3480156106fa57600080fd5b506102ef61070936600461254a565b6113f2565b6000610719826114ee565b92915050565b60606000805461072e90612aa7565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90612aa7565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085682610d55565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610826565b336001600160a01b03821614806108e057506108e08133610693565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610826565b61095c8383611513565b505050565b61096c335b82611581565b6109885760405162461bcd60e51b815260040161082690612997565b61095c838383611678565b600061099e83610efa565b8210610a005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610826565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610a595760405162461bcd60e51b815260040161082690612962565b600f805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03610100909104163314610aa65760405162461bcd60e51b815260040161082690612962565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610ae0573d6000803e3d6000fd5b5050565b600b546001600160a01b03610100909104163314610b145760405162461bcd60e51b815260040161082690612962565b610b1c611823565b565b61095c83838360405180602001604052806000815250611358565b610b4233610966565b610ba75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610826565b610bb0816118b6565b50565b60606000610bc083610efa565b905060008167ffffffffffffffff811115610beb57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c14578160200160208202803683370190505b50905060005b82811015610c6957610c2c8582610993565b828281518110610c4c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c6181612ae2565b915050610c1a565b509392505050565b6000610c7c60085490565b8210610cdf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610826565b60088281548110610d0057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610d425760405162461bcd60e51b815260040161082690612962565b8051610ae0906010906020840190612407565b6000818152600260205260408120546001600160a01b0316806107195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610826565b600b546001600160a01b03610100909104163314610dfc5760405162461bcd60e51b815260040161082690612962565b60005b825181101561095c578160126000858481518110610e2d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610e6490612ae2565b915050610dff565b60108054610e7990612aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea590612aa7565b8015610ef25780601f10610ec757610100808354040283529160200191610ef2565b820191906000526020600020905b815481529060010190602001808311610ed557829003601f168201915b505050505081565b60006001600160a01b038216610f655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610826565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610fb15760405162461bcd60e51b815260040161082690612962565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146110315760405162461bcd60e51b815260040161082690612962565b600f805460ff19811660ff90911615179055565b600b546001600160a01b036101009091041633146110755760405162461bcd60e51b815260040161082690612962565b610b1c6118bf565b600b546001600160a01b036101009091041633146110ad5760405162461bcd60e51b815260040161082690612962565b600e55565b60606001805461072e90612aa7565b60006110cc60085490565b90506101f46110db8383612a19565b1161112157600082116110ed57600080fd5b60018211156110fb57600080fd5b60005b8281101561095c5761110f3361193a565b8061111981612ae2565b9150506110fe565b81600e5461112f9190612a45565b3410156111745760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610826565b600a8211156111c55760405162461bcd60e51b815260206004820152601e60248201527f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006044820152606401610826565b60005b8281101561095c576111d93361193a565b806111e381612ae2565b9150506111c8565b600b546001600160a01b0361010090910416331461121b5760405162461bcd60e51b815260040161082690612962565b6103e881111561126d5760405162461bcd60e51b815260206004820152601e60248201527f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006044820152606401610826565b60005b8181101561095c576112818361193a565b8061128b81612ae2565b915050611270565b6001600160a01b0382163314156112ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610826565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113623383611581565b61137e5760405162461bcd60e51b815260040161082690612997565b61138a8484848461199f565b50505050565b6060610719826119d2565b600b546001600160a01b036101009091041633146113cb5760405162461bcd60e51b815260040161082690612962565b60005b6032811015610ae0576113e08261193a565b806113ea81612ae2565b9150506113ce565b600b546001600160a01b036101009091041633146114225760405162461bcd60e51b815260040161082690612962565b6001600160a01b0381166114875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610719575061071982611b44565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061154882610d55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610826565b600061160583610d55565b9050806001600160a01b0316846001600160a01b031614806116405750836001600160a01b0316611635846107b1565b6001600160a01b0316145b8061167057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168b82610d55565b6001600160a01b0316146116f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610826565b6001600160a01b0382166117555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610826565b611760838383611b94565b61176b600082611513565b6001600160a01b0383166000908152600360205260408120805460019290611794908490612a64565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c2908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff1661186c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610826565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610bb081611be5565b600b5460ff16156119055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610826565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118993390565b600d546008541061197f5760405162461bcd60e51b815260206004820152600f60248201526e1cdd5c1c1b1e4819195c1b195d1959608a1b6044820152606401610826565b61198d600c80546001019055565b610bb08161199a600c5490565b611c25565b6119aa848484611678565b6119b684848484611c3f565b61138a5760405162461bcd60e51b815260040161082690612910565b6000818152600260205260409020546060906001600160a01b0316611a535760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610826565b6000828152600a602052604081208054611a6c90612aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890612aa7565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b505050505090506000611af6611d4c565b9050805160001415611b09575092915050565b815115611b3b578082604051602001611b23929190612824565b60405160208183030381529060405292505050919050565b61167084611d5b565b60006001600160e01b031982166380ac58cd60e01b1480611b7557506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b0319831614610719565b600b5460ff1615611bda5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610826565b61095c838383611e53565b611bee81611f0b565b6000818152600a602052604090208054611c0790612aa7565b159050610bb0576000818152600a60205260408120610bb09161248b565b610ae0828260405180602001604052806000815250611fb2565b60006001600160a01b0384163b15611d4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8390339089908890889060040161287c565b602060405180830381600087803b158015611c9d57600080fd5b505af1925050508015611ccd575060408051601f3d908101601f19168201909252611cca9181019061277e565b60015b611d27573d808015611cfb576040519150601f19603f3d011682016040523d82523d6000602084013e611d00565b606091505b508051611d1f5760405162461bcd60e51b815260040161082690612910565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611670565b506001949350505050565b60606010805461072e90612aa7565b6000818152600260205260409020546060906001600160a01b0316611dda5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b6000611de4611d4c565b90506000815111611e045760405180602001604052806000815250611e4c565b80611e0e84611fe5565b604051602001611e1e9190612853565b60408051601f1981840301815290829052611e3c9291602001612824565b6040516020818303038152906040525b9392505050565b6001600160a01b038316611eae57611ea981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed1565b816001600160a01b0316836001600160a01b031614611ed157611ed183826120ff565b6001600160a01b038216611ee85761095c8161219c565b826001600160a01b0316826001600160a01b03161461095c5761095c8282612275565b6000611f1682610d55565b9050611f2481600084611b94565b611f2f600083611513565b6001600160a01b0381166000908152600360205260408120805460019290611f58908490612a64565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fbc83836122b9565b611fc96000848484611c3f565b61095c5760405162461bcd60e51b815260040161082690612910565b6060816120095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612033578061201d81612ae2565b915061202c9050600a83612a31565b915061200d565b60008167ffffffffffffffff81111561205c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612086576020820181803683370190505b5090505b84156116705761209b600183612a64565b91506120a8600a86612afd565b6120b3906030612a19565b60f81b8183815181106120d657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120f8600a86612a31565b945061208a565b6000600161210c84610efa565b6121169190612a64565b600083815260076020526040902054909150808214612169576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121ae90600190612a64565b600083815260096020526040812054600880549394509092849081106121e457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061221357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061228083610efa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661230f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610826565b6000818152600260205260409020546001600160a01b0316156123745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610826565b61238060008383611b94565b6001600160a01b03821660009081526003602052604081208054600192906123a9908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241390612aa7565b90600052602060002090601f016020900481019282612435576000855561247b565b82601f1061244e57805160ff191683800117855561247b565b8280016001018555821561247b579182015b8281111561247b578251825591602001919060010190612460565b506124879291506124c1565b5090565b50805461249790612aa7565b6000825580601f106124a7575050565b601f016020900490600052602060002090810190610bb091905b5b8082111561248757600081556001016124c2565b600067ffffffffffffffff8311156124f0576124f0612b3d565b612503601f8401601f19166020016129e8565b905082815283838301111561251757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461254557600080fd5b919050565b60006020828403121561255b578081fd5b611e4c8261252e565b60008060408385031215612576578081fd5b61257f8361252e565b915061258d6020840161252e565b90509250929050565b6000806000606084860312156125aa578081fd5b6125b38461252e565b92506125c16020850161252e565b9150604084013590509250925092565b600080600080608085870312156125e6578081fd5b6125ef8561252e565b93506125fd6020860161252e565b925060408501359150606085013567ffffffffffffffff81111561261f578182fd5b8501601f8101871361262f578182fd5b61263e878235602084016124d6565b91505092959194509250565b6000806040838503121561265c578182fd5b6126658361252e565b915060208301358015158114612679578182fd5b809150509250929050565b60008060408385031215612696578182fd5b61269f8361252e565b946020939093013593505050565b600080604083850312156126bf578182fd5b823567ffffffffffffffff808211156126d6578384fd5b818501915085601f8301126126e9578384fd5b81356020828211156126fd576126fd612b3d565b8160051b925061270e8184016129e8565b8281528181019085830185870184018b1015612728578889fd5b8896505b848710156127515761273d8161252e565b83526001969096019591830191830161272c565b509997909101359750505050505050565b600060208284031215612773578081fd5b8135611e4c81612b53565b60006020828403121561278f578081fd5b8151611e4c81612b53565b6000602082840312156127ab578081fd5b813567ffffffffffffffff8111156127c1578182fd5b8201601f810184136127d1578182fd5b611670848235602084016124d6565b6000602082840312156127f1578081fd5b5035919050565b60008151808452612810816020860160208601612a7b565b601f01601f19169290920160200192915050565b60008351612836818460208801612a7b565b83519083019061284a818360208801612a7b565b01949350505050565b60008251612865818460208701612a7b565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128af908301846127f8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128f1578351835292840192918401916001016128d5565b50909695505050505050565b602081526000611e4c60208301846127f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a1157612a11612b3d565b604052919050565b60008219821115612a2c57612a2c612b11565b500190565b600082612a4057612a40612b27565b500490565b6000816000190483118215151615612a5f57612a5f612b11565b500290565b600082821015612a7657612a76612b11565b500390565b60005b83811015612a96578181015183820152602001612a7e565b8381111561138a5750506000910152565b600181811c90821680612abb57607f821691505b60208210811415612adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612af657612af6612b11565b5060010190565b600082612b0c57612b0c612b27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb057600080fdfea264697066735822122063dc63997381786a496789dc44c1faa7ec1a93665b1e691081e97fa07a4c036264736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6558387374674267563733644b4546586579717670526b70594b61645743527567764371393147315a4e69702f

Deployed Bytecode

0x6080604052600436106102345760003560e01c806370a082311161012e578063a1448194116100ab578063d5abeb011161006f578063d5abeb0114610642578063da5f684314610658578063e985e9c514610678578063eb73900b146106c1578063f2fde38b146106ee57600080fd5b8063a1448194146105a3578063a22cb465146105c3578063b88d4fde146105e3578063bee6348a14610603578063c87b56dd1461062257600080fd5b806391b7f5ed116100f257806391b7f5ed1461052b57806395d89b411461054b57806399288dbb14610560578063a035b1fe1461057a578063a0712d681461059057600080fd5b806370a08231146104a9578063715018a6146104c95780637d8966e4146104de5780638456cb59146104f35780638da5cb5b1461050857600080fd5b80633f4ba83a116101bc57806355f804b31161018057806355f804b31461041c5780635c975abb1461043c5780636352211e146104545780636b6384db146104745780636c0360eb1461049457600080fd5b80633f4ba83a1461037a57806342842e0e1461038f57806342966c68146103af578063438b6300146103cf5780634f6ccce7146103fc57600080fd5b806318160ddd1161020357806318160ddd146102f157806323b872dd146103105780632f745c591461033057806334393743146103505780633ccfd60b1461036557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612762565b61070e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61071f565b60405161026c91906128fd565b3480156102a357600080fd5b506102b76102b23660046127e0565b6107b1565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612684565b61084b565b005b3480156102fd57600080fd5b506008545b60405190815260200161026c565b34801561031c57600080fd5b506102ef61032b366004612596565b610961565b34801561033c57600080fd5b5061030261034b366004612684565b610993565b34801561035c57600080fd5b506102ef610a29565b34801561037157600080fd5b506102ef610a76565b34801561038657600080fd5b506102ef610ae4565b34801561039b57600080fd5b506102ef6103aa366004612596565b610b1e565b3480156103bb57600080fd5b506102ef6103ca3660046127e0565b610b39565b3480156103db57600080fd5b506103ef6103ea36600461254a565b610bb3565b60405161026c91906128b9565b34801561040857600080fd5b506103026104173660046127e0565b610c71565b34801561042857600080fd5b506102ef61043736600461279a565b610d12565b34801561044857600080fd5b50600b5460ff16610260565b34801561046057600080fd5b506102b761046f3660046127e0565b610d55565b34801561048057600080fd5b506102ef61048f3660046126ad565b610dcc565b3480156104a057600080fd5b5061028a610e6c565b3480156104b557600080fd5b506103026104c436600461254a565b610efa565b3480156104d557600080fd5b506102ef610f81565b3480156104ea57600080fd5b506102ef611001565b3480156104ff57600080fd5b506102ef611045565b34801561051457600080fd5b50600b5461010090046001600160a01b03166102b7565b34801561053757600080fd5b506102ef6105463660046127e0565b61107d565b34801561055757600080fd5b5061028a6110b2565b34801561056c57600080fd5b50600f546102609060ff1681565b34801561058657600080fd5b50610302600e5481565b6102ef61059e3660046127e0565b6110c1565b3480156105af57600080fd5b506102ef6105be366004612684565b6111eb565b3480156105cf57600080fd5b506102ef6105de36600461264a565b611293565b3480156105ef57600080fd5b506102ef6105fe3660046125d1565b611358565b34801561060f57600080fd5b50600f5461026090610100900460ff1681565b34801561062e57600080fd5b5061028a61063d3660046127e0565b611390565b34801561064e57600080fd5b50610302600d5481565b34801561066457600080fd5b506102ef61067336600461254a565b61139b565b34801561068457600080fd5b50610260610693366004612564565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106cd57600080fd5b506103026106dc36600461254a565b60126020526000908152604090205481565b3480156106fa57600080fd5b506102ef61070936600461254a565b6113f2565b6000610719826114ee565b92915050565b60606000805461072e90612aa7565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90612aa7565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085682610d55565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610826565b336001600160a01b03821614806108e057506108e08133610693565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610826565b61095c8383611513565b505050565b61096c335b82611581565b6109885760405162461bcd60e51b815260040161082690612997565b61095c838383611678565b600061099e83610efa565b8210610a005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610826565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610a595760405162461bcd60e51b815260040161082690612962565b600f805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03610100909104163314610aa65760405162461bcd60e51b815260040161082690612962565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610ae0573d6000803e3d6000fd5b5050565b600b546001600160a01b03610100909104163314610b145760405162461bcd60e51b815260040161082690612962565b610b1c611823565b565b61095c83838360405180602001604052806000815250611358565b610b4233610966565b610ba75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610826565b610bb0816118b6565b50565b60606000610bc083610efa565b905060008167ffffffffffffffff811115610beb57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c14578160200160208202803683370190505b50905060005b82811015610c6957610c2c8582610993565b828281518110610c4c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c6181612ae2565b915050610c1a565b509392505050565b6000610c7c60085490565b8210610cdf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610826565b60088281548110610d0057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610d425760405162461bcd60e51b815260040161082690612962565b8051610ae0906010906020840190612407565b6000818152600260205260408120546001600160a01b0316806107195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610826565b600b546001600160a01b03610100909104163314610dfc5760405162461bcd60e51b815260040161082690612962565b60005b825181101561095c578160126000858481518110610e2d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610e6490612ae2565b915050610dff565b60108054610e7990612aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea590612aa7565b8015610ef25780601f10610ec757610100808354040283529160200191610ef2565b820191906000526020600020905b815481529060010190602001808311610ed557829003601f168201915b505050505081565b60006001600160a01b038216610f655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610826565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610fb15760405162461bcd60e51b815260040161082690612962565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146110315760405162461bcd60e51b815260040161082690612962565b600f805460ff19811660ff90911615179055565b600b546001600160a01b036101009091041633146110755760405162461bcd60e51b815260040161082690612962565b610b1c6118bf565b600b546001600160a01b036101009091041633146110ad5760405162461bcd60e51b815260040161082690612962565b600e55565b60606001805461072e90612aa7565b60006110cc60085490565b90506101f46110db8383612a19565b1161112157600082116110ed57600080fd5b60018211156110fb57600080fd5b60005b8281101561095c5761110f3361193a565b8061111981612ae2565b9150506110fe565b81600e5461112f9190612a45565b3410156111745760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610826565b600a8211156111c55760405162461bcd60e51b815260206004820152601e60248201527f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006044820152606401610826565b60005b8281101561095c576111d93361193a565b806111e381612ae2565b9150506111c8565b600b546001600160a01b0361010090910416331461121b5760405162461bcd60e51b815260040161082690612962565b6103e881111561126d5760405162461bcd60e51b815260206004820152601e60248201527f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006044820152606401610826565b60005b8181101561095c576112818361193a565b8061128b81612ae2565b915050611270565b6001600160a01b0382163314156112ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610826565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113623383611581565b61137e5760405162461bcd60e51b815260040161082690612997565b61138a8484848461199f565b50505050565b6060610719826119d2565b600b546001600160a01b036101009091041633146113cb5760405162461bcd60e51b815260040161082690612962565b60005b6032811015610ae0576113e08261193a565b806113ea81612ae2565b9150506113ce565b600b546001600160a01b036101009091041633146114225760405162461bcd60e51b815260040161082690612962565b6001600160a01b0381166114875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610719575061071982611b44565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061154882610d55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610826565b600061160583610d55565b9050806001600160a01b0316846001600160a01b031614806116405750836001600160a01b0316611635846107b1565b6001600160a01b0316145b8061167057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168b82610d55565b6001600160a01b0316146116f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610826565b6001600160a01b0382166117555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610826565b611760838383611b94565b61176b600082611513565b6001600160a01b0383166000908152600360205260408120805460019290611794908490612a64565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c2908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff1661186c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610826565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610bb081611be5565b600b5460ff16156119055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610826565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118993390565b600d546008541061197f5760405162461bcd60e51b815260206004820152600f60248201526e1cdd5c1c1b1e4819195c1b195d1959608a1b6044820152606401610826565b61198d600c80546001019055565b610bb08161199a600c5490565b611c25565b6119aa848484611678565b6119b684848484611c3f565b61138a5760405162461bcd60e51b815260040161082690612910565b6000818152600260205260409020546060906001600160a01b0316611a535760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610826565b6000828152600a602052604081208054611a6c90612aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890612aa7565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b505050505090506000611af6611d4c565b9050805160001415611b09575092915050565b815115611b3b578082604051602001611b23929190612824565b60405160208183030381529060405292505050919050565b61167084611d5b565b60006001600160e01b031982166380ac58cd60e01b1480611b7557506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b0319831614610719565b600b5460ff1615611bda5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610826565b61095c838383611e53565b611bee81611f0b565b6000818152600a602052604090208054611c0790612aa7565b159050610bb0576000818152600a60205260408120610bb09161248b565b610ae0828260405180602001604052806000815250611fb2565b60006001600160a01b0384163b15611d4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8390339089908890889060040161287c565b602060405180830381600087803b158015611c9d57600080fd5b505af1925050508015611ccd575060408051601f3d908101601f19168201909252611cca9181019061277e565b60015b611d27573d808015611cfb576040519150601f19603f3d011682016040523d82523d6000602084013e611d00565b606091505b508051611d1f5760405162461bcd60e51b815260040161082690612910565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611670565b506001949350505050565b60606010805461072e90612aa7565b6000818152600260205260409020546060906001600160a01b0316611dda5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b6000611de4611d4c565b90506000815111611e045760405180602001604052806000815250611e4c565b80611e0e84611fe5565b604051602001611e1e9190612853565b60408051601f1981840301815290829052611e3c9291602001612824565b6040516020818303038152906040525b9392505050565b6001600160a01b038316611eae57611ea981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed1565b816001600160a01b0316836001600160a01b031614611ed157611ed183826120ff565b6001600160a01b038216611ee85761095c8161219c565b826001600160a01b0316826001600160a01b03161461095c5761095c8282612275565b6000611f1682610d55565b9050611f2481600084611b94565b611f2f600083611513565b6001600160a01b0381166000908152600360205260408120805460019290611f58908490612a64565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fbc83836122b9565b611fc96000848484611c3f565b61095c5760405162461bcd60e51b815260040161082690612910565b6060816120095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612033578061201d81612ae2565b915061202c9050600a83612a31565b915061200d565b60008167ffffffffffffffff81111561205c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612086576020820181803683370190505b5090505b84156116705761209b600183612a64565b91506120a8600a86612afd565b6120b3906030612a19565b60f81b8183815181106120d657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120f8600a86612a31565b945061208a565b6000600161210c84610efa565b6121169190612a64565b600083815260076020526040902054909150808214612169576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121ae90600190612a64565b600083815260096020526040812054600880549394509092849081106121e457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061221357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061228083610efa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661230f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610826565b6000818152600260205260409020546001600160a01b0316156123745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610826565b61238060008383611b94565b6001600160a01b03821660009081526003602052604081208054600192906123a9908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241390612aa7565b90600052602060002090601f016020900481019282612435576000855561247b565b82601f1061244e57805160ff191683800117855561247b565b8280016001018555821561247b579182015b8281111561247b578251825591602001919060010190612460565b506124879291506124c1565b5090565b50805461249790612aa7565b6000825580601f106124a7575050565b601f016020900490600052602060002090810190610bb091905b5b8082111561248757600081556001016124c2565b600067ffffffffffffffff8311156124f0576124f0612b3d565b612503601f8401601f19166020016129e8565b905082815283838301111561251757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461254557600080fd5b919050565b60006020828403121561255b578081fd5b611e4c8261252e565b60008060408385031215612576578081fd5b61257f8361252e565b915061258d6020840161252e565b90509250929050565b6000806000606084860312156125aa578081fd5b6125b38461252e565b92506125c16020850161252e565b9150604084013590509250925092565b600080600080608085870312156125e6578081fd5b6125ef8561252e565b93506125fd6020860161252e565b925060408501359150606085013567ffffffffffffffff81111561261f578182fd5b8501601f8101871361262f578182fd5b61263e878235602084016124d6565b91505092959194509250565b6000806040838503121561265c578182fd5b6126658361252e565b915060208301358015158114612679578182fd5b809150509250929050565b60008060408385031215612696578182fd5b61269f8361252e565b946020939093013593505050565b600080604083850312156126bf578182fd5b823567ffffffffffffffff808211156126d6578384fd5b818501915085601f8301126126e9578384fd5b81356020828211156126fd576126fd612b3d565b8160051b925061270e8184016129e8565b8281528181019085830185870184018b1015612728578889fd5b8896505b848710156127515761273d8161252e565b83526001969096019591830191830161272c565b509997909101359750505050505050565b600060208284031215612773578081fd5b8135611e4c81612b53565b60006020828403121561278f578081fd5b8151611e4c81612b53565b6000602082840312156127ab578081fd5b813567ffffffffffffffff8111156127c1578182fd5b8201601f810184136127d1578182fd5b611670848235602084016124d6565b6000602082840312156127f1578081fd5b5035919050565b60008151808452612810816020860160208601612a7b565b601f01601f19169290920160200192915050565b60008351612836818460208801612a7b565b83519083019061284a818360208801612a7b565b01949350505050565b60008251612865818460208701612a7b565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128af908301846127f8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128f1578351835292840192918401916001016128d5565b50909695505050505050565b602081526000611e4c60208301846127f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a1157612a11612b3d565b604052919050565b60008219821115612a2c57612a2c612b11565b500190565b600082612a4057612a40612b27565b500490565b6000816000190483118215151615612a5f57612a5f612b11565b500290565b600082821015612a7657612a76612b11565b500390565b60005b83811015612a96578181015183820152602001612a7e565b8381111561138a5750506000910152565b600181811c90821680612abb57607f821691505b60208210811415612adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612af657612af6612b11565b5060010190565b600082612b0c57612b0c612b27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb057600080fdfea264697066735822122063dc63997381786a496789dc44c1faa7ec1a93665b1e691081e97fa07a4c036264736f6c63430008040033

Deployed Bytecode Sourcemap

50428:3871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54125:171;;;;;;;;;;-1:-1:-1;54125:171:0;;;;;:::i;:::-;;:::i;:::-;;;8215:14:1;;8208:22;8190:41;;8178:2;8163:18;54125:171:0;;;;;;;;22685:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24127:221::-;;;;;;;;;;-1:-1:-1;24127:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6873:32:1;;;6855:51;;6843:2;6828:18;24127:221:0;6810:102:1;23687:374:0;;;;;;;;;;-1:-1:-1;23687:374:0;;;;;:::i;:::-;;:::i;:::-;;36384:113;;;;;;;;;;-1:-1:-1;36472:10:0;:17;36384:113;;;18399:25:1;;;18387:2;18372:18;36384:113:0;18354:76:1;25017:339:0;;;;;;;;;;-1:-1:-1;25017:339:0;;;;;:::i;:::-;;:::i;36052:256::-;;;;;;;;;;-1:-1:-1;36052:256:0;;;;;:::i;:::-;;:::i;51804:87::-;;;;;;;;;;;;;:::i;51421:147::-;;;;;;;;;;;;;:::i;51645:65::-;;;;;;;;;;;;;:::i;25427:185::-;;;;;;;;;;-1:-1:-1;25427:185:0;;;;;:::i;:::-;;:::i;48831:245::-;;;;;;;;;;-1:-1:-1;48831:245:0;;;;;:::i;:::-;;:::i;53178:348::-;;;;;;;;;;-1:-1:-1;53178:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36574:233::-;;;;;;;;;;-1:-1:-1;36574:233:0;;;;;:::i;:::-;;:::i;51899:102::-;;;;;;;;;;-1:-1:-1;51899:102:0;;;;;:::i;:::-;;:::i;44890:86::-;;;;;;;;;;-1:-1:-1;44961:7:0;;;;44890:86;;22379:239;;;;;;;;;;-1:-1:-1;22379:239:0;;;;;:::i;:::-;;:::i;51248:167::-;;;;;;;;;;-1:-1:-1;51248:167:0;;;;;:::i;:::-;;:::i;50783:105::-;;;;;;;;;;;;;:::i;22109:208::-;;;;;;;;;;-1:-1:-1;22109:208:0;;;;;:::i;:::-;;:::i;47822:148::-;;;;;;;;;;;;;:::i;51718:78::-;;;;;;;;;;;;;:::i;51576:61::-;;;;;;;;;;;;;:::i;47171:87::-;;;;;;;;;;-1:-1:-1;47244:6:0;;;;;-1:-1:-1;;;;;47244:6:0;47171:87;;52009:88;;;;;;;;;;-1:-1:-1;52009:88:0;;;;;:::i;:::-;;:::i;22854:104::-;;;;;;;;;;;;;:::i;50711:27::-;;;;;;;;;;-1:-1:-1;50711:27:0;;;;;;;;50664:40;;;;;;;;;;;;;;;;52664:508;;;;;;:::i;:::-;;:::i;52427:229::-;;;;;;;;;;-1:-1:-1;52427:229:0;;;;;:::i;:::-;;:::i;24420:295::-;;;;;;;;;;-1:-1:-1;24420:295:0;;;;;:::i;:::-;;:::i;25683:328::-;;;;;;;;;;-1:-1:-1;25683:328:0;;;;;:::i;:::-;;:::i;50745:31::-;;;;;;;;;;-1:-1:-1;50745:31:0;;;;;;;;;;;53962:155;;;;;;;;;;-1:-1:-1;53962:155:0;;;;;:::i;:::-;;:::i;50625:32::-;;;;;;;;;;;;;;;;51121:119;;;;;;;;;;-1:-1:-1;51121:119:0;;;;;:::i;:::-;;:::i;24786:164::-;;;;;;;;;;-1:-1:-1;24786:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24907:25:0;;;24883:4;24907:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24786:164;50971:44;;;;;;;;;;-1:-1:-1;50971:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;48125:244;;;;;;;;;;-1:-1:-1;48125:244:0;;;;;:::i;:::-;;:::i;54125:171::-;54228:4;54252:36;54276:11;54252:23;:36::i;:::-;54245:43;54125:171;-1:-1:-1;;54125:171:0:o;22685:100::-;22739:13;22772:5;22765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22685:100;:::o;24127:221::-;24203:7;27610:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27610:16:0;24223:73;;;;-1:-1:-1;;;24223:73:0;;14857:2:1;24223:73:0;;;14839:21:1;14896:2;14876:18;;;14869:30;14935:34;14915:18;;;14908:62;-1:-1:-1;;;14986:18:1;;;14979:42;15038:19;;24223:73:0;;;;;;;;;-1:-1:-1;24316:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24316:24:0;;24127:221::o;23687:374::-;23768:13;23784:23;23799:7;23784:14;:23::i;:::-;23768:39;;23832:5;-1:-1:-1;;;;;23826:11:0;:2;-1:-1:-1;;;;;23826:11:0;;;23818:57;;;;-1:-1:-1;;;23818:57:0;;16457:2:1;23818:57:0;;;16439:21:1;16496:2;16476:18;;;16469:30;16535:34;16515:18;;;16508:62;-1:-1:-1;;;16586:18:1;;;16579:31;16627:19;;23818:57:0;16429:223:1;23818:57:0;16486:10;-1:-1:-1;;;;;23896:21:0;;;;:62;;-1:-1:-1;23921:37:0;23938:5;16486:10;24786:164;:::i;23921:37::-;23888:131;;;;-1:-1:-1;;;23888:131:0;;12832:2:1;23888:131:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;12981:26;12961:18;;;12954:54;13025:19;;23888:131:0;12804:246:1;23888:131:0;24032:21;24041:2;24045:7;24032:8;:21::i;:::-;23687:374;;;:::o;25017:339::-;25212:41;16486:10;25231:12;25245:7;25212:18;:41::i;:::-;25204:103;;;;-1:-1:-1;;;25204:103:0;;;;;;;:::i;:::-;25320:28;25330:4;25336:2;25340:7;25320:9;:28::i;36052:256::-;36149:7;36185:23;36202:5;36185:16;:23::i;:::-;36177:5;:31;36169:87;;;;-1:-1:-1;;;36169:87:0;;9361:2:1;36169:87:0;;;9343:21:1;9400:2;9380:18;;;9373:30;9439:34;9419:18;;;9412:62;-1:-1:-1;;;9490:18:1;;;9483:41;9541:19;;36169:87:0;9333:233:1;36169:87:0;-1:-1:-1;;;;;;36274:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36052:256::o;51804:87::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51872:11:::1;::::0;;-1:-1:-1;;51857:26:0;::::1;51872:11;::::0;;;::::1;;;51871:12;51857:26:::0;;::::1;;::::0;;51804:87::o;51421:147::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51527:12:::1;::::0;51519:39:::1;::::0;51487:21:::1;::::0;-1:-1:-1;;;;;51527:12:0::1;::::0;51519:39;::::1;;;::::0;51487:21;;51469:15:::1;51519:39:::0;51469:15;51519:39;51487:21;51527:12;51519:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47462:1;51421:147::o:0;51645:65::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51692:10:::1;:8;:10::i;:::-;51645:65::o:0;25427:185::-;25565:39;25582:4;25588:2;25592:7;25565:39;;;;;;;;;;;;:16;:39::i;48831:245::-;48949:41;16486:10;48968:12;16406:98;48949:41;48941:102;;;;-1:-1:-1;;;48941:102:0;;18038:2:1;48941:102:0;;;18020:21:1;18077:2;18057:18;;;18050:30;18116:34;18096:18;;;18089:62;-1:-1:-1;;;18167:18:1;;;18160:46;18223:19;;48941:102:0;18010:238:1;48941:102:0;49054:14;49060:7;49054:5;:14::i;:::-;48831:245;:::o;53178:348::-;53253:16;53281:23;53307:17;53317:6;53307:9;:17::i;:::-;53281:43;;53331:25;53373:15;53359:30;;;;;;-1:-1:-1;;;53359:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53359:30:0;;53331:58;;53401:9;53396:103;53416:15;53412:1;:19;53396:103;;;53461:30;53481:6;53489:1;53461:19;:30::i;:::-;53447:8;53456:1;53447:11;;;;;;-1:-1:-1;;;53447:11:0;;;;;;;;;;;;;;;;;;:44;53433:3;;;;:::i;:::-;;;;53396:103;;;-1:-1:-1;53512:8:0;53178:348;-1:-1:-1;;;53178:348:0:o;36574:233::-;36649:7;36685:30;36472:10;:17;;36384:113;36685:30;36677:5;:38;36669:95;;;;-1:-1:-1;;;36669:95:0;;17625:2:1;36669:95:0;;;17607:21:1;17664:2;17644:18;;;17637:30;17703:34;17683:18;;;17676:62;-1:-1:-1;;;17754:18:1;;;17747:42;17806:19;;36669:95:0;17597:234:1;36669:95:0;36782:10;36793:5;36782:17;;;;;;-1:-1:-1;;;36782:17:0;;;;;;;;;;;;;;;;;36775:24;;36574:233;;;:::o;51899:102::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51973:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;22379:239::-:0;22451:7;22487:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22487:16:0;22522:19;22514:73;;;;-1:-1:-1;;;22514:73:0;;13668:2:1;22514:73:0;;;13650:21:1;13707:2;13687:18;;;13680:30;13746:34;13726:18;;;13719:62;-1:-1:-1;;;13797:18:1;;;13790:39;13846:19;;22514:73:0;13640:231:1;51248:167:0;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51345:9:::1;51340:67;51364:3;:10;51360:1;:14;51340:67;;;51401:6;51381:9;:17;51391:3;51395:1;51391:6;;;;;;-1:-1:-1::0;;;51391:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51381:17:0::1;-1:-1:-1::0;;;;;51381:17:0::1;;;;;;;;;;;;:26;;;;51376:3;;;;;:::i;:::-;;;;51340:67;;50783:105:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22109:208::-;22181:7;-1:-1:-1;;;;;22209:19:0;;22201:74;;;;-1:-1:-1;;;22201:74:0;;13257:2:1;22201:74:0;;;13239:21:1;13296:2;13276:18;;;13269:30;13335:34;13315:18;;;13308:62;-1:-1:-1;;;13386:18:1;;;13379:40;13436:19;;22201:74:0;13229:232:1;22201:74:0;-1:-1:-1;;;;;;22293:16:0;;;;;:9;:16;;;;;;;22109:208::o;47822:148::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;47913:6:::1;::::0;47892:40:::1;::::0;47929:1:::1;::::0;47913:6:::1;::::0;::::1;-1:-1:-1::0;;;;;47913:6:0::1;::::0;47892:40:::1;::::0;47929:1;;47892:40:::1;47943:6;:19:::0;;-1:-1:-1;;;;;;47943:19:0::1;::::0;;47822:148::o;51718:78::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51780:8:::1;::::0;;-1:-1:-1;;51768:20:0;::::1;51780:8;::::0;;::::1;51779:9;51768:20;::::0;;51718:78::o;51576:61::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51621:8:::1;:6;:8::i;52009:88::-:0;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;52073:5:::1;:16:::0;52009:88::o;22854:104::-;22910:13;22943:7;22936:14;;;;;:::i;52664:508::-;52720:14;52737:13;36472:10;:17;;36384:113;52737:13;52720:30;-1:-1:-1;52783:3:0;52765:15;52774:6;52720:30;52765:15;:::i;:::-;:21;52761:196;;52817:1;52808:6;:10;52800:19;;;;;;52850:1;52840:6;:11;;52832:20;;;;;;52870:9;52865:61;52889:6;52885:1;:10;52865:61;;;52902:24;52915:10;52902:12;:24::i;:::-;52897:3;;;;:::i;:::-;;;;52865:61;;52761:196;52996:6;52988:5;;:14;;;;:::i;:::-;52975:9;:27;;52967:59;;;;-1:-1:-1;;;52967:59:0;;16859:2:1;52967:59:0;;;16841:21:1;16898:2;16878:18;;;16871:30;-1:-1:-1;;;16917:18:1;;;16910:49;16976:18;;52967:59:0;16831:169:1;52967:59:0;53055:2;53045:6;:12;;53037:55;;;;-1:-1:-1;;;53037:55:0;;10956:2:1;53037:55:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:32;11014:18;;;11007:60;11084:18;;53037:55:0;10928:180:1;53037:55:0;53108:9;53103:61;53127:6;53123:1;:10;53103:61;;;53140:24;53153:10;53140:12;:24::i;:::-;53135:3;;;;:::i;:::-;;;;53103:61;;52427:229;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;52518:4:::1;52508:6;:14;;52500:57;;;::::0;-1:-1:-1;;;52500:57:0;;10956:2:1;52500:57:0::1;::::0;::::1;10938:21:1::0;10995:2;10975:18;;;10968:30;11034:32;11014:18;;;11007:60;11084:18;;52500:57:0::1;10928:180:1::0;52500:57:0::1;52571:9;52566:53;52590:6;52586:1;:10;52566:53;;;52603:16;52616:2;52603:12;:16::i;:::-;52598:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52566:53;;24420:295:::0;-1:-1:-1;;;;;24523:24:0;;16486:10;24523:24;;24515:62;;;;-1:-1:-1;;;24515:62:0;;11720:2:1;24515:62:0;;;11702:21:1;11759:2;11739:18;;;11732:30;11798:27;11778:18;;;11771:55;11843:18;;24515:62:0;11692:175:1;24515:62:0;16486:10;24590:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24590:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24590:53:0;;;;;;;;;;24659:48;;8190:41:1;;;24590:42:0;;16486:10;24659:48;;8163:18:1;24659:48:0;;;;;;;24420:295;;:::o;25683:328::-;25858:41;16486:10;25891:7;25858:18;:41::i;:::-;25850:103;;;;-1:-1:-1;;;25850:103:0;;;;;;;:::i;:::-;25964:39;25978:4;25984:2;25988:7;25997:5;25964:13;:39::i;:::-;25683:328;;;;:::o;53962:155::-;54053:13;54086:23;54101:7;54086:14;:23::i;51121:119::-;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;51188:9:::1;51183:49;51207:2;51203:1;:6;51183:49;;;51216:16;51229:2;51216:12;:16::i;:::-;51211:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51183:49;;48125:244:::0;47244:6;;-1:-1:-1;;;;;47244:6:0;;;;;16486:10;47391:23;47383:68;;;;-1:-1:-1;;;47383:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48214:22:0;::::1;48206:73;;;::::0;-1:-1:-1;;;48206:73:0;;10192:2:1;48206:73:0::1;::::0;::::1;10174:21:1::0;10231:2;10211:18;;;10204:30;10270:34;10250:18;;;10243:62;-1:-1:-1;;;10321:18:1;;;10314:36;10367:19;;48206:73:0::1;10164:228:1::0;48206:73:0::1;48316:6;::::0;48295:38:::1;::::0;-1:-1:-1;;;;;48295:38:0;;::::1;::::0;48316:6:::1;::::0;::::1;;::::0;48295:38:::1;::::0;;;::::1;48344:6;:17:::0;;-1:-1:-1;;;;;48344:17:0;;::::1;;;-1:-1:-1::0;;;;;;48344:17:0;;::::1;::::0;;;::::1;::::0;;48125:244::o;35744:224::-;35846:4;-1:-1:-1;;;;;;35870:50:0;;-1:-1:-1;;;35870:50:0;;:90;;;35924:36;35948:11;35924:23;:36::i;31468:174::-;31543:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31543:29:0;-1:-1:-1;;;;;31543:29:0;;;;;;;;:24;;31597:23;31543:24;31597:14;:23::i;:::-;-1:-1:-1;;;;;31588:46:0;;;;;;;;;;;31468:174;;:::o;27815:348::-;27908:4;27610:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27610:16:0;27925:73;;;;-1:-1:-1;;;27925:73:0;;12074:2:1;27925:73:0;;;12056:21:1;12113:2;12093:18;;;12086:30;12152:34;12132:18;;;12125:62;-1:-1:-1;;;12203:18:1;;;12196:42;12255:19;;27925:73:0;12046:234:1;27925:73:0;28009:13;28025:23;28040:7;28025:14;:23::i;:::-;28009:39;;28078:5;-1:-1:-1;;;;;28067:16:0;:7;-1:-1:-1;;;;;28067:16:0;;:51;;;;28111:7;-1:-1:-1;;;;;28087:31:0;:20;28099:7;28087:11;:20::i;:::-;-1:-1:-1;;;;;28087:31:0;;28067:51;:87;;;-1:-1:-1;;;;;;24907:25:0;;;24883:4;24907:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28122:32;28059:96;27815:348;-1:-1:-1;;;;27815:348:0:o;30772:578::-;30931:4;-1:-1:-1;;;;;30904:31:0;:23;30919:7;30904:14;:23::i;:::-;-1:-1:-1;;;;;30904:31:0;;30896:85;;;;-1:-1:-1;;;30896:85:0;;15631:2:1;30896:85:0;;;15613:21:1;15670:2;15650:18;;;15643:30;15709:34;15689:18;;;15682:62;-1:-1:-1;;;15760:18:1;;;15753:39;15809:19;;30896:85:0;15603:231:1;30896:85:0;-1:-1:-1;;;;;31000:16:0;;30992:65;;;;-1:-1:-1;;;30992:65:0;;11315:2:1;30992:65:0;;;11297:21:1;11354:2;11334:18;;;11327:30;11393:34;11373:18;;;11366:62;-1:-1:-1;;;11444:18:1;;;11437:34;11488:19;;30992:65:0;11287:226:1;30992:65:0;31070:39;31091:4;31097:2;31101:7;31070:20;:39::i;:::-;31174:29;31191:1;31195:7;31174:8;:29::i;:::-;-1:-1:-1;;;;;31216:15:0;;;;;;:9;:15;;;;;:20;;31235:1;;31216:15;:20;;31235:1;;31216:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31247:13:0;;;;;;:9;:13;;;;;:18;;31264:1;;31247:13;:18;;31264:1;;31247:18;:::i;:::-;;;;-1:-1:-1;;31276:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31276:21:0;-1:-1:-1;;;;;31276:21:0;;;;;;;;;31315:27;;31276:16;;31315:27;;;;;;;30772:578;;;:::o;45949:120::-;44961:7;;;;45485:41;;;;-1:-1:-1;;;45485:41:0;;8668:2:1;45485:41:0;;;8650:21:1;8707:2;8687:18;;;8680:30;-1:-1:-1;;;8726:18:1;;;8719:50;8786:18;;45485:41:0;8640:170:1;45485:41:0;46008:7:::1;:15:::0;;-1:-1:-1;;46008:15:0::1;::::0;;46039:22:::1;16486:10:::0;46048:12:::1;46039:22;::::0;-1:-1:-1;;;;;6873:32:1;;;6855:51;;6843:2;6828:18;46039:22:0::1;;;;;;;45949:120::o:0;53839:115::-;53926:20;53938:7;53926:11;:20::i;45690:118::-;44961:7;;;;45215:9;45207:38;;;;-1:-1:-1;;;45207:38:0;;12487:2:1;45207:38:0;;;12469:21:1;12526:2;12506:18;;;12499:30;-1:-1:-1;;;12545:18:1;;;12538:46;12601:18;;45207:38:0;12459:166:1;45207:38:0;45750:7:::1;:14:::0;;-1:-1:-1;;45750:14:0::1;45760:4;45750:14;::::0;;45780:20:::1;45787:12;16486:10:::0;;16406:98;52213:206;52291:9;;36472:10;:17;52275:25;52267:53;;;;-1:-1:-1;;;52267:53:0;;9017:2:1;52267:53:0;;;8999:21:1;9056:2;9036:18;;;9029:30;-1:-1:-1;;;9075:18:1;;;9068:45;9130:18;;52267:53:0;8989:165:1;52267:53:0;52331:27;:15;50113:19;;50131:1;50113:19;;;50024:127;52331:27;52369:40;52379:2;52383:25;:15;49994:14;;49902:114;52383:25;52369:9;:40::i;26893:315::-;27050:28;27060:4;27066:2;27070:7;27050:9;:28::i;:::-;27097:48;27120:4;27126:2;27130:7;27139:5;27097:22;:48::i;:::-;27089:111;;;;-1:-1:-1;;;27089:111:0;;;;;;;:::i;42322:679::-;27586:4;27610:16;;;:7;:16;;;;;;42395:13;;-1:-1:-1;;;;;27610:16:0;42421:78;;;;-1:-1:-1;;;42421:78:0;;14439:2:1;42421:78:0;;;14421:21:1;14478:2;14458:18;;;14451:30;14517:34;14497:18;;;14490:62;-1:-1:-1;;;14568:18:1;;;14561:47;14625:19;;42421:78:0;14411:239:1;42421:78:0;42512:23;42538:19;;;:10;:19;;;;;42512:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42568:18;42589:10;:8;:10::i;:::-;42568:31;;42681:4;42675:18;42697:1;42675:23;42671:72;;;-1:-1:-1;42722:9:0;42322:679;-1:-1:-1;;42322:679:0:o;42671:72::-;42847:23;;:27;42843:108;;42922:4;42928:9;42905:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42891:48;;;;42322:679;;;:::o;42843:108::-;42970:23;42985:7;42970:14;:23::i;21779:266::-;21881:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:92;;-1:-1:-1;;;;;;;21949:48:0;;-1:-1:-1;;;21949:48:0;21905:92;:132;;;-1:-1:-1;;;;;;;;;;20404:40:0;;;22001:36;20295:157;53532:229;44961:7;;;;45215:9;45207:38;;;;-1:-1:-1;;;45207:38:0;;12487:2:1;45207:38:0;;;12469:21:1;12526:2;12506:18;;;12499:30;-1:-1:-1;;;12545:18:1;;;12538:46;12601:18;;45207:38:0;12459:166:1;45207:38:0;53708:45:::1;53735:4;53741:2;53745:7;53708:26;:45::i;43603:206::-:0;43672:20;43684:7;43672:11;:20::i;:::-;43715:19;;;;:10;:19;;;;;43709:33;;;;;:::i;:::-;:38;;-1:-1:-1;43705:97:0;;43771:19;;;;:10;:19;;;;;43764:26;;;:::i;28507:110::-;28583:26;28593:2;28597:7;28583:26;;;;;;;;;;;;:9;:26::i;32207:872::-;32362:4;-1:-1:-1;;;;;32383:13:0;;8667:20;8715:8;32379:693;;32419:72;;-1:-1:-1;;;32419:72:0;;-1:-1:-1;;;;;32419:36:0;;;;;:72;;16486:10;;32470:4;;32476:7;;32485:5;;32419:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32419:72:0;;;;;;;;-1:-1:-1;;32419:72:0;;;;;;;;;;;;:::i;:::-;;;32415:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32665:13:0;;32661:341;;32708:60;;-1:-1:-1;;;32708:60:0;;;;;;;:::i;32661:341::-;32952:6;32946:13;32937:6;32933:2;32929:15;32922:38;32415:602;-1:-1:-1;;;;;;32542:55:0;-1:-1:-1;;;32542:55:0;;-1:-1:-1;32535:62:0;;32379:693;-1:-1:-1;33056:4:0;32207:872;;;;;;:::o;52105:100::-;52157:13;52190:7;52183:14;;;;;:::i;23033:361::-;27586:4;27610:16;;;:7;:16;;;;;;23106:13;;-1:-1:-1;;;;;27610:16:0;23132:76;;;;-1:-1:-1;;;23132:76:0;;16041:2:1;23132:76:0;;;16023:21:1;16080:2;16060:18;;;16053:30;16119:34;16099:18;;;16092:62;-1:-1:-1;;;16170:18:1;;;16163:45;16225:19;;23132:76:0;16013:237:1;23132:76:0;23221:21;23245:10;:8;:10::i;:::-;23221:34;;23297:1;23279:7;23273:21;:25;:113;;;;;;;;;;;;;;;;;23325:7;23351:18;:7;:16;:18::i;:::-;23334:45;;;;;;;;:::i;:::-;;;;-1:-1:-1;;23334:45:0;;;;;;;;;;23308:72;;;23334:45;23308:72;;:::i;:::-;;;;;;;;;;;;;23273:113;23266:120;23033:361;-1:-1:-1;;;23033:361:0:o;37420:589::-;-1:-1:-1;;;;;37626:18:0;;37622:187;;37661:40;37693:7;38836:10;:17;;38809:24;;;;:15;:24;;;;;:44;;;38864:24;;;;;;;;;;;;38732:164;37661:40;37622:187;;;37731:2;-1:-1:-1;;;;;37723:10:0;:4;-1:-1:-1;;;;;37723:10:0;;37719:90;;37750:47;37783:4;37789:7;37750:32;:47::i;:::-;-1:-1:-1;;;;;37823:16:0;;37819:183;;37856:45;37893:7;37856:36;:45::i;37819:183::-;37929:4;-1:-1:-1;;;;;37923:10:0;:2;-1:-1:-1;;;;;37923:10:0;;37919:83;;37950:40;37978:2;37982:7;37950:27;:40::i;30075:360::-;30135:13;30151:23;30166:7;30151:14;:23::i;:::-;30135:39;;30187:48;30208:5;30223:1;30227:7;30187:20;:48::i;:::-;30276:29;30293:1;30297:7;30276:8;:29::i;:::-;-1:-1:-1;;;;;30318:16:0;;;;;;:9;:16;;;;;:21;;30338:1;;30318:16;:21;;30338:1;;30318:21;:::i;:::-;;;;-1:-1:-1;;30357:16:0;;;;:7;:16;;;;;;30350:23;;-1:-1:-1;;;;;;30350:23:0;;;30391:36;30365:7;;30357:16;-1:-1:-1;;;;;30391:36:0;;;;;30357:16;;30391:36;30075:360;;:::o;28844:284::-;28974:18;28980:2;28984:7;28974:5;:18::i;:::-;29011:54;29042:1;29046:2;29050:7;29059:5;29011:22;:54::i;:::-;29003:117;;;;-1:-1:-1;;;29003:117:0;;;;;;;:::i;17063:723::-;17119:13;17340:10;17336:53;;-1:-1:-1;;17367:10:0;;;;;;;;;;;;-1:-1:-1;;;17367:10:0;;;;;17063:723::o;17336:53::-;17414:5;17399:12;17455:78;17462:9;;17455:78;;17488:8;;;;:::i;:::-;;-1:-1:-1;17511:10:0;;-1:-1:-1;17519:2:0;17511:10;;:::i;:::-;;;17455:78;;;17543:19;17575:6;17565:17;;;;;;-1:-1:-1;;;17565:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17565:17:0;;17543:39;;17593:154;17600:10;;17593:154;;17627:11;17637:1;17627:11;;:::i;:::-;;-1:-1:-1;17696:10:0;17704:2;17696:5;:10;:::i;:::-;17683:24;;:2;:24;:::i;:::-;17670:39;;17653:6;17660;17653:14;;;;;;-1:-1:-1;;;17653:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17653:56:0;;;;;;;;-1:-1:-1;17724:11:0;17733:2;17724:11;;:::i;:::-;;;17593:154;;39523:988;39789:22;39839:1;39814:22;39831:4;39814:16;:22::i;:::-;:26;;;;:::i;:::-;39851:18;39872:26;;;:17;:26;;;;;;39789:51;;-1:-1:-1;40005:28:0;;;40001:328;;-1:-1:-1;;;;;40072:18:0;;40050:19;40072:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40123:30;;;;;;:44;;;40240:30;;:17;:30;;;;;:43;;;40001:328;-1:-1:-1;40425:26:0;;;;:17;:26;;;;;;;;40418:33;;;-1:-1:-1;;;;;40469:18:0;;;;;:12;:18;;;;;:34;;;;;;;40462:41;39523:988::o;40806:1079::-;41084:10;:17;41059:22;;41084:21;;41104:1;;41084:21;:::i;:::-;41116:18;41137:24;;;:15;:24;;;;;;41510:10;:26;;41059:46;;-1:-1:-1;41137:24:0;;41059:46;;41510:26;;;;-1:-1:-1;;;41510:26:0;;;;;;;;;;;;;;;;;41488:48;;41574:11;41549:10;41560;41549:22;;;;;;-1:-1:-1;;;41549:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41654:28;;;:15;:28;;;;;;;:41;;;41826:24;;;;;41819:31;41861:10;:16;;;;;-1:-1:-1;;;41861:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40806:1079;;;;:::o;38310:221::-;38395:14;38412:20;38429:2;38412:16;:20::i;:::-;-1:-1:-1;;;;;38443:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38488:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38310:221:0:o;29464:382::-;-1:-1:-1;;;;;29544:16:0;;29536:61;;;;-1:-1:-1;;;29536:61:0;;14078:2:1;29536:61:0;;;14060:21:1;;;14097:18;;;14090:30;14156:34;14136:18;;;14129:62;14208:18;;29536:61:0;14050:182:1;29536:61:0;27586:4;27610:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27610:16:0;:30;29608:58;;;;-1:-1:-1;;;29608:58:0;;10599:2:1;29608:58:0;;;10581:21:1;10638:2;10618:18;;;10611:30;10677;10657:18;;;10650:58;10725:18;;29608:58:0;10571:178:1;29608:58:0;29679:45;29708:1;29712:2;29716:7;29679:20;:45::i;:::-;-1:-1:-1;;;;;29737:13:0;;;;;;:9;:13;;;;;:18;;29754:1;;29737:13;:18;;29754:1;;29737:18;:::i;:::-;;;;-1:-1:-1;;29766:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29766:21:0;-1:-1:-1;;;;;29766:21:0;;;;;;;;29805:33;;29766:16;;;29805:33;;29766:16;;29805:33;29464:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:196::-;662:6;715:2;703:9;694:7;690:23;686:32;683:2;;;736:6;728;721:22;683:2;764:29;783:9;764:29;:::i;804:270::-;872:6;880;933:2;921:9;912:7;908:23;904:32;901:2;;;954:6;946;939:22;901:2;982:29;1001:9;982:29;:::i;:::-;972:39;;1030:38;1064:2;1053:9;1049:18;1030:38;:::i;:::-;1020:48;;891:183;;;;;:::o;1079:338::-;1156:6;1164;1172;1225:2;1213:9;1204:7;1200:23;1196:32;1193:2;;;1246:6;1238;1231:22;1193:2;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1407:2;1396:9;1392:18;1379:32;1369:42;;1183:234;;;;;:::o;1422:696::-;1517:6;1525;1533;1541;1594:3;1582:9;1573:7;1569:23;1565:33;1562:2;;;1616:6;1608;1601:22;1562:2;1644:29;1663:9;1644:29;:::i;:::-;1634:39;;1692:38;1726:2;1715:9;1711:18;1692:38;:::i;:::-;1682:48;;1777:2;1766:9;1762:18;1749:32;1739:42;;1832:2;1821:9;1817:18;1804:32;1859:18;1851:6;1848:30;1845:2;;;1896:6;1888;1881:22;1845:2;1924:22;;1977:4;1969:13;;1965:27;-1:-1:-1;1955:2:1;;2011:6;2003;1996:22;1955:2;2039:73;2104:7;2099:2;2086:16;2081:2;2077;2073:11;2039:73;:::i;:::-;2029:83;;;1552:566;;;;;;;:::o;2123:367::-;2188:6;2196;2249:2;2237:9;2228:7;2224:23;2220:32;2217:2;;;2270:6;2262;2255:22;2217:2;2298:29;2317:9;2298:29;:::i;:::-;2288:39;;2377:2;2366:9;2362:18;2349:32;2424:5;2417:13;2410:21;2403:5;2400:32;2390:2;;2451:6;2443;2436:22;2390:2;2479:5;2469:15;;;2207:283;;;;;:::o;2495:264::-;2563:6;2571;2624:2;2612:9;2603:7;2599:23;2595:32;2592:2;;;2645:6;2637;2630:22;2592:2;2673:29;2692:9;2673:29;:::i;:::-;2663:39;2749:2;2734:18;;;;2721:32;;-1:-1:-1;;;2582:177:1:o;2764:1078::-;2857:6;2865;2918:2;2906:9;2897:7;2893:23;2889:32;2886:2;;;2939:6;2931;2924:22;2886:2;2984:9;2971:23;3013:18;3054:2;3046:6;3043:14;3040:2;;;3075:6;3067;3060:22;3040:2;3118:6;3107:9;3103:22;3093:32;;3163:7;3156:4;3152:2;3148:13;3144:27;3134:2;;3190:6;3182;3175:22;3134:2;3231;3218:16;3253:4;3276:2;3272;3269:10;3266:2;;;3282:18;;:::i;:::-;3328:2;3325:1;3321:10;3311:20;;3351:28;3375:2;3371;3367:11;3351:28;:::i;:::-;3413:15;;;3444:12;;;;3476:11;;;3506;;;3502:20;;3499:33;-1:-1:-1;3496:2:1;;;3550:6;3542;3535:22;3496:2;3577:6;3568:15;;3592:169;3606:2;3603:1;3600:9;3592:169;;;3663:23;3682:3;3663:23;:::i;:::-;3651:36;;3624:1;3617:9;;;;;3707:12;;;;3739;;3592:169;;;-1:-1:-1;3780:5:1;3817:18;;;;3804:32;;-1:-1:-1;;;;;;;2876:966:1:o;3847:255::-;3905:6;3958:2;3946:9;3937:7;3933:23;3929:32;3926:2;;;3979:6;3971;3964:22;3926:2;4023:9;4010:23;4042:30;4066:5;4042:30;:::i;4107:259::-;4176:6;4229:2;4217:9;4208:7;4204:23;4200:32;4197:2;;;4250:6;4242;4235:22;4197:2;4287:9;4281:16;4306:30;4330:5;4306:30;:::i;4371:480::-;4440:6;4493:2;4481:9;4472:7;4468:23;4464:32;4461:2;;;4514:6;4506;4499:22;4461:2;4559:9;4546:23;4592:18;4584:6;4581:30;4578:2;;;4629:6;4621;4614:22;4578:2;4657:22;;4710:4;4702:13;;4698:27;-1:-1:-1;4688:2:1;;4744:6;4736;4729:22;4688:2;4772:73;4837:7;4832:2;4819:16;4814:2;4810;4806:11;4772:73;:::i;4856:190::-;4915:6;4968:2;4956:9;4947:7;4943:23;4939:32;4936:2;;;4989:6;4981;4974:22;4936:2;-1:-1:-1;5017:23:1;;4926:120;-1:-1:-1;4926:120:1:o;5051:257::-;5092:3;5130:5;5124:12;5157:6;5152:3;5145:19;5173:63;5229:6;5222:4;5217:3;5213:14;5206:4;5199:5;5195:16;5173:63;:::i;:::-;5290:2;5269:15;-1:-1:-1;;5265:29:1;5256:39;;;;5297:4;5252:50;;5100:208;-1:-1:-1;;5100:208:1:o;5313:468::-;5490:3;5528:6;5522:13;5544:53;5590:6;5585:3;5578:4;5570:6;5566:17;5544:53;:::i;:::-;5660:13;;5619:16;;;;5682:57;5660:13;5619:16;5716:4;5704:17;;5682:57;:::i;:::-;5755:20;;5498:283;-1:-1:-1;;;;5498:283:1:o;6261:443::-;6493:3;6531:6;6525:13;6547:53;6593:6;6588:3;6581:4;6573:6;6569:17;6547:53;:::i;:::-;-1:-1:-1;;;6622:16:1;;6647:22;;;-1:-1:-1;6696:1:1;6685:13;;6501:203;-1:-1:-1;6501:203:1:o;6917:488::-;-1:-1:-1;;;;;7186:15:1;;;7168:34;;7238:15;;7233:2;7218:18;;7211:43;7285:2;7270:18;;7263:34;;;7333:3;7328:2;7313:18;;7306:31;;;7111:4;;7354:45;;7379:19;;7371:6;7354:45;:::i;:::-;7346:53;7120:285;-1:-1:-1;;;;;;7120:285:1:o;7410:635::-;7581:2;7633:21;;;7703:13;;7606:18;;;7725:22;;;7552:4;;7581:2;7804:15;;;;7778:2;7763:18;;;7552:4;7850:169;7864:6;7861:1;7858:13;7850:169;;;7925:13;;7913:26;;7994:15;;;;7959:12;;;;7886:1;7879:9;7850:169;;;-1:-1:-1;8036:3:1;;7561:484;-1:-1:-1;;;;;;7561:484:1:o;8242:219::-;8391:2;8380:9;8373:21;8354:4;8411:44;8451:2;8440:9;8436:18;8428:6;8411:44;:::i;9571:414::-;9773:2;9755:21;;;9812:2;9792:18;;;9785:30;9851:34;9846:2;9831:18;;9824:62;-1:-1:-1;;;9917:2:1;9902:18;;9895:48;9975:3;9960:19;;9745:240::o;15068:356::-;15270:2;15252:21;;;15289:18;;;15282:30;15348:34;15343:2;15328:18;;15321:62;15415:2;15400:18;;15242:182::o;17005:413::-;17207:2;17189:21;;;17246:2;17226:18;;;17219:30;17285:34;17280:2;17265:18;;17258:62;-1:-1:-1;;;17351:2:1;17336:18;;17329:47;17408:3;17393:19;;17179:239::o;18435:275::-;18506:2;18500:9;18571:2;18552:13;;-1:-1:-1;;18548:27:1;18536:40;;18606:18;18591:34;;18627:22;;;18588:62;18585:2;;;18653:18;;:::i;:::-;18689:2;18682:22;18480:230;;-1:-1:-1;18480:230:1:o;18715:128::-;18755:3;18786:1;18782:6;18779:1;18776:13;18773:2;;;18792:18;;:::i;:::-;-1:-1:-1;18828:9:1;;18763:80::o;18848:120::-;18888:1;18914;18904:2;;18919:18;;:::i;:::-;-1:-1:-1;18953:9:1;;18894:74::o;18973:168::-;19013:7;19079:1;19075;19071:6;19067:14;19064:1;19061:21;19056:1;19049:9;19042:17;19038:45;19035:2;;;19086:18;;:::i;:::-;-1:-1:-1;19126:9:1;;19025:116::o;19146:125::-;19186:4;19214:1;19211;19208:8;19205:2;;;19219:18;;:::i;:::-;-1:-1:-1;19256:9:1;;19195:76::o;19276:258::-;19348:1;19358:113;19372:6;19369:1;19366:13;19358:113;;;19448:11;;;19442:18;19429:11;;;19422:39;19394:2;19387:10;19358:113;;;19489:6;19486:1;19483:13;19480:2;;;-1:-1:-1;;19524:1:1;19506:16;;19499:27;19329:205::o;19539:380::-;19618:1;19614:12;;;;19661;;;19682:2;;19736:4;19728:6;19724:17;19714:27;;19682:2;19789;19781:6;19778:14;19758:18;19755:38;19752:2;;;19835:10;19830:3;19826:20;19823:1;19816:31;19870:4;19867:1;19860:15;19898:4;19895:1;19888:15;19752:2;;19594:325;;;:::o;19924:135::-;19963:3;-1:-1:-1;;19984:17:1;;19981:2;;;20004:18;;:::i;:::-;-1:-1:-1;20051:1:1;20040:13;;19971:88::o;20064:112::-;20096:1;20122;20112:2;;20127:18;;:::i;:::-;-1:-1:-1;20161:9:1;;20102:74::o;20181:127::-;20242:10;20237:3;20233:20;20230:1;20223:31;20273:4;20270:1;20263:15;20297:4;20294:1;20287:15;20313:127;20374:10;20369:3;20365:20;20362:1;20355:31;20405:4;20402:1;20395:15;20429:4;20426:1;20419:15;20445:127;20506:10;20501:3;20497:20;20494:1;20487:31;20537:4;20534:1;20527:15;20561:4;20558:1;20551:15;20577:131;-1:-1:-1;;;;;;20651:32:1;;20641:43;;20631:2;;20698:1;20695;20688:12

Swarm Source

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