ETH Price: $3,387.46 (-1.58%)
Gas: 2 Gwei

Token

Louz (LOUZ)
 

Overview

Max Total Supply

7,777 LOUZ

Holders

1,918

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 LOUZ
0x66c431fd18f763343696dd2eb2a0f3c837b64709
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:
Louz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 13: Louz.sol
pragma solidity ^0.8.0;

import "./ERC721A.sol";

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";

error ExceedMaxMint(); /// @notice Thrown when user attempts to exceed the mint limit per wallet.
error ExceedMaxSupply(); /// @notice Thrown when mint operation exceeds Louz max supply.
error AntiBot(); /// @notice Thrown when called by a contract.
error ValueTooLow(); /// @notice Thrown when users sends wrong ETH value.
error NotTokenOwner(); /// @notice Thrown when user operates an NFT from someone else.
error NotWhitelisted(); /// @notice Thrown when user is not whitelisted.
error SaleNotStartedOrEnded(); /// @notice Thrown if the the sale has not started or have already ended.

interface ILouzToken {
	function onTokenTransfer(address from, address to) external;
}

contract Louz is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    address public passwordSigner; // SIGNER ADDRESS

    ILouzToken public louzToken;

    uint public maxSupply = 7777; //first index is 0
    uint public mintPrice = 0.1 ether;

    bool public revealed = false;

    string public baseURI;
    string public unrevealedURI;

    uint public preSaleStartTime;
    uint public saleStartTime;
    uint public revealStartTime;

    mapping (address => uint256) private minted;

    constructor() ERC721A("Louz", "LOUZ") {
        _safeMint(msg.sender, 1);
    }

    function mintPreSale(uint tokenAmt, bytes memory signature) external payable {
        if(msg.sender != tx.origin) revert AntiBot(); // Anti-bot measure

        if(msg.value < tokenAmt * mintPrice) revert ValueTooLow();
        
        uint256 currentTime = block.timestamp;
        if(currentTime < preSaleStartTime || currentTime > saleStartTime) revert SaleNotStartedOrEnded();

        if(!isWhitelisted(msg.sender, signature)) revert NotWhitelisted();

        if(_numberMinted(msg.sender) + tokenAmt > 3) revert ExceedMaxMint();
        
        if(totalSupply() + tokenAmt > maxSupply) revert ExceedMaxSupply();

        _safeMint(msg.sender, tokenAmt);
    }

    function mint(uint tokenAmt) external payable {
        if(msg.sender != tx.origin) revert AntiBot(); // Anti-bot measure

        if(msg.value < tokenAmt * mintPrice) revert ValueTooLow();
        
        uint256 currentTime = block.timestamp;
        if(saleStartTime == 0 || currentTime < saleStartTime) revert SaleNotStartedOrEnded();

        if(minted[msg.sender] + tokenAmt > 5) revert ExceedMaxMint();
        
        if(totalSupply() + tokenAmt > maxSupply) revert ExceedMaxSupply();
        
        minted[msg.sender] += tokenAmt;
        _safeMint(msg.sender, tokenAmt);
    }

    function burnLouz(uint tokenId) public {
        if(msg.sender != ownerOf(tokenId)) revert NotTokenOwner();
        _burn(tokenId);
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if(address(louzToken).code.length != 0)
            louzToken.onTokenTransfer(from, to);
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
    }

    function setTimeConfig(uint _preSaleStartTime, uint _saleStartTime, uint _revealStartTime) external onlyOwner {
        preSaleStartTime = _preSaleStartTime;
        saleStartTime = _saleStartTime;
        revealStartTime = _revealStartTime;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }

    function setLouzToken(address _louz) public onlyOwner {
		louzToken = ILouzToken(_louz);
	}

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

    function setPasswordSigner(address signer) public onlyOwner {
        passwordSigner = signer;
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        uint currentTime = block.timestamp;
        if(revealStartTime == 0 || currentTime < revealStartTime || bytes(baseURI).length == 0)
            return unrevealedURI;
        else
            return string(abi.encodePacked(baseURI, id.toString(), ".json"));
    }

    function isWhitelisted(address user, bytes memory signature) public view returns (bool) {
        bytes32 messageHash = keccak256(abi.encode(user));
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);

        return recoverSigner(ethSignedMessageHash, signature) == passwordSigner; //Verifies that the signer is the authenticator
    }
    
    function getEthSignedMessageHash(bytes32 _messageHash) internal pure returns (bytes32) {
        /*
        Signature is produced by signing a keccak256 hash with the following format:
        "\x19Ethereum Signed Message\n" + len(msg) + msg
        */
        return
        keccak256(
            abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash)
        );
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) internal pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
    internal
    pure
    returns (
        bytes32 r,
        bytes32 s,
        uint8 v
    )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
        /*
        First 32 bytes stores the length of the signature

        add(sig, 32) = pointer of sig + 32
        effectively, skips first 32 bytes of signature

        mload(p) loads next 32 bytes starting at the memory address p into memory
        */

        // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
        // second 32 bytes
            s := mload(add(sig, 64))
        // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        // implicitly return (r, s, v)
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

    /**
     * @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 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 12 of 13: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AntiBot","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedMaxMint","type":"error"},{"inputs":[],"name":"ExceedMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"NotTokenOwner","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleNotStartedOrEnded","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"ValueTooLow","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"burnLouz","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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"louzToken","outputs":[{"internalType":"contract ILouzToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmt","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passwordSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_louz","type":"address"}],"name":"setLouzToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setPasswordSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"uint256","name":"_revealStartTime","type":"uint256"}],"name":"setTimeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUnrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e61600c5567016345785d8a0000600d55600e805460ff191690553480156200002d57600080fd5b50604051806040016040528060048152602001632637babd60e11b815250604051806040016040528060048152602001632627aaad60e11b815250620000826200007c620000ca60201b60201c565b620000ce565b8151620000979060039060208501906200049c565b508051620000ad9060049060208401906200049c565b505060016009819055620000c4915033906200011e565b6200062d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001408282604051806020016040528060008152506200014460201b60201c565b5050565b62000153838383600162000158565b505050565b6001546001600160a01b0385166200018257604051622e076360e81b815260040160405180910390fd5b83620001a15760405163b562e8dd60e01b815260040160405180910390fd5b620001b06000868387620002d2565b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015620002c75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156200029b57506200029960008884886200036e565b155b15620002ba576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910162000240565b506001555050505050565b600b546001600160a01b03163b156200034f57600b54604051635f68f67760e01b81526001600160a01b038681166004830152858116602483015290911690635f68f67790604401600060405180830381600087803b1580156200033557600080fd5b505af11580156200034a573d6000803e3d6000fd5b505050505b62000368848484846200036860201b6200106b1760201c565b50505050565b60006200038f846001600160a01b03166200048d60201b620015411760201c565b156200048157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003c990339089908890889060040162000542565b6020604051808303816000875af192505050801562000407575060408051601f3d908101601f191682019092526200040491810190620005bd565b60015b62000466573d80801562000438576040519150601f19603f3d011682016040523d82523d6000602084013e6200043d565b606091505b5080516200045e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000485565b5060015b949350505050565b6001600160a01b03163b151590565b828054620004aa90620005f0565b90600052602060002090601f016020900481019282620004ce576000855562000519565b82601f10620004e957805160ff191683800117855562000519565b8280016001018555821562000519579182015b8281111562000519578251825591602001919060010190620004fc565b50620005279291506200052b565b5090565b5b808211156200052757600081556001016200052c565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005915785810182015185820160a00152810162000573565b82811115620005a457600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620005d057600080fd5b81516001600160e01b031981168114620005e957600080fd5b9392505050565b600181811c908216806200060557607f821691505b602082108114156200062757634e487b7160e01b600052602260045260246000fd5b50919050565b6128b2806200063d6000396000f3fe6080604052600436106102855760003560e01c80637035bf1811610153578063c77bf959116100cb578063ef0f39741161007f578063f4a0a52811610064578063f4a0a528146106c0578063f7bd7162146106e0578063fe2c7fee1461070057600080fd5b8063ef0f39741461068d578063f2fde38b146106a057600080fd5b8063cc0bef84116100b0578063cc0bef8414610618578063d5abeb011461062e578063e985e9c51461064457600080fd5b8063c77bf959146105d8578063c87b56dd146105f857600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb46514610578578063b88d4fde14610598578063c5df8d19146105b857600080fd5b806395d89b4114610550578063a0712d681461056557600080fd5b80637035bf18146104e857806370a08231146104fd578063715018a61461051d5780638da5cb5b1461053257600080fd5b80632bbc51a31161020157806351830227116101b55780636352211e1161019a5780636352211e1461049d5780636817c76c146104bd5780636c0360eb146104d357600080fd5b8063518302271461046357806355f804b31461047d57600080fd5b806342842e0e116101e657806342842e0e146104035780634bf9698d146104235780634f7b33a11461044357600080fd5b80632bbc51a3146103ce5780633ccfd60b146103ee57600080fd5b8063095ea7b3116102585780631cbaee2d1161023d5780631cbaee2d146103785780631f0a8fa71461038e57806323b872dd146103ae57600080fd5b8063095ea7b31461033d57806318160ddd1461035f57600080fd5b806301ffc9a71461028a57806306d65af3146102bf57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612270565b610720565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d560115481565b6040519081526020016102b6565b3480156102ef57600080fd5b506102f86107bd565b6040516102b691906122ec565b34801561031157600080fd5b506103256103203660046122ff565b61084f565b6040516001600160a01b0390911681526020016102b6565b34801561034957600080fd5b5061035d610358366004612334565b6108ac565b005b34801561036b57600080fd5b50600254600154036102d5565b34801561038457600080fd5b506102d560125481565b34801561039a57600080fd5b506102aa6103a936600461240a565b61096c565b3480156103ba57600080fd5b5061035d6103c9366004612458565b610a05565b3480156103da57600080fd5b50600a54610325906001600160a01b031681565b3480156103fa57600080fd5b5061035d610a10565b34801561040f57600080fd5b5061035d61041e366004612458565b610b67565b34801561042f57600080fd5b5061035d61043e366004612494565b610b82565b34801561044f57600080fd5b5061035d61045e3660046122ff565b610c0b565b34801561046f57600080fd5b50600e546102aa9060ff1681565b34801561048957600080fd5b5061035d6104983660046124af565b610c6a565b3480156104a957600080fd5b506103256104b83660046122ff565b610cdb565b3480156104c957600080fd5b506102d5600d5481565b3480156104df57600080fd5b506102f8610ced565b3480156104f457600080fd5b506102f8610d7b565b34801561050957600080fd5b506102d5610518366004612494565b610d88565b34801561052957600080fd5b5061035d610df0565b34801561053e57600080fd5b506000546001600160a01b0316610325565b34801561055c57600080fd5b506102f8610e56565b61035d6105733660046122ff565b610e65565b34801561058457600080fd5b5061035d6105933660046124f8565b610f88565b3480156105a457600080fd5b5061035d6105b3366004612534565b611037565b3480156105c457600080fd5b5061035d6105d336600461259c565b611071565b3480156105e457600080fd5b50600b54610325906001600160a01b031681565b34801561060457600080fd5b506102f86106133660046122ff565b6110d9565b34801561062457600080fd5b506102d560135481565b34801561063a57600080fd5b506102d5600c5481565b34801561065057600080fd5b506102aa61065f3660046125c8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61035d61069b3660046125fb565b6111d6565b3480156106ac57600080fd5b5061035d6106bb366004612494565b61130d565b3480156106cc57600080fd5b5061035d6106db3660046122ff565b6113ec565b3480156106ec57600080fd5b5061035d6106fb366004612494565b61144b565b34801561070c57600080fd5b5061035d61071b3660046124af565b6114d4565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061078357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107b757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600380546107cc9061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f89061262c565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b5050505050905090565b600061085a82611550565b610890576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108b782610cdb565b9050806001600160a01b0316836001600160a01b03161415610905576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906109255750610923813361065f565b155b1561095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096783838361157c565b505050565b604080516001600160a01b0384811660208084019190915283518084038201815283850185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006060850152607c80850182905285518086039091018152609c9094019094528251920191909120600a5460009392166109f282866115e5565b6001600160a01b03161495945050505050565b610967838383611664565b6000546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60026009541415610ac25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a66565b6002600955604051600090339047908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b5f5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610a66565b506001600955565b61096783838360405180602001604052806000815250611037565b6000546001600160a01b03163314610bdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610c1481610cdb565b6001600160a01b0316336001600160a01b031614610c5e576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c67816118d3565b50565b6000546001600160a01b03163314610cc45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b8051610cd790600f9060208401906121c1565b5050565b6000610ce682611aa0565b5192915050565b600f8054610cfa9061262c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061262c565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b60108054610cfa9061262c565b60006001600160a01b038216610dca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610e546000611bd6565b565b6060600480546107cc9061262c565b333214610e855760405163314f96e760e11b815260040160405180910390fd5b600d54610e929082612677565b341015610eb257604051635321e1df60e01b815260040160405180910390fd5b60125442901580610ec4575060125481105b15610ee257604051635e6bbb6b60e11b815260040160405180910390fd5b33600090815260146020526040902054600590610f00908490612696565b1115610f1f5760405163a16631ad60e01b815260040160405180910390fd5b600c5482610f306002546001540390565b610f3a9190612696565b1115610f5957604051630f0c37b960e11b815260040160405180910390fd5b3360009081526014602052604081208054849290610f78908490612696565b90915550610cd790503383611c33565b6001600160a01b038216331415610fcb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611042848484611664565b61104e84848484611c4d565b61106b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601192909255601255601355565b601354606090429015806110ee575060135481105b806111055750600f80546111019061262c565b1590505b1561119d57601080546111179061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061262c565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050915050919050565b600f6111a884611d4d565b6040516020016111b99291906126ca565b604051602081830303815290604052915050919050565b50919050565b3332146111f65760405163314f96e760e11b815260040160405180910390fd5b600d546112039083612677565b34101561122357604051635321e1df60e01b815260040160405180910390fd5b6011544290811080611236575060125481115b1561125457604051635e6bbb6b60e11b815260040160405180910390fd5b61125e338361096c565b611294576040517f584a793800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003836112a033611e7f565b6112aa9190612696565b11156112c95760405163a16631ad60e01b815260040160405180910390fd5b600c54836112da6002546001540390565b6112e49190612696565b111561130357604051630f0c37b960e11b815260040160405180910390fd5b6109673384611c33565b6000546001600160a01b031633146113675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0381166113e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b610c6781611bd6565b6000546001600160a01b031633146114465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600d55565b6000546001600160a01b031633146114a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461152e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b8051610cd79060109060208401906121c1565b6001600160a01b03163b151590565b6000600154821080156107b7575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000806000806115f485611ef3565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa15801561164f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600061166f82611aa0565b80519091506000906001600160a01b0316336001600160a01b0316148061169d5750815161169d903361065f565b806116b85750336116ad8461084f565b6001600160a01b0316145b9050806116f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611740576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611780576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178d8585856001611f67565b61179d600084846000015161157c565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661188957600154811015611889578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006118de82611aa0565b90506118f281600001516000846001611f67565b611902600083836000015161157c565b80516001600160a01b039081166000908152600660209081526040808320805467ffffffffffffffff19811667ffffffffffffffff9182166000190182161790915585518516845281842080547fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff81167001000000000000000000000000000000009182900484166001908101851690920217909155865188865260059094528285208054600160e01b9588166001600160e01b031990911617600160a01b4290941693909302929092177fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16939093179055908501808352912054909116611a5757600154811015611a57578151600082815260056020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600280546001019055565b60408051606081018252600080825260208201819052918101919091526001548290811015611ba457600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ba25780516001600160a01b031615611b38579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611b9d579392505050565b611b38565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cd7828260405180602001604052806000815250611fff565b60006001600160a01b0384163b15611d4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9190339089908890889060040161279d565b6020604051808303816000875af1925050508015611ccc575060408051601f3d908101601f19168201909252611cc9918101906127d9565b60015b611d27573d808015611cfa576040519150601f19603f3d011682016040523d82523d6000602084013e611cff565b606091505b508051611d1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d45565b5060015b949350505050565b606081611d8d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611db75780611da1816127f6565b9150611db09050600a83612827565b9150611d91565b60008167ffffffffffffffff811115611dd257611dd261235e565b6040519080825280601f01601f191660200182016040528015611dfc576020820181803683370190505b5090505b8415611d4557611e1160018361283b565b9150611e1e600a86612852565b611e29906030612696565b60f81b818381518110611e3e57611e3e612866565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e78600a86612827565b9450611e00565b60006001600160a01b038216611ec1576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205468010000000000000000900467ffffffffffffffff1690565b60008060008351604114611f495760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610a66565b50505060208101516040820151606090920151909260009190911a90565b600b546001600160a01b03163b15611ffa57600b546040517f5f68f6770000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015290911690635f68f67790604401600060405180830381600087803b158015611fe157600080fd5b505af1158015611ff5573d6000803e3d6000fd5b505050505b61106b565b610967838383600180546001600160a01b038516612049576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612080576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61208d6000868387611f67565b6001600160a01b038516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561218e575061218c6000888488611c4d565b155b156121ac576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612137565b506001556118cc565b8280546121cd9061262c565b90600052602060002090601f0160209004810192826121ef5760008555612235565b82601f1061220857805160ff1916838001178555612235565b82800160010185558215612235579182015b8281111561223557825182559160200191906001019061221a565b50612241929150612245565b5090565b5b808211156122415760008155600101612246565b6001600160e01b031981168114610c6757600080fd5b60006020828403121561228257600080fd5b813561228d8161225a565b9392505050565b60005b838110156122af578181015183820152602001612297565b8381111561106b5750506000910152565b600081518084526122d8816020860160208601612294565b601f01601f19169290920160200192915050565b60208152600061228d60208301846122c0565b60006020828403121561231157600080fd5b5035919050565b80356001600160a01b038116811461232f57600080fd5b919050565b6000806040838503121561234757600080fd5b61235083612318565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561238f5761238f61235e565b604051601f8501601f19908116603f011681019082821181831017156123b7576123b761235e565b816040528093508581528686860111156123d057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126123fb57600080fd5b61228d83833560208501612374565b6000806040838503121561241d57600080fd5b61242683612318565b9150602083013567ffffffffffffffff81111561244257600080fd5b61244e858286016123ea565b9150509250929050565b60008060006060848603121561246d57600080fd5b61247684612318565b925061248460208501612318565b9150604084013590509250925092565b6000602082840312156124a657600080fd5b61228d82612318565b6000602082840312156124c157600080fd5b813567ffffffffffffffff8111156124d857600080fd5b8201601f810184136124e957600080fd5b611d4584823560208401612374565b6000806040838503121561250b57600080fd5b61251483612318565b91506020830135801515811461252957600080fd5b809150509250929050565b6000806000806080858703121561254a57600080fd5b61255385612318565b935061256160208601612318565b925060408501359150606085013567ffffffffffffffff81111561258457600080fd5b612590878288016123ea565b91505092959194509250565b6000806000606084860312156125b157600080fd5b505081359360208301359350604090920135919050565b600080604083850312156125db57600080fd5b6125e483612318565b91506125f260208401612318565b90509250929050565b6000806040838503121561260e57600080fd5b82359150602083013567ffffffffffffffff81111561244257600080fd5b600181811c9082168061264057607f821691505b602082108114156111d057634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269157612691612661565b500290565b600082198211156126a9576126a9612661565b500190565b600081516126c0818560208601612294565b9290920192915050565b600080845481600182811c9150808316806126e657607f831692505b602080841082141561270657634e487b7160e01b86526022600452602486fd5b81801561271a576001811461272b57612758565b60ff19861689528489019650612758565b60008b81526020902060005b868110156127505781548b820152908501908301612737565b505084890196505b50505050505061279461276b82866126ae565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127cf60808301846122c0565b9695505050505050565b6000602082840312156127eb57600080fd5b815161228d8161225a565b600060001982141561280a5761280a612661565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261283657612836612811565b500490565b60008282101561284d5761284d612661565b500390565b60008261286157612861612811565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209333eb15c6e6ba16a109b418e8caebe30de3787d4c3b6470317cd47490732ceb64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102855760003560e01c80637035bf1811610153578063c77bf959116100cb578063ef0f39741161007f578063f4a0a52811610064578063f4a0a528146106c0578063f7bd7162146106e0578063fe2c7fee1461070057600080fd5b8063ef0f39741461068d578063f2fde38b146106a057600080fd5b8063cc0bef84116100b0578063cc0bef8414610618578063d5abeb011461062e578063e985e9c51461064457600080fd5b8063c77bf959146105d8578063c87b56dd146105f857600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb46514610578578063b88d4fde14610598578063c5df8d19146105b857600080fd5b806395d89b4114610550578063a0712d681461056557600080fd5b80637035bf18146104e857806370a08231146104fd578063715018a61461051d5780638da5cb5b1461053257600080fd5b80632bbc51a31161020157806351830227116101b55780636352211e1161019a5780636352211e1461049d5780636817c76c146104bd5780636c0360eb146104d357600080fd5b8063518302271461046357806355f804b31461047d57600080fd5b806342842e0e116101e657806342842e0e146104035780634bf9698d146104235780634f7b33a11461044357600080fd5b80632bbc51a3146103ce5780633ccfd60b146103ee57600080fd5b8063095ea7b3116102585780631cbaee2d1161023d5780631cbaee2d146103785780631f0a8fa71461038e57806323b872dd146103ae57600080fd5b8063095ea7b31461033d57806318160ddd1461035f57600080fd5b806301ffc9a71461028a57806306d65af3146102bf57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612270565b610720565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d560115481565b6040519081526020016102b6565b3480156102ef57600080fd5b506102f86107bd565b6040516102b691906122ec565b34801561031157600080fd5b506103256103203660046122ff565b61084f565b6040516001600160a01b0390911681526020016102b6565b34801561034957600080fd5b5061035d610358366004612334565b6108ac565b005b34801561036b57600080fd5b50600254600154036102d5565b34801561038457600080fd5b506102d560125481565b34801561039a57600080fd5b506102aa6103a936600461240a565b61096c565b3480156103ba57600080fd5b5061035d6103c9366004612458565b610a05565b3480156103da57600080fd5b50600a54610325906001600160a01b031681565b3480156103fa57600080fd5b5061035d610a10565b34801561040f57600080fd5b5061035d61041e366004612458565b610b67565b34801561042f57600080fd5b5061035d61043e366004612494565b610b82565b34801561044f57600080fd5b5061035d61045e3660046122ff565b610c0b565b34801561046f57600080fd5b50600e546102aa9060ff1681565b34801561048957600080fd5b5061035d6104983660046124af565b610c6a565b3480156104a957600080fd5b506103256104b83660046122ff565b610cdb565b3480156104c957600080fd5b506102d5600d5481565b3480156104df57600080fd5b506102f8610ced565b3480156104f457600080fd5b506102f8610d7b565b34801561050957600080fd5b506102d5610518366004612494565b610d88565b34801561052957600080fd5b5061035d610df0565b34801561053e57600080fd5b506000546001600160a01b0316610325565b34801561055c57600080fd5b506102f8610e56565b61035d6105733660046122ff565b610e65565b34801561058457600080fd5b5061035d6105933660046124f8565b610f88565b3480156105a457600080fd5b5061035d6105b3366004612534565b611037565b3480156105c457600080fd5b5061035d6105d336600461259c565b611071565b3480156105e457600080fd5b50600b54610325906001600160a01b031681565b34801561060457600080fd5b506102f86106133660046122ff565b6110d9565b34801561062457600080fd5b506102d560135481565b34801561063a57600080fd5b506102d5600c5481565b34801561065057600080fd5b506102aa61065f3660046125c8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61035d61069b3660046125fb565b6111d6565b3480156106ac57600080fd5b5061035d6106bb366004612494565b61130d565b3480156106cc57600080fd5b5061035d6106db3660046122ff565b6113ec565b3480156106ec57600080fd5b5061035d6106fb366004612494565b61144b565b34801561070c57600080fd5b5061035d61071b3660046124af565b6114d4565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061078357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107b757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600380546107cc9061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f89061262c565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b5050505050905090565b600061085a82611550565b610890576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108b782610cdb565b9050806001600160a01b0316836001600160a01b03161415610905576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906109255750610923813361065f565b155b1561095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096783838361157c565b505050565b604080516001600160a01b0384811660208084019190915283518084038201815283850185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006060850152607c80850182905285518086039091018152609c9094019094528251920191909120600a5460009392166109f282866115e5565b6001600160a01b03161495945050505050565b610967838383611664565b6000546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60026009541415610ac25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a66565b6002600955604051600090339047908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b5f5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610a66565b506001600955565b61096783838360405180602001604052806000815250611037565b6000546001600160a01b03163314610bdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610c1481610cdb565b6001600160a01b0316336001600160a01b031614610c5e576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c67816118d3565b50565b6000546001600160a01b03163314610cc45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b8051610cd790600f9060208401906121c1565b5050565b6000610ce682611aa0565b5192915050565b600f8054610cfa9061262c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061262c565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b60108054610cfa9061262c565b60006001600160a01b038216610dca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610e546000611bd6565b565b6060600480546107cc9061262c565b333214610e855760405163314f96e760e11b815260040160405180910390fd5b600d54610e929082612677565b341015610eb257604051635321e1df60e01b815260040160405180910390fd5b60125442901580610ec4575060125481105b15610ee257604051635e6bbb6b60e11b815260040160405180910390fd5b33600090815260146020526040902054600590610f00908490612696565b1115610f1f5760405163a16631ad60e01b815260040160405180910390fd5b600c5482610f306002546001540390565b610f3a9190612696565b1115610f5957604051630f0c37b960e11b815260040160405180910390fd5b3360009081526014602052604081208054849290610f78908490612696565b90915550610cd790503383611c33565b6001600160a01b038216331415610fcb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611042848484611664565b61104e84848484611c4d565b61106b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601192909255601255601355565b601354606090429015806110ee575060135481105b806111055750600f80546111019061262c565b1590505b1561119d57601080546111179061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061262c565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050915050919050565b600f6111a884611d4d565b6040516020016111b99291906126ca565b604051602081830303815290604052915050919050565b50919050565b3332146111f65760405163314f96e760e11b815260040160405180910390fd5b600d546112039083612677565b34101561122357604051635321e1df60e01b815260040160405180910390fd5b6011544290811080611236575060125481115b1561125457604051635e6bbb6b60e11b815260040160405180910390fd5b61125e338361096c565b611294576040517f584a793800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003836112a033611e7f565b6112aa9190612696565b11156112c95760405163a16631ad60e01b815260040160405180910390fd5b600c54836112da6002546001540390565b6112e49190612696565b111561130357604051630f0c37b960e11b815260040160405180910390fd5b6109673384611c33565b6000546001600160a01b031633146113675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0381166113e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b610c6781611bd6565b6000546001600160a01b031633146114465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600d55565b6000546001600160a01b031633146114a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461152e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b8051610cd79060109060208401906121c1565b6001600160a01b03163b151590565b6000600154821080156107b7575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000806000806115f485611ef3565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa15801561164f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600061166f82611aa0565b80519091506000906001600160a01b0316336001600160a01b0316148061169d5750815161169d903361065f565b806116b85750336116ad8461084f565b6001600160a01b0316145b9050806116f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611740576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611780576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178d8585856001611f67565b61179d600084846000015161157c565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661188957600154811015611889578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006118de82611aa0565b90506118f281600001516000846001611f67565b611902600083836000015161157c565b80516001600160a01b039081166000908152600660209081526040808320805467ffffffffffffffff19811667ffffffffffffffff9182166000190182161790915585518516845281842080547fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff81167001000000000000000000000000000000009182900484166001908101851690920217909155865188865260059094528285208054600160e01b9588166001600160e01b031990911617600160a01b4290941693909302929092177fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16939093179055908501808352912054909116611a5757600154811015611a57578151600082815260056020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600280546001019055565b60408051606081018252600080825260208201819052918101919091526001548290811015611ba457600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ba25780516001600160a01b031615611b38579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611b9d579392505050565b611b38565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cd7828260405180602001604052806000815250611fff565b60006001600160a01b0384163b15611d4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9190339089908890889060040161279d565b6020604051808303816000875af1925050508015611ccc575060408051601f3d908101601f19168201909252611cc9918101906127d9565b60015b611d27573d808015611cfa576040519150601f19603f3d011682016040523d82523d6000602084013e611cff565b606091505b508051611d1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d45565b5060015b949350505050565b606081611d8d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611db75780611da1816127f6565b9150611db09050600a83612827565b9150611d91565b60008167ffffffffffffffff811115611dd257611dd261235e565b6040519080825280601f01601f191660200182016040528015611dfc576020820181803683370190505b5090505b8415611d4557611e1160018361283b565b9150611e1e600a86612852565b611e29906030612696565b60f81b818381518110611e3e57611e3e612866565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e78600a86612827565b9450611e00565b60006001600160a01b038216611ec1576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205468010000000000000000900467ffffffffffffffff1690565b60008060008351604114611f495760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610a66565b50505060208101516040820151606090920151909260009190911a90565b600b546001600160a01b03163b15611ffa57600b546040517f5f68f6770000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015290911690635f68f67790604401600060405180830381600087803b158015611fe157600080fd5b505af1158015611ff5573d6000803e3d6000fd5b505050505b61106b565b610967838383600180546001600160a01b038516612049576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612080576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61208d6000868387611f67565b6001600160a01b038516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561218e575061218c6000888488611c4d565b155b156121ac576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612137565b506001556118cc565b8280546121cd9061262c565b90600052602060002090601f0160209004810192826121ef5760008555612235565b82601f1061220857805160ff1916838001178555612235565b82800160010185558215612235579182015b8281111561223557825182559160200191906001019061221a565b50612241929150612245565b5090565b5b808211156122415760008155600101612246565b6001600160e01b031981168114610c6757600080fd5b60006020828403121561228257600080fd5b813561228d8161225a565b9392505050565b60005b838110156122af578181015183820152602001612297565b8381111561106b5750506000910152565b600081518084526122d8816020860160208601612294565b601f01601f19169290920160200192915050565b60208152600061228d60208301846122c0565b60006020828403121561231157600080fd5b5035919050565b80356001600160a01b038116811461232f57600080fd5b919050565b6000806040838503121561234757600080fd5b61235083612318565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561238f5761238f61235e565b604051601f8501601f19908116603f011681019082821181831017156123b7576123b761235e565b816040528093508581528686860111156123d057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126123fb57600080fd5b61228d83833560208501612374565b6000806040838503121561241d57600080fd5b61242683612318565b9150602083013567ffffffffffffffff81111561244257600080fd5b61244e858286016123ea565b9150509250929050565b60008060006060848603121561246d57600080fd5b61247684612318565b925061248460208501612318565b9150604084013590509250925092565b6000602082840312156124a657600080fd5b61228d82612318565b6000602082840312156124c157600080fd5b813567ffffffffffffffff8111156124d857600080fd5b8201601f810184136124e957600080fd5b611d4584823560208401612374565b6000806040838503121561250b57600080fd5b61251483612318565b91506020830135801515811461252957600080fd5b809150509250929050565b6000806000806080858703121561254a57600080fd5b61255385612318565b935061256160208601612318565b925060408501359150606085013567ffffffffffffffff81111561258457600080fd5b612590878288016123ea565b91505092959194509250565b6000806000606084860312156125b157600080fd5b505081359360208301359350604090920135919050565b600080604083850312156125db57600080fd5b6125e483612318565b91506125f260208401612318565b90509250929050565b6000806040838503121561260e57600080fd5b82359150602083013567ffffffffffffffff81111561244257600080fd5b600181811c9082168061264057607f821691505b602082108114156111d057634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269157612691612661565b500290565b600082198211156126a9576126a9612661565b500190565b600081516126c0818560208601612294565b9290920192915050565b600080845481600182811c9150808316806126e657607f831692505b602080841082141561270657634e487b7160e01b86526022600452602486fd5b81801561271a576001811461272b57612758565b60ff19861689528489019650612758565b60008b81526020902060005b868110156127505781548b820152908501908301612737565b505084890196505b50505050505061279461276b82866126ae565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127cf60808301846122c0565b9695505050505050565b6000602082840312156127eb57600080fd5b815161228d8161225a565b600060001982141561280a5761280a612661565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261283657612836612811565b500490565b60008282101561284d5761284d612661565b500390565b60008261286157612861612811565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209333eb15c6e6ba16a109b418e8caebe30de3787d4c3b6470317cd47490732ceb64736f6c634300080b0033

Deployed Bytecode Sourcemap

809:5495:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800:300:3;;;;;;;;;;-1:-1:-1;3800:300:3;;;;;:::i;:::-;;:::i;:::-;;;611:14:13;;604:22;586:41;;574:2;559:18;3800:300:3;;;;;;;;1175:28:9;;;;;;;;;;;;;;;;;;;784:25:13;;;772:2;757:18;1175:28:9;638:177:13;7071:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8527:200::-;;;;;;;;;;-1:-1:-1;8527:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1942:55:13;;;1924:74;;1912:2;1897:18;8527:200:3;1778:226:13;8104:362:3;;;;;;;;;;-1:-1:-1;8104:362:3;;;;;:::i;:::-;;:::i;:::-;;3468:265;;;;;;;;;;-1:-1:-1;3700:12:3;;3684:13;;:28;3468:265;;1209:25:9;;;;;;;;;;;;;;;;4492:361;;;;;;;;;;-1:-1:-1;4492:361:9;;;;;:::i;:::-;;:::i;9358:164:3:-;;;;;;;;;;-1:-1:-1;9358:164:3;;;;;:::i;:::-;;:::i;898:29:9:-;;;;;;;;;;-1:-1:-1;898:29:9;;;;-1:-1:-1;;;;;898:29:9;;;2822:183;;;;;;;;;;;;;:::i;9588:179:3:-;;;;;;;;;;-1:-1:-1;9588:179:3;;;;;:::i;:::-;;:::i;4033:100:9:-;;;;;;;;;;-1:-1:-1;4033:100:9;;;;;:::i;:::-;;:::i;2679:137::-;;;;;;;;;;-1:-1:-1;2679:137:9;;;;;:::i;:::-;;:::i;1079:28::-;;;;;;;;;;-1:-1:-1;1079:28:9;;;;;;;;3793:100;;;;;;;;;;-1:-1:-1;3793:100:9;;;;;:::i;:::-;;:::i;6887:122:3:-;;;;;;;;;;-1:-1:-1;6887:122:3;;;;;:::i;:::-;;:::i;1039:33:9:-;;;;;;;;;;;;;;;;1114:21;;;;;;;;;;;;;:::i;1141:27::-;;;;;;;;;;;;;:::i;4159:203:3:-;;;;;;;;;;-1:-1:-1;4159:203:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;1029:85::-;;;;;;;;;;-1:-1:-1;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;1029:85;;7233:102:3;;;;;;;;;;;;;:::i;2083:590:9:-;;;;;;:::i;:::-;;:::i;8794:274:3:-;;;;;;;;;;-1:-1:-1;8794:274:3;;;;;:::i;:::-;;:::i;9833:332::-;;;;;;;;;;-1:-1:-1;9833:332:3;;;;;:::i;:::-;;:::i;3345:247:9:-;;;;;;;;;;-1:-1:-1;3345:247:9;;;;;:::i;:::-;;:::i;952:27::-;;;;;;;;;;-1:-1:-1;952:27:9;;;;-1:-1:-1;;;;;952:27:9;;;4139:347;;;;;;;;;;-1:-1:-1;4139:347:9;;;;;:::i;:::-;;:::i;1240:27::-;;;;;;;;;;;;;;;;986:28;;;;;;;;;;;;;;;;9134:162:3;;;;;;;;;;-1:-1:-1;9134:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;9254:25:3;;;9231:4;9254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9134:162;1409:668:9;;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;3598:92:9:-;;;;;;;;;;-1:-1:-1;3598:92:9;;;;;:::i;:::-;;:::i;3696:91::-;;;;;;;;;;-1:-1:-1;3696:91:9;;;;;:::i;:::-;;:::i;3903:124::-;;;;;;;;;;-1:-1:-1;3903:124:9;;;;;:::i;:::-;;:::i;3800:300:3:-;3902:4;-1:-1:-1;;;;;;3937:40:3;;3952:25;3937:40;;:104;;-1:-1:-1;;;;;;;3993:48:3;;4008:33;3993:48;3937:104;:156;;;-1:-1:-1;952:25:2;-1:-1:-1;;;;;;937:40:2;;;4057:36:3;3918:175;3800:300;-1:-1:-1;;3800:300:3:o;7071:98::-;7125:13;7157:5;7150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7071:98;:::o;8527:200::-;8595:7;8619:16;8627:7;8619;:16::i;:::-;8614:64;;8644:34;;;;;;;;;;;;;;8614:64;-1:-1:-1;8696:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;8696:24:3;;8527:200::o;8104:362::-;8176:13;8192:24;8208:7;8192:15;:24::i;:::-;8176:40;;8236:5;-1:-1:-1;;;;;8230:11:3;:2;-1:-1:-1;;;;;8230:11:3;;8226:48;;;8250:24;;;;;;;;;;;;;;8226:48;719:10:1;-1:-1:-1;;;;;8289:21:3;;;;;;:63;;-1:-1:-1;8315:37:3;8332:5;719:10:1;9134:162:3;:::i;8315:37::-;8314:38;8289:63;8285:136;;;8375:35;;;;;;;;;;;;;;8285:136;8431:28;8440:2;8444:7;8453:5;8431:8;:28::i;:::-;8166:300;8104:362;;:::o;4492:361:9:-;4622:16;;;-1:-1:-1;;;;;1942:55:13;;;4622:16:9;;;;1924:74:13;;;;4622:16:9;;;;;;;;;1897:18:13;;;4622:16:9;;4612:27;;;;;;11679:66:13;5162::9;;;11667:79:13;11762:12;;;;11755:28;;;5162:66:9;;;;;;;;;;11799:12:13;;;;5162:66:9;;;5139:99;;;;;;;;4784:14;;-1:-1:-1;;4612:27:9;4784:14;4734:46;5139:99;4770:9;4734:13;:46::i;:::-;-1:-1:-1;;;;;4734:64:9;;;4492:361;-1:-1:-1;;;;;4492:361:9:o;9358:164:3:-;9487:28;9497:4;9503:2;9507:7;9487:9;:28::i;2822:183:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;;;;;;;;;1744:1:11::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:11;;8025:2:13;2317:63:11::1;::::0;::::1;8007:21:13::0;8064:2;8044:18;;;8037:30;8103:33;8083:18;;;8076:61;8154:18;;2317:63:11::1;7823:355:13::0;2317:63:11::1;1744:1;2455:7;:18:::0;2903:49:9::2;::::0;2885:12:::2;::::0;2903:10:::2;::::0;2926:21:::2;::::0;2885:12;2903:49;2885:12;2903:49;2926:21;2903:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2884:68;;;2970:7;2962:36;;;::::0;-1:-1:-1;;;2962:36:9;;8595:2:13;2962:36:9::2;::::0;::::2;8577:21:13::0;8634:2;8614:18;;;8607:30;8673:18;8653;;;8646:46;8709:18;;2962:36:9::2;8393:340:13::0;2962:36:9::2;-1:-1:-1::0;1701:1:11::1;2628:7;:22:::0;2822:183:9:o;9588:179:3:-;9721:39;9738:4;9744:2;9748:7;9721:39;;;;;;;;;;;;:16;:39::i;4033:100:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;4103:14:9::1;:23:::0;;-1:-1:-1;;4103:23:9::1;-1:-1:-1::0;;;;;4103:23:9;;;::::1;::::0;;;::::1;::::0;;4033:100::o;2679:137::-;2745:16;2753:7;2745;:16::i;:::-;-1:-1:-1;;;;;2731:30:9;:10;-1:-1:-1;;;;;2731:30:9;;2728:57;;2770:15;;;;;;;;;;;;;;2728:57;2795:14;2801:7;2795:5;:14::i;:::-;2679:137;:::o;3793:100::-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;3866:20:9;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3793:100:::0;:::o;6887:122:3:-;6951:7;6977:20;6989:7;6977:11;:20::i;:::-;:25;;6887:122;-1:-1:-1;;6887:122:3:o;1114:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1141:27::-;;;;;;;:::i;4159:203:3:-;4223:7;-1:-1:-1;;;;;4246:19:3;;4242:60;;4274:28;;;;;;;;;;;;;;4242:60;-1:-1:-1;;;;;;4327:19:3;;;;;:12;:19;;;;;:27;;;;4159:203::o;1661:101:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;7233:102:3:-;7289:13;7321:7;7314:14;;;;;:::i;2083:590:9:-;2142:10;2156:9;2142:23;2139:44;;2174:9;;-1:-1:-1;;;2174:9:9;;;;;;;;;;;2139:44;2240:9;;2229:20;;:8;:20;:::i;:::-;2217:9;:32;2214:57;;;2258:13;;-1:-1:-1;;;2258:13:9;;;;;;;;;;;2214:57;2340:13;;2312:15;;2340:18;;:49;;;2376:13;;2362:11;:27;2340:49;2337:84;;;2398:23;;-1:-1:-1;;;2398:23:9;;;;;;;;;;;2337:84;2442:10;2435:18;;;;:6;:18;;;;;;2467:1;;2435:29;;2456:8;;2435:29;:::i;:::-;:33;2432:60;;;2477:15;;-1:-1:-1;;;2477:15:9;;;;;;;;;;;2432:60;2541:9;;2530:8;2514:13;3700:12:3;;3684:13;;:28;;3468:265;2514:13:9;:24;;;;:::i;:::-;:36;2511:65;;;2559:17;;-1:-1:-1;;;2559:17:9;;;;;;;;;;;2511:65;2602:10;2595:18;;;;:6;:18;;;;;:30;;2617:8;;2595:18;:30;;2617:8;;2595:30;:::i;:::-;;;;-1:-1:-1;2635:31:9;;-1:-1:-1;2645:10:9;2657:8;2635:9;:31::i;8794:274:3:-;-1:-1:-1;;;;;8884:24:3;;719:10:1;8884:24:3;8880:54;;;8917:17;;;;;;;;;;;;;;8880:54;719:10:1;8945:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;8945:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;8945:53:3;;;;;;;;;;9013:48;;586:41:13;;;8945:42:3;;719:10:1;9013:48:3;;559:18:13;9013:48:3;;;;;;;8794:274;;:::o;9833:332::-;9994:28;10004:4;10010:2;10014:7;9994:9;:28::i;:::-;10037:48;10060:4;10066:2;10070:7;10079:5;10037:22;:48::i;:::-;10032:127;;10108:40;;-1:-1:-1;;;10108:40:3;;;;;;;;;;;10032:127;9833:332;;;;:::o;3345:247:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;3465:16:9::1;:36:::0;;;;3511:13:::1;:30:::0;3551:15:::1;:34:::0;3345:247::o;4139:347::-;4271:15;;4199:13;;4243:15;;4271:20;;:53;;;4309:15;;4295:11;:29;4271:53;:83;;;;4334:7;4328:21;;;;;:::i;:::-;:26;;-1:-1:-1;4271:83:9;4268:211;;;4375:13;4368:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4139:347;;;:::o;4268:211::-;4446:7;4455:13;:2;:11;:13::i;:::-;4429:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4415:64;;;4139:347;;;:::o;4268:211::-;4214:272;4139:347;;;:::o;1409:668::-;1499:10;1513:9;1499:23;1496:44;;1531:9;;-1:-1:-1;;;1531:9:9;;;;;;;;;;;1496:44;1597:9;;1586:20;;:8;:20;:::i;:::-;1574:9;:32;1571:57;;;1615:13;;-1:-1:-1;;;1615:13:9;;;;;;;;;;;1571:57;1711:16;;1669:15;;1697:30;;;:61;;;1745:13;;1731:11;:27;1697:61;1694:96;;;1767:23;;-1:-1:-1;;;1767:23:9;;;;;;;;;;;1694:96;1805:36;1819:10;1831:9;1805:13;:36::i;:::-;1801:65;;1850:16;;;;;;;;;;;;;;1801:65;1919:1;1908:8;1880:25;1894:10;1880:13;:25::i;:::-;:36;;;;:::i;:::-;:40;1877:67;;;1929:15;;-1:-1:-1;;;1929:15:9;;;;;;;;;;;1877:67;1993:9;;1982:8;1966:13;3700:12:3;;3684:13;;:28;;3468:265;1966:13:9;:24;;;;:::i;:::-;:36;1963:65;;;2011:17;;-1:-1:-1;;;2011:17:9;;;;;;;;;;;1963:65;2039:31;2049:10;2061:8;2039:9;:31::i;1911:198:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;11232:2:13;1991:73:10::1;::::0;::::1;11214:21:13::0;11271:2;11251:18;;;11244:30;11310:34;11290:18;;;11283:62;11381:8;11361:18;;;11354:36;11407:19;;1991:73:10::1;11030:402:13::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;3598:92:9:-:0;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;3665:9:9::1;:18:::0;3598:92::o;3696:91::-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;3754:9:9::1;:29:::0;;-1:-1:-1;;3754:29:9::1;-1:-1:-1::0;;;;;3754:29:9;;;::::1;::::0;;;::::1;::::0;;3696:91::o;3903:124::-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;7664:2:13;1233:68:10;;;7646:21:13;;;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;7794:18;;1233:68:10;7462:356:13;1233:68:10;3988:32:9;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1175:320:0:-:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;10411:142:3:-;10468:4;10501:13;;10491:7;:23;:55;;;;-1:-1:-1;;10519:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;10519:27:3;;;;10518:28;;10411:142::o;17430:189::-;17540:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;17540:29:3;-1:-1:-1;;;;;17540:29:3;;;;;;;;;17584:28;;17540:24;;17584:28;;;;;;;17430:189;;;:::o;5251:246:9:-;5353:7;5373:9;5384;5395:7;5406:26;5421:10;5406:14;:26::i;:::-;5449:41;;;;;;;;;;;;12049:25:13;;;12122:4;12110:17;;12090:18;;;12083:45;;;;12144:18;;;12137:34;;;12187:18;;;12180:34;;;5372:60:9;;-1:-1:-1;5372:60:9;;-1:-1:-1;5372:60:9;-1:-1:-1;5449:41:9;;12021:19:13;;5449:41:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5449:41:9;;-1:-1:-1;;5449:41:9;;;5251:246;-1:-1:-1;;;;;;;5251:246:9:o;13035:2067:3:-;13145:35;13183:20;13195:7;13183:11;:20::i;:::-;13256:18;;13145:58;;-1:-1:-1;13214:22:3;;-1:-1:-1;;;;;13240:34:3;719:10:1;-1:-1:-1;;;;;13240:34:3;;:100;;;-1:-1:-1;13307:18:3;;13290:50;;719:10:1;9134:162:3;:::i;13290:50::-;13240:152;;;-1:-1:-1;719:10:1;13356:20:3;13368:7;13356:11;:20::i;:::-;-1:-1:-1;;;;;13356:36:3;;13240:152;13214:179;;13409:17;13404:66;;13435:35;;;;;;;;;;;;;;13404:66;13506:4;-1:-1:-1;;;;;13484:26:3;:13;:18;;;-1:-1:-1;;;;;13484:26:3;;13480:67;;13519:28;;;;;;;;;;;;;;13480:67;-1:-1:-1;;;;;13561:16:3;;13557:52;;13586:23;;;;;;;;;;;;;;13557:52;13620:43;13642:4;13648:2;13652:7;13661:1;13620:21;:43::i;:::-;13725:49;13742:1;13746:7;13755:13;:18;;;13725:8;:49::i;:::-;-1:-1:-1;;;;;14064:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14064:31:3;;;;;;;-1:-1:-1;;14064:31:3;;;;;;;14109:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14109:29:3;;;;;;;;;;;14153:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;14197:61:3;;;;-1:-1:-1;;;14242:15:3;14197:61;;;;;;;;;;;14528:11;;;14557:24;;;;;:29;14528:11;;14557:29;14553:438;;14779:13;;14765:11;:27;14761:216;;;14848:18;;;14816:24;;;:11;:24;;;;;;;;:50;;14930:28;;;;14888:70;;-1:-1:-1;;;14888:70:3;-1:-1:-1;;;;;;14888:70:3;;;-1:-1:-1;;;;;14816:50:3;;;14888:70;;;;;;;14761:216;14040:961;15035:7;15031:2;-1:-1:-1;;;;;15016:27:3;15025:4;-1:-1:-1;;;;;15016:27:3;;;;;;;;;;;15053:42;13135:1967;;13035:2067;;;:::o;15319:2000::-;15378:35;15416:20;15428:7;15416:11;:20::i;:::-;15378:58;;15447:65;15469:13;:18;;;15497:1;15501:7;15510:1;15447:21;:65::i;:::-;15574:49;15591:1;15595:7;15604:13;:18;;;15574:8;:49::i;:::-;15926:18;;-1:-1:-1;;;;;15913:32:3;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;15913:45:3;;;;;;-1:-1:-1;;15913:45:3;;;;;;;15985:18;;15972:32;;;;;;;:50;;;;;;;;;;;;-1:-1:-1;15972:50:3;;;;;;;;;;;;16146:18;;16118:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;16118:46:3;;;-1:-1:-1;;;;;;16178:61:3;;;;-1:-1:-1;;;16223:15:3;16178:61;;;;;;;;;;;16253:34;;;;;;;;16553:11;;;16582:24;;;;;:29;16553:11;;16582:29;16578:438;;16804:13;;16790:11;:27;16786:216;;;16873:18;;;16841:24;;;:11;:24;;;;;;;;:50;;16955:28;;;;16913:70;;-1:-1:-1;;;16913:70:3;-1:-1:-1;;;;;;16913:70:3;;;-1:-1:-1;;;;;16841:50:3;;;16913:70;;;;;;;16786:216;-1:-1:-1;17050:18:3;;17041:49;;17082:7;;17078:1;;-1:-1:-1;;;;;17041:49:3;;;;;;17078:1;;17041:49;-1:-1:-1;;17288:12:3;:14;;;;;;15319:2000::o;5772:1058::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;5934:13:3;;5881:7;;5927:20;;5923:843;;;5967:31;6001:17;;;:11;:17;;;;;;;;;5967:51;;;;;;;;;-1:-1:-1;;;;;5967:51:3;;;;-1:-1:-1;;;5967:51:3;;;;;;;;;;;-1:-1:-1;;;5967:51:3;;;;;;;;;;;;;;6036:716;;6085:14;;-1:-1:-1;;;;;6085:28:3;;6081:99;;6148:9;5772:1058;-1:-1:-1;;;5772:1058:3:o;6081:99::-;-1:-1:-1;;;6518:6:3;6562:17;;;;:11;:17;;;;;;;;;6550:29;;;;;;;;;-1:-1:-1;;;;;6550:29:3;;;;;-1:-1:-1;;;6550:29:3;;;;;;;;;;;-1:-1:-1;;;6550:29:3;;;;;;;;;;;;;6609:28;6605:107;;6676:9;5772:1058;-1:-1:-1;;;5772:1058:3:o;6605:107::-;6479:255;;;5949:817;5923:843;6792:31;;;;;;;;;;;;;;2263:187:10;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;2371:17:10;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;10559:102:3:-;10627:27;10637:2;10641:8;10627:27;;;;;;;;;;;;:9;:27::i;18172:769::-;18322:4;-1:-1:-1;;;;;18342:13:3;;1465:19:0;:23;18338:597:3;;18377:72;;-1:-1:-1;;;18377:72:3;;-1:-1:-1;;;;;18377:36:3;;;;;:72;;719:10:1;;18428:4:3;;18434:7;;18443:5;;18377:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18377:72:3;;;;;;;;-1:-1:-1;;18377:72:3;;;;;;;;;;;;:::i;:::-;;;18373:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18620:13:3;;18616:253;;18669:40;;-1:-1:-1;;;18669:40:3;;;;;;;;;;;18616:253;18821:6;18815:13;18806:6;18802:2;18798:15;18791:38;18373:510;-1:-1:-1;;;;;;18499:55:3;-1:-1:-1;;;18499:55:3;;-1:-1:-1;18492:62:3;;18338:597;-1:-1:-1;18920:4:3;18338:597;18172:769;;;;;;:::o;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;4439:204:3;4500:7;-1:-1:-1;;;;;4523:19:3;;4519:59;;4551:27;;;;;;;;;;;;;;4519:59;-1:-1:-1;;;;;;4603:19:3;;;;;:12;:19;;;;;:32;;;;;;;4439:204::o;5503:799:9:-;5589:9;5608;5627:7;5663:3;:10;5677:2;5663:16;5655:53;;;;-1:-1:-1;;;5655:53:9;;14099:2:13;5655:53:9;;;14081:21:13;14138:2;14118:18;;;14111:30;14177:26;14157:18;;;14150:54;14221:18;;5655:53:9;13897:348:13;5655:53:9;-1:-1:-1;;;6076:2:9;6067:12;;6061:19;6140:2;6131:12;;6125:19;6241:2;6232:12;;;6226:19;6061;;6223:1;6218:28;;;;;5503:799::o;3011:328::-;3185:9;;-1:-1:-1;;;;;3185:9:9;3177:30;:35;3174:87;;3226:9;;:35;;;;;-1:-1:-1;;;;;14503:15:13;;;3226:35:9;;;14485:34:13;14555:15;;;14535:18;;;14528:43;3226:9:9;;;;:25;;14397:18:13;;3226:35:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3174:87;3271:61;9833:332:3;11012:157;11130:32;11136:2;11140:8;11150:5;11157:4;11572:13;;-1:-1:-1;;;;;11599:16:3;;11595:48;;11624:19;;;;;;;;;;;;;;11595:48;11657:13;11653:44;;11679:18;;;;;;;;;;;;;;11653:44;11708:61;11738:1;11742:2;11746:12;11760:8;11708:21;:61::i;:::-;-1:-1:-1;;;;;12040:16:3;;;;;;:12;:16;;;;;;;;:44;;12098:49;;;12040:44;;;;;;;;12098:49;;;;-1:-1:-1;;12040:44:3;;;;;;12098:49;;;;;;;;;;;;;;;;12162:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;12211:66:3;;;;-1:-1:-1;;;12261:15:3;12211:66;;;;;;;;;;;12162:25;;12342:322;12362:8;12358:1;:12;12342:322;;;12400:38;;12425:12;;-1:-1:-1;;;;;12400:38:3;;;12417:1;;12400:38;;12417:1;;12400:38;12460:4;:68;;;;;12469:59;12500:1;12504:2;12508:12;12522:5;12469:22;:59::i;:::-;12468:60;12460:68;12456:162;;;12559:40;;-1:-1:-1;;;12559:40:3;;;;;;;;;;;12456:162;12635:14;;;;;12372:3;12342:322;;;-1:-1:-1;12678:13:3;:28;12726:60;9833:332;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:13;-1:-1:-1;;;;;;92:5:13;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:13:o;820:258::-;892:1;902:113;916:6;913:1;910:13;902:113;;;992:11;;;986:18;973:11;;;966:39;938:2;931:10;902:113;;;1033:6;1030:1;1027:13;1024:48;;;-1:-1:-1;;1068:1:13;1050:16;;1043:27;820:258::o;1083:269::-;1136:3;1174:5;1168:12;1201:6;1196:3;1189:19;1217:63;1273:6;1266:4;1261:3;1257:14;1250:4;1243:5;1239:16;1217:63;:::i;:::-;1334:2;1313:15;-1:-1:-1;;1309:29:13;1300:39;;;;1341:4;1296:50;;1083:269;-1:-1:-1;;1083:269:13:o;1357:231::-;1506:2;1495:9;1488:21;1469:4;1526:56;1578:2;1567:9;1563:18;1555:6;1526:56;:::i;1593:180::-;1652:6;1705:2;1693:9;1684:7;1680:23;1676:32;1673:52;;;1721:1;1718;1711:12;1673:52;-1:-1:-1;1744:23:13;;1593:180;-1:-1:-1;1593:180:13:o;2009:196::-;2077:20;;-1:-1:-1;;;;;2126:54:13;;2116:65;;2106:93;;2195:1;2192;2185:12;2106:93;2009:196;;;:::o;2210:254::-;2278:6;2286;2339:2;2327:9;2318:7;2314:23;2310:32;2307:52;;;2355:1;2352;2345:12;2307:52;2378:29;2397:9;2378:29;:::i;:::-;2368:39;2454:2;2439:18;;;;2426:32;;-1:-1:-1;;;2210:254:13:o;2469:184::-;-1:-1:-1;;;2518:1:13;2511:88;2618:4;2615:1;2608:15;2642:4;2639:1;2632:15;2658:631;2722:5;2752:18;2793:2;2785:6;2782:14;2779:40;;;2799:18;;:::i;:::-;2874:2;2868:9;2842:2;2928:15;;-1:-1:-1;;2924:24:13;;;2950:2;2920:33;2916:42;2904:55;;;2974:18;;;2994:22;;;2971:46;2968:72;;;3020:18;;:::i;:::-;3060:10;3056:2;3049:22;3089:6;3080:15;;3119:6;3111;3104:22;3159:3;3150:6;3145:3;3141:16;3138:25;3135:45;;;3176:1;3173;3166:12;3135:45;3226:6;3221:3;3214:4;3206:6;3202:17;3189:44;3281:1;3274:4;3265:6;3257;3253:19;3249:30;3242:41;;;;2658:631;;;;;:::o;3294:220::-;3336:5;3389:3;3382:4;3374:6;3370:17;3366:27;3356:55;;3407:1;3404;3397:12;3356:55;3429:79;3504:3;3495:6;3482:20;3475:4;3467:6;3463:17;3429:79;:::i;3519:394::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3696:29;3715:9;3696:29;:::i;:::-;3686:39;;3776:2;3765:9;3761:18;3748:32;3803:18;3795:6;3792:30;3789:50;;;3835:1;3832;3825:12;3789:50;3858:49;3899:7;3890:6;3879:9;3875:22;3858:49;:::i;:::-;3848:59;;;3519:394;;;;;:::o;3918:328::-;3995:6;4003;4011;4064:2;4052:9;4043:7;4039:23;4035:32;4032:52;;;4080:1;4077;4070:12;4032:52;4103:29;4122:9;4103:29;:::i;:::-;4093:39;;4151:38;4185:2;4174:9;4170:18;4151:38;:::i;:::-;4141:48;;4236:2;4225:9;4221:18;4208:32;4198:42;;3918:328;;;;;:::o;4251:186::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4402:29;4421:9;4402:29;:::i;4442:450::-;4511:6;4564:2;4552:9;4543:7;4539:23;4535:32;4532:52;;;4580:1;4577;4570:12;4532:52;4620:9;4607:23;4653:18;4645:6;4642:30;4639:50;;;4685:1;4682;4675:12;4639:50;4708:22;;4761:4;4753:13;;4749:27;-1:-1:-1;4739:55:13;;4790:1;4787;4780:12;4739:55;4813:73;4878:7;4873:2;4860:16;4855:2;4851;4847:11;4813:73;:::i;4897:347::-;4962:6;4970;5023:2;5011:9;5002:7;4998:23;4994:32;4991:52;;;5039:1;5036;5029:12;4991:52;5062:29;5081:9;5062:29;:::i;:::-;5052:39;;5141:2;5130:9;5126:18;5113:32;5188:5;5181:13;5174:21;5167:5;5164:32;5154:60;;5210:1;5207;5200:12;5154:60;5233:5;5223:15;;;4897:347;;;;;:::o;5249:537::-;5344:6;5352;5360;5368;5421:3;5409:9;5400:7;5396:23;5392:33;5389:53;;;5438:1;5435;5428:12;5389:53;5461:29;5480:9;5461:29;:::i;:::-;5451:39;;5509:38;5543:2;5532:9;5528:18;5509:38;:::i;:::-;5499:48;;5594:2;5583:9;5579:18;5566:32;5556:42;;5649:2;5638:9;5634:18;5621:32;5676:18;5668:6;5665:30;5662:50;;;5708:1;5705;5698:12;5662:50;5731:49;5772:7;5763:6;5752:9;5748:22;5731:49;:::i;:::-;5721:59;;;5249:537;;;;;;;:::o;5791:316::-;5868:6;5876;5884;5937:2;5925:9;5916:7;5912:23;5908:32;5905:52;;;5953:1;5950;5943:12;5905:52;-1:-1:-1;;5976:23:13;;;6046:2;6031:18;;6018:32;;-1:-1:-1;6097:2:13;6082:18;;;6069:32;;5791:316;-1:-1:-1;5791:316:13:o;6362:260::-;6430:6;6438;6491:2;6479:9;6470:7;6466:23;6462:32;6459:52;;;6507:1;6504;6497:12;6459:52;6530:29;6549:9;6530:29;:::i;:::-;6520:39;;6578:38;6612:2;6601:9;6597:18;6578:38;:::i;:::-;6568:48;;6362:260;;;;;:::o;6627:388::-;6704:6;6712;6765:2;6753:9;6744:7;6740:23;6736:32;6733:52;;;6781:1;6778;6771:12;6733:52;6817:9;6804:23;6794:33;;6878:2;6867:9;6863:18;6850:32;6905:18;6897:6;6894:30;6891:50;;;6937:1;6934;6927:12;7020:437;7099:1;7095:12;;;;7142;;;7163:61;;7217:4;7209:6;7205:17;7195:27;;7163:61;7270:2;7262:6;7259:14;7239:18;7236:38;7233:218;;;-1:-1:-1;;;7304:1:13;7297:88;7408:4;7405:1;7398:15;7436:4;7433:1;7426:15;8738:184;-1:-1:-1;;;8787:1:13;8780:88;8887:4;8884:1;8877:15;8911:4;8908:1;8901:15;8927:168;8967:7;9033:1;9029;9025:6;9021:14;9018:1;9015:21;9010:1;9003:9;8996:17;8992:45;8989:71;;;9040:18;;:::i;:::-;-1:-1:-1;9080:9:13;;8927:168::o;9100:128::-;9140:3;9171:1;9167:6;9164:1;9161:13;9158:39;;;9177:18;;:::i;:::-;-1:-1:-1;9213:9:13;;9100:128::o;9359:185::-;9401:3;9439:5;9433:12;9454:52;9499:6;9494:3;9487:4;9480:5;9476:16;9454:52;:::i;:::-;9522:16;;;;;9359:185;-1:-1:-1;;9359:185:13:o;9667:1358::-;9944:3;9973:1;10006:6;10000:13;10036:3;10058:1;10086:9;10082:2;10078:18;10068:28;;10146:2;10135:9;10131:18;10168;10158:61;;10212:4;10204:6;10200:17;10190:27;;10158:61;10238:2;10286;10278:6;10275:14;10255:18;10252:38;10249:222;;;-1:-1:-1;;;10320:3:13;10313:90;10426:4;10423:1;10416:15;10456:4;10451:3;10444:17;10249:222;10487:18;10514:104;;;;10632:1;10627:320;;;;10480:467;;10514:104;-1:-1:-1;;10547:24:13;;10535:37;;10592:16;;;;-1:-1:-1;10514:104:13;;10627:320;9306:1;9299:14;;;9343:4;9330:18;;10722:1;10736:165;10750:6;10747:1;10744:13;10736:165;;;10828:14;;10815:11;;;10808:35;10871:16;;;;10765:10;;10736:165;;;10740:3;;10930:6;10925:3;10921:16;10914:23;;10480:467;;;;;;;10963:56;10988:30;11014:3;11006:6;10988:30;:::i;:::-;9621:7;9609:20;;9654:1;9645:11;;9549:113;10963:56;10956:63;9667:1358;-1:-1:-1;;;;;9667:1358:13:o;12225:523::-;12419:4;-1:-1:-1;;;;;12529:2:13;12521:6;12517:15;12506:9;12499:34;12581:2;12573:6;12569:15;12564:2;12553:9;12549:18;12542:43;;12621:6;12616:2;12605:9;12601:18;12594:34;12664:3;12659:2;12648:9;12644:18;12637:31;12685:57;12737:3;12726:9;12722:19;12714:6;12685:57;:::i;:::-;12677:65;12225:523;-1:-1:-1;;;;;;12225:523:13:o;12753:249::-;12822:6;12875:2;12863:9;12854:7;12850:23;12846:32;12843:52;;;12891:1;12888;12881:12;12843:52;12923:9;12917:16;12942:30;12966:5;12942:30;:::i;13007:135::-;13046:3;-1:-1:-1;;13067:17:13;;13064:43;;;13087:18;;:::i;:::-;-1:-1:-1;13134:1:13;13123:13;;13007:135::o;13147:184::-;-1:-1:-1;;;13196:1:13;13189:88;13296:4;13293:1;13286:15;13320:4;13317:1;13310:15;13336:120;13376:1;13402;13392:35;;13407:18;;:::i;:::-;-1:-1:-1;13441:9:13;;13336:120::o;13461:125::-;13501:4;13529:1;13526;13523:8;13520:34;;;13534:18;;:::i;:::-;-1:-1:-1;13571:9:13;;13461:125::o;13591:112::-;13623:1;13649;13639:35;;13654:18;;:::i;:::-;-1:-1:-1;13688:9:13;;13591:112::o;13708:184::-;-1:-1:-1;;;13757:1:13;13750:88;13857:4;13854:1;13847:15;13881:4;13878:1;13871:15

Swarm Source

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