ETH Price: $3,835.86 (+5.13%)

Token

Candy Cets (CC)
 

Overview

Max Total Supply

2,344 CC

Holders

380

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
whatstheplay.eth
Balance
20 CC
0x44900D2DCFa104BBD139544bb451B26Bf7866031
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:
candycets

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/candycets.sol

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




//contract by Candy Cets

contract candycets is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 4444;
    uint256 public TEAM_MINT_MAX = 50;

    uint256 public publicPrice = 0.0069 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 10;
    uint256 constant public PUBLIC_MINT_LIMIT = 20;
    uint256 constant public FREE_MINT_LIMIT_TXN = 5;
    uint256 constant public FREE_MINT_LIMIT = 5;
    

    uint256 public TOTAL_SUPPLY_TEAM;

    string public revealedURI;
    
    string public hiddenURI = "ipfs://QmTU44DLRZKnFddtzrhMjQSTwn8Re5M37UdLwfHr8C7WNC";

    // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata
    string public CONTRACT_URI = "ipfs://QmTU44DLRZKnFddtzrhMjQSTwn8Re5M37UdLwfHr8C7WNC";

    bool public paused = true;
    bool public revealed = false;

    bool public freeSale = true;
    bool public publicSale = false;

    address public teamWallet = 0x2B76533fD6EF30923Fba825fE2598633205c827c;

    mapping(address => uint256) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor() ERC721A("Candy Cets", "CC") { }


   //reduce gas 
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

    function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
        require(msg.sender == teamWallet, "Team minting only");
        require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");
        require(totalSupply() >= 1444, "Team mints after free");

        TOTAL_SUPPLY_TEAM += quantity;

        _safeMint(msg.sender, quantity);
    }
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(freeSale, "Free sale inactive");
        require(msg.value == 0, "This phase is free");
      
        require(quantity <=FREE_MINT_LIMIT_TXN, "only 5 per transaction");

        uint256 frMints = userMintedFree[msg.sender];
        require (frMints + quantity <= FREE_MINT_LIMIT, "User max free mint limit reached");

        uint256 newSupply = totalSupply() + quantity;
        
        require(newSupply <= 1444, "Not enough free supply");

        
        
        userMintedFree[msg.sender] = (frMints + quantity);

        if(newSupply == 1444) {
            freeSale = false;
            publicSale = true;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

      
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
       
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return hiddenURI;
        }
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

  

    function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
        TEAM_MINT_MAX = _teamMintMax;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    // Note: This method can be hidden/removed if this is a constant.
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenURI = _hiddenMetadataUri;
    }

    function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner {
        revealed = _revealed;
        revealedURI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

   
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }

    function setTeamWalletAddress(address _teamWallet) public onlyOwner {
        teamWallet = _teamWallet;
    }

    function withdraw() external payable onlyOwner {
       
        // Withdraw the ENTIRE remaining balance to the team wallet
        payable(owner()).transfer(address(this).balance);
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
        // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

   

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60326009556618838370f34000600a5560e0604052603560808181529062002b6760a03980516200003991600d9160209091019062000187565b5060405180606001604052806035815260200162002b676035913980516200006a91600e9160209091019062000187565b50600f80546001600160c01b031916772b76533fd6ef30923fba825fe2598633205c827c00010001179055348015620000a257600080fd5b506040518060400160405280600a81526020016943616e6479204365747360b01b81525060405180604001604052806002815260200161434360f01b815250620000fb620000f56200013360201b60201c565b62000137565b81516200011090600390602085019062000187565b5080516200012690600490602084019062000187565b505060018055506200026a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000195906200022d565b90600052602060002090601f016020900481019282620001b9576000855562000204565b82601f10620001d457805160ff191683800117855562000204565b8280016001018555821562000204579182015b8281111562000204578251825591602001919060010190620001e7565b506200021292915062000216565b5090565b5b8082111562000212576000815560010162000217565b600181811c908216806200024257607f821691505b602082108114156200026457634e487b7160e01b600052602260045260246000fd5b50919050565b6128ed806200027a6000396000f3fe60806040526004361061031a5760003560e01c806364f64076116101ab57806395d89b41116100f7578063c627525511610095578063e8a3d4851161006f578063e8a3d485146108c6578063e985e9c5146108db578063f2fde38b14610924578063f7e8d6ea1461094457600080fd5b8063c627525514610866578063c87b56dd14610886578063e0a80853146108a657600080fd5b8063a7048ae1116100d1578063a7048ae11461055a578063a945bf801461081b578063b88d4fde14610831578063bceae77b1461085157600080fd5b806395d89b41146107c6578063a22cb465146107db578063a4b41a15146107fb57600080fd5b80637af3a1af116101645780638cc54e7f1161013e5780638cc54e7f146107535780638da5cb5b146107685780639007bd7214610786578063938e3d7b146107a657600080fd5b80637af3a1af146107005780637c928fe91461072057806388dedc141461073357600080fd5b806364f64076146106455780636b39fca41461067257806370a0823114610688578063715018a6146106a8578063763ea95f146106bd5780637aeb7242146106d357600080fd5b806333bc1c5c1161026a578063518302271161022357806359927044116101fd57806359927044146105c35780635c975abb146105eb5780635ed3e25e146106055780636352211e1461062557600080fd5b8063518302271461056f57806355f804b31461058e57806356b4f673146105ae57600080fd5b806333bc1c5c146104c45780633ccfd60b146104e557806342842e0e146104ed578063438b63001461050d5780634fdd43cb1461053a57806350f51f411461055a57600080fd5b806318160ddd116102d75780632db11544116102b15780632db11544146104735780632fbba115146104865780632fecf20b1461049957806332cb6b0c146104ae57600080fd5b806318160ddd1461041057806323b872dd146104335780632c4b23341461045357600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063095ea7b3146103ae5780630f15ad8d146103d057806316c38b3c146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461246f565b610959565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109ab565b60405161034b9190612697565b34801561038257600080fd5b506103966103913660046124da565b610a3d565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c93660046123e0565b610a81565b005b3480156103dc57600080fd5b506103ce6103eb3660046124da565b610b54565b3480156103fc57600080fd5b506103ce61040b366004612409565b610b8c565b34801561041c57600080fd5b50610425610bc9565b60405190815260200161034b565b34801561043f57600080fd5b506103ce61044e366004612303565b610bd7565b34801561045f57600080fd5b506103ce61046e3660046122b7565b610be7565b6103ce6104813660046124da565b610c3f565b6103ce6104943660046124da565b610dee565b3480156104a557600080fd5b50610425600a81565b3480156104ba57600080fd5b5061042561115c81565b3480156104d057600080fd5b50600f5461033f906301000000900460ff1681565b6103ce610f87565b3480156104f957600080fd5b506103ce610508366004612303565b610fee565b34801561051957600080fd5b5061052d6105283660046122b7565b611009565b60405161034b9190612653565b34801561054657600080fd5b506103ce6105553660046124a7565b611106565b34801561056657600080fd5b50610425600581565b34801561057b57600080fd5b50600f5461033f90610100900460ff1681565b34801561059a57600080fd5b506103ce6105a93660046124a7565b611143565b3480156105ba57600080fd5b50610369611180565b3480156105cf57600080fd5b50600f546103969064010000000090046001600160a01b031681565b3480156105f757600080fd5b50600f5461033f9060ff1681565b34801561061157600080fd5b506103ce610620366004612423565b61120e565b34801561063157600080fd5b506103966106403660046124da565b61125e565b34801561065157600080fd5b506104256106603660046122b7565b60106020526000908152604090205481565b34801561067e57600080fd5b5061042560095481565b34801561069457600080fd5b506104256106a33660046122b7565b611269565b3480156106b457600080fd5b506103ce6112b8565b3480156106c957600080fd5b50610425600b5481565b3480156106df57600080fd5b506104256106ee3660046122b7565b60116020526000908152604090205481565b34801561070c57600080fd5b506103ce61071b366004612409565b6112ee565b6103ce61072e3660046124da565b611347565b34801561073f57600080fd5b506103ce61074e366004612409565b6115a7565b34801561075f57600080fd5b50610369611601565b34801561077457600080fd5b506000546001600160a01b0316610396565b34801561079257600080fd5b506103ce6107a13660046124f2565b61160e565b3480156107b257600080fd5b506103ce6107c13660046124a7565b6116ba565b3480156107d257600080fd5b506103696116f7565b3480156107e757600080fd5b506103ce6107f63660046123b7565b611706565b34801561080757600080fd5b50600f5461033f9062010000900460ff1681565b34801561082757600080fd5b50610425600a5481565b34801561083d57600080fd5b506103ce61084c36600461233e565b61179c565b34801561085d57600080fd5b50610425601481565b34801561087257600080fd5b506103ce6108813660046124da565b6117e0565b34801561089257600080fd5b506103696108a13660046124da565b61180f565b3480156108b257600080fd5b506103ce6108c1366004612409565b611957565b3480156108d257600080fd5b5061036961199b565b3480156108e757600080fd5b5061033f6108f63660046122d1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561093057600080fd5b506103ce61093f3660046122b7565b6119aa565b34801561095057600080fd5b50610369611a42565b60006301ffc9a760e01b6001600160e01b03198316148061098a57506380ac58cd60e01b6001600160e01b03198316145b806109a55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109ba906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546109e6906127f5565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882611a4f565b610a65576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a8c82611a84565b9050806001600160a01b0316836001600160a01b03161415610ac15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610af857610adb81336108f6565b610af8576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610b7e906126d7565b60405180910390fd5b600955565b6000546001600160a01b03163314610bb65760405162461bcd60e51b8152600401610b7e906126d7565b600f805460ff1916911515919091179055565b600254600154036000190190565b610be2838383611af4565b505050565b6000546001600160a01b03163314610c115760405162461bcd60e51b8152600401610b7e906126d7565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610c645760405162461bcd60e51b8152600401610b7e9061270c565b61115c81610c70610bc9565b610c7a9190612767565b1115610c985760405162461bcd60e51b8152600401610b7e90612738565b323314610cb75760405162461bcd60e51b8152600401610b7e906126aa565b600f546301000000900460ff16610d075760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610b7e565b600a821115610d4c5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610b7e565b600a54336000908152601160205260409020546014610d6b8583612767565b1115610daf5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610b7e565b610dc1610dbc8584612793565b611c97565b610dcb8482612767565b33600081815260116020526040902091909155610de89085611d76565b50505050565b600f54819060ff1615610e135760405162461bcd60e51b8152600401610b7e9061270c565b61115c81610e1f610bc9565b610e299190612767565b1115610e475760405162461bcd60e51b8152600401610b7e90612738565b323314610e665760405162461bcd60e51b8152600401610b7e906126aa565b600f5464010000000090046001600160a01b03163314610ebc5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610b7e565b60095482600b54610ecd9190612767565b1115610f105760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610b7e565b6105a4610f1b610bc9565b1015610f615760405162461bcd60e51b81526020600482015260156024820152745465616d206d696e7473206166746572206672656560581b6044820152606401610b7e565b81600b6000828254610f739190612767565b90915550610f8390503383611d76565b5050565b6000546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610b7e906126d7565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610feb573d6000803e3d6000fd5b50565b610be28383836040518060200160405280600081525061179c565b6060600061101683611269565b905060008167ffffffffffffffff81111561104157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561106a578160200160208202803683370190505b509050600160005b8381108015611083575061115c8211155b156110fc5760006110938361125e565b9050866001600160a01b0316816001600160a01b031614156110e957828483815181106110d057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152816110e581612830565b9250505b826110f381612830565b93505050611072565b5090949350505050565b6000546001600160a01b031633146111305760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600d906020840190612162565b6000546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600c906020840190612162565b600e805461118d906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546111b9906127f5565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b505050505081565b6000546001600160a01b031633146112385760405162461bcd60e51b8152600401610b7e906126d7565b600f805461ff001916610100841515021790558051610be290600c906020840190612162565b60006109a582611a84565b60006001600160a01b038216611292576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146112e25760405162461bcd60e51b8152600401610b7e906126d7565b6112ec6000611d90565b565b6000546001600160a01b031633146113185760405162461bcd60e51b8152600401610b7e906126d7565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff161561136c5760405162461bcd60e51b8152600401610b7e9061270c565b61115c81611378610bc9565b6113829190612767565b11156113a05760405162461bcd60e51b8152600401610b7e90612738565b3233146113bf5760405162461bcd60e51b8152600401610b7e906126aa565b600f5462010000900460ff1661140c5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610b7e565b341561144f5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610b7e565b60058211156114995760405162461bcd60e51b815260206004820152601660248201527537b7363c901a903832b9103a3930b739b0b1ba34b7b760511b6044820152606401610b7e565b3360009081526010602052604090205460056114b58483612767565b11156115035760405162461bcd60e51b815260206004820181905260248201527f55736572206d61782066726565206d696e74206c696d697420726561636865646044820152606401610b7e565b60008361150e610bc9565b6115189190612767565b90506105a48111156115655760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610b7e565b61156f8483612767565b336000908152601060205260409020556105a481141561159d57600f805463ffff0000191663010000001790555b610de83385611d76565b6000546001600160a01b031633146115d15760405162461bcd60e51b8152600401610b7e906126d7565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461118d906127f5565b6000546001600160a01b031633146116385760405162461bcd60e51b8152600401610b7e906126d7565b600f54829060ff161561165d5760405162461bcd60e51b8152600401610b7e9061270c565b61115c81611669610bc9565b6116739190612767565b11156116915760405162461bcd60e51b8152600401610b7e90612738565b3233146116b05760405162461bcd60e51b8152600401610b7e906126aa565b610be28284611d76565b6000546001600160a01b031633146116e45760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600e906020840190612162565b6060600480546109ba906127f5565b6001600160a01b0382163314156117305760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117a7848484611af4565b6001600160a01b0383163b15610de8576117c384848484611de0565b610de8576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b0316331461180a5760405162461bcd60e51b8152600401610b7e906126d7565b600a55565b606061181a82611a4f565b61187e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7e565b600f54610100900460ff16156118c057600c61189983611ed8565b6040516020016118aa92919061255c565b6040516020818303038152906040529050919050565b600d80546118cd906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f9906127f5565b80156119465780601f1061191b57610100808354040283529160200191611946565b820191906000526020600020905b81548152906001019060200180831161192957829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146119815760405162461bcd60e51b8152600401610b7e906126d7565b600f80549115156101000261ff0019909216919091179055565b6060600e80546109ba906127f5565b6000546001600160a01b031633146119d45760405162461bcd60e51b8152600401610b7e906126d7565b6001600160a01b038116611a395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7e565b610feb81611d90565b600c805461118d906127f5565b600081600111158015611a63575060015482105b80156109a5575050600090815260056020526040902054600160e01b161590565b60008180600111611adb57600154811015611adb57600081815260056020526040902054600160e01b8116611ad9575b80611ad2575060001901600081815260056020526040902054611ab4565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611aff82611a84565b9050836001600160a01b0316816001600160a01b031614611b325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b505750611b5085336108f6565b80611b6b575033611b6084610a3d565b6001600160a01b0316145b905080611b8b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bb257604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611c4f5760018301600081815260056020526040902054611c4d576001548114611c4d5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611d3057600033611cac83346127b2565b604051600081818185875af1925050503d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b5050905080610f835760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610b7e565b80341015610feb5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610b7e565b610f83828260405180602001604052806000815250611ff2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e15903390899088908890600401612616565b602060405180830381600087803b158015611e2f57600080fd5b505af1925050508015611e5f575060408051601f3d908101601f19168201909252611e5c9181019061248b565b60015b611eba573d808015611e8d576040519150601f19603f3d011682016040523d82523d6000602084013e611e92565b606091505b508051611eb2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611efc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f265780611f1081612830565b9150611f1f9050600a8361277f565b9150611f00565b60008167ffffffffffffffff811115611f4f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f79576020820181803683370190505b5090505b8415611ed057611f8e6001836127b2565b9150611f9b600a8661284b565b611fa6906030612767565b60f81b818381518110611fc957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611feb600a8661277f565b9450611f7d565b6001546001600160a01b03841661201b57604051622e076360e81b815260040160405180910390fd5b826120395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1561210e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120d76000878480600101955087611de0565b6120f4576040516368d2bf6b60e11b815260040160405180910390fd5b80821061208c57826001541461210957600080fd5b612153565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061210f575b50600155610de8600085838684565b82805461216e906127f5565b90600052602060002090601f01602090048101928261219057600085556121d6565b82601f106121a957805160ff19168380011785556121d6565b828001600101855582156121d6579182015b828111156121d65782518255916020019190600101906121bb565b506121e29291506121e6565b5090565b5b808211156121e257600081556001016121e7565b600067ffffffffffffffff808411156122165761221661288b565b604051601f8501601f19908116603f0116810190828211818310171561223e5761223e61288b565b8160405280935085815286868601111561225757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195257600080fd5b8035801515811461195257600080fd5b600082601f8301126122a8578081fd5b611ad2838335602085016121fb565b6000602082840312156122c8578081fd5b611ad282612271565b600080604083850312156122e3578081fd5b6122ec83612271565b91506122fa60208401612271565b90509250929050565b600080600060608486031215612317578081fd5b61232084612271565b925061232e60208501612271565b9150604084013590509250925092565b60008060008060808587031215612353578081fd5b61235c85612271565b935061236a60208601612271565b925060408501359150606085013567ffffffffffffffff81111561238c578182fd5b8501601f8101871361239c578182fd5b6123ab878235602084016121fb565b91505092959194509250565b600080604083850312156123c9578182fd5b6123d283612271565b91506122fa60208401612288565b600080604083850312156123f2578182fd5b6123fb83612271565b946020939093013593505050565b60006020828403121561241a578081fd5b611ad282612288565b60008060408385031215612435578182fd5b61243e83612288565b9150602083013567ffffffffffffffff811115612459578182fd5b61246585828601612298565b9150509250929050565b600060208284031215612480578081fd5b8135611ad2816128a1565b60006020828403121561249c578081fd5b8151611ad2816128a1565b6000602082840312156124b8578081fd5b813567ffffffffffffffff8111156124ce578182fd5b611ed084828501612298565b6000602082840312156124eb578081fd5b5035919050565b60008060408385031215612504578182fd5b823591506122fa60208401612271565b6000815180845261252c8160208601602086016127c9565b601f01601f19169290920160200192915050565b600081516125528185602086016127c9565b9290920192915050565b600080845482600182811c91508083168061257857607f831692505b602080841082141561259857634e487b7160e01b87526022600452602487fd5b8180156125ac57600181146125bd576125e9565b60ff198616895284890196506125e9565b60008b815260209020885b868110156125e15781548b8201529085019083016125c8565b505084890196505b50505050505061260d6125fc8286612540565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264990830184612514565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561268b5783518352928401929184019160010161266f565b50909695505050505050565b602081526000611ad26020830184612514565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561277a5761277a61285f565b500190565b60008261278e5761278e612875565b500490565b60008160001904831182151516156127ad576127ad61285f565b500290565b6000828210156127c4576127c461285f565b500390565b60005b838110156127e45781810151838201526020016127cc565b83811115610de85750506000910152565b600181811c9082168061280957607f821691505b6020821081141561282a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128445761284461285f565b5060010190565b60008261285a5761285a612875565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610feb57600080fdfea2646970667358221220ef0b507b22e1cd447317841c7e03c830e1299d4aba185524664fb14ce4ab261664736f6c63430008040033697066733a2f2f516d54553434444c525a4b6e466464747a72684d6a515354776e385265354d333755644c77664872384337574e43

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806364f64076116101ab57806395d89b41116100f7578063c627525511610095578063e8a3d4851161006f578063e8a3d485146108c6578063e985e9c5146108db578063f2fde38b14610924578063f7e8d6ea1461094457600080fd5b8063c627525514610866578063c87b56dd14610886578063e0a80853146108a657600080fd5b8063a7048ae1116100d1578063a7048ae11461055a578063a945bf801461081b578063b88d4fde14610831578063bceae77b1461085157600080fd5b806395d89b41146107c6578063a22cb465146107db578063a4b41a15146107fb57600080fd5b80637af3a1af116101645780638cc54e7f1161013e5780638cc54e7f146107535780638da5cb5b146107685780639007bd7214610786578063938e3d7b146107a657600080fd5b80637af3a1af146107005780637c928fe91461072057806388dedc141461073357600080fd5b806364f64076146106455780636b39fca41461067257806370a0823114610688578063715018a6146106a8578063763ea95f146106bd5780637aeb7242146106d357600080fd5b806333bc1c5c1161026a578063518302271161022357806359927044116101fd57806359927044146105c35780635c975abb146105eb5780635ed3e25e146106055780636352211e1461062557600080fd5b8063518302271461056f57806355f804b31461058e57806356b4f673146105ae57600080fd5b806333bc1c5c146104c45780633ccfd60b146104e557806342842e0e146104ed578063438b63001461050d5780634fdd43cb1461053a57806350f51f411461055a57600080fd5b806318160ddd116102d75780632db11544116102b15780632db11544146104735780632fbba115146104865780632fecf20b1461049957806332cb6b0c146104ae57600080fd5b806318160ddd1461041057806323b872dd146104335780632c4b23341461045357600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063095ea7b3146103ae5780630f15ad8d146103d057806316c38b3c146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461246f565b610959565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109ab565b60405161034b9190612697565b34801561038257600080fd5b506103966103913660046124da565b610a3d565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103ce6103c93660046123e0565b610a81565b005b3480156103dc57600080fd5b506103ce6103eb3660046124da565b610b54565b3480156103fc57600080fd5b506103ce61040b366004612409565b610b8c565b34801561041c57600080fd5b50610425610bc9565b60405190815260200161034b565b34801561043f57600080fd5b506103ce61044e366004612303565b610bd7565b34801561045f57600080fd5b506103ce61046e3660046122b7565b610be7565b6103ce6104813660046124da565b610c3f565b6103ce6104943660046124da565b610dee565b3480156104a557600080fd5b50610425600a81565b3480156104ba57600080fd5b5061042561115c81565b3480156104d057600080fd5b50600f5461033f906301000000900460ff1681565b6103ce610f87565b3480156104f957600080fd5b506103ce610508366004612303565b610fee565b34801561051957600080fd5b5061052d6105283660046122b7565b611009565b60405161034b9190612653565b34801561054657600080fd5b506103ce6105553660046124a7565b611106565b34801561056657600080fd5b50610425600581565b34801561057b57600080fd5b50600f5461033f90610100900460ff1681565b34801561059a57600080fd5b506103ce6105a93660046124a7565b611143565b3480156105ba57600080fd5b50610369611180565b3480156105cf57600080fd5b50600f546103969064010000000090046001600160a01b031681565b3480156105f757600080fd5b50600f5461033f9060ff1681565b34801561061157600080fd5b506103ce610620366004612423565b61120e565b34801561063157600080fd5b506103966106403660046124da565b61125e565b34801561065157600080fd5b506104256106603660046122b7565b60106020526000908152604090205481565b34801561067e57600080fd5b5061042560095481565b34801561069457600080fd5b506104256106a33660046122b7565b611269565b3480156106b457600080fd5b506103ce6112b8565b3480156106c957600080fd5b50610425600b5481565b3480156106df57600080fd5b506104256106ee3660046122b7565b60116020526000908152604090205481565b34801561070c57600080fd5b506103ce61071b366004612409565b6112ee565b6103ce61072e3660046124da565b611347565b34801561073f57600080fd5b506103ce61074e366004612409565b6115a7565b34801561075f57600080fd5b50610369611601565b34801561077457600080fd5b506000546001600160a01b0316610396565b34801561079257600080fd5b506103ce6107a13660046124f2565b61160e565b3480156107b257600080fd5b506103ce6107c13660046124a7565b6116ba565b3480156107d257600080fd5b506103696116f7565b3480156107e757600080fd5b506103ce6107f63660046123b7565b611706565b34801561080757600080fd5b50600f5461033f9062010000900460ff1681565b34801561082757600080fd5b50610425600a5481565b34801561083d57600080fd5b506103ce61084c36600461233e565b61179c565b34801561085d57600080fd5b50610425601481565b34801561087257600080fd5b506103ce6108813660046124da565b6117e0565b34801561089257600080fd5b506103696108a13660046124da565b61180f565b3480156108b257600080fd5b506103ce6108c1366004612409565b611957565b3480156108d257600080fd5b5061036961199b565b3480156108e757600080fd5b5061033f6108f63660046122d1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561093057600080fd5b506103ce61093f3660046122b7565b6119aa565b34801561095057600080fd5b50610369611a42565b60006301ffc9a760e01b6001600160e01b03198316148061098a57506380ac58cd60e01b6001600160e01b03198316145b806109a55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109ba906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546109e6906127f5565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882611a4f565b610a65576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a8c82611a84565b9050806001600160a01b0316836001600160a01b03161415610ac15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610af857610adb81336108f6565b610af8576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610b7e906126d7565b60405180910390fd5b600955565b6000546001600160a01b03163314610bb65760405162461bcd60e51b8152600401610b7e906126d7565b600f805460ff1916911515919091179055565b600254600154036000190190565b610be2838383611af4565b505050565b6000546001600160a01b03163314610c115760405162461bcd60e51b8152600401610b7e906126d7565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610c645760405162461bcd60e51b8152600401610b7e9061270c565b61115c81610c70610bc9565b610c7a9190612767565b1115610c985760405162461bcd60e51b8152600401610b7e90612738565b323314610cb75760405162461bcd60e51b8152600401610b7e906126aa565b600f546301000000900460ff16610d075760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610b7e565b600a821115610d4c5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610b7e565b600a54336000908152601160205260409020546014610d6b8583612767565b1115610daf5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610b7e565b610dc1610dbc8584612793565b611c97565b610dcb8482612767565b33600081815260116020526040902091909155610de89085611d76565b50505050565b600f54819060ff1615610e135760405162461bcd60e51b8152600401610b7e9061270c565b61115c81610e1f610bc9565b610e299190612767565b1115610e475760405162461bcd60e51b8152600401610b7e90612738565b323314610e665760405162461bcd60e51b8152600401610b7e906126aa565b600f5464010000000090046001600160a01b03163314610ebc5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610b7e565b60095482600b54610ecd9190612767565b1115610f105760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610b7e565b6105a4610f1b610bc9565b1015610f615760405162461bcd60e51b81526020600482015260156024820152745465616d206d696e7473206166746572206672656560581b6044820152606401610b7e565b81600b6000828254610f739190612767565b90915550610f8390503383611d76565b5050565b6000546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610b7e906126d7565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610feb573d6000803e3d6000fd5b50565b610be28383836040518060200160405280600081525061179c565b6060600061101683611269565b905060008167ffffffffffffffff81111561104157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561106a578160200160208202803683370190505b509050600160005b8381108015611083575061115c8211155b156110fc5760006110938361125e565b9050866001600160a01b0316816001600160a01b031614156110e957828483815181106110d057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152816110e581612830565b9250505b826110f381612830565b93505050611072565b5090949350505050565b6000546001600160a01b031633146111305760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600d906020840190612162565b6000546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600c906020840190612162565b600e805461118d906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546111b9906127f5565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b505050505081565b6000546001600160a01b031633146112385760405162461bcd60e51b8152600401610b7e906126d7565b600f805461ff001916610100841515021790558051610be290600c906020840190612162565b60006109a582611a84565b60006001600160a01b038216611292576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146112e25760405162461bcd60e51b8152600401610b7e906126d7565b6112ec6000611d90565b565b6000546001600160a01b031633146113185760405162461bcd60e51b8152600401610b7e906126d7565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff161561136c5760405162461bcd60e51b8152600401610b7e9061270c565b61115c81611378610bc9565b6113829190612767565b11156113a05760405162461bcd60e51b8152600401610b7e90612738565b3233146113bf5760405162461bcd60e51b8152600401610b7e906126aa565b600f5462010000900460ff1661140c5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610b7e565b341561144f5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610b7e565b60058211156114995760405162461bcd60e51b815260206004820152601660248201527537b7363c901a903832b9103a3930b739b0b1ba34b7b760511b6044820152606401610b7e565b3360009081526010602052604090205460056114b58483612767565b11156115035760405162461bcd60e51b815260206004820181905260248201527f55736572206d61782066726565206d696e74206c696d697420726561636865646044820152606401610b7e565b60008361150e610bc9565b6115189190612767565b90506105a48111156115655760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610b7e565b61156f8483612767565b336000908152601060205260409020556105a481141561159d57600f805463ffff0000191663010000001790555b610de83385611d76565b6000546001600160a01b031633146115d15760405162461bcd60e51b8152600401610b7e906126d7565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461118d906127f5565b6000546001600160a01b031633146116385760405162461bcd60e51b8152600401610b7e906126d7565b600f54829060ff161561165d5760405162461bcd60e51b8152600401610b7e9061270c565b61115c81611669610bc9565b6116739190612767565b11156116915760405162461bcd60e51b8152600401610b7e90612738565b3233146116b05760405162461bcd60e51b8152600401610b7e906126aa565b610be28284611d76565b6000546001600160a01b031633146116e45760405162461bcd60e51b8152600401610b7e906126d7565b8051610f8390600e906020840190612162565b6060600480546109ba906127f5565b6001600160a01b0382163314156117305760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117a7848484611af4565b6001600160a01b0383163b15610de8576117c384848484611de0565b610de8576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b0316331461180a5760405162461bcd60e51b8152600401610b7e906126d7565b600a55565b606061181a82611a4f565b61187e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7e565b600f54610100900460ff16156118c057600c61189983611ed8565b6040516020016118aa92919061255c565b6040516020818303038152906040529050919050565b600d80546118cd906127f5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f9906127f5565b80156119465780601f1061191b57610100808354040283529160200191611946565b820191906000526020600020905b81548152906001019060200180831161192957829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146119815760405162461bcd60e51b8152600401610b7e906126d7565b600f80549115156101000261ff0019909216919091179055565b6060600e80546109ba906127f5565b6000546001600160a01b031633146119d45760405162461bcd60e51b8152600401610b7e906126d7565b6001600160a01b038116611a395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7e565b610feb81611d90565b600c805461118d906127f5565b600081600111158015611a63575060015482105b80156109a5575050600090815260056020526040902054600160e01b161590565b60008180600111611adb57600154811015611adb57600081815260056020526040902054600160e01b8116611ad9575b80611ad2575060001901600081815260056020526040902054611ab4565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611aff82611a84565b9050836001600160a01b0316816001600160a01b031614611b325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b505750611b5085336108f6565b80611b6b575033611b6084610a3d565b6001600160a01b0316145b905080611b8b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bb257604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611c4f5760018301600081815260056020526040902054611c4d576001548114611c4d5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611d3057600033611cac83346127b2565b604051600081818185875af1925050503d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b5050905080610f835760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610b7e565b80341015610feb5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610b7e565b610f83828260405180602001604052806000815250611ff2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e15903390899088908890600401612616565b602060405180830381600087803b158015611e2f57600080fd5b505af1925050508015611e5f575060408051601f3d908101601f19168201909252611e5c9181019061248b565b60015b611eba573d808015611e8d576040519150601f19603f3d011682016040523d82523d6000602084013e611e92565b606091505b508051611eb2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611efc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f265780611f1081612830565b9150611f1f9050600a8361277f565b9150611f00565b60008167ffffffffffffffff811115611f4f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f79576020820181803683370190505b5090505b8415611ed057611f8e6001836127b2565b9150611f9b600a8661284b565b611fa6906030612767565b60f81b818381518110611fc957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611feb600a8661277f565b9450611f7d565b6001546001600160a01b03841661201b57604051622e076360e81b815260040160405180910390fd5b826120395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1561210e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120d76000878480600101955087611de0565b6120f4576040516368d2bf6b60e11b815260040160405180910390fd5b80821061208c57826001541461210957600080fd5b612153565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061210f575b50600155610de8600085838684565b82805461216e906127f5565b90600052602060002090601f01602090048101928261219057600085556121d6565b82601f106121a957805160ff19168380011785556121d6565b828001600101855582156121d6579182015b828111156121d65782518255916020019190600101906121bb565b506121e29291506121e6565b5090565b5b808211156121e257600081556001016121e7565b600067ffffffffffffffff808411156122165761221661288b565b604051601f8501601f19908116603f0116810190828211818310171561223e5761223e61288b565b8160405280935085815286868601111561225757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195257600080fd5b8035801515811461195257600080fd5b600082601f8301126122a8578081fd5b611ad2838335602085016121fb565b6000602082840312156122c8578081fd5b611ad282612271565b600080604083850312156122e3578081fd5b6122ec83612271565b91506122fa60208401612271565b90509250929050565b600080600060608486031215612317578081fd5b61232084612271565b925061232e60208501612271565b9150604084013590509250925092565b60008060008060808587031215612353578081fd5b61235c85612271565b935061236a60208601612271565b925060408501359150606085013567ffffffffffffffff81111561238c578182fd5b8501601f8101871361239c578182fd5b6123ab878235602084016121fb565b91505092959194509250565b600080604083850312156123c9578182fd5b6123d283612271565b91506122fa60208401612288565b600080604083850312156123f2578182fd5b6123fb83612271565b946020939093013593505050565b60006020828403121561241a578081fd5b611ad282612288565b60008060408385031215612435578182fd5b61243e83612288565b9150602083013567ffffffffffffffff811115612459578182fd5b61246585828601612298565b9150509250929050565b600060208284031215612480578081fd5b8135611ad2816128a1565b60006020828403121561249c578081fd5b8151611ad2816128a1565b6000602082840312156124b8578081fd5b813567ffffffffffffffff8111156124ce578182fd5b611ed084828501612298565b6000602082840312156124eb578081fd5b5035919050565b60008060408385031215612504578182fd5b823591506122fa60208401612271565b6000815180845261252c8160208601602086016127c9565b601f01601f19169290920160200192915050565b600081516125528185602086016127c9565b9290920192915050565b600080845482600182811c91508083168061257857607f831692505b602080841082141561259857634e487b7160e01b87526022600452602487fd5b8180156125ac57600181146125bd576125e9565b60ff198616895284890196506125e9565b60008b815260209020885b868110156125e15781548b8201529085019083016125c8565b505084890196505b50505050505061260d6125fc8286612540565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264990830184612514565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561268b5783518352928401929184019160010161266f565b50909695505050505050565b602081526000611ad26020830184612514565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561277a5761277a61285f565b500190565b60008261278e5761278e612875565b500490565b60008160001904831182151516156127ad576127ad61285f565b500290565b6000828210156127c4576127c461285f565b500390565b60005b838110156127e45781810151838201526020016127cc565b83811115610de85750506000910152565b600181811c9082168061280957607f821691505b6020821081141561282a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128445761284461285f565b5060010190565b60008261285a5761285a612875565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610feb57600080fdfea2646970667358221220ef0b507b22e1cd447317841c7e03c830e1299d4aba185524664fb14ce4ab261664736f6c63430008040033

Deployed Bytecode Sourcemap

44023:7032:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;8826:14:1;;8819:22;8801:41;;8789:2;8774:18;18620:615:0;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7484:32:1;;;7466:51;;7454:2;7439:18;25701:204:0;7421:102:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;:::-;;48827:110;;;;;;;;;;-1:-1:-1;48827:110:0;;;;;:::i;:::-;;:::i;49732:83::-;;;;;;;;;;-1:-1:-1;49732:83:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;;;;:::i;:::-;;;15987:25:1;;;15975:2;15960:18;17674:315:0;15942:76:1;26587:170:0;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;50176:111::-;;;;;;;;;;-1:-1:-1;50176:111:0;;;;;:::i;:::-;;:::i;46859:571::-;;;;;;:::i;:::-;;:::i;45659:388::-;;;;;;:::i;:::-;;:::i;44209:50::-;;;;;;;;;;;;44257:2;44209:50;;44069:41;;;;;;;;;;;;44106:4;44069:41;;44880:30;;;;;;;;;;-1:-1:-1;44880:30:0;;;;;;;;;;;50295:192;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;47446:689::-;;;;;;;;;;-1:-1:-1;47446:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49242:130::-;;;;;;;;;;-1:-1:-1;49242:130:0;;;;;:::i;:::-;;:::i;44319:47::-;;;;;;;;;;;;44365:1;44319:47;;44809:28;;;;;;;;;;-1:-1:-1;44809:28:0;;;;;;;;;;;49061:102;;;;;;;;;;-1:-1:-1;49061:102:0;;;;;:::i;:::-;;:::i;44684:84::-;;;;;;;;;;;;;:::i;44919:70::-;;;;;;;;;;-1:-1:-1;44919:70:0;;;;;;;-1:-1:-1;;;;;44919:70:0;;;44777:25;;;;;;;;;;-1:-1:-1;44777:25:0;;;;;;;;49380:155;;;;;;;;;;-1:-1:-1;49380:155:0;;;;;:::i;:::-;;:::i;23422:144::-;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;44998:49::-;;;;;;;;;;-1:-1:-1;44998:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;44117:33;;;;;;;;;;;;;;;;19299:224;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44431:32::-;;;;;;;;;;;;;;;;45054:47;;;;;;;;;;-1:-1:-1;45054:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;49918:123;;;;;;;;;;-1:-1:-1;49918:123:0;;;;;:::i;:::-;;:::i;46059:792::-;;;;;;:::i;:::-;;:::i;50047:121::-;;;;;;;;;;-1:-1:-1;50047:121:0;;;;;:::i;:::-;;:::i;44510:81::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;50631:146;;;;;;;;;;-1:-1:-1;50631:146:0;;;;;:::i;:::-;;:::i;49604:115::-;;;;;;;;;;-1:-1:-1;49604:115:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;44846:27::-;;;;;;;;;;-1:-1:-1;44846:27:0;;;;;;;;;;;44159:41;;;;;;;;;;;;;;;;27084:396;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;44266:46::-;;;;;;;;;;;;44310:2;44266:46;;48945:108;;;;;;;;;;-1:-1:-1;48945:108:0;;;;;:::i;:::-;;:::i;48143:386::-;;;;;;;;;;-1:-1:-1;48143:386:0;;;;;:::i;:::-;;:::i;49823:87::-;;;;;;;;;;-1:-1:-1;49823:87:0;;;;;:::i;:::-;;:::i;48716:97::-;;;;;;;;;;;;;:::i;26356:164::-;;;;;;;;;;-1:-1:-1;26356:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26477:25:0;;;26453:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26356:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44472:25::-;;;;;;;;;;;;;:::i;18620:615::-;18705:4;-1:-1:-1;;;;;;;;;19005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;;;;;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;-1:-1:-1;;;25819:34:0;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;;25330:24;;-1:-1:-1;;;25330:24:0;;;;;;;;;;;25306:48;41804:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;41804:10;26356:164;:::i;25419:44::-;25414:128;;25491:35;;-1:-1:-1;;;25491:35:0;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25161:474;;;:::o;48827:110::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;48901:13:::1;:28:::0;48827:110::o;49732:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49792:6:::1;:15:::0;;-1:-1:-1;;49792:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49732:83::o;17674:315::-;17940:12;;45275:1;17924:13;:28;-1:-1:-1;;17924:46:0;;17674:315::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;50176:111::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50255:10:::1;:24:::0;;-1:-1:-1;;;;;50255:24:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;50255:24:0;;::::1;::::0;;;::::1;::::0;;50176:111::o;46859:571::-;50854:6;;46929:8;;50854:6;;50853:7;50845:38;;;;-1:-1:-1;;;50845:38:0;;;;;;;:::i;:::-;44106:4;50918:8;50902:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50894:72;;;;-1:-1:-1;;;50894:72:0;;;;;;;:::i;:::-;50985:9;50998:10;50985:23;50977:55;;;;-1:-1:-1;;;50977:55:0;;;;;;;:::i;:::-;46958:10:::1;::::0;;;::::1;;;46950:43;;;::::0;-1:-1:-1;;;46950:43:0;;14300:2:1;46950:43:0::1;::::0;::::1;14282:21:1::0;14339:2;14319:18;;;14312:30;-1:-1:-1;;;14358:18:1;;;14351:50;14418:18;;46950:43:0::1;14272:170:1::0;46950:43:0::1;44257:2;47012:8;:33;;47004:63;;;::::0;-1:-1:-1;;;47004:63:0;;14649:2:1;47004:63:0::1;::::0;::::1;14631:21:1::0;14688:2;14668:18;;;14661:30;-1:-1:-1;;;14707:18:1;;;14700:47;14764:18;;47004:63:0::1;14621:167:1::0;47004:63:0::1;47096:11;::::0;47151:10:::1;47080:13;47138:24:::0;;;:12:::1;:24;::::0;;;;;44310:2:::1;47199:20;47211:8:::0;47138:24;47199:20:::1;:::i;:::-;:41;;47191:73;;;::::0;-1:-1:-1;;;47191:73:0;;11786:2:1;47191:73:0::1;::::0;::::1;11768:21:1::0;11825:2;11805:18;;;11798:30;-1:-1:-1;;;11844:18:1;;;11837:49;11903:18;;47191:73:0::1;11758:169:1::0;47191:73:0::1;47285:31;47299:16;47307:8:::0;47299:5;:16:::1;:::i;:::-;47285:13;:31::i;:::-;47357:20;47369:8:::0;47357:9;:20:::1;:::i;:::-;47342:10;47329:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;47391:31:::1;::::0;47413:8;47391:9:::1;:31::i;:::-;51043:1;;46859:571:::0;;:::o;45659:388::-;50854:6;;45725:8;;50854:6;;50853:7;50845:38;;;;-1:-1:-1;;;50845:38:0;;;;;;;:::i;:::-;44106:4;50918:8;50902:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50894:72;;;;-1:-1:-1;;;50894:72:0;;;;;;;:::i;:::-;50985:9;50998:10;50985:23;50977:55;;;;-1:-1:-1;;;50977:55:0;;;;;;;:::i;:::-;45768:10:::1;::::0;;;::::1;-1:-1:-1::0;;;;;45768:10:0::1;45754;:24;45746:54;;;::::0;-1:-1:-1;;;45746:54:0;;10030:2:1;45746:54:0::1;::::0;::::1;10012:21:1::0;10069:2;10049:18;;;10042:30;-1:-1:-1;;;10088:18:1;;;10081:47;10145:18;;45746:54:0::1;10002:167:1::0;45746:54:0::1;45851:13;;45839:8;45819:17;;:28;;;;:::i;:::-;:45;;45811:76;;;::::0;-1:-1:-1;;;45811:76:0;;13258:2:1;45811:76:0::1;::::0;::::1;13240:21:1::0;13297:2;13277:18;;;13270:30;-1:-1:-1;;;13316:18:1;;;13309:48;13374:18;;45811:76:0::1;13230:168:1::0;45811:76:0::1;45923:4;45906:13;:11;:13::i;:::-;:21;;45898:55;;;::::0;-1:-1:-1;;;45898:55:0;;11436:2:1;45898:55:0::1;::::0;::::1;11418:21:1::0;11475:2;11455:18;;;11448:30;-1:-1:-1;;;11494:18:1;;;11487:51;11555:18;;45898:55:0::1;11408:171:1::0;45898:55:0::1;45987:8;45966:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46008:31:0::1;::::0;-1:-1:-1;46018:10:0::1;46030:8:::0;46008:9:::1;:31::i;:::-;45659:388:::0;;:::o;50295:192::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4125:7;4152:6;;50431:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;50457:21:::1;50431:48:::0;::::1;;;::::0;50457:21;;50431:48;4125:7;50431:48;50457:21;4152:6;50431:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50295:192::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;47446:689::-;47506:16;47540:23;47566:17;47576:6;47566:9;:17::i;:::-;47540:43;;47594:30;47641:15;47627:30;;;;;;-1:-1:-1;;;47627:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47627:30:0;-1:-1:-1;47594:63:0;-1:-1:-1;47693:1:0;47668:22;47745:350;47770:15;47752;:33;:65;;;;;44106:4;47789:14;:28;;47752:65;47745:350;;;47834:25;47862:23;47870:14;47862:7;:23::i;:::-;47834:51;;47927:6;-1:-1:-1;;;;;47906:27:0;:17;-1:-1:-1;;;;;47906:27:0;;47902:153;;;47987:14;47954:13;47968:15;47954:30;;;;;;-1:-1:-1;;;47954:30:0;;;;;;;;;;;;;;;;;;:47;48022:17;;;;:::i;:::-;;;;47902:153;48067:16;;;;:::i;:::-;;;;47745:350;;;;-1:-1:-1;48114:13:0;;47446:689;-1:-1:-1;;;;47446:689:0:o;49242:130::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49334:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;49061:102::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49133:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44684:84::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49380:155::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49474:8:::1;:20:::0;;-1:-1:-1;;49474:20:0::1;;::::0;::::1;;;;::::0;;49505:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;23422:144::-:0;23486:7;23529:27;23548:7;23529:18;:27::i;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;-1:-1:-1;;;19415:28:0;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49918:123::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49985:10:::1;:19:::0;;-1:-1:-1;;50015:18:0;49985:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;50015:18:0;;;;;;::::1;::::0;;;::::1;::::0;;49918:123::o;46059:792::-;50854:6;;46127:8;;50854:6;;50853:7;50845:38;;;;-1:-1:-1;;;50845:38:0;;;;;;;:::i;:::-;44106:4;50918:8;50902:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50894:72;;;;-1:-1:-1;;;50894:72:0;;;;;;;:::i;:::-;50985:9;50998:10;50985:23;50977:55;;;;-1:-1:-1;;;50977:55:0;;;;;;;:::i;:::-;46156:8:::1;::::0;;;::::1;;;46148:39;;;::::0;-1:-1:-1;;;46148:39:0;;12134:2:1;46148:39:0::1;::::0;::::1;12116:21:1::0;12173:2;12153:18;;;12146:30;-1:-1:-1;;;12192:18:1;;;12185:48;12250:18;;46148:39:0::1;12106:168:1::0;46148:39:0::1;46206:9;:14:::0;46198:45:::1;;;::::0;-1:-1:-1;;;46198:45:0;;13605:2:1;46198:45:0::1;::::0;::::1;13587:21:1::0;13644:2;13624:18;;;13617:30;-1:-1:-1;;;13663:18:1;;;13656:48;13721:18;;46198:45:0::1;13577:168:1::0;46198:45:0::1;44365:1;46270:8;:30;;46262:65;;;::::0;-1:-1:-1;;;46262:65:0;;10724:2:1;46262:65:0::1;::::0;::::1;10706:21:1::0;10763:2;10743:18;;;10736:30;-1:-1:-1;;;10782:18:1;;;10775:52;10844:18;;46262:65:0::1;10696:172:1::0;46262:65:0::1;46373:10;46340:15;46358:26:::0;;;:14:::1;:26;::::0;;;;;44415:1:::1;46404:18;46414:8:::0;46358:26;46404:18:::1;:::i;:::-;:37;;46395:83;;;::::0;-1:-1:-1;;;46395:83:0;;11075:2:1;46395:83:0::1;::::0;::::1;11057:21:1::0;;;11094:18;;;11087:30;11153:34;11133:18;;;11126:62;11205:18;;46395:83:0::1;11047:182:1::0;46395:83:0::1;46491:17;46527:8;46511:13;:11;:13::i;:::-;:24;;;;:::i;:::-;46491:44;;46577:4;46564:9;:17;;46556:52;;;::::0;-1:-1:-1;;;46556:52:0;;15342:2:1;46556:52:0::1;::::0;::::1;15324:21:1::0;15381:2;15361:18;;;15354:30;-1:-1:-1;;;15400:18:1;;;15393:52;15462:18;;46556:52:0::1;15314:172:1::0;46556:52:0::1;46671:18;46681:8:::0;46671:7;:18:::1;:::i;:::-;46656:10;46641:26;::::0;;;:14:::1;:26;::::0;;;;:49;46719:4:::1;46706:17:::0;::::1;46703:97;;;46740:8;:16:::0;;-1:-1:-1;;46771:17:0;;::::1;::::0;;46703:97:::1;46812:31;46822:10;46834:8;46812:9;:31::i;50047:121::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50112:8:::1;:17:::0;;-1:-1:-1;;50140:20:0;50112:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;50140:20:0;;;;;;::::1;::::0;;;::::1;::::0;;50047:121::o;44510:81::-;;;;;;;:::i;50631:146::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50854:6:::1;::::0;50719:8;;50854:6:::1;;50853:7;50845:38;;;;-1:-1:-1::0;;;50845:38:0::1;;;;;;;:::i;:::-;44106:4;50918:8;50902:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50894:72;;;;-1:-1:-1::0;;;50894:72:0::1;;;;;;;:::i;:::-;50985:9;50998:10;50985:23;50977:55;;;;-1:-1:-1::0;;;50977:55:0::1;;;;;;;:::i;:::-;50740:29:::2;50750:8;50760;50740:9;:29::i;49604:115::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49684:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23802:104::-:0;23858:13;23891:7;23884:14;;;;;:::i;25977:308::-;-1:-1:-1;;;;;26076:31:0;;41804:10;26076:31;26072:61;;;26116:17;;-1:-1:-1;;;26116:17:0;;;;;;;;;;;26072:61;41804:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;8801:41:1;;;26146:49:0;;41804:10;26222:55;;8774:18:1;26222:55:0;;;;;;;25977:308;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;48945:108;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49019:11:::1;:26:::0;48945:108::o;48143:386::-;48209:13;48252:17;48260:8;48252:7;:17::i;:::-;48244:77;;;;-1:-1:-1;;;48244:77:0;;12842:2:1;48244:77:0;;;12824:21:1;12881:2;12861:18;;;12854:30;12920:34;12900:18;;;12893:62;-1:-1:-1;;;12971:18:1;;;12964:45;13026:19;;48244:77:0;12814:237:1;48244:77:0;48346:8;;;;;;;48342:180;;;48402:11;48415:26;48432:8;48415:16;:26::i;:::-;48385:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48371:81;;48143:386;;;:::o;48342:180::-;48501:9;48494:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48143:386;;;:::o;48342:180::-;48143:386;;;:::o;49823:87::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49885:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49885:17:0;;::::1;::::0;;;::::1;::::0;;49823:87::o;48716:97::-;48760:13;48793:12;48786:19;;;;;:::i;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9279:2:1;5069:73:0::1;::::0;::::1;9261:21:1::0;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:36;9454:19;;5069:73:0::1;9251:228:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;44472:25::-:0;;;;;;;:::i;27735:273::-;27792:4;27848:7;45275:1;27829:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;;45275:1;21088:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;-1:-1:-1;;;21285:23:0;;21281:699;;21804:113;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;;21950:6;20937:1129;-1:-1:-1;;;20937:1129:0:o;21281:699::-;21130:869;;22027:31;;-1:-1:-1;;;22027:31:0;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;-1:-1:-1;;;33217:28:0;;;;;;;;;;;33159:86;33258:22;41804:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;41804:10;26356:164;:::i;33328:43::-;33284:147;;;-1:-1:-1;41804:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;-1:-1:-1;;;33476:35:0;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;-1:-1:-1;;;33551:23:0;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;;;;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;-1:-1:-1;;;34545:15:0;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34747:626;;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;32974:2515;;;;;:::o;45292:359::-;45365:5;45353:9;:17;45349:295;;;45388:9;45411:10;45454:17;45466:5;45454:9;:17;:::i;:::-;45403:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45387:104;;;45514:4;45506:32;;;;-1:-1:-1;;;45506:32:0;;9686:2:1;45506:32:0;;;9668:21:1;9725:2;9705:18;;;9698:30;-1:-1:-1;;;9744:18:1;;;9737:45;9799:18;;45506:32:0;9658:165:1;45349:295:0;45581:5;45569:9;:17;45565:79;;;45603:29;;-1:-1:-1;;;45603:29:0;;13952:2:1;45603:29:0;;;13934:21:1;13991:2;13971:18;;;13964:30;-1:-1:-1;;;14010:18:1;;;14003:49;14069:18;;45603:29:0;13924:169:1;28092:104:0;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5349:191;;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;41804:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:13:0;;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28715:13;;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;-1:-1:-1;;;28768:19:0;;;;;;;;;;;28739:48;28802:13;28798:44;;28824:18;;-1:-1:-1;;;28824:18:0;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;30737:60;30766:1;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:229;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:2;;1111:5;1104;1097:20;1056:2;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:196::-;1286:6;1339:2;1327:9;1318:7;1314:23;1310:32;1307:2;;;1360:6;1352;1345:22;1307:2;1388:29;1407:9;1388:29;:::i;1428:270::-;1496:6;1504;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1606:29;1625:9;1606:29;:::i;:::-;1596:39;;1654:38;1688:2;1677:9;1673:18;1654:38;:::i;:::-;1644:48;;1515:183;;;;;:::o;1703:338::-;1780:6;1788;1796;1849:2;1837:9;1828:7;1824:23;1820:32;1817:2;;;1870:6;1862;1855:22;1817:2;1898:29;1917:9;1898:29;:::i;:::-;1888:39;;1946:38;1980:2;1969:9;1965:18;1946:38;:::i;:::-;1936:48;;2031:2;2020:9;2016:18;2003:32;1993:42;;1807:234;;;;;:::o;2046:696::-;2141:6;2149;2157;2165;2218:3;2206:9;2197:7;2193:23;2189:33;2186:2;;;2240:6;2232;2225:22;2186:2;2268:29;2287:9;2268:29;:::i;:::-;2258:39;;2316:38;2350:2;2339:9;2335:18;2316:38;:::i;:::-;2306:48;;2401:2;2390:9;2386:18;2373:32;2363:42;;2456:2;2445:9;2441:18;2428:32;2483:18;2475:6;2472:30;2469:2;;;2520:6;2512;2505:22;2469:2;2548:22;;2601:4;2593:13;;2589:27;-1:-1:-1;2579:2:1;;2635:6;2627;2620:22;2579:2;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2176:566;;;;;;;:::o;2747:264::-;2812:6;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:29;2941:9;2922:29;:::i;:::-;2912:39;;2970:35;3001:2;2990:9;2986:18;2970:35;:::i;3016:264::-;3084:6;3092;3145:2;3133:9;3124:7;3120:23;3116:32;3113:2;;;3166:6;3158;3151:22;3113:2;3194:29;3213:9;3194:29;:::i;:::-;3184:39;3270:2;3255:18;;;;3242:32;;-1:-1:-1;;;3103:177:1:o;3285:190::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3443:26;3459:9;3443:26;:::i;3480:410::-;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:2;;;3637:6;3629;3622:22;3584:2;3665:26;3681:9;3665:26;:::i;:::-;3655:36;;3742:2;3731:9;3727:18;3714:32;3769:18;3761:6;3758:30;3755:2;;;3806:6;3798;3791:22;3755:2;3834:50;3876:7;3867:6;3856:9;3852:22;3834:50;:::i;:::-;3824:60;;;3574:316;;;;;:::o;3895:255::-;3953:6;4006:2;3994:9;3985:7;3981:23;3977:32;3974:2;;;4027:6;4019;4012:22;3974:2;4071:9;4058:23;4090:30;4114:5;4090:30;:::i;4155:259::-;4224:6;4277:2;4265:9;4256:7;4252:23;4248:32;4245:2;;;4298:6;4290;4283:22;4245:2;4335:9;4329:16;4354:30;4378:5;4354:30;:::i;4419:342::-;4488:6;4541:2;4529:9;4520:7;4516:23;4512:32;4509:2;;;4562:6;4554;4547:22;4509:2;4607:9;4594:23;4640:18;4632:6;4629:30;4626:2;;;4677:6;4669;4662:22;4626:2;4705:50;4747:7;4738:6;4727:9;4723:22;4705:50;:::i;4766:190::-;4825:6;4878:2;4866:9;4857:7;4853:23;4849:32;4846:2;;;4899:6;4891;4884:22;4846:2;-1:-1:-1;4927:23:1;;4836:120;-1:-1:-1;4836:120:1:o;4961:264::-;5029:6;5037;5090:2;5078:9;5069:7;5065:23;5061:32;5058:2;;;5111:6;5103;5096:22;5058:2;5152:9;5139:23;5129:33;;5181:38;5215:2;5204:9;5200:18;5181:38;:::i;5230:257::-;5271:3;5309:5;5303:12;5336:6;5331:3;5324:19;5352:63;5408:6;5401:4;5396:3;5392:14;5385:4;5378:5;5374:16;5352:63;:::i;:::-;5469:2;5448:15;-1:-1:-1;;5444:29:1;5435:39;;;;5476:4;5431:50;;5279:208;-1:-1:-1;;5279:208:1:o;5492:185::-;5534:3;5572:5;5566:12;5587:52;5632:6;5627:3;5620:4;5613:5;5609:16;5587:52;:::i;:::-;5655:16;;;;;5542:135;-1:-1:-1;;5542:135:1:o;5800:1305::-;6077:3;6106;6141:6;6135:13;6171:3;6193:1;6221:9;6217:2;6213:18;6203:28;;6281:2;6270:9;6266:18;6303;6293:2;;6347:4;6339:6;6335:17;6325:27;;6293:2;6373;6421;6413:6;6410:14;6390:18;6387:38;6384:2;;;-1:-1:-1;;;6448:33:1;;6504:4;6501:1;6494:15;6534:4;6455:3;6522:17;6384:2;6565:18;6592:104;;;;6710:1;6705:322;;;;6558:469;;6592:104;-1:-1:-1;;6625:24:1;;6613:37;;6670:16;;;;-1:-1:-1;6592:104:1;;6705:322;16070:4;16089:17;;;16139:4;16123:21;;6800:3;6816:165;6830:6;6827:1;6824:13;6816:165;;;6908:14;;6895:11;;;6888:35;6951:16;;;;6845:10;;6816:165;;;6820:3;;7010:6;7005:3;7001:16;6994:23;;6558:469;;;;;;;7043:56;7068:30;7094:3;7086:6;7068:30;:::i;:::-;-1:-1:-1;;;5742:20:1;;5787:1;5778:11;;5732:63;7043:56;7036:63;6085:1020;-1:-1:-1;;;;;6085:1020:1:o;7528:488::-;-1:-1:-1;;;;;7797:15:1;;;7779:34;;7849:15;;7844:2;7829:18;;7822:43;7896:2;7881:18;;7874:34;;;7944:3;7939:2;7924:18;;7917:31;;;7722:4;;7965:45;;7990:19;;7982:6;7965:45;:::i;:::-;7957:53;7731:285;-1:-1:-1;;;;;;7731:285:1:o;8021:635::-;8192:2;8244:21;;;8314:13;;8217:18;;;8336:22;;;8163:4;;8192:2;8415:15;;;;8389:2;8374:18;;;8163:4;8461:169;8475:6;8472:1;8469:13;8461:169;;;8536:13;;8524:26;;8605:15;;;;8570:12;;;;8497:1;8490:9;8461:169;;;-1:-1:-1;8647:3:1;;8172:484;-1:-1:-1;;;;;;8172:484:1:o;8853:219::-;9002:2;8991:9;8984:21;8965:4;9022:44;9062:2;9051:9;9047:18;9039:6;9022:44;:::i;10174:343::-;10376:2;10358:21;;;10415:2;10395:18;;;10388:30;-1:-1:-1;;;10449:2:1;10434:18;;10427:49;10508:2;10493:18;;10348:169::o;12279:356::-;12481:2;12463:21;;;12500:18;;;12493:30;12559:34;12554:2;12539:18;;12532:62;12626:2;12611:18;;12453:182::o;14793:342::-;14995:2;14977:21;;;15034:2;15014:18;;;15007:30;-1:-1:-1;;;15068:2:1;15053:18;;15046:48;15126:2;15111:18;;14967:168::o;15491:345::-;15693:2;15675:21;;;15732:2;15712:18;;;15705:30;-1:-1:-1;;;15766:2:1;15751:18;;15744:51;15827:2;15812:18;;15665:171::o;16155:128::-;16195:3;16226:1;16222:6;16219:1;16216:13;16213:2;;;16232:18;;:::i;:::-;-1:-1:-1;16268:9:1;;16203:80::o;16288:120::-;16328:1;16354;16344:2;;16359:18;;:::i;:::-;-1:-1:-1;16393:9:1;;16334:74::o;16413:168::-;16453:7;16519:1;16515;16511:6;16507:14;16504:1;16501:21;16496:1;16489:9;16482:17;16478:45;16475:2;;;16526:18;;:::i;:::-;-1:-1:-1;16566:9:1;;16465:116::o;16586:125::-;16626:4;16654:1;16651;16648:8;16645:2;;;16659:18;;:::i;:::-;-1:-1:-1;16696:9:1;;16635:76::o;16716:258::-;16788:1;16798:113;16812:6;16809:1;16806:13;16798:113;;;16888:11;;;16882:18;16869:11;;;16862:39;16834:2;16827:10;16798:113;;;16929:6;16926:1;16923:13;16920:2;;;-1:-1:-1;;16964:1:1;16946:16;;16939:27;16769:205::o;16979:380::-;17058:1;17054:12;;;;17101;;;17122:2;;17176:4;17168:6;17164:17;17154:27;;17122:2;17229;17221:6;17218:14;17198:18;17195:38;17192:2;;;17275:10;17270:3;17266:20;17263:1;17256:31;17310:4;17307:1;17300:15;17338:4;17335:1;17328:15;17192:2;;17034:325;;;:::o;17364:135::-;17403:3;-1:-1:-1;;17424:17:1;;17421:2;;;17444:18;;:::i;:::-;-1:-1:-1;17491:1:1;17480:13;;17411:88::o;17504:112::-;17536:1;17562;17552:2;;17567:18;;:::i;:::-;-1:-1:-1;17601:9:1;;17542:74::o;17621:127::-;17682:10;17677:3;17673:20;17670:1;17663:31;17713:4;17710:1;17703:15;17737:4;17734:1;17727:15;17753:127;17814:10;17809:3;17805:20;17802:1;17795:31;17845:4;17842:1;17835:15;17869:4;17866:1;17859:15;17885:127;17946:10;17941:3;17937:20;17934:1;17927:31;17977:4;17974:1;17967:15;18001:4;17998:1;17991:15;18017:131;-1:-1:-1;;;;;;18091:32:1;;18081:43;;18071:2;;18138:1;18135;18128:12

Swarm Source

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