ETH Price: $3,492.99 (+3.62%)
Gas: 4 Gwei

Token

Anxious Frens (AF)
 

Overview

Max Total Supply

5,000 AF

Holders

4,260

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AF
0x3185751031c3ac146540ec6b13f815b4974a746a
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:
AnxiousFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: AnxiousFrens.sol



pragma solidity ^0.8.7;





abstract contract LilDunks {
    function balanceOf(address _owner) external virtual view returns (uint256);
}

contract AnxiousFrens is ERC721Enumerable, Pausable, Ownable {
    LilDunks private lilDunks; 
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public  _totalSupply = 5000; 

    mapping (address => uint256) public _guaranteedMinted; 
    mapping (address => uint256) public _ldMinted; 
    mapping (address => uint256) public _freeMinted; 

    mapping (string => bool) private _ldCode; 
    mapping (string => bool) private _freeMintCode; 
    mapping (string => bool) private _guaranteedCode; 

    bool public _guaranteedMintActive = false; 
    bool public _ldMintActive = false; 
    bool public _freeMintActive = false; 

    uint256 public _maxGuaranteedMint = 1; 
    uint256 public _maxFreeMint = 1; 
    uint256 public _maxLDMint = 10; 

    string public _prefixURI;

    constructor(address _ldContractAddress) ERC721("Anxious Frens", "AF") {
        lilDunks = LilDunks(_ldContractAddress); 
    }
    
    function burnToken(uint256 tokenId) public virtual {
        require(_isApprovedOrOwner(msg.sender, tokenId)); 
        _burn(tokenId);
    }

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

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
    }

    function airDrop(address[] memory addrs) public onlyOwner {
        require(addrs.length > 0); 
        for (uint256 i = 0; i < addrs.length; i++) {
            _mintItem(addrs[i]); 
        }
    }

    function toggleLDMintActive() public onlyOwner {
        _ldMintActive = !_ldMintActive; 
    }

    function toggleGuaranteedMintActive() public onlyOwner {
        _guaranteedMintActive = !_guaranteedMintActive; 
    }

    function toggleFreeMintActive() public onlyOwner {
        _freeMintActive = !_freeMintActive; 
    }

    function ldHolderMint(uint256 amount,string memory _code) public {
        address sender = msg.sender; 
        require(_ldMintActive); 
        require(amount > 0); 
        require(lilDunks.balanceOf(msg.sender) > 0); 
        require(_ldCode[_code]); 
        uint256 totalMinted = _tokenIds.current(); 
        require(totalMinted < _totalSupply); 
        require(totalMinted + amount <= _totalSupply); 
        require(_ldMinted[sender] + amount <= _maxLDMint); 
        for (uint256 i = 0; i < amount; i++) {
            _mintItem(sender);
        }
        _ldMinted[sender] = _ldMinted[sender] + amount; 
    }

    function guaranteedMint(uint256 amount,string memory _code) public  {
        address sender = msg.sender; 
        require(amount > 0); 
        require(_guaranteedMintActive); 
        require(_guaranteedCode[_code]); 
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted < _totalSupply);
        require(totalMinted + amount <= _totalSupply);
        require(_guaranteedMinted[sender] + amount <= _maxGuaranteedMint);
        for (uint256 i = 0; i < amount; i++) {
            _mintItem(sender);
        }
        _guaranteedMinted[sender] = _guaranteedMinted[sender] + amount; 
    }

    function freeMint(uint256 amount,string memory _code) public  {
        address sender = msg.sender; 
        require(amount > 0); 
        require(_freeMintActive); 
        require(_freeMintCode[_code]); 
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted < _totalSupply);
        require(totalMinted + amount <= _totalSupply); 
        require(_freeMinted[sender] + amount <= _maxFreeMint); 
        for (uint256 i = 0; i < amount; i++) {
            _mintItem(msg.sender); 
        }
        _freeMinted[sender] = _freeMinted[sender] + amount; 
    }


    function updateLDContractAddress(address _newAddress) external onlyOwner {
        require(_newAddress != address(0)); 
        lilDunks = LilDunks(_newAddress); 
    }

    function _mintItem(address to) internal {
        _tokenIds.increment();
        uint256 id = _tokenIds.current();
        _safeMint(to, id);
    }


    function updateLDMaxMint(uint256 newMax) public onlyOwner {
        require(newMax > 0); 
        _maxLDMint = newMax; 
    }

    function updateGuaranteedMaxMint(uint256 newMax) public onlyOwner {
        require(newMax > 0); 
        _maxGuaranteedMint = newMax; 
    }
    
    function updateMaxFreeMint(uint256 newMax) public onlyOwner {
        require(newMax > 0); 
        _maxFreeMint = newMax; 
    }

    function toggleTransferPause() public onlyOwner {
        paused() ? _unpause() : _pause();
    }

    function updateTotalSupply(uint256 newSupply) external onlyOwner {
        require(newSupply > 0); 
        _totalSupply = newSupply; 
    }

    function setFreeMintCode(string memory _code) external onlyOwner {
        _freeMintCode[_code] = true; 
    }

    function setLDCode(string memory _code) external onlyOwner {
        _ldCode[_code] = true; 
    }

    function setGuaranteedCode(string memory _code) external onlyOwner {
        _guaranteedCode[_code] = true; 
    }

    function retractFreeMintCode(string memory _code) external onlyOwner {
        _freeMintCode[_code] = false; 
    }

    function retractLDCode(string memory _code) external onlyOwner {
        _ldCode[_code] = false; 
    }

    function retractGuaranteedCode(string memory _code) external onlyOwner {
        _guaranteedCode[_code] = false; 
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0); 
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_ldContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_guaranteedMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_guaranteedMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ldMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_ldMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxGuaranteedMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxLDMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","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":"addrs","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"_code","type":"string"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"_code","type":"string"}],"name":"guaranteedMint","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"},{"internalType":"string","name":"_code","type":"string"}],"name":"ldHolderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"retractFreeMintCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"retractGuaranteedCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"retractLDCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"setFreeMintCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"setGuaranteedCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_code","type":"string"}],"name":"setLDCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleGuaranteedMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleLDMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransferPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateGuaranteedMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"updateLDContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateLDMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600d556014805462ffffff1916905560016015819055601655600a6017553480156200003257600080fd5b5060405162002e9d38038062002e9d8339810160408190526200005591620001f8565b604080518082018252600d81526c416e78696f7573204672656e7360981b60208083019182528351808501909452600284526120a360f11b908401528151919291620000a49160009162000152565b508051620000ba90600190602084019062000152565b5050600a805460ff1916905550620000d233620000f8565b600b80546001600160a01b0319166001600160a01b039290921691909117905562000267565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000160906200022a565b90600052602060002090601f016020900481019282620001845760008555620001cf565b82601f106200019f57805160ff1916838001178555620001cf565b82800160010185558215620001cf579182015b82811115620001cf578251825591602001919060010190620001b2565b50620001dd929150620001e1565b5090565b5b80821115620001dd5760008155600101620001e2565b6000602082840312156200020b57600080fd5b81516001600160a01b03811681146200022357600080fd5b9392505050565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b612c2680620002776000396000f3fe608060405234801561001057600080fd5b50600436106103265760003560e01c806366d49bab116101b85780639752a01711610104578063c2de8674116100a2578063e985e9c51161007c578063e985e9c51461069d578063ec8b0d6d146106d9578063f2fde38b146106ec578063f67f7e83146106ff57600080fd5b8063c2de867414610657578063c52d17581461066a578063c87b56dd1461068a57600080fd5b8063a36e9ace116100de578063a36e9ace14610609578063ab4fd6dd1461061c578063b88d4fde1461063c578063c26b4e8a1461064f57600080fd5b80639752a017146105db578063a196741f146105e3578063a22cb465146105f657600080fd5b80637b47ec1a1161017157806391860f781161014b57806391860f78146105a657806393ebba2b146105ae57806395462c6d146105c157806395d89b41146105d357600080fd5b80637b47ec1a146105745780638b39f9bc146105875780638da5cb5b1461059057600080fd5b806366d49bab1461050b57806369296ca01461051e5780636ce770101461053e57806370a0823114610551578063715018a61461056457806379661aa91461056c57600080fd5b8063229a4eea116102775780633eaaf86b116102305780635533b18d1161020a5780635533b18d146104d257806355f804b3146104da5780635c975abb146104ed5780636352211e146104f857600080fd5b80633eaaf86b146104a357806342842e0e146104ac5780634f6ccce7146104bf57600080fd5b8063229a4eea1461044657806323b872dd1461045957806327d9a7f01461046c5780632f745c591461047557806333618b5e146104885780633ccfd60b1461049b57600080fd5b8063081812fc116102e4578063156965f7116102be578063156965f71461040b5780631574a05c1461041e57806318160ddd1461042b578063228d6ce71461043357600080fd5b8063081812fc146103b6578063095ea7b3146103e1578063110dfcc5146103f457600080fd5b8062b6849f1461032b578063018f78371461034057806301ffc9a714610353578063033c1b4a1461037b57806305c1bb741461038e57806306fdde03146103a1575b600080fd5b61033e610339366004612727565b610712565b005b61033e61034e36600461287c565b61079d565b6103666103613660046127db565b610944565b60405190151581526020015b60405180910390f35b61033e61038936600461284a565b61096f565b61033e61039c366004612815565b6109b1565b6103a9610a16565b6040516103729190612977565b6103c96103c436600461284a565b610aa8565b6040516001600160a01b039091168152602001610372565b61033e6103ef3660046126fd565b610b3d565b6103fd60155481565b604051908152602001610372565b61033e610419366004612815565b610c53565b6014546103669060ff1681565b6008546103fd565b61033e61044136600461287c565b610c95565b61033e61045436600461287c565b610dad565b61033e610467366004612609565b610ecb565b6103fd60165481565b6103fd6104833660046126fd565b610efc565b61033e610496366004612815565b610f92565b61033e610fd4565b6103fd600d5481565b61033e6104ba366004612609565b611040565b6103fd6104cd36600461284a565b61105b565b61033e6110ee565b61033e6104e8366004612815565b61113d565b600a5460ff16610366565b6103c961050636600461284a565b611180565b61033e61051936600461284a565b6111f7565b6103fd61052c3660046125bb565b60106020526000908152604090205481565b61033e61054c366004612815565b611239565b6103fd61055f3660046125bb565b61127b565b61033e611302565b61033e61133e565b61033e61058236600461284a565b61138b565b6103fd60175481565b600a5461010090046001600160a01b03166103c9565b6103a96113a7565b61033e6105bc36600461284a565b611435565b60145461036690610100900460ff1681565b6103a9611477565b61033e611486565b61033e6105f1366004612815565b6114d0565b61033e6106043660046126c1565b611512565b61033e61061736600461284a565b61151d565b6103fd61062a3660046125bb565b600e6020526000908152604090205481565b61033e61064a366004612645565b61155f565b61033e611597565b6014546103669062010000900460ff1681565b6103fd6106783660046125bb565b600f6020526000908152604090205481565b6103a961069836600461284a565b6115db565b6103666106ab3660046125d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61033e6106e73660046125bb565b6116b6565b61033e6106fa3660046125bb565b61171b565b61033e61070d366004612815565b6117b9565b600a546001600160a01b0361010090910416331461074b5760405162461bcd60e51b8152600401610742906129dc565b60405180910390fd5b600081511161075957600080fd5b60005b81518110156107995761078782828151811061077a5761077a612bae565b60200260200101516117fb565b8061079181612b3d565b91505061075c565b5050565b6014543390610100900460ff166107b357600080fd5b600083116107c057600080fd5b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561080457600080fd5b505afa158015610818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083c9190612863565b1161084657600080fd5b60118260405161085691906128ef565b9081526040519081900360200190205460ff1661087257600080fd5b600061087d600c5490565b9050600d54811061088d57600080fd5b600d5461089a8583612a93565b11156108a557600080fd5b6017546001600160a01b0383166000908152600f60205260409020546108cc908690612a93565b11156108d757600080fd5b60005b848110156108fd576108eb836117fb565b806108f581612b3d565b9150506108da565b506001600160a01b0382166000908152600f6020526040902054610922908590612a93565b6001600160a01b039092166000908152600f6020526040902091909155505050565b60006001600160e01b0319821663780e9d6360e01b1480610969575061096982611820565b92915050565b600a546001600160a01b0361010090910416331461099f5760405162461bcd60e51b8152600401610742906129dc565b600081116109ac57600080fd5b601655565b600a546001600160a01b036101009091041633146109e15760405162461bcd60e51b8152600401610742906129dc565b60016013826040516109f391906128ef565b908152604051908190036020019020805491151560ff1990921691909117905550565b606060008054610a2590612b02565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190612b02565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b506000908152600460205260409020546001600160a01b031690565b6000610b4882611180565b9050806001600160a01b0316836001600160a01b03161415610bb65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b336001600160a01b0382161480610bd25750610bd281336106ab565b610c445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b610c4e8383611870565b505050565b600a546001600160a01b03610100909104163314610c835760405162461bcd60e51b8152600401610742906129dc565b60006012826040516109f391906128ef565b3382610ca057600080fd5b60145460ff16610caf57600080fd5b601382604051610cbf91906128ef565b9081526040519081900360200190205460ff16610cdb57600080fd5b6000610ce6600c5490565b9050600d548110610cf657600080fd5b600d54610d038583612a93565b1115610d0e57600080fd5b6015546001600160a01b0383166000908152600e6020526040902054610d35908690612a93565b1115610d4057600080fd5b60005b84811015610d6657610d54836117fb565b80610d5e81612b3d565b915050610d43565b506001600160a01b0382166000908152600e6020526040902054610d8b908590612a93565b6001600160a01b039092166000908152600e6020526040902091909155505050565b3382610db857600080fd5b60145462010000900460ff16610dcd57600080fd5b601282604051610ddd91906128ef565b9081526040519081900360200190205460ff16610df957600080fd5b6000610e04600c5490565b9050600d548110610e1457600080fd5b600d54610e218583612a93565b1115610e2c57600080fd5b6016546001600160a01b038316600090815260106020526040902054610e53908690612a93565b1115610e5e57600080fd5b60005b84811015610e8457610e72336117fb565b80610e7c81612b3d565b915050610e61565b506001600160a01b038216600090815260106020526040902054610ea9908590612a93565b6001600160a01b03909216600090815260106020526040902091909155505050565b610ed533826118de565b610ef15760405162461bcd60e51b815260040161074290612a11565b610c4e8383836119d5565b6000610f078361127b565b8210610f695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610fc25760405162461bcd60e51b8152600401610742906129dc565b60006013826040516109f391906128ef565b600a546001600160a01b036101009091041633146110045760405162461bcd60e51b8152600401610742906129dc565b6000471161101157600080fd5b60405133904780156108fc02916000818181858888f1935050505015801561103d573d6000803e3d6000fd5b50565b610c4e8383836040518060200160405280600081525061155f565b600061106660085490565b82106110c95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b600882815481106110dc576110dc612bae565b90600052602060002001549050919050565b600a546001600160a01b0361010090910416331461111e5760405162461bcd60e51b8152600401610742906129dc565b6014805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0361010090910416331461116d5760405162461bcd60e51b8152600401610742906129dc565b805161079990601890602084019061248e565b6000818152600260205260408120546001600160a01b0316806109695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b600a546001600160a01b036101009091041633146112275760405162461bcd60e51b8152600401610742906129dc565b6000811161123457600080fd5b600d55565b600a546001600160a01b036101009091041633146112695760405162461bcd60e51b8152600401610742906129dc565b60016011826040516109f391906128ef565b60006001600160a01b0382166112e65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146113325760405162461bcd60e51b8152600401610742906129dc565b61133c6000611b7c565b565b600a546001600160a01b0361010090910416331461136e5760405162461bcd60e51b8152600401610742906129dc565b6014805461ff001981166101009182900460ff1615909102179055565b61139533826118de565b61139e57600080fd5b61103d81611bd6565b601880546113b490612b02565b80601f01602080910402602001604051908101604052809291908181526020018280546113e090612b02565b801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146114655760405162461bcd60e51b8152600401610742906129dc565b6000811161147257600080fd5b601555565b606060018054610a2590612b02565b600a546001600160a01b036101009091041633146114b65760405162461bcd60e51b8152600401610742906129dc565b600a5460ff166114c85761133c611c7d565b61133c611d15565b600a546001600160a01b036101009091041633146115005760405162461bcd60e51b8152600401610742906129dc565b60006011826040516109f391906128ef565b610799338383611d8f565b600a546001600160a01b0361010090910416331461154d5760405162461bcd60e51b8152600401610742906129dc565b6000811161155a57600080fd5b601755565b61156933836118de565b6115855760405162461bcd60e51b815260040161074290612a11565b61159184848484611e5e565b50505050565b600a546001600160a01b036101009091041633146115c75760405162461bcd60e51b8152600401610742906129dc565b6014805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661165a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610742565b6000611664611e91565b9050600081511161168457604051806020016040528060008152506116af565b8061168e84611ea0565b60405160200161169f92919061290b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146116e65760405162461bcd60e51b8152600401610742906129dc565b6001600160a01b0381166116f957600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0361010090910416331461174b5760405162461bcd60e51b8152600401610742906129dc565b6001600160a01b0381166117b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b61103d81611b7c565b600a546001600160a01b036101009091041633146117e95760405162461bcd60e51b8152600401610742906129dc565b60016012826040516109f391906128ef565b611809600c80546001019055565b6000611814600c5490565b90506107998282611f9e565b60006001600160e01b031982166380ac58cd60e01b148061185157506001600160e01b03198216635b5e139f60e01b145b8061096957506301ffc9a760e01b6001600160e01b0319831614610969565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a582611180565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b600061196283611180565b9050806001600160a01b0316846001600160a01b0316148061199d5750836001600160a01b031661199284610aa8565b6001600160a01b0316145b806119cd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e882611180565b6001600160a01b031614611a4c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610742565b6001600160a01b038216611aae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b611ab9838383611fb8565b611ac4600082611870565b6001600160a01b0383166000908152600360205260408120805460019290611aed908490612abf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b1b908490612a93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611be182611180565b9050611bef81600084611fb8565b611bfa600083611870565b6001600160a01b0381166000908152600360205260408120805460019290611c23908490612abf565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff1615611cc35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610742565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cf83390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff16611d5e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610742565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611cf8565b816001600160a01b0316836001600160a01b03161415611df15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e698484846119d5565b611e7584848484612070565b6115915760405162461bcd60e51b81526004016107429061298a565b606060188054610a2590612b02565b606081611ec45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eee5780611ed881612b3d565b9150611ee79050600a83612aab565b9150611ec8565b60008167ffffffffffffffff811115611f0957611f09612bc4565b6040519080825280601f01601f191660200182016040528015611f33576020820181803683370190505b5090505b84156119cd57611f48600183612abf565b9150611f55600a86612b58565b611f60906030612a93565b60f81b818381518110611f7557611f75612bae565b60200101906001600160f81b031916908160001a905350611f97600a86612aab565b9450611f37565b61079982826040518060200160405280600081525061217d565b6001600160a01b0383166120135761200e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612036565b816001600160a01b0316836001600160a01b0316146120365761203683826121b0565b6001600160a01b03821661204d57610c4e8161224d565b826001600160a01b0316826001600160a01b031614610c4e57610c4e82826122fc565b60006001600160a01b0384163b1561217257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b490339089908890889060040161293a565b602060405180830381600087803b1580156120ce57600080fd5b505af19250505080156120fe575060408051601f3d908101601f191682019092526120fb918101906127f8565b60015b612158573d80801561212c576040519150601f19603f3d011682016040523d82523d6000602084013e612131565b606091505b5080516121505760405162461bcd60e51b81526004016107429061298a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119cd565b506001949350505050565b6121878383612340565b6121946000848484612070565b610c4e5760405162461bcd60e51b81526004016107429061298a565b600060016121bd8461127b565b6121c79190612abf565b60008381526007602052604090205490915080821461221a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061225f90600190612abf565b6000838152600960205260408120546008805493945090928490811061228757612287612bae565b9060005260206000200154905080600883815481106122a8576122a8612bae565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122e0576122e0612b98565b6001900381819060005260206000200160009055905550505050565b60006123078361127b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b0316156123fb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b61240760008383611fb8565b6001600160a01b0382166000908152600360205260408120805460019290612430908490612a93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249a90612b02565b90600052602060002090601f0160209004810192826124bc5760008555612502565b82601f106124d557805160ff1916838001178555612502565b82800160010185558215612502579182015b828111156125025782518255916020019190600101906124e7565b5061250e929150612512565b5090565b5b8082111561250e5760008155600101612513565b600067ffffffffffffffff83111561254157612541612bc4565b612554601f8401601f1916602001612a62565b905082815283838301111561256857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259657600080fd5b919050565b600082601f8301126125ac57600080fd5b6116af83833560208501612527565b6000602082840312156125cd57600080fd5b6116af8261257f565b600080604083850312156125e957600080fd5b6125f28361257f565b91506126006020840161257f565b90509250929050565b60008060006060848603121561261e57600080fd5b6126278461257f565b92506126356020850161257f565b9150604084013590509250925092565b6000806000806080858703121561265b57600080fd5b6126648561257f565b93506126726020860161257f565b925060408501359150606085013567ffffffffffffffff81111561269557600080fd5b8501601f810187136126a657600080fd5b6126b587823560208401612527565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd8361257f565b9150602083013580151581146126f257600080fd5b809150509250929050565b6000806040838503121561271057600080fd5b6127198361257f565b946020939093013593505050565b6000602080838503121561273a57600080fd5b823567ffffffffffffffff8082111561275257600080fd5b818501915085601f83011261276657600080fd5b81358181111561277857612778612bc4565b8060051b9150612789848301612a62565b8181528481019084860184860187018a10156127a457600080fd5b600095505b838610156127ce576127ba8161257f565b8352600195909501949186019186016127a9565b5098975050505050505050565b6000602082840312156127ed57600080fd5b81356116af81612bda565b60006020828403121561280a57600080fd5b81516116af81612bda565b60006020828403121561282757600080fd5b813567ffffffffffffffff81111561283e57600080fd5b6119cd8482850161259b565b60006020828403121561285c57600080fd5b5035919050565b60006020828403121561287557600080fd5b5051919050565b6000806040838503121561288f57600080fd5b82359150602083013567ffffffffffffffff8111156128ad57600080fd5b6128b98582860161259b565b9150509250929050565b600081518084526128db816020860160208601612ad6565b601f01601f19169290920160200192915050565b60008251612901818460208701612ad6565b9190910192915050565b6000835161291d818460208801612ad6565b835190830190612931818360208801612ad6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296d908301846128c3565b9695505050505050565b6020815260006116af60208301846128c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a8b57612a8b612bc4565b604052919050565b60008219821115612aa657612aa6612b6c565b500190565b600082612aba57612aba612b82565b500490565b600082821015612ad157612ad1612b6c565b500390565b60005b83811015612af1578181015183820152602001612ad9565b838111156115915750506000910152565b600181811c90821680612b1657607f821691505b60208210811415612b3757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5157612b51612b6c565b5060010190565b600082612b6757612b67612b82565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461103d57600080fdfea2646970667358221220af369563ddc58bbc73ed9aa6971c1032272cc5d0dd96d56353e439c960b1a65a64736f6c6343000807003300000000000000000000000039c4a6d152ca0e644efdc623cf34acf63033bb64

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103265760003560e01c806366d49bab116101b85780639752a01711610104578063c2de8674116100a2578063e985e9c51161007c578063e985e9c51461069d578063ec8b0d6d146106d9578063f2fde38b146106ec578063f67f7e83146106ff57600080fd5b8063c2de867414610657578063c52d17581461066a578063c87b56dd1461068a57600080fd5b8063a36e9ace116100de578063a36e9ace14610609578063ab4fd6dd1461061c578063b88d4fde1461063c578063c26b4e8a1461064f57600080fd5b80639752a017146105db578063a196741f146105e3578063a22cb465146105f657600080fd5b80637b47ec1a1161017157806391860f781161014b57806391860f78146105a657806393ebba2b146105ae57806395462c6d146105c157806395d89b41146105d357600080fd5b80637b47ec1a146105745780638b39f9bc146105875780638da5cb5b1461059057600080fd5b806366d49bab1461050b57806369296ca01461051e5780636ce770101461053e57806370a0823114610551578063715018a61461056457806379661aa91461056c57600080fd5b8063229a4eea116102775780633eaaf86b116102305780635533b18d1161020a5780635533b18d146104d257806355f804b3146104da5780635c975abb146104ed5780636352211e146104f857600080fd5b80633eaaf86b146104a357806342842e0e146104ac5780634f6ccce7146104bf57600080fd5b8063229a4eea1461044657806323b872dd1461045957806327d9a7f01461046c5780632f745c591461047557806333618b5e146104885780633ccfd60b1461049b57600080fd5b8063081812fc116102e4578063156965f7116102be578063156965f71461040b5780631574a05c1461041e57806318160ddd1461042b578063228d6ce71461043357600080fd5b8063081812fc146103b6578063095ea7b3146103e1578063110dfcc5146103f457600080fd5b8062b6849f1461032b578063018f78371461034057806301ffc9a714610353578063033c1b4a1461037b57806305c1bb741461038e57806306fdde03146103a1575b600080fd5b61033e610339366004612727565b610712565b005b61033e61034e36600461287c565b61079d565b6103666103613660046127db565b610944565b60405190151581526020015b60405180910390f35b61033e61038936600461284a565b61096f565b61033e61039c366004612815565b6109b1565b6103a9610a16565b6040516103729190612977565b6103c96103c436600461284a565b610aa8565b6040516001600160a01b039091168152602001610372565b61033e6103ef3660046126fd565b610b3d565b6103fd60155481565b604051908152602001610372565b61033e610419366004612815565b610c53565b6014546103669060ff1681565b6008546103fd565b61033e61044136600461287c565b610c95565b61033e61045436600461287c565b610dad565b61033e610467366004612609565b610ecb565b6103fd60165481565b6103fd6104833660046126fd565b610efc565b61033e610496366004612815565b610f92565b61033e610fd4565b6103fd600d5481565b61033e6104ba366004612609565b611040565b6103fd6104cd36600461284a565b61105b565b61033e6110ee565b61033e6104e8366004612815565b61113d565b600a5460ff16610366565b6103c961050636600461284a565b611180565b61033e61051936600461284a565b6111f7565b6103fd61052c3660046125bb565b60106020526000908152604090205481565b61033e61054c366004612815565b611239565b6103fd61055f3660046125bb565b61127b565b61033e611302565b61033e61133e565b61033e61058236600461284a565b61138b565b6103fd60175481565b600a5461010090046001600160a01b03166103c9565b6103a96113a7565b61033e6105bc36600461284a565b611435565b60145461036690610100900460ff1681565b6103a9611477565b61033e611486565b61033e6105f1366004612815565b6114d0565b61033e6106043660046126c1565b611512565b61033e61061736600461284a565b61151d565b6103fd61062a3660046125bb565b600e6020526000908152604090205481565b61033e61064a366004612645565b61155f565b61033e611597565b6014546103669062010000900460ff1681565b6103fd6106783660046125bb565b600f6020526000908152604090205481565b6103a961069836600461284a565b6115db565b6103666106ab3660046125d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61033e6106e73660046125bb565b6116b6565b61033e6106fa3660046125bb565b61171b565b61033e61070d366004612815565b6117b9565b600a546001600160a01b0361010090910416331461074b5760405162461bcd60e51b8152600401610742906129dc565b60405180910390fd5b600081511161075957600080fd5b60005b81518110156107995761078782828151811061077a5761077a612bae565b60200260200101516117fb565b8061079181612b3d565b91505061075c565b5050565b6014543390610100900460ff166107b357600080fd5b600083116107c057600080fd5b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561080457600080fd5b505afa158015610818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083c9190612863565b1161084657600080fd5b60118260405161085691906128ef565b9081526040519081900360200190205460ff1661087257600080fd5b600061087d600c5490565b9050600d54811061088d57600080fd5b600d5461089a8583612a93565b11156108a557600080fd5b6017546001600160a01b0383166000908152600f60205260409020546108cc908690612a93565b11156108d757600080fd5b60005b848110156108fd576108eb836117fb565b806108f581612b3d565b9150506108da565b506001600160a01b0382166000908152600f6020526040902054610922908590612a93565b6001600160a01b039092166000908152600f6020526040902091909155505050565b60006001600160e01b0319821663780e9d6360e01b1480610969575061096982611820565b92915050565b600a546001600160a01b0361010090910416331461099f5760405162461bcd60e51b8152600401610742906129dc565b600081116109ac57600080fd5b601655565b600a546001600160a01b036101009091041633146109e15760405162461bcd60e51b8152600401610742906129dc565b60016013826040516109f391906128ef565b908152604051908190036020019020805491151560ff1990921691909117905550565b606060008054610a2590612b02565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190612b02565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b506000908152600460205260409020546001600160a01b031690565b6000610b4882611180565b9050806001600160a01b0316836001600160a01b03161415610bb65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b336001600160a01b0382161480610bd25750610bd281336106ab565b610c445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b610c4e8383611870565b505050565b600a546001600160a01b03610100909104163314610c835760405162461bcd60e51b8152600401610742906129dc565b60006012826040516109f391906128ef565b3382610ca057600080fd5b60145460ff16610caf57600080fd5b601382604051610cbf91906128ef565b9081526040519081900360200190205460ff16610cdb57600080fd5b6000610ce6600c5490565b9050600d548110610cf657600080fd5b600d54610d038583612a93565b1115610d0e57600080fd5b6015546001600160a01b0383166000908152600e6020526040902054610d35908690612a93565b1115610d4057600080fd5b60005b84811015610d6657610d54836117fb565b80610d5e81612b3d565b915050610d43565b506001600160a01b0382166000908152600e6020526040902054610d8b908590612a93565b6001600160a01b039092166000908152600e6020526040902091909155505050565b3382610db857600080fd5b60145462010000900460ff16610dcd57600080fd5b601282604051610ddd91906128ef565b9081526040519081900360200190205460ff16610df957600080fd5b6000610e04600c5490565b9050600d548110610e1457600080fd5b600d54610e218583612a93565b1115610e2c57600080fd5b6016546001600160a01b038316600090815260106020526040902054610e53908690612a93565b1115610e5e57600080fd5b60005b84811015610e8457610e72336117fb565b80610e7c81612b3d565b915050610e61565b506001600160a01b038216600090815260106020526040902054610ea9908590612a93565b6001600160a01b03909216600090815260106020526040902091909155505050565b610ed533826118de565b610ef15760405162461bcd60e51b815260040161074290612a11565b610c4e8383836119d5565b6000610f078361127b565b8210610f695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610fc25760405162461bcd60e51b8152600401610742906129dc565b60006013826040516109f391906128ef565b600a546001600160a01b036101009091041633146110045760405162461bcd60e51b8152600401610742906129dc565b6000471161101157600080fd5b60405133904780156108fc02916000818181858888f1935050505015801561103d573d6000803e3d6000fd5b50565b610c4e8383836040518060200160405280600081525061155f565b600061106660085490565b82106110c95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b600882815481106110dc576110dc612bae565b90600052602060002001549050919050565b600a546001600160a01b0361010090910416331461111e5760405162461bcd60e51b8152600401610742906129dc565b6014805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0361010090910416331461116d5760405162461bcd60e51b8152600401610742906129dc565b805161079990601890602084019061248e565b6000818152600260205260408120546001600160a01b0316806109695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b600a546001600160a01b036101009091041633146112275760405162461bcd60e51b8152600401610742906129dc565b6000811161123457600080fd5b600d55565b600a546001600160a01b036101009091041633146112695760405162461bcd60e51b8152600401610742906129dc565b60016011826040516109f391906128ef565b60006001600160a01b0382166112e65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146113325760405162461bcd60e51b8152600401610742906129dc565b61133c6000611b7c565b565b600a546001600160a01b0361010090910416331461136e5760405162461bcd60e51b8152600401610742906129dc565b6014805461ff001981166101009182900460ff1615909102179055565b61139533826118de565b61139e57600080fd5b61103d81611bd6565b601880546113b490612b02565b80601f01602080910402602001604051908101604052809291908181526020018280546113e090612b02565b801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146114655760405162461bcd60e51b8152600401610742906129dc565b6000811161147257600080fd5b601555565b606060018054610a2590612b02565b600a546001600160a01b036101009091041633146114b65760405162461bcd60e51b8152600401610742906129dc565b600a5460ff166114c85761133c611c7d565b61133c611d15565b600a546001600160a01b036101009091041633146115005760405162461bcd60e51b8152600401610742906129dc565b60006011826040516109f391906128ef565b610799338383611d8f565b600a546001600160a01b0361010090910416331461154d5760405162461bcd60e51b8152600401610742906129dc565b6000811161155a57600080fd5b601755565b61156933836118de565b6115855760405162461bcd60e51b815260040161074290612a11565b61159184848484611e5e565b50505050565b600a546001600160a01b036101009091041633146115c75760405162461bcd60e51b8152600401610742906129dc565b6014805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661165a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610742565b6000611664611e91565b9050600081511161168457604051806020016040528060008152506116af565b8061168e84611ea0565b60405160200161169f92919061290b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146116e65760405162461bcd60e51b8152600401610742906129dc565b6001600160a01b0381166116f957600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0361010090910416331461174b5760405162461bcd60e51b8152600401610742906129dc565b6001600160a01b0381166117b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b61103d81611b7c565b600a546001600160a01b036101009091041633146117e95760405162461bcd60e51b8152600401610742906129dc565b60016012826040516109f391906128ef565b611809600c80546001019055565b6000611814600c5490565b90506107998282611f9e565b60006001600160e01b031982166380ac58cd60e01b148061185157506001600160e01b03198216635b5e139f60e01b145b8061096957506301ffc9a760e01b6001600160e01b0319831614610969565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a582611180565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b600061196283611180565b9050806001600160a01b0316846001600160a01b0316148061199d5750836001600160a01b031661199284610aa8565b6001600160a01b0316145b806119cd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e882611180565b6001600160a01b031614611a4c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610742565b6001600160a01b038216611aae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b611ab9838383611fb8565b611ac4600082611870565b6001600160a01b0383166000908152600360205260408120805460019290611aed908490612abf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b1b908490612a93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611be182611180565b9050611bef81600084611fb8565b611bfa600083611870565b6001600160a01b0381166000908152600360205260408120805460019290611c23908490612abf565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff1615611cc35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610742565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cf83390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff16611d5e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610742565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611cf8565b816001600160a01b0316836001600160a01b03161415611df15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e698484846119d5565b611e7584848484612070565b6115915760405162461bcd60e51b81526004016107429061298a565b606060188054610a2590612b02565b606081611ec45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eee5780611ed881612b3d565b9150611ee79050600a83612aab565b9150611ec8565b60008167ffffffffffffffff811115611f0957611f09612bc4565b6040519080825280601f01601f191660200182016040528015611f33576020820181803683370190505b5090505b84156119cd57611f48600183612abf565b9150611f55600a86612b58565b611f60906030612a93565b60f81b818381518110611f7557611f75612bae565b60200101906001600160f81b031916908160001a905350611f97600a86612aab565b9450611f37565b61079982826040518060200160405280600081525061217d565b6001600160a01b0383166120135761200e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612036565b816001600160a01b0316836001600160a01b0316146120365761203683826121b0565b6001600160a01b03821661204d57610c4e8161224d565b826001600160a01b0316826001600160a01b031614610c4e57610c4e82826122fc565b60006001600160a01b0384163b1561217257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b490339089908890889060040161293a565b602060405180830381600087803b1580156120ce57600080fd5b505af19250505080156120fe575060408051601f3d908101601f191682019092526120fb918101906127f8565b60015b612158573d80801561212c576040519150601f19603f3d011682016040523d82523d6000602084013e612131565b606091505b5080516121505760405162461bcd60e51b81526004016107429061298a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119cd565b506001949350505050565b6121878383612340565b6121946000848484612070565b610c4e5760405162461bcd60e51b81526004016107429061298a565b600060016121bd8461127b565b6121c79190612abf565b60008381526007602052604090205490915080821461221a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061225f90600190612abf565b6000838152600960205260408120546008805493945090928490811061228757612287612bae565b9060005260206000200154905080600883815481106122a8576122a8612bae565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122e0576122e0612b98565b6001900381819060005260206000200160009055905550505050565b60006123078361127b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b0316156123fb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b61240760008383611fb8565b6001600160a01b0382166000908152600360205260408120805460019290612430908490612a93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249a90612b02565b90600052602060002090601f0160209004810192826124bc5760008555612502565b82601f106124d557805160ff1916838001178555612502565b82800160010185558215612502579182015b828111156125025782518255916020019190600101906124e7565b5061250e929150612512565b5090565b5b8082111561250e5760008155600101612513565b600067ffffffffffffffff83111561254157612541612bc4565b612554601f8401601f1916602001612a62565b905082815283838301111561256857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259657600080fd5b919050565b600082601f8301126125ac57600080fd5b6116af83833560208501612527565b6000602082840312156125cd57600080fd5b6116af8261257f565b600080604083850312156125e957600080fd5b6125f28361257f565b91506126006020840161257f565b90509250929050565b60008060006060848603121561261e57600080fd5b6126278461257f565b92506126356020850161257f565b9150604084013590509250925092565b6000806000806080858703121561265b57600080fd5b6126648561257f565b93506126726020860161257f565b925060408501359150606085013567ffffffffffffffff81111561269557600080fd5b8501601f810187136126a657600080fd5b6126b587823560208401612527565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd8361257f565b9150602083013580151581146126f257600080fd5b809150509250929050565b6000806040838503121561271057600080fd5b6127198361257f565b946020939093013593505050565b6000602080838503121561273a57600080fd5b823567ffffffffffffffff8082111561275257600080fd5b818501915085601f83011261276657600080fd5b81358181111561277857612778612bc4565b8060051b9150612789848301612a62565b8181528481019084860184860187018a10156127a457600080fd5b600095505b838610156127ce576127ba8161257f565b8352600195909501949186019186016127a9565b5098975050505050505050565b6000602082840312156127ed57600080fd5b81356116af81612bda565b60006020828403121561280a57600080fd5b81516116af81612bda565b60006020828403121561282757600080fd5b813567ffffffffffffffff81111561283e57600080fd5b6119cd8482850161259b565b60006020828403121561285c57600080fd5b5035919050565b60006020828403121561287557600080fd5b5051919050565b6000806040838503121561288f57600080fd5b82359150602083013567ffffffffffffffff8111156128ad57600080fd5b6128b98582860161259b565b9150509250929050565b600081518084526128db816020860160208601612ad6565b601f01601f19169290920160200192915050565b60008251612901818460208701612ad6565b9190910192915050565b6000835161291d818460208801612ad6565b835190830190612931818360208801612ad6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296d908301846128c3565b9695505050505050565b6020815260006116af60208301846128c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a8b57612a8b612bc4565b604052919050565b60008219821115612aa657612aa6612b6c565b500190565b600082612aba57612aba612b82565b500490565b600082821015612ad157612ad1612b6c565b500390565b60005b83811015612af1578181015183820152602001612ad9565b838111156115915750506000910152565b600181811c90821680612b1657607f821691505b60208210811415612b3757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5157612b51612b6c565b5060010190565b600082612b6757612b67612b82565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461103d57600080fdfea2646970667358221220af369563ddc58bbc73ed9aa6971c1032272cc5d0dd96d56353e439c960b1a65a64736f6c63430008070033

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

00000000000000000000000039c4a6d152ca0e644efdc623cf34acf63033bb64

-----Decoded View---------------
Arg [0] : _ldContractAddress (address): 0x39c4A6D152Ca0e644EFdC623CF34aCf63033bb64

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000039c4a6d152ca0e644efdc623cf34acf63033bb64


Deployed Bytecode Sourcemap

49429:5703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50788:203;;;;;;:::i;:::-;;:::i;:::-;;51344:634;;;;;;:::i;:::-;;:::i;43097:224::-;;;;;;:::i;:::-;;:::i;:::-;;;7352:14:1;;7345:22;7327:41;;7315:2;7300:18;43097:224:0;;;;;;;;53857:132;;;;;;:::i;:::-;;:::i;54483:116::-;;;;;;:::i;:::-;;:::i;29917:100::-;;;:::i;:::-;;;;;;;:::i;31476:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6650:32:1;;;6632:51;;6620:2;6605:18;31476:221:0;6486:203:1;30999:411:0;;;;;;:::i;:::-;;:::i;50126:37::-;;;;;;;;;15646:25:1;;;15634:2;15619:18;50126:37:0;15500:177:1;54607:117:0;;;;;;:::i;:::-;;:::i;49991:41::-;;;;;;;;;43737:113;43825:10;:17;43737:113;;51986:626;;;;;;:::i;:::-;;:::i;52620:595::-;;;;;;:::i;:::-;;:::i;32226:339::-;;;;;;:::i;:::-;;:::i;50171:31::-;;;;;;43405:256;;;;;;:::i;:::-;;:::i;54845:121::-;;;;;;:::i;:::-;;:::i;54974:155::-;;;:::i;49615:35::-;;;;;;32636:185;;;;;;:::i;:::-;;:::i;43927:233::-;;;;;;:::i;:::-;;:::i;51233:103::-;;;:::i;50687:93::-;;;;;;:::i;:::-;;:::i;8144:86::-;8215:7;;;;8144:86;;29611:239;;;;;;:::i;:::-;;:::i;54104:143::-;;;;;;:::i;:::-;;:::i;49774:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;54375:100;;;;;;:::i;:::-;;:::i;29341:208::-;;;;;;:::i;:::-;;:::i;6195:103::-;;;:::i;50999:97::-;;;:::i;50424:144::-;;;;;;:::i;:::-;;:::i;50210:30::-;;;;;;5544:87;5617:6;;;;;-1:-1:-1;;;;;5617:6:0;5544:87;;50250:24;;;:::i;53701:144::-;;;;;;:::i;:::-;;:::i;50040:33::-;;;;;;;;;;;;30086:104;;;:::i;53997:99::-;;;:::i;54732:105::-;;;;;;:::i;:::-;;:::i;31769:155::-;;;;;;:::i;:::-;;:::i;53565:128::-;;;;;;:::i;:::-;;:::i;49660:53::-;;;;;;:::i;:::-;;;;;;;;;;;;;;32892:328;;;;;;:::i;:::-;;:::i;51104:121::-;;;:::i;50081:35::-;;;;;;;;;;;;49721:45;;;;;;:::i;:::-;;;;;;;;;;;;;;30261:334;;;;;;:::i;:::-;;:::i;31995:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32116:25:0;;;32092:4;32116:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31995:164;53225:171;;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;:::i;:::-;;:::i;54255:112::-;;;;;;:::i;:::-;;:::i;50788:203::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;50880:1:::1;50865:5;:12;:16;50857:25;;;::::0;::::1;;50899:9;50894:90;50918:5;:12;50914:1;:16;50894:90;;;50952:19;50962:5;50968:1;50962:8;;;;;;;;:::i;:::-;;;;;;;50952:9;:19::i;:::-;50932:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50894:90;;;;50788:203:::0;:::o;51344:634::-;51467:13;;51437:10;;51467:13;;;;;51459:22;;;;;;51510:1;51501:6;:10;51493:19;;;;;;51532:8;;:30;;-1:-1:-1;;;51532:30:0;;51551:10;51532:30;;;6632:51:1;51565:1:0;;-1:-1:-1;;;;;51532:8:0;;:18;;6605::1;;51532:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;51524:43;;;;;;51587:7;51595:5;51587:14;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;51579:23;;;;;;51614:19;51636;:9;964:14;;872:114;51636:19;51614:41;;51689:12;;51675:11;:26;51667:35;;;;;;51746:12;;51722:20;51736:6;51722:11;:20;:::i;:::-;:36;;51714:45;;;;;;51809:10;;-1:-1:-1;;;;;51779:17:0;;;;;;:9;:17;;;;;;:26;;51799:6;;51779:26;:::i;:::-;:40;;51771:49;;;;;;51837:9;51832:81;51856:6;51852:1;:10;51832:81;;;51884:17;51894:6;51884:9;:17::i;:::-;51864:3;;;;:::i;:::-;;;;51832:81;;;-1:-1:-1;;;;;;51943:17:0;;;;;;:9;:17;;;;;;:26;;51963:6;;51943:26;:::i;:::-;-1:-1:-1;;;;;51923:17:0;;;;;;;:9;:17;;;;;:46;;;;-1:-1:-1;;;51344:634:0:o;43097:224::-;43199:4;-1:-1:-1;;;;;;43223:50:0;;-1:-1:-1;;;43223:50:0;;:90;;;43277:36;43301:11;43277:23;:36::i;:::-;43216:97;43097:224;-1:-1:-1;;43097:224:0:o;53857:132::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53945:1:::1;53936:6;:10;53928:19;;;::::0;::::1;;53959:12;:21:::0;53857:132::o;54483:116::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54586:4:::1;54561:15;54577:5;54561:22;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:29;;;::::1;;-1:-1:-1::0;;54561:29:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;54483:116:0:o;29917:100::-;29971:13;30004:5;29997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29917:100;:::o;31476:221::-;31552:7;34819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34819:16:0;31572:73;;;;-1:-1:-1;;;31572:73:0;;13279:2:1;31572:73:0;;;13261:21:1;13318:2;13298:18;;;13291:30;13357:34;13337:18;;;13330:62;-1:-1:-1;;;13408:18:1;;;13401:42;13460:19;;31572:73:0;13077:408:1;31572:73:0;-1:-1:-1;31665:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31665:24:0;;31476:221::o;30999:411::-;31080:13;31096:23;31111:7;31096:14;:23::i;:::-;31080:39;;31144:5;-1:-1:-1;;;;;31138:11:0;:2;-1:-1:-1;;;;;31138:11:0;;;31130:57;;;;-1:-1:-1;;;31130:57:0;;14469:2:1;31130:57:0;;;14451:21:1;14508:2;14488:18;;;14481:30;14547:34;14527:18;;;14520:62;-1:-1:-1;;;14598:18:1;;;14591:31;14639:19;;31130:57:0;14267:397:1;31130:57:0;4348:10;-1:-1:-1;;;;;31222:21:0;;;;:62;;-1:-1:-1;31247:37:0;31264:5;4348:10;31995:164;:::i;31247:37::-;31200:168;;;;-1:-1:-1;;;31200:168:0;;11672:2:1;31200:168:0;;;11654:21:1;11711:2;11691:18;;;11684:30;11750:34;11730:18;;;11723:62;11821:26;11801:18;;;11794:54;11865:19;;31200:168:0;11470:420:1;31200:168:0;31381:21;31390:2;31394:7;31381:8;:21::i;:::-;31069:341;30999:411;;:::o;54607:117::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54710:5:::1;54687:13;54701:5;54687:20;;;;;;:::i;51986:626::-:0;52082:10;52112;52104:19;;;;;;52143:21;;;;52135:30;;;;;;52185:15;52201:5;52185:22;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;52177:31;;;;;;52220:19;52242;:9;964:14;;872:114;52242:19;52220:41;;52294:12;;52280:11;:26;52272:35;;;;;;52350:12;;52326:20;52340:6;52326:11;:20;:::i;:::-;:36;;52318:45;;;;;;52420:18;;-1:-1:-1;;;;;52382:25:0;;;;;;:17;:25;;;;;;:34;;52410:6;;52382:34;:::i;:::-;:56;;52374:65;;;;;;52455:9;52450:81;52474:6;52470:1;:10;52450:81;;;52502:17;52512:6;52502:9;:17::i;:::-;52482:3;;;;:::i;:::-;;;;52450:81;;;-1:-1:-1;;;;;;52569:25:0;;;;;;:17;:25;;;;;;:34;;52597:6;;52569:34;:::i;:::-;-1:-1:-1;;;;;52541:25:0;;;;;;;:17;:25;;;;;:62;;;;-1:-1:-1;;;51986:626:0:o;52620:595::-;52710:10;52740;52732:19;;;;;;52771:15;;;;;;;52763:24;;;;;;52807:13;52821:5;52807:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;52799:29;;;;;;52840:19;52862;:9;964:14;;872:114;52862:19;52840:41;;52914:12;;52900:11;:26;52892:35;;;;;;52970:12;;52946:20;52960:6;52946:11;:20;:::i;:::-;:36;;52938:45;;;;;;53035:12;;-1:-1:-1;;;;;53003:19:0;;;;;;:11;:19;;;;;;:28;;53025:6;;53003:28;:::i;:::-;:44;;52995:53;;;;;;53065:9;53060:86;53084:6;53080:1;:10;53060:86;;;53112:21;53122:10;53112:9;:21::i;:::-;53092:3;;;;:::i;:::-;;;;53060:86;;;-1:-1:-1;;;;;;53178:19:0;;;;;;:11;:19;;;;;;:28;;53200:6;;53178:28;:::i;:::-;-1:-1:-1;;;;;53156:19:0;;;;;;;:11;:19;;;;;:50;;;;-1:-1:-1;;;52620:595:0:o;32226:339::-;32421:41;4348:10;32454:7;32421:18;:41::i;:::-;32413:103;;;;-1:-1:-1;;;32413:103:0;;;;;;;:::i;:::-;32529:28;32539:4;32545:2;32549:7;32529:9;:28::i;43405:256::-;43502:7;43538:23;43555:5;43538:16;:23::i;:::-;43530:5;:31;43522:87;;;;-1:-1:-1;;;43522:87:0;;8154:2:1;43522:87:0;;;8136:21:1;8193:2;8173:18;;;8166:30;8232:34;8212:18;;;8205:62;-1:-1:-1;;;8283:18:1;;;8276:41;8334:19;;43522:87:0;7952:407:1;43522:87:0;-1:-1:-1;;;;;;43627:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43405:256::o;54845:121::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54952:5:::1;54927:15;54943:5;54927:22;;;;;;:::i;54974:155::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;55056:1:::1;55032:21;:25;55024:34;;;::::0;::::1;;55070:51;::::0;55078:10:::1;::::0;55099:21:::1;55070:51:::0;::::1;;;::::0;::::1;::::0;;;55099:21;55078:10;55070:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54974:155::o:0;32636:185::-;32774:39;32791:4;32797:2;32801:7;32774:39;;;;;;;;;;;;:16;:39::i;43927:233::-;44002:7;44038:30;43825:10;:17;;43737:113;44038:30;44030:5;:38;44022:95;;;;-1:-1:-1;;;44022:95:0;;15289:2:1;44022:95:0;;;15271:21:1;15328:2;15308:18;;;15301:30;15367:34;15347:18;;;15340:62;-1:-1:-1;;;15418:18:1;;;15411:42;15470:19;;44022:95:0;15087:408:1;44022:95:0;44135:10;44146:5;44135:17;;;;;;;;:::i;:::-;;;;;;;;;44128:24;;43927:233;;;:::o;51233:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51312:15:::1;::::0;;-1:-1:-1;;51293:34:0;::::1;51312:15:::0;;;;::::1;;;51311:16;51293:34:::0;;::::1;;::::0;;51233:103::o;50687:93::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;50755:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;29611:239::-:0;29683:7;29719:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29719:16:0;29754:19;29746:73;;;;-1:-1:-1;;;29746:73:0;;12508:2:1;29746:73:0;;;12490:21:1;12547:2;12527:18;;;12520:30;12586:34;12566:18;;;12559:62;-1:-1:-1;;;12637:18:1;;;12630:39;12686:19;;29746:73:0;12306:405:1;54104:143:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54200:1:::1;54188:9;:13;54180:22;;;::::0;::::1;;54214:12;:24:::0;54104:143::o;54375:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54462:4:::1;54445:7;54453:5;54445:14;;;;;;:::i;29341:208::-:0;29413:7;-1:-1:-1;;;;;29441:19:0;;29433:74;;;;-1:-1:-1;;;29433:74:0;;12097:2:1;29433:74:0;;;12079:21:1;12136:2;12116:18;;;12109:30;12175:34;12155:18;;;12148:62;-1:-1:-1;;;12226:18:1;;;12219:40;12276:19;;29433:74:0;11895:406:1;29433:74:0;-1:-1:-1;;;;;;29525:16:0;;;;;:9;:16;;;;;;;29341:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;50999:97::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51074:13:::1;::::0;;-1:-1:-1;;51057:30:0;::::1;51074:13;::::0;;;::::1;;;51073:14;51057:30:::0;;::::1;;::::0;;50999:97::o;50424:144::-;50494:39;50513:10;50525:7;50494:18;:39::i;:::-;50486:48;;;;;;50546:14;50552:7;50546:5;:14::i;50250:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53701:144::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53795:1:::1;53786:6;:10;53778:19;;;::::0;::::1;;53809:18;:27:::0;53701:144::o;30086:104::-;30142:13;30175:7;30168:14;;;;;:::i;53997:99::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;8215:7;;;;54056:32:::1;;54080:8;:6;:8::i;54056:32::-;54067:10;:8;:10::i;54732:105::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54823:5:::1;54806:7;54814:5;54806:14;;;;;;:::i;31769:155::-:0;31864:52;4348:10;31897:8;31907;31864:18;:52::i;53565:128::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53651:1:::1;53642:6;:10;53634:19;;;::::0;::::1;;53665:10;:19:::0;53565:128::o;32892:328::-;33067:41;4348:10;33100:7;33067:18;:41::i;:::-;33059:103;;;;-1:-1:-1;;;33059:103:0;;;;;;;:::i;:::-;33173:39;33187:4;33193:2;33197:7;33206:5;33173:13;:39::i;:::-;32892:328;;;;:::o;51104:121::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51195:21:::1;::::0;;-1:-1:-1;;51170:46:0;::::1;51195:21;::::0;;::::1;51194:22;51170:46;::::0;;51104:121::o;30261:334::-;34795:4;34819:16;;;:7;:16;;;;;;30334:13;;-1:-1:-1;;;;;34819:16:0;30360:76;;;;-1:-1:-1;;;30360:76:0;;14053:2:1;30360:76:0;;;14035:21:1;14092:2;14072:18;;;14065:30;14131:34;14111:18;;;14104:62;-1:-1:-1;;;14182:18:1;;;14175:45;14237:19;;30360:76:0;13851:411:1;30360:76:0;30449:21;30473:10;:8;:10::i;:::-;30449:34;;30525:1;30507:7;30501:21;:25;:86;;;;;;;;;;;;;;;;;30553:7;30562:18;:7;:16;:18::i;:::-;30536:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30501:86;30494:93;30261:334;-1:-1:-1;;;30261:334:0:o;53225:171::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53317:25:0;::::1;53309:34;;;::::0;::::1;;53355:8;:32:::0;;-1:-1:-1;;;;;;53355:32:0::1;-1:-1:-1::0;;;;;53355:32:0;;;::::1;::::0;;;::::1;::::0;;53225:171::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;8985:2:1;6534:73:0::1;::::0;::::1;8967:21:1::0;9024:2;9004:18;;;8997:30;9063:34;9043:18;;;9036:62;-1:-1:-1;;;9114:18:1;;;9107:36;9160:19;;6534:73:0::1;8783:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;54255:112::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54354:4:::1;54331:13;54345:5;54331:20;;;;;;:::i;53404:151::-:0;53455:21;:9;1083:19;;1101:1;1083:19;;;994:127;53455:21;53487:10;53500:19;:9;964:14;;872:114;53500:19;53487:32;;53530:17;53540:2;53544;53530:9;:17::i;28972:305::-;29074:4;-1:-1:-1;;;;;;29111:40:0;;-1:-1:-1;;;29111:40:0;;:105;;-1:-1:-1;;;;;;;29168:48:0;;-1:-1:-1;;;29168:48:0;29111:105;:158;;;-1:-1:-1;;;;;;;;;;20755:40:0;;;29233:36;20646:157;38876:174;38951:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38951:29:0;-1:-1:-1;;;;;38951:29:0;;;;;;;;:24;;39005:23;38951:24;39005:14;:23::i;:::-;-1:-1:-1;;;;;38996:46:0;;;;;;;;;;;38876:174;;:::o;35024:348::-;35117:4;34819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34819:16:0;35134:73;;;;-1:-1:-1;;;35134:73:0;;10914:2:1;35134:73:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:42;11095:19;;35134:73:0;10712:408:1;35134:73:0;35218:13;35234:23;35249:7;35234:14;:23::i;:::-;35218:39;;35287:5;-1:-1:-1;;;;;35276:16:0;:7;-1:-1:-1;;;;;35276:16:0;;:51;;;;35320:7;-1:-1:-1;;;;;35296:31:0;:20;35308:7;35296:11;:20::i;:::-;-1:-1:-1;;;;;35296:31:0;;35276:51;:87;;;-1:-1:-1;;;;;;32116:25:0;;;32092:4;32116:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35331:32;35268:96;35024:348;-1:-1:-1;;;;35024:348:0:o;38133:625::-;38292:4;-1:-1:-1;;;;;38265:31:0;:23;38280:7;38265:14;:23::i;:::-;-1:-1:-1;;;;;38265:31:0;;38257:81;;;;-1:-1:-1;;;38257:81:0;;9392:2:1;38257:81:0;;;9374:21:1;9431:2;9411:18;;;9404:30;9470:34;9450:18;;;9443:62;-1:-1:-1;;;9521:18:1;;;9514:35;9566:19;;38257:81:0;9190:401:1;38257:81:0;-1:-1:-1;;;;;38357:16:0;;38349:65;;;;-1:-1:-1;;;38349:65:0;;10155:2:1;38349:65:0;;;10137:21:1;10194:2;10174:18;;;10167:30;10233:34;10213:18;;;10206:62;-1:-1:-1;;;10284:18:1;;;10277:34;10328:19;;38349:65:0;9953:400:1;38349:65:0;38427:39;38448:4;38454:2;38458:7;38427:20;:39::i;:::-;38531:29;38548:1;38552:7;38531:8;:29::i;:::-;-1:-1:-1;;;;;38573:15:0;;;;;;:9;:15;;;;;:20;;38592:1;;38573:15;:20;;38592:1;;38573:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38604:13:0;;;;;;:9;:13;;;;;:18;;38621:1;;38604:13;:18;;38621:1;;38604:18;:::i;:::-;;;;-1:-1:-1;;38633:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38633:21:0;-1:-1:-1;;;;;38633:21:0;;;;;;;;;38672:27;;38633:16;;38672:27;;;;;;;31069:341;30999:411;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;6907:6;6924:17;;;-1:-1:-1;;;;;;6924:17:0;;;;;;6957:40;;6907:6;;;;;;;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;37376:420::-;37436:13;37452:23;37467:7;37452:14;:23::i;:::-;37436:39;;37488:48;37509:5;37524:1;37528:7;37488:20;:48::i;:::-;37577:29;37594:1;37598:7;37577:8;:29::i;:::-;-1:-1:-1;;;;;37619:16:0;;;;;;:9;:16;;;;;:21;;37639:1;;37619:16;:21;;37639:1;;37619:21;:::i;:::-;;;;-1:-1:-1;;37658:16:0;;;;:7;:16;;;;;;37651:23;;-1:-1:-1;;;;;;37651:23:0;;;37692:36;37666:7;;37658:16;-1:-1:-1;;;;;37692:36:0;;;;;37658:16;;37692:36;50894:90:::1;50788:203:::0;:::o;8944:118::-;8215:7;;;;8469:9;8461:38;;;;-1:-1:-1;;;8461:38:0;;11327:2:1;8461:38:0;;;11309:21:1;11366:2;11346:18;;;11339:30;-1:-1:-1;;;11385:18:1;;;11378:46;11441:18;;8461:38:0;11125:340:1;8461:38:0;9004:7:::1;:14:::0;;-1:-1:-1;;9004:14:0::1;9014:4;9004:14;::::0;;9034:20:::1;9041:12;4348:10:::0;;4268:98;9041:12:::1;9034:20;::::0;-1:-1:-1;;;;;6650:32:1;;;6632:51;;6620:2;6605:18;9034:20:0::1;;;;;;;8944:118::o:0;9203:120::-;8215:7;;;;8739:41;;;;-1:-1:-1;;;8739:41:0;;7805:2:1;8739:41:0;;;7787:21:1;7844:2;7824:18;;;7817:30;-1:-1:-1;;;7863:18:1;;;7856:50;7923:18;;8739:41:0;7603:344:1;8739:41:0;9262:7:::1;:15:::0;;-1:-1:-1;;9262:15:0::1;::::0;;9293:22:::1;4348:10:::0;9302:12:::1;4268:98:::0;39192:315;39347:8;-1:-1:-1;;;;;39338:17:0;:5;-1:-1:-1;;;;;39338:17:0;;;39330:55;;;;-1:-1:-1;;;39330:55:0;;10560:2:1;39330:55:0;;;10542:21:1;10599:2;10579:18;;;10572:30;10638:27;10618:18;;;10611:55;10683:18;;39330:55:0;10358:349:1;39330:55:0;-1:-1:-1;;;;;39396:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39396:46:0;;;;;;;;;;39458:41;;7327::1;;;39458::0;;7300:18:1;39458:41:0;;;;;;;39192:315;;;:::o;34102:::-;34259:28;34269:4;34275:2;34279:7;34259:9;:28::i;:::-;34306:48;34329:4;34335:2;34339:7;34348:5;34306:22;:48::i;:::-;34298:111;;;;-1:-1:-1;;;34298:111:0;;;;;;;:::i;50576:103::-;50628:13;50661:10;50654:17;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;35714:110;35790:26;35800:2;35804:7;35790:26;;;;;;;;;;;;:9;:26::i;44773:589::-;-1:-1:-1;;;;;44979:18:0;;44975:187;;45014:40;45046:7;46189:10;:17;;46162:24;;;;:15;:24;;;;;:44;;;46217:24;;;;;;;;;;;;46085:164;45014:40;44975:187;;;45084:2;-1:-1:-1;;;;;45076:10:0;:4;-1:-1:-1;;;;;45076:10:0;;45072:90;;45103:47;45136:4;45142:7;45103:32;:47::i;:::-;-1:-1:-1;;;;;45176:16:0;;45172:183;;45209:45;45246:7;45209:36;:45::i;45172:183::-;45282:4;-1:-1:-1;;;;;45276:10:0;:2;-1:-1:-1;;;;;45276:10:0;;45272:83;;45303:40;45331:2;45335:7;45303:27;:40::i;40072:799::-;40227:4;-1:-1:-1;;;;;40248:13:0;;10858:19;:23;40244:620;;40284:72;;-1:-1:-1;;;40284:72:0;;-1:-1:-1;;;;;40284:36:0;;;;;:72;;4348:10;;40335:4;;40341:7;;40350:5;;40284:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40284:72:0;;;;;;;;-1:-1:-1;;40284:72:0;;;;;;;;;;;;:::i;:::-;;;40280:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40526:13:0;;40522:272;;40569:60;;-1:-1:-1;;;40569:60:0;;;;;;;:::i;40522:272::-;40744:6;40738:13;40729:6;40725:2;40721:15;40714:38;40280:529;-1:-1:-1;;;;;;40407:51:0;-1:-1:-1;;;40407:51:0;;-1:-1:-1;40400:58:0;;40244:620;-1:-1:-1;40848:4:0;40072:799;;;;;;:::o;36051:321::-;36181:18;36187:2;36191:7;36181:5;:18::i;:::-;36232:54;36263:1;36267:2;36271:7;36280:5;36232:22;:54::i;:::-;36210:154;;;;-1:-1:-1;;;36210:154:0;;;;;;;:::i;46876:988::-;47142:22;47192:1;47167:22;47184:4;47167:16;:22::i;:::-;:26;;;;:::i;:::-;47204:18;47225:26;;;:17;:26;;;;;;47142:51;;-1:-1:-1;47358:28:0;;;47354:328;;-1:-1:-1;;;;;47425:18:0;;47403:19;47425:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47476:30;;;;;;:44;;;47593:30;;:17;:30;;;;;:43;;;47354:328;-1:-1:-1;47778:26:0;;;;:17;:26;;;;;;;;47771:33;;;-1:-1:-1;;;;;47822:18:0;;;;;:12;:18;;;;;:34;;;;;;;47815:41;46876:988::o;48159:1079::-;48437:10;:17;48412:22;;48437:21;;48457:1;;48437:21;:::i;:::-;48469:18;48490:24;;;:15;:24;;;;;;48863:10;:26;;48412:46;;-1:-1:-1;48490:24:0;;48412:46;;48863:26;;;;;;:::i;:::-;;;;;;;;;48841:48;;48927:11;48902:10;48913;48902:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49007:28;;;:15;:28;;;;;;;:41;;;49179:24;;;;;49172:31;49214:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48230:1008;;;48159:1079;:::o;45663:221::-;45748:14;45765:20;45782:2;45765:16;:20::i;:::-;-1:-1:-1;;;;;45796:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45841:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45663:221:0:o;36708:439::-;-1:-1:-1;;;;;36788:16:0;;36780:61;;;;-1:-1:-1;;;36780:61:0;;12918:2:1;36780:61:0;;;12900:21:1;;;12937:18;;;12930:30;12996:34;12976:18;;;12969:62;13048:18;;36780:61:0;12716:356:1;36780:61:0;34795:4;34819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34819:16:0;:30;36852:58;;;;-1:-1:-1;;;36852:58:0;;9798:2:1;36852:58:0;;;9780:21:1;9837:2;9817:18;;;9810:30;9876;9856:18;;;9849:58;9924:18;;36852:58:0;9596:352:1;36852:58:0;36923:45;36952:1;36956:2;36960:7;36923:20;:45::i;:::-;-1:-1:-1;;;;;36981:13:0;;;;;;:9;:13;;;;;:18;;36998:1;;36981:13;:18;;36998:1;;36981:18;:::i;:::-;;;;-1:-1:-1;;37010:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37010:21:0;-1:-1:-1;;;;;37010:21:0;;;;;;;;37049:33;;37010:16;;;37049:33;;37010:16;;37049:33;50894:90:::1;50788:203:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:221::-;646:5;699:3;692:4;684:6;680:17;676:27;666:55;;717:1;714;707:12;666:55;739:79;814:3;805:6;792:20;785:4;777:6;773:17;739:79;:::i;829:186::-;888:6;941:2;929:9;920:7;916:23;912:32;909:52;;;957:1;954;947:12;909:52;980:29;999:9;980:29;:::i;1020:260::-;1088:6;1096;1149:2;1137:9;1128:7;1124:23;1120:32;1117:52;;;1165:1;1162;1155:12;1117:52;1188:29;1207:9;1188:29;:::i;:::-;1178:39;;1236:38;1270:2;1259:9;1255:18;1236:38;:::i;:::-;1226:48;;1020:260;;;;;:::o;1285:328::-;1362:6;1370;1378;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1470:29;1489:9;1470:29;:::i;:::-;1460:39;;1518:38;1552:2;1541:9;1537:18;1518:38;:::i;:::-;1508:48;;1603:2;1592:9;1588:18;1575:32;1565:42;;1285:328;;;;;:::o;1618:666::-;1713:6;1721;1729;1737;1790:3;1778:9;1769:7;1765:23;1761:33;1758:53;;;1807:1;1804;1797:12;1758:53;1830:29;1849:9;1830:29;:::i;:::-;1820:39;;1878:38;1912:2;1901:9;1897:18;1878:38;:::i;:::-;1868:48;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;2045:18;2037:6;2034:30;2031:50;;;2077:1;2074;2067:12;2031:50;2100:22;;2153:4;2145:13;;2141:27;-1:-1:-1;2131:55:1;;2182:1;2179;2172:12;2131:55;2205:73;2270:7;2265:2;2252:16;2247:2;2243;2239:11;2205:73;:::i;:::-;2195:83;;;1618:666;;;;;;;:::o;2289:347::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2533:2;2522:9;2518:18;2505:32;2580:5;2573:13;2566:21;2559:5;2556:32;2546:60;;2602:1;2599;2592:12;2546:60;2625:5;2615:15;;;2289:347;;;;;:::o;2641:254::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;2885:2;2870:18;;;;2857:32;;-1:-1:-1;;;2641:254:1:o;2900:963::-;2984:6;3015:2;3058;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3114:9;3101:23;3143:18;3184:2;3176:6;3173:14;3170:34;;;3200:1;3197;3190:12;3170:34;3238:6;3227:9;3223:22;3213:32;;3283:7;3276:4;3272:2;3268:13;3264:27;3254:55;;3305:1;3302;3295:12;3254:55;3341:2;3328:16;3363:2;3359;3356:10;3353:36;;;3369:18;;:::i;:::-;3415:2;3412:1;3408:10;3398:20;;3438:28;3462:2;3458;3454:11;3438:28;:::i;:::-;3500:15;;;3531:12;;;;3563:11;;;3593;;;3589:20;;3586:33;-1:-1:-1;3583:53:1;;;3632:1;3629;3622:12;3583:53;3654:1;3645:10;;3664:169;3678:2;3675:1;3672:9;3664:169;;;3735:23;3754:3;3735:23;:::i;:::-;3723:36;;3696:1;3689:9;;;;;3779:12;;;;3811;;3664:169;;;-1:-1:-1;3852:5:1;2900:963;-1:-1:-1;;;;;;;;2900:963:1:o;3868:245::-;3926:6;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:30;4077:5;4053:30;:::i;4118:249::-;4187:6;4240:2;4228:9;4219:7;4215:23;4211:32;4208:52;;;4256:1;4253;4246:12;4208:52;4288:9;4282:16;4307:30;4331:5;4307:30;:::i;4372:322::-;4441:6;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4550:9;4537:23;4583:18;4575:6;4572:30;4569:50;;;4615:1;4612;4605:12;4569:50;4638;4680:7;4671:6;4660:9;4656:22;4638:50;:::i;4699:180::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;-1:-1:-1;4850:23:1;;4699:180;-1:-1:-1;4699:180:1:o;4884:184::-;4954:6;5007:2;4995:9;4986:7;4982:23;4978:32;4975:52;;;5023:1;5020;5013:12;4975:52;-1:-1:-1;5046:16:1;;4884:184;-1:-1:-1;4884:184:1:o;5073:390::-;5151:6;5159;5212:2;5200:9;5191:7;5187:23;5183:32;5180:52;;;5228:1;5225;5218:12;5180:52;5264:9;5251:23;5241:33;;5325:2;5314:9;5310:18;5297:32;5352:18;5344:6;5341:30;5338:50;;;5384:1;5381;5374:12;5338:50;5407;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;;5073:390;;;;;:::o;5468:257::-;5509:3;5547:5;5541:12;5574:6;5569:3;5562:19;5590:63;5646:6;5639:4;5634:3;5630:14;5623:4;5616:5;5612:16;5590:63;:::i;:::-;5707:2;5686:15;-1:-1:-1;;5682:29:1;5673:39;;;;5714:4;5669:50;;5468:257;-1:-1:-1;;5468:257:1:o;5730:276::-;5861:3;5899:6;5893:13;5915:53;5961:6;5956:3;5949:4;5941:6;5937:17;5915:53;:::i;:::-;5984:16;;;;;5730:276;-1:-1:-1;;5730:276:1:o;6011:470::-;6190:3;6228:6;6222:13;6244:53;6290:6;6285:3;6278:4;6270:6;6266:17;6244:53;:::i;:::-;6360:13;;6319:16;;;;6382:57;6360:13;6319:16;6416:4;6404:17;;6382:57;:::i;:::-;6455:20;;6011:470;-1:-1:-1;;;;6011:470:1:o;6694:488::-;-1:-1:-1;;;;;6963:15:1;;;6945:34;;7015:15;;7010:2;6995:18;;6988:43;7062:2;7047:18;;7040:34;;;7110:3;7105:2;7090:18;;7083:31;;;6888:4;;7131:45;;7156:19;;7148:6;7131:45;:::i;:::-;7123:53;6694:488;-1:-1:-1;;;;;;6694:488:1:o;7379:219::-;7528:2;7517:9;7510:21;7491:4;7548:44;7588:2;7577:9;7573:18;7565:6;7548:44;:::i;8364:414::-;8566:2;8548:21;;;8605:2;8585:18;;;8578:30;8644:34;8639:2;8624:18;;8617:62;-1:-1:-1;;;8710:2:1;8695:18;;8688:48;8768:3;8753:19;;8364:414::o;13490:356::-;13692:2;13674:21;;;13711:18;;;13704:30;13770:34;13765:2;13750:18;;13743:62;13837:2;13822:18;;13490:356::o;14669:413::-;14871:2;14853:21;;;14910:2;14890:18;;;14883:30;14949:34;14944:2;14929:18;;14922:62;-1:-1:-1;;;15015:2:1;15000:18;;14993:47;15072:3;15057:19;;14669:413::o;15682:275::-;15753:2;15747:9;15818:2;15799:13;;-1:-1:-1;;15795:27:1;15783:40;;15853:18;15838:34;;15874:22;;;15835:62;15832:88;;;15900:18;;:::i;:::-;15936:2;15929:22;15682:275;;-1:-1:-1;15682:275:1:o;15962:128::-;16002:3;16033:1;16029:6;16026:1;16023:13;16020:39;;;16039:18;;:::i;:::-;-1:-1:-1;16075:9:1;;15962:128::o;16095:120::-;16135:1;16161;16151:35;;16166:18;;:::i;:::-;-1:-1:-1;16200:9:1;;16095:120::o;16220:125::-;16260:4;16288:1;16285;16282:8;16279:34;;;16293:18;;:::i;:::-;-1:-1:-1;16330:9:1;;16220:125::o;16350:258::-;16422:1;16432:113;16446:6;16443:1;16440:13;16432:113;;;16522:11;;;16516:18;16503:11;;;16496:39;16468:2;16461:10;16432:113;;;16563:6;16560:1;16557:13;16554:48;;;-1:-1:-1;;16598:1:1;16580:16;;16573:27;16350:258::o;16613:380::-;16692:1;16688:12;;;;16735;;;16756:61;;16810:4;16802:6;16798:17;16788:27;;16756:61;16863:2;16855:6;16852:14;16832:18;16829:38;16826:161;;;16909:10;16904:3;16900:20;16897:1;16890:31;16944:4;16941:1;16934:15;16972:4;16969:1;16962:15;16826:161;;16613:380;;;:::o;16998:135::-;17037:3;-1:-1:-1;;17058:17:1;;17055:43;;;17078:18;;:::i;:::-;-1:-1:-1;17125:1:1;17114:13;;16998:135::o;17138:112::-;17170:1;17196;17186:35;;17201:18;;:::i;:::-;-1:-1:-1;17235:9:1;;17138:112::o;17255:127::-;17316:10;17311:3;17307:20;17304:1;17297:31;17347:4;17344:1;17337:15;17371:4;17368:1;17361:15;17387:127;17448:10;17443:3;17439:20;17436:1;17429:31;17479:4;17476:1;17469:15;17503:4;17500:1;17493:15;17519:127;17580:10;17575:3;17571:20;17568:1;17561:31;17611:4;17608:1;17601:15;17635:4;17632:1;17625:15;17651:127;17712:10;17707:3;17703:20;17700:1;17693:31;17743:4;17740:1;17733:15;17767:4;17764:1;17757:15;17783:127;17844:10;17839:3;17835:20;17832:1;17825:31;17875:4;17872:1;17865:15;17899:4;17896:1;17889:15;17915:131;-1:-1:-1;;;;;;17989:32:1;;17979:43;;17969:71;;18036:1;18033;18026:12

Swarm Source

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