ETH Price: $3,166.28 (-8.22%)
Gas: 3 Gwei

Token

Ashlings (ASH)
 

Overview

Max Total Supply

74 ASH

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ASH
0xa1d6ae0d6d7c539fda043bec4eb8c91201071223
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:
Ashlings

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.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/Address.sol


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (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 v4.4.1 (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 tokenId);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

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

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

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

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

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

// 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 newt 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: contracts/Ashlings.sol





pragma solidity ^0.8.0;




contract Ashlings is ERC721A, Ownable {

  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 4000000000000000000;
  uint256 public maxSupply = 5000;
  bool public paused = false;
  address public ashContract = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92;


  constructor() ERC721A("Ashlings", "ASH") {
  }

  function mint(uint256 quantity) external {
    if (msg.sender != owner()) {
    require(!paused);   
    require(IERC20(ashContract).balanceOf(msg.sender) >= cost * quantity);
    IERC20(ashContract).transferFrom(msg.sender, address(this), cost * quantity);
    } 
    uint256 supply = totalSupply();
    require(quantity > 0);
    require(supply + quantity <= maxSupply);
    _safeMint(msg.sender, quantity);
  }


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


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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


  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function withdraw(uint256 _amount) public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
    IERC20(ashContract).transfer(msg.sender, _amount);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ashContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000805560c06040526005608081905264173539b7b760d91b60a09081526200002c91600991906200014e565b50673782dace9d900000600a55611388600b55600c80546001600160a81b0319167464d91f12ece7362f91a6f8e7940cd55f05060b92001790553480156200007357600080fd5b5060408051808201825260088152674173686c696e677360c01b602080830191825283518085019094526003845262082a6960eb1b908401528151919291620000bf916001916200014e565b508051620000d59060029060208401906200014e565b505050620000f2620000ec620000f860201b60201c565b620000fc565b62000231565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015c90620001f4565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600181811c908216806200020957607f821691505b602082108114156200022b57634e487b7160e01b600052602260045260246000fd5b50919050565b6123cd80620002416000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a420ed3e11610095578063d5abeb0111610064578063d5abeb0114610563578063da3ef23f14610579578063e985e9c514610599578063f2fde38b146105e257600080fd5b8063a420ed3e146104e9578063b88d4fde1461050e578063c66828621461052e578063c87b56dd1461054357600080fd5b80638da5cb5b116100d15780638da5cb5b1461047657806395d89b4114610494578063a0712d68146104a9578063a22cb465146104c957600080fd5b80636352211e1461040c5780636c0360eb1461042c57806370a0823114610441578063715018a61461046157600080fd5b80632e1a7d4d1161017a57806344a0d68a1161014957806344a0d68a146103925780634f6ccce7146103b257806355f804b3146103d25780635c975abb146103f257600080fd5b80632e1a7d4d146103125780632f745c591461032557806342842e0e14610345578063438b63001461036557600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806313faede6146102b957806318160ddd146102dd57806323b872dd146102f257600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611f20565b610602565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611ee6565b61066f565b005b34801561024b57600080fd5b506102546106b5565b6040516102149190612146565b34801561026d57600080fd5b5061028161027c366004611fa3565b610747565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611ebc565b6107d2565b3480156102c557600080fd5b506102cf600a5481565b604051908152602001610214565b3480156102e957600080fd5b506000546102cf565b3480156102fe57600080fd5b5061023d61030d366004611dcd565b6108ea565b61023d610320366004611fa3565b6108f5565b34801561033157600080fd5b506102cf610340366004611ebc565b6109cf565b34801561035157600080fd5b5061023d610360366004611dcd565b610b3d565b34801561037157600080fd5b50610385610380366004611d7f565b610b58565b6040516102149190612102565b34801561039e57600080fd5b5061023d6103ad366004611fa3565b610bfa565b3480156103be57600080fd5b506102cf6103cd366004611fa3565b610c29565b3480156103de57600080fd5b5061023d6103ed366004611f5a565b610c8b565b3480156103fe57600080fd5b50600c546102089060ff1681565b34801561041857600080fd5b50610281610427366004611fa3565b610cc8565b34801561043857600080fd5b50610254610cda565b34801561044d57600080fd5b506102cf61045c366004611d7f565b610d68565b34801561046d57600080fd5b5061023d610df9565b34801561048257600080fd5b506007546001600160a01b0316610281565b3480156104a057600080fd5b50610254610e2f565b3480156104b557600080fd5b5061023d6104c4366004611fa3565b610e3e565b3480156104d557600080fd5b5061023d6104e4366004611e85565b610fe4565b3480156104f557600080fd5b50600c546102819061010090046001600160a01b031681565b34801561051a57600080fd5b5061023d610529366004611e09565b6110a9565b34801561053a57600080fd5b506102546110e2565b34801561054f57600080fd5b5061025461055e366004611fa3565b6110ef565b34801561056f57600080fd5b506102cf600b5481565b34801561058557600080fd5b5061023d610594366004611f5a565b6111bf565b3480156105a557600080fd5b506102086105b4366004611d9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ee57600080fd5b5061023d6105fd366004611d7f565b6111fc565b60006001600160e01b031982166380ac58cd60e01b148061063357506001600160e01b03198216635b5e139f60e01b145b8061064e57506001600160e01b0319821663780e9d6360e01b145b8061066957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106a25760405162461bcd60e51b815260040161069990612159565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546106c4906122b1565b80601f01602080910402602001604051908101604052809291908181526020018280546106f0906122b1565b801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b6000610754826000541190565b6107b65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610699565b506000908152600560205260409020546001600160a01b031690565b60006107dd82610cc8565b9050806001600160a01b0316836001600160a01b0316141561084c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610699565b336001600160a01b0382161480610868575061086881336105b4565b6108da5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610699565b6108e5838383611297565b505050565b6108e58383836112f3565b6007546001600160a01b0316331461091f5760405162461bcd60e51b815260040161069990612159565b60405133904780156108fc02916000818181858888f1935050505061094357600080fd5b600c5460405163a9059cbb60e01b8152336004820152602481018390526101009091046001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190611f03565b5050565b60006109da83610d68565b8210610a335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610699565b600080549080805b83811015610add576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b03161415610aca5786841415610abc5750935061066992505050565b83610ac6816122ec565b9450505b5080610ad5816122ec565b915050610a3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610699565b6108e5838383604051806020016040528060008152506110a9565b60606000610b6583610d68565b905060008167ffffffffffffffff811115610b8257610b8261235d565b604051908082528060200260200182016040528015610bab578160200160208202803683370190505b50905060005b82811015610bf257610bc385826109cf565b828281518110610bd557610bd5612347565b602090810291909101015280610bea816122ec565b915050610bb1565b509392505050565b6007546001600160a01b03163314610c245760405162461bcd60e51b815260040161069990612159565b600a55565b600080548210610c875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610699565b5090565b6007546001600160a01b03163314610cb55760405162461bcd60e51b815260040161069990612159565b80516109cb906008906020840190611c5d565b6000610cd38261163a565b5192915050565b60088054610ce7906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d13906122b1565b8015610d605780601f10610d3557610100808354040283529160200191610d60565b820191906000526020600020905b815481529060010190602001808311610d4357829003601f168201915b505050505081565b60006001600160a01b038216610dd45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610699565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e235760405162461bcd60e51b815260040161069990612159565b610e2d600061171a565b565b6060600280546106c4906122b1565b6007546001600160a01b03163314610fb557600c5460ff1615610e6057600080fd5b80600a54610e6e9190612238565b600c546040516370a0823160e01b81523360048201526101009091046001600160a01b0316906370a082319060240160206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190611fbc565b1015610ef857600080fd5b600c60019054906101000a90046001600160a01b03166001600160a01b03166323b872dd333084600a54610f2c9190612238565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610f7b57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb39190611f03565b505b60005481610fc257600080fd5b600b54610fcf838361220c565b1115610fda57600080fd5b6109cb338361176c565b6001600160a01b03821633141561103d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610699565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b48484846112f3565b6110c084848484611786565b6110dc5760405162461bcd60e51b81526004016106999061218e565b50505050565b60098054610ce7906122b1565b60606110fc826000541190565b6111605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610699565b600061116a611894565b9050600081511161118a57604051806020016040528060008152506111b8565b80611194846118a3565b60096040516020016111a893929190612001565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111e95760405162461bcd60e51b815260040161069990612159565b80516109cb906009906020840190611c5d565b6007546001600160a01b031633146112265760405162461bcd60e51b815260040161069990612159565b6001600160a01b03811661128b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610699565b6112948161171a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112fe8261163a565b80519091506000906001600160a01b0316336001600160a01b0316148061133557503361132a84610747565b6001600160a01b0316145b806113475750815161134790336105b4565b9050806113b15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610699565b846001600160a01b031682600001516001600160a01b0316146114255760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610699565b6001600160a01b0384166114895760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610699565b6114996000848460000151611297565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061155e90859061220c565b6000818152600360205260409020549091506001600160a01b03166115f057611588816000541190565b156115f05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611659826000541190565b6116b85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610699565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611707579392505050565b50806117128161229a565b9150506116ba565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cb8282604051806020016040528060008152506119a1565b60006001600160a01b0384163b1561188857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ca9033908990889088906004016120c5565b602060405180830381600087803b1580156117e457600080fd5b505af1925050508015611814575060408051601f3d908101601f1916820190925261181191810190611f3d565b60015b61186e573d808015611842576040519150601f19603f3d011682016040523d82523d6000602084013e611847565b606091505b5080516118665760405162461bcd60e51b81526004016106999061218e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061188c565b5060015b949350505050565b6060600880546106c4906122b1565b6060816118c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f157806118db816122ec565b91506118ea9050600a83612224565b91506118cb565b60008167ffffffffffffffff81111561190c5761190c61235d565b6040519080825280601f01601f191660200182016040528015611936576020820181803683370190505b5090505b841561188c5761194b600183612257565b9150611958600a86612307565b61196390603061220c565b60f81b81838151811061197857611978612347565b60200101906001600160f81b031916908160001a90535061199a600a86612224565b945061193a565b6000546001600160a01b038416611a045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610699565b611a0f816000541190565b15611a5c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610699565b60008311611ab85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610699565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b149087906121e1565b6001600160801b03168152602001858360200151611b3291906121e1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c525760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c166000888488611786565b611c325760405162461bcd60e51b81526004016106999061218e565b81611c3c816122ec565b9250508080611c4a906122ec565b915050611bc9565b506000819055611632565b828054611c69906122b1565b90600052602060002090601f016020900481019282611c8b5760008555611cd1565b82601f10611ca457805160ff1916838001178555611cd1565b82800160010185558215611cd1579182015b82811115611cd1578251825591602001919060010190611cb6565b50610c879291505b80821115610c875760008155600101611cd9565b600067ffffffffffffffff80841115611d0857611d0861235d565b604051601f8501601f19908116603f01168101908282118183101715611d3057611d3061235d565b81604052809350858152868686011115611d4957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7a57600080fd5b919050565b600060208284031215611d9157600080fd5b6111b882611d63565b60008060408385031215611dad57600080fd5b611db683611d63565b9150611dc460208401611d63565b90509250929050565b600080600060608486031215611de257600080fd5b611deb84611d63565b9250611df960208501611d63565b9150604084013590509250925092565b60008060008060808587031215611e1f57600080fd5b611e2885611d63565b9350611e3660208601611d63565b925060408501359150606085013567ffffffffffffffff811115611e5957600080fd5b8501601f81018713611e6a57600080fd5b611e7987823560208401611ced565b91505092959194509250565b60008060408385031215611e9857600080fd5b611ea183611d63565b91506020830135611eb181612373565b809150509250929050565b60008060408385031215611ecf57600080fd5b611ed883611d63565b946020939093013593505050565b600060208284031215611ef857600080fd5b81356111b881612373565b600060208284031215611f1557600080fd5b81516111b881612373565b600060208284031215611f3257600080fd5b81356111b881612381565b600060208284031215611f4f57600080fd5b81516111b881612381565b600060208284031215611f6c57600080fd5b813567ffffffffffffffff811115611f8357600080fd5b8201601f81018413611f9457600080fd5b61188c84823560208401611ced565b600060208284031215611fb557600080fd5b5035919050565b600060208284031215611fce57600080fd5b5051919050565b60008151808452611fed81602086016020860161226e565b601f01601f19169290920160200192915050565b6000845160206120148285838a0161226e565b8551918401916120278184848a0161226e565b8554920191600090600181811c908083168061204457607f831692505b85831081141561206257634e487b7160e01b85526022600452602485fd5b8080156120765760018114612087576120b4565b60ff198516885283880195506120b4565b60008b81526020902060005b858110156120ac5781548a820152908401908801612093565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f890830184611fd5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561213a5783518352928401929184019160010161211e565b50909695505050505050565b6020815260006111b86020830184611fd5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122035761220361231b565b01949350505050565b6000821982111561221f5761221f61231b565b500190565b60008261223357612233612331565b500490565b60008160001904831182151516156122525761225261231b565b500290565b6000828210156122695761226961231b565b500390565b60005b83811015612289578181015183820152602001612271565b838111156110dc5750506000910152565b6000816122a9576122a961231b565b506000190190565b600181811c908216806122c557607f821691505b602082108114156122e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123005761230061231b565b5060010190565b60008261231657612316612331565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461129457600080fd5b6001600160e01b03198116811461129457600080fdfea264697066735822122069569b16b80663752c148a61fb77510874bff482e51cd5ad8cabccbeb5b233ca64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a420ed3e11610095578063d5abeb0111610064578063d5abeb0114610563578063da3ef23f14610579578063e985e9c514610599578063f2fde38b146105e257600080fd5b8063a420ed3e146104e9578063b88d4fde1461050e578063c66828621461052e578063c87b56dd1461054357600080fd5b80638da5cb5b116100d15780638da5cb5b1461047657806395d89b4114610494578063a0712d68146104a9578063a22cb465146104c957600080fd5b80636352211e1461040c5780636c0360eb1461042c57806370a0823114610441578063715018a61461046157600080fd5b80632e1a7d4d1161017a57806344a0d68a1161014957806344a0d68a146103925780634f6ccce7146103b257806355f804b3146103d25780635c975abb146103f257600080fd5b80632e1a7d4d146103125780632f745c591461032557806342842e0e14610345578063438b63001461036557600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806313faede6146102b957806318160ddd146102dd57806323b872dd146102f257600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611f20565b610602565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611ee6565b61066f565b005b34801561024b57600080fd5b506102546106b5565b6040516102149190612146565b34801561026d57600080fd5b5061028161027c366004611fa3565b610747565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611ebc565b6107d2565b3480156102c557600080fd5b506102cf600a5481565b604051908152602001610214565b3480156102e957600080fd5b506000546102cf565b3480156102fe57600080fd5b5061023d61030d366004611dcd565b6108ea565b61023d610320366004611fa3565b6108f5565b34801561033157600080fd5b506102cf610340366004611ebc565b6109cf565b34801561035157600080fd5b5061023d610360366004611dcd565b610b3d565b34801561037157600080fd5b50610385610380366004611d7f565b610b58565b6040516102149190612102565b34801561039e57600080fd5b5061023d6103ad366004611fa3565b610bfa565b3480156103be57600080fd5b506102cf6103cd366004611fa3565b610c29565b3480156103de57600080fd5b5061023d6103ed366004611f5a565b610c8b565b3480156103fe57600080fd5b50600c546102089060ff1681565b34801561041857600080fd5b50610281610427366004611fa3565b610cc8565b34801561043857600080fd5b50610254610cda565b34801561044d57600080fd5b506102cf61045c366004611d7f565b610d68565b34801561046d57600080fd5b5061023d610df9565b34801561048257600080fd5b506007546001600160a01b0316610281565b3480156104a057600080fd5b50610254610e2f565b3480156104b557600080fd5b5061023d6104c4366004611fa3565b610e3e565b3480156104d557600080fd5b5061023d6104e4366004611e85565b610fe4565b3480156104f557600080fd5b50600c546102819061010090046001600160a01b031681565b34801561051a57600080fd5b5061023d610529366004611e09565b6110a9565b34801561053a57600080fd5b506102546110e2565b34801561054f57600080fd5b5061025461055e366004611fa3565b6110ef565b34801561056f57600080fd5b506102cf600b5481565b34801561058557600080fd5b5061023d610594366004611f5a565b6111bf565b3480156105a557600080fd5b506102086105b4366004611d9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ee57600080fd5b5061023d6105fd366004611d7f565b6111fc565b60006001600160e01b031982166380ac58cd60e01b148061063357506001600160e01b03198216635b5e139f60e01b145b8061064e57506001600160e01b0319821663780e9d6360e01b145b8061066957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106a25760405162461bcd60e51b815260040161069990612159565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600180546106c4906122b1565b80601f01602080910402602001604051908101604052809291908181526020018280546106f0906122b1565b801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b6000610754826000541190565b6107b65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610699565b506000908152600560205260409020546001600160a01b031690565b60006107dd82610cc8565b9050806001600160a01b0316836001600160a01b0316141561084c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610699565b336001600160a01b0382161480610868575061086881336105b4565b6108da5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610699565b6108e5838383611297565b505050565b6108e58383836112f3565b6007546001600160a01b0316331461091f5760405162461bcd60e51b815260040161069990612159565b60405133904780156108fc02916000818181858888f1935050505061094357600080fd5b600c5460405163a9059cbb60e01b8152336004820152602481018390526101009091046001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190611f03565b5050565b60006109da83610d68565b8210610a335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610699565b600080549080805b83811015610add576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b03161415610aca5786841415610abc5750935061066992505050565b83610ac6816122ec565b9450505b5080610ad5816122ec565b915050610a3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610699565b6108e5838383604051806020016040528060008152506110a9565b60606000610b6583610d68565b905060008167ffffffffffffffff811115610b8257610b8261235d565b604051908082528060200260200182016040528015610bab578160200160208202803683370190505b50905060005b82811015610bf257610bc385826109cf565b828281518110610bd557610bd5612347565b602090810291909101015280610bea816122ec565b915050610bb1565b509392505050565b6007546001600160a01b03163314610c245760405162461bcd60e51b815260040161069990612159565b600a55565b600080548210610c875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610699565b5090565b6007546001600160a01b03163314610cb55760405162461bcd60e51b815260040161069990612159565b80516109cb906008906020840190611c5d565b6000610cd38261163a565b5192915050565b60088054610ce7906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d13906122b1565b8015610d605780601f10610d3557610100808354040283529160200191610d60565b820191906000526020600020905b815481529060010190602001808311610d4357829003601f168201915b505050505081565b60006001600160a01b038216610dd45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610699565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e235760405162461bcd60e51b815260040161069990612159565b610e2d600061171a565b565b6060600280546106c4906122b1565b6007546001600160a01b03163314610fb557600c5460ff1615610e6057600080fd5b80600a54610e6e9190612238565b600c546040516370a0823160e01b81523360048201526101009091046001600160a01b0316906370a082319060240160206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190611fbc565b1015610ef857600080fd5b600c60019054906101000a90046001600160a01b03166001600160a01b03166323b872dd333084600a54610f2c9190612238565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610f7b57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb39190611f03565b505b60005481610fc257600080fd5b600b54610fcf838361220c565b1115610fda57600080fd5b6109cb338361176c565b6001600160a01b03821633141561103d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610699565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b48484846112f3565b6110c084848484611786565b6110dc5760405162461bcd60e51b81526004016106999061218e565b50505050565b60098054610ce7906122b1565b60606110fc826000541190565b6111605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610699565b600061116a611894565b9050600081511161118a57604051806020016040528060008152506111b8565b80611194846118a3565b60096040516020016111a893929190612001565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111e95760405162461bcd60e51b815260040161069990612159565b80516109cb906009906020840190611c5d565b6007546001600160a01b031633146112265760405162461bcd60e51b815260040161069990612159565b6001600160a01b03811661128b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610699565b6112948161171a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112fe8261163a565b80519091506000906001600160a01b0316336001600160a01b0316148061133557503361132a84610747565b6001600160a01b0316145b806113475750815161134790336105b4565b9050806113b15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610699565b846001600160a01b031682600001516001600160a01b0316146114255760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610699565b6001600160a01b0384166114895760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610699565b6114996000848460000151611297565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061155e90859061220c565b6000818152600360205260409020549091506001600160a01b03166115f057611588816000541190565b156115f05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611659826000541190565b6116b85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610699565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611707579392505050565b50806117128161229a565b9150506116ba565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cb8282604051806020016040528060008152506119a1565b60006001600160a01b0384163b1561188857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ca9033908990889088906004016120c5565b602060405180830381600087803b1580156117e457600080fd5b505af1925050508015611814575060408051601f3d908101601f1916820190925261181191810190611f3d565b60015b61186e573d808015611842576040519150601f19603f3d011682016040523d82523d6000602084013e611847565b606091505b5080516118665760405162461bcd60e51b81526004016106999061218e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061188c565b5060015b949350505050565b6060600880546106c4906122b1565b6060816118c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f157806118db816122ec565b91506118ea9050600a83612224565b91506118cb565b60008167ffffffffffffffff81111561190c5761190c61235d565b6040519080825280601f01601f191660200182016040528015611936576020820181803683370190505b5090505b841561188c5761194b600183612257565b9150611958600a86612307565b61196390603061220c565b60f81b81838151811061197857611978612347565b60200101906001600160f81b031916908160001a90535061199a600a86612224565b945061193a565b6000546001600160a01b038416611a045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610699565b611a0f816000541190565b15611a5c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610699565b60008311611ab85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610699565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b149087906121e1565b6001600160801b03168152602001858360200151611b3291906121e1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c525760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c166000888488611786565b611c325760405162461bcd60e51b81526004016106999061218e565b81611c3c816122ec565b9250508080611c4a906122ec565b915050611bc9565b506000819055611632565b828054611c69906122b1565b90600052602060002090601f016020900481019282611c8b5760008555611cd1565b82601f10611ca457805160ff1916838001178555611cd1565b82800160010185558215611cd1579182015b82811115611cd1578251825591602001919060010190611cb6565b50610c879291505b80821115610c875760008155600101611cd9565b600067ffffffffffffffff80841115611d0857611d0861235d565b604051601f8501601f19908116603f01168101908282118183101715611d3057611d3061235d565b81604052809350858152868686011115611d4957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7a57600080fd5b919050565b600060208284031215611d9157600080fd5b6111b882611d63565b60008060408385031215611dad57600080fd5b611db683611d63565b9150611dc460208401611d63565b90509250929050565b600080600060608486031215611de257600080fd5b611deb84611d63565b9250611df960208501611d63565b9150604084013590509250925092565b60008060008060808587031215611e1f57600080fd5b611e2885611d63565b9350611e3660208601611d63565b925060408501359150606085013567ffffffffffffffff811115611e5957600080fd5b8501601f81018713611e6a57600080fd5b611e7987823560208401611ced565b91505092959194509250565b60008060408385031215611e9857600080fd5b611ea183611d63565b91506020830135611eb181612373565b809150509250929050565b60008060408385031215611ecf57600080fd5b611ed883611d63565b946020939093013593505050565b600060208284031215611ef857600080fd5b81356111b881612373565b600060208284031215611f1557600080fd5b81516111b881612373565b600060208284031215611f3257600080fd5b81356111b881612381565b600060208284031215611f4f57600080fd5b81516111b881612381565b600060208284031215611f6c57600080fd5b813567ffffffffffffffff811115611f8357600080fd5b8201601f81018413611f9457600080fd5b61188c84823560208401611ced565b600060208284031215611fb557600080fd5b5035919050565b600060208284031215611fce57600080fd5b5051919050565b60008151808452611fed81602086016020860161226e565b601f01601f19169290920160200192915050565b6000845160206120148285838a0161226e565b8551918401916120278184848a0161226e565b8554920191600090600181811c908083168061204457607f831692505b85831081141561206257634e487b7160e01b85526022600452602485fd5b8080156120765760018114612087576120b4565b60ff198516885283880195506120b4565b60008b81526020902060005b858110156120ac5781548a820152908401908801612093565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f890830184611fd5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561213a5783518352928401929184019160010161211e565b50909695505050505050565b6020815260006111b86020830184611fd5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122035761220361231b565b01949350505050565b6000821982111561221f5761221f61231b565b500190565b60008261223357612233612331565b500490565b60008160001904831182151516156122525761225261231b565b500290565b6000828210156122695761226961231b565b500390565b60005b83811015612289578181015183820152602001612271565b838111156110dc5750506000910152565b6000816122a9576122a961231b565b506000190190565b600181811c908216806122c557607f821691505b602082108114156122e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123005761230061231b565b5060010190565b60008261231657612316612331565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461129457600080fd5b6001600160e01b03198116811461129457600080fdfea264697066735822122069569b16b80663752c148a61fb77510874bff482e51cd5ad8cabccbeb5b233ca64736f6c63430008070033

Deployed Bytecode Sourcemap

41799:2336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27206:372;;;;;;;;;;-1:-1:-1;27206:372:0;;;;;:::i;:::-;;:::i;:::-;;;8652:14:1;;8645:22;8627:41;;8615:2;8600:18;27206:372:0;;;;;;;;43865:73;;;;;;;;;;-1:-1:-1;43865:73:0;;;;;:::i;:::-;;:::i;:::-;;28833:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30394:214::-;;;;;;;;;;-1:-1:-1;30394:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6654:32:1;;;6636:51;;6624:2;6609:18;30394:214:0;6490:203:1;29915:413:0;;;;;;;;;;-1:-1:-1;29915:413:0;;;;;:::i;:::-;;:::i;41944:41::-;;;;;;;;;;;;;;;;;;;17108:25:1;;;17096:2;17081:18;41944:41:0;16962:177:1;25647:100:0;;;;;;;;;;-1:-1:-1;25700:7:0;25727:12;25647:100;;31270:162;;;;;;;;;;-1:-1:-1;31270:162:0;;;;;:::i;:::-;;:::i;43947:185::-;;;;;;:::i;:::-;;:::i;26311:823::-;;;;;;;;;;-1:-1:-1;26311:823:0;;;;;:::i;:::-;;:::i;31503:177::-;;;;;;;;;;-1:-1:-1;31503:177:0;;;;;:::i;:::-;;:::i;42746:348::-;;;;;;;;;;-1:-1:-1;42746:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43547:80::-;;;;;;;;;;-1:-1:-1;43547:80:0;;;;;:::i;:::-;;:::i;25824:187::-;;;;;;;;;;-1:-1:-1;25824:187:0;;;;;:::i;:::-;;:::i;43633:98::-;;;;;;;;;;-1:-1:-1;43633:98:0;;;;;:::i;:::-;;:::i;42026:26::-;;;;;;;;;;-1:-1:-1;42026:26:0;;;;;;;;28642:124;;;;;;;;;;-1:-1:-1;28642:124:0;;;;;:::i;:::-;;:::i;41876:21::-;;;;;;;;;;;;;:::i;27642:221::-;;;;;;;;;;-1:-1:-1;27642:221:0;;;;;:::i;:::-;;:::i;40906:103::-;;;;;;;;;;;;;:::i;40255:87::-;;;;;;;;;;-1:-1:-1;40328:6:0;;-1:-1:-1;;;;;40328:6:0;40255:87;;29002:104;;;;;;;;;;;;;:::i;42190:423::-;;;;;;;;;;-1:-1:-1;42190:423:0;;;;;:::i;:::-;;:::i;30680:288::-;;;;;;;;;;-1:-1:-1;30680:288:0;;;;;:::i;:::-;;:::i;42057:71::-;;;;;;;;;;-1:-1:-1;42057:71:0;;;;;;;-1:-1:-1;;;;;42057:71:0;;;31751:355;;;;;;;;;;-1:-1:-1;31751:355:0;;;;;:::i;:::-;;:::i;41902:37::-;;;;;;;;;;;;;:::i;43100:423::-;;;;;;;;;;-1:-1:-1;43100:423:0;;;;;:::i;:::-;;:::i;41990:31::-;;;;;;;;;;;;;;;;43737:122;;;;;;;;;;-1:-1:-1;43737:122:0;;;;;:::i;:::-;;:::i;31039:164::-;;;;;;;;;;-1:-1:-1;31039:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31160:25:0;;;31136:4;31160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31039:164;41164:201;;;;;;;;;;-1:-1:-1;41164:201:0;;;;;:::i;:::-;;:::i;27206:372::-;27308:4;-1:-1:-1;;;;;;27345:40:0;;-1:-1:-1;;;27345:40:0;;:105;;-1:-1:-1;;;;;;;27402:48:0;;-1:-1:-1;;;27402:48:0;27345:105;:172;;;-1:-1:-1;;;;;;;27467:50:0;;-1:-1:-1;;;27467:50:0;27345:172;:225;;;-1:-1:-1;;;;;;;;;;13234:40:0;;;27534:36;27325:245;27206:372;-1:-1:-1;;27206:372:0:o;43865:73::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;;;;;;;;;43917:6:::1;:15:::0;;-1:-1:-1;;43917:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43865:73::o;28833:100::-;28887:13;28920:5;28913:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28833:100;:::o;30394:214::-;30462:7;30490:16;30498:7;32418:4;32452:12;-1:-1:-1;32442:22:0;32361:111;30490:16;30482:74;;;;-1:-1:-1;;;30482:74:0;;16750:2:1;30482:74:0;;;16732:21:1;16789:2;16769:18;;;16762:30;16828:34;16808:18;;;16801:62;-1:-1:-1;;;16879:18:1;;;16872:43;16932:19;;30482:74:0;16548:409:1;30482:74:0;-1:-1:-1;30576:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30576:24:0;;30394:214::o;29915:413::-;29988:13;30004:24;30020:7;30004:15;:24::i;:::-;29988:40;;30053:5;-1:-1:-1;;;;;30047:11:0;:2;-1:-1:-1;;;;;30047:11:0;;;30039:58;;;;-1:-1:-1;;;30039:58:0;;13932:2:1;30039:58:0;;;13914:21:1;13971:2;13951:18;;;13944:30;14010:34;13990:18;;;13983:62;-1:-1:-1;;;14061:18:1;;;14054:32;14103:19;;30039:58:0;13730:398:1;30039:58:0;23692:10;-1:-1:-1;;;;;30132:21:0;;;;:62;;-1:-1:-1;30157:37:0;30174:5;23692:10;31039:164;:::i;30157:37::-;30110:169;;;;-1:-1:-1;;;30110:169:0;;11136:2:1;30110:169:0;;;11118:21:1;11175:2;11155:18;;;11148:30;11214:34;11194:18;;;11187:62;11285:27;11265:18;;;11258:55;11330:19;;30110:169:0;10934:421:1;30110:169:0;30292:28;30301:2;30305:7;30314:5;30292:8;:28::i;:::-;29977:351;29915:413;;:::o;31270:162::-;31396:28;31406:4;31412:2;31416:7;31396:9;:28::i;43947:185::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;44022:47:::1;::::0;44030:10:::1;::::0;44047:21:::1;44022:47:::0;::::1;;;::::0;::::1;::::0;;;44047:21;44030:10;44022:47;::::1;;;;;;44014:56;;;::::0;::::1;;44084:11;::::0;44077:49:::1;::::0;-1:-1:-1;;;44077:49:0;;44106:10:::1;44077:49;::::0;::::1;7745:51:1::0;7812:18;;;7805:34;;;44084:11:0::1;::::0;;::::1;-1:-1:-1::0;;;;;44084:11:0::1;::::0;44077:28:::1;::::0;7718:18:1;;44077:49:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43947:185:::0;:::o;26311:823::-;26400:7;26436:16;26446:5;26436:9;:16::i;:::-;26428:5;:24;26420:71;;;;-1:-1:-1;;;26420:71:0;;9105:2:1;26420:71:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183:34;9163:18;;;9156:62;-1:-1:-1;;;9234:18:1;;;9227:32;9276:19;;26420:71:0;8903:398:1;26420:71:0;26502:22;25727:12;;;26502:22;;26634:426;26658:14;26654:1;:18;26634:426;;;26694:31;26728:14;;;:11;:14;;;;;;;;;26694:48;;;;;;;;;-1:-1:-1;;;;;26694:48:0;;;;;-1:-1:-1;;;26694:48:0;;;;;;;;;;;;26761:28;26757:103;;26830:14;;;-1:-1:-1;26757:103:0;26899:5;-1:-1:-1;;;;;26878:26:0;:17;-1:-1:-1;;;;;26878:26:0;;26874:175;;;26944:5;26929:11;:20;26925:77;;;-1:-1:-1;26981:1:0;-1:-1:-1;26974:8:0;;-1:-1:-1;;;26974:8:0;26925:77;27020:13;;;;:::i;:::-;;;;26874:175;-1:-1:-1;26674:3:0;;;;:::i;:::-;;;;26634:426;;;-1:-1:-1;27070:56:0;;-1:-1:-1;;;27070:56:0;;15919:2:1;27070:56:0;;;15901:21:1;15958:2;15938:18;;;15931:30;15997:34;15977:18;;;15970:62;-1:-1:-1;;;16048:18:1;;;16041:44;16102:19;;27070:56:0;15717:410:1;31503:177:0;31633:39;31650:4;31656:2;31660:7;31633:39;;;;;;;;;;;;:16;:39::i;42746:348::-;42821:16;42849:23;42875:17;42885:6;42875:9;:17::i;:::-;42849:43;;42899:25;42941:15;42927:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42927:30:0;;42899:58;;42969:9;42964:103;42984:15;42980:1;:19;42964:103;;;43029:30;43049:6;43057:1;43029:19;:30::i;:::-;43015:8;43024:1;43015:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;43001:3;;;;:::i;:::-;;;;42964:103;;;-1:-1:-1;43080:8:0;42746:348;-1:-1:-1;;;42746:348:0:o;43547:80::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;43606:4:::1;:15:::0;43547:80::o;25824:187::-;25891:7;25727:12;;25919:5;:21;25911:69;;;;-1:-1:-1;;;25911:69:0;;10326:2:1;25911:69:0;;;10308:21:1;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:33;10498:19;;25911:69:0;10124:399:1;25911:69:0;-1:-1:-1;25998:5:0;25824:187::o;43633:98::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;43704:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28642:124::-:0;28706:7;28733:20;28745:7;28733:11;:20::i;:::-;:25;;28642:124;-1:-1:-1;;28642:124:0:o;41876:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27642:221::-;27706:7;-1:-1:-1;;;;;27734:19:0;;27726:75;;;;-1:-1:-1;;;27726:75:0;;11562:2:1;27726:75:0;;;11544:21:1;11601:2;11581:18;;;11574:30;11640:34;11620:18;;;11613:62;-1:-1:-1;;;11691:18:1;;;11684:41;11742:19;;27726:75:0;11360:407:1;27726:75:0;-1:-1:-1;;;;;;27827:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27827:27:0;;27642:221::o;40906:103::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;40971:30:::1;40998:1;40971:18;:30::i;:::-;40906:103::o:0;29002:104::-;29058:13;29091:7;29084:14;;;;;:::i;42190:423::-;40328:6;;-1:-1:-1;;;;;40328:6:0;42242:10;:21;42238:220;;42281:6;;;;42280:7;42272:16;;;;;;42358:8;42351:4;;:15;;;;:::i;:::-;42313:11;;42306:41;;-1:-1:-1;;;42306:41:0;;42336:10;42306:41;;;6636:51:1;42313:11:0;;;;-1:-1:-1;;;;;42313:11:0;;42306:29;;6609:18:1;;42306:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;42298:69;;;;;;42381:11;;;;;;;;;-1:-1:-1;;;;;42381:11:0;-1:-1:-1;;;;;42374:32:0;;42407:10;42427:4;42441:8;42434:4;;:15;;;;:::i;:::-;42374:76;;-1:-1:-1;;;;;;42374:76:0;;;;;;;-1:-1:-1;;;;;6956:15:1;;;42374:76:0;;;6938:34:1;7008:15;;;;6988:18;;;6981:43;7040:18;;;7033:34;6873:18;;42374:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42238:220;42465:14;25727:12;42510;42502:21;;;;;;42559:9;;42538:17;42547:8;42538:6;:17;:::i;:::-;:30;;42530:39;;;;;;42576:31;42586:10;42598:8;42576:9;:31::i;30680:288::-;-1:-1:-1;;;;;30775:24:0;;23692:10;30775:24;;30767:63;;;;-1:-1:-1;;;30767:63:0;;13158:2:1;30767:63:0;;;13140:21:1;13197:2;13177:18;;;13170:30;13236:28;13216:18;;;13209:56;13282:18;;30767:63:0;12956:350:1;30767:63:0;23692:10;30843:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30843:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30843:53:0;;;;;;;;;;30912:48;;8627:41:1;;;30843:42:0;;23692:10;30912:48;;8600:18:1;30912:48:0;;;;;;;30680:288;;:::o;31751:355::-;31910:28;31920:4;31926:2;31930:7;31910:9;:28::i;:::-;31971:48;31994:4;32000:2;32004:7;32013:5;31971:22;:48::i;:::-;31949:149;;;;-1:-1:-1;;;31949:149:0;;;;;;;:::i;:::-;31751:355;;;;:::o;41902:37::-;;;;;;;:::i;43100:423::-;43198:13;43239:16;43247:7;32418:4;32452:12;-1:-1:-1;32442:22:0;32361:111;43239:16;43223:97;;;;-1:-1:-1;;;43223:97:0;;12742:2:1;43223:97:0;;;12724:21:1;12781:2;12761:18;;;12754:30;12820:34;12800:18;;;12793:62;-1:-1:-1;;;12871:18:1;;;12864:45;12926:19;;43223:97:0;12540:411:1;43223:97:0;43329:28;43360:10;:8;:10::i;:::-;43329:41;;43415:1;43390:14;43384:28;:32;:133;;;;;;;;;;;;;;;;;43452:14;43468:18;:7;:16;:18::i;:::-;43488:13;43435:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43384:133;43377:140;43100:423;-1:-1:-1;;;43100:423:0:o;43737:122::-;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;43820:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;41164:201::-:0;40328:6;;-1:-1:-1;;;;;40328:6:0;23692:10;40475:23;40467:68;;;;-1:-1:-1;;;40467:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41253:22:0;::::1;41245:73;;;::::0;-1:-1:-1;;;41245:73:0;;9508:2:1;41245:73:0::1;::::0;::::1;9490:21:1::0;9547:2;9527:18;;;9520:30;9586:34;9566:18;;;9559:62;-1:-1:-1;;;9637:18:1;;;9630:36;9683:19;;41245:73:0::1;9306:402:1::0;41245:73:0::1;41329:28;41348:8;41329:18;:28::i;:::-;41164:201:::0;:::o;36405:196::-;36520:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36520:29:0;-1:-1:-1;;;;;36520:29:0;;;;;;;;;36565:28;;36520:24;;36565:28;;;;;;;36405:196;;;:::o;34504:1783::-;34619:35;34657:20;34669:7;34657:11;:20::i;:::-;34732:18;;34619:58;;-1:-1:-1;34690:22:0;;-1:-1:-1;;;;;34716:34:0;23692:10;-1:-1:-1;;;;;34716:34:0;;:87;;;-1:-1:-1;23692:10:0;34767:20;34779:7;34767:11;:20::i;:::-;-1:-1:-1;;;;;34767:36:0;;34716:87;:154;;;-1:-1:-1;34837:18:0;;34820:50;;23692:10;31039:164;:::i;34820:50::-;34690:181;;34892:17;34884:80;;;;-1:-1:-1;;;34884:80:0;;13513:2:1;34884:80:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:48;13700:19;;34884:80:0;13311:414:1;34884:80:0;35007:4;-1:-1:-1;;;;;34985:26:0;:13;:18;;;-1:-1:-1;;;;;34985:26:0;;34977:77;;;;-1:-1:-1;;;34977:77:0;;11974:2:1;34977:77:0;;;11956:21:1;12013:2;11993:18;;;11986:30;12052:34;12032:18;;;12025:62;-1:-1:-1;;;12103:18:1;;;12096:36;12149:19;;34977:77:0;11772:402:1;34977:77:0;-1:-1:-1;;;;;35073:16:0;;35065:66;;;;-1:-1:-1;;;35065:66:0;;10730:2:1;35065:66:0;;;10712:21:1;10769:2;10749:18;;;10742:30;10808:34;10788:18;;;10781:62;-1:-1:-1;;;10859:18:1;;;10852:35;10904:19;;35065:66:0;10528:401:1;35065:66:0;35252:49;35269:1;35273:7;35282:13;:18;;;35252:8;:49::i;:::-;-1:-1:-1;;;;;35506:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35506:31:0;;;-1:-1:-1;;;;;35506:31:0;;;-1:-1:-1;;35506:31:0;;;;;;;35552:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35552:29:0;;;;;;;;;;;;;35628:43;;;;;;;;;;35654:15;35628:43;;;;;;;;;;35605:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35605:66:0;;;;;;;-1:-1:-1;;;35605:66:0;;;;;;;;;;;;35506:18;35933:11;;35605:20;;35933:11;:::i;:::-;36000:1;35959:24;;;:11;:24;;;;;:29;35911:33;;-1:-1:-1;;;;;;35959:29:0;35955:227;;36023:20;36031:11;32418:4;32452:12;-1:-1:-1;32442:22:0;32361:111;36023:20;36019:152;;;36091:64;;;;;;;;36106:18;;-1:-1:-1;;;;;36091:64:0;;;;;;36126:28;;;;36091:64;;;;;;;;;;-1:-1:-1;36064:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36064:91:0;-1:-1:-1;;;;;;36064:91:0;;;;;;;;;;;;36019:152;36218:7;36214:2;-1:-1:-1;;;;;36199:27:0;36208:4;-1:-1:-1;;;;;36199:27:0;;;;;;;;;;;36237:42;34608:1679;;;34504:1783;;;:::o;28108:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;28211:16:0;28219:7;32418:4;32452:12;-1:-1:-1;32442:22:0;32361:111;28211:16;28203:71;;;;-1:-1:-1;;;28203:71:0;;9915:2:1;28203:71:0;;;9897:21:1;9954:2;9934:18;;;9927:30;9993:34;9973:18;;;9966:62;-1:-1:-1;;;10044:18:1;;;10037:40;10094:19;;28203:71:0;9713:406:1;28203:71:0;28307:7;28287:216;28341:31;28375:17;;;:11;:17;;;;;;;;;28341:51;;;;;;;;;-1:-1:-1;;;;;28341:51:0;;;;;-1:-1:-1;;;28341:51:0;;;;;;;;;;;;28411:28;28407:85;;28467:9;28108:472;-1:-1:-1;;;28108:472:0:o;28407:85::-;-1:-1:-1;28318:6:0;;;;:::i;:::-;;;;28287:216;;41525:191;41618:6;;;-1:-1:-1;;;;;41635:17:0;;;-1:-1:-1;;;;;;41635:17:0;;;;;;;41668:40;;41618:6;;;41635:17;41618:6;;41668:40;;41599:16;;41668:40;41588:128;41525:191;:::o;32480:104::-;32549:27;32559:2;32563:8;32549:27;;;;;;;;;;;;:9;:27::i;37166:804::-;37321:4;-1:-1:-1;;;;;37342:13:0;;3304:20;3352:8;37338:625;;37378:72;;-1:-1:-1;;;37378:72:0;;-1:-1:-1;;;;;37378:36:0;;;;;:72;;23692:10;;37429:4;;37435:7;;37444:5;;37378:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37378:72:0;;;;;;;;-1:-1:-1;;37378:72:0;;;;;;;;;;;;:::i;:::-;;;37374:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37624:13:0;;37620:273;;37667:61;;-1:-1:-1;;;37667:61:0;;;;;;;:::i;37620:273::-;37843:6;37837:13;37828:6;37824:2;37820:15;37813:38;37374:534;-1:-1:-1;;;;;;37501:55:0;-1:-1:-1;;;37501:55:0;;-1:-1:-1;37494:62:0;;37338:625;-1:-1:-1;37947:4:0;37338:625;37166:804;;;;;;:::o;42636:102::-;42696:13;42725:7;42718:14;;;;;:::i;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;32861:1389;32984:20;33007:12;-1:-1:-1;;;;;33038:16:0;;33030:62;;;;-1:-1:-1;;;33030:62:0;;15517:2:1;33030:62:0;;;15499:21:1;15556:2;15536:18;;;15529:30;15595:34;15575:18;;;15568:62;-1:-1:-1;;;15646:18:1;;;15639:31;15687:19;;33030:62:0;15315:397:1;33030:62:0;33237:21;33245:12;32418:4;32452:12;-1:-1:-1;32442:22:0;32361:111;33237:21;33236:22;33228:64;;;;-1:-1:-1;;;33228:64:0;;15159:2:1;33228:64:0;;;15141:21:1;15198:2;15178:18;;;15171:30;15237:31;15217:18;;;15210:59;15286:18;;33228:64:0;14957:353:1;33228:64:0;33322:1;33311:8;:12;33303:60;;;;-1:-1:-1;;;33303:60:0;;14335:2:1;33303:60:0;;;14317:21:1;14374:2;14354:18;;;14347:30;14413:34;14393:18;;;14386:62;-1:-1:-1;;;14464:18:1;;;14457:33;14507:19;;33303:60:0;14133:399:1;33303:60:0;-1:-1:-1;;;;;33483:16:0;;33450:30;33483:16;;;:12;:16;;;;;;;;;33450:49;;;;;;;;;-1:-1:-1;;;;;33450:49:0;;;;;-1:-1:-1;;;33450:49:0;;;;;;;;;;;33529:135;;;;;;;;33555:19;;33450:49;;33529:135;;;33555:39;;33585:8;;33555:39;:::i;:::-;-1:-1:-1;;;;;33529:135:0;;;;;33644:8;33609:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33529:135:0;;;;;;-1:-1:-1;;;;;33510:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33510:154:0;;;;;;;;;;;;33703:43;;;;;;;;;;;33729:15;33703:43;;;;;;;;33675:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33675:71:0;-1:-1:-1;;;;;;33675:71:0;;;;;;;;;;;;;;;;;;33687:12;;33807:325;33831:8;33827:1;:12;33807:325;;;33866:38;;33891:12;;-1:-1:-1;;;;;33866:38:0;;;33883:1;;33866:38;;33883:1;;33866:38;33945:59;33976:1;33980:2;33984:12;33998:5;33945:22;:59::i;:::-;33919:172;;;;-1:-1:-1;;;33919:172:0;;;;;;;:::i;:::-;34106:14;;;;:::i;:::-;;;;33841:3;;;;;:::i;:::-;;;;33807:325;;;-1:-1:-1;34144:12:0;:27;;;34182:60;31751:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:241::-;2923:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:52;;;2992:1;2989;2982:12;2944:52;3031:9;3018:23;3050:28;3072:5;3050:28;:::i;3113:245::-;3180:6;3233:2;3221:9;3212:7;3208:23;3204:32;3201:52;;;3249:1;3246;3239:12;3201:52;3281:9;3275:16;3300:28;3322:5;3300:28;:::i;3363:245::-;3421:6;3474:2;3462:9;3453:7;3449:23;3445:32;3442:52;;;3490:1;3487;3480:12;3442:52;3529:9;3516:23;3548:30;3572:5;3548:30;:::i;3613:249::-;3682:6;3735:2;3723:9;3714:7;3710:23;3706:32;3703:52;;;3751:1;3748;3741:12;3703:52;3783:9;3777:16;3802:30;3826:5;3802:30;:::i;3867:450::-;3936:6;3989:2;3977:9;3968:7;3964:23;3960:32;3957:52;;;4005:1;4002;3995:12;3957:52;4045:9;4032:23;4078:18;4070:6;4067:30;4064:50;;;4110:1;4107;4100:12;4064:50;4133:22;;4186:4;4178:13;;4174:27;-1:-1:-1;4164:55:1;;4215:1;4212;4205:12;4164:55;4238:73;4303:7;4298:2;4285:16;4280:2;4276;4272:11;4238:73;:::i;4322:180::-;4381:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:52;;;4450:1;4447;4440:12;4402:52;-1:-1:-1;4473:23:1;;4322:180;-1:-1:-1;4322:180:1:o;4507:184::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;-1:-1:-1;4669:16:1;;4507:184;-1:-1:-1;4507:184:1:o;4696:257::-;4737:3;4775:5;4769:12;4802:6;4797:3;4790:19;4818:63;4874:6;4867:4;4862:3;4858:14;4851:4;4844:5;4840:16;4818:63;:::i;:::-;4935:2;4914:15;-1:-1:-1;;4910:29:1;4901:39;;;;4942:4;4897:50;;4696:257;-1:-1:-1;;4696:257:1:o;4958:1527::-;5182:3;5220:6;5214:13;5246:4;5259:51;5303:6;5298:3;5293:2;5285:6;5281:15;5259:51;:::i;:::-;5373:13;;5332:16;;;;5395:55;5373:13;5332:16;5417:15;;;5395:55;:::i;:::-;5539:13;;5472:20;;;5512:1;;5599;5621:18;;;;5674;;;;5701:93;;5779:4;5769:8;5765:19;5753:31;;5701:93;5842:2;5832:8;5829:16;5809:18;5806:40;5803:167;;;-1:-1:-1;;;5869:33:1;;5925:4;5922:1;5915:15;5955:4;5876:3;5943:17;5803:167;5986:18;6013:110;;;;6137:1;6132:328;;;;5979:481;;6013:110;-1:-1:-1;;6048:24:1;;6034:39;;6093:20;;;;-1:-1:-1;6013:110:1;;6132:328;17217:1;17210:14;;;17254:4;17241:18;;6227:1;6241:169;6255:8;6252:1;6249:15;6241:169;;;6337:14;;6322:13;;;6315:37;6380:16;;;;6272:10;;6241:169;;;6245:3;;6441:8;6434:5;6430:20;6423:27;;5979:481;-1:-1:-1;6476:3:1;;4958:1527;-1:-1:-1;;;;;;;;;;;4958:1527:1:o;7078:488::-;-1:-1:-1;;;;;7347:15:1;;;7329:34;;7399:15;;7394:2;7379:18;;7372:43;7446:2;7431:18;;7424:34;;;7494:3;7489:2;7474:18;;7467:31;;;7272:4;;7515:45;;7540:19;;7532:6;7515:45;:::i;:::-;7507:53;7078:488;-1:-1:-1;;;;;;7078:488:1:o;7850:632::-;8021:2;8073:21;;;8143:13;;8046:18;;;8165:22;;;7992:4;;8021:2;8244:15;;;;8218:2;8203:18;;;7992:4;8287:169;8301:6;8298:1;8295:13;8287:169;;;8362:13;;8350:26;;8431:15;;;;8396:12;;;;8323:1;8316:9;8287:169;;;-1:-1:-1;8473:3:1;;7850:632;-1:-1:-1;;;;;;7850:632:1:o;8679:219::-;8828:2;8817:9;8810:21;8791:4;8848:44;8888:2;8877:9;8873:18;8865:6;8848:44;:::i;12179:356::-;12381:2;12363:21;;;12400:18;;;12393:30;12459:34;12454:2;12439:18;;12432:62;12526:2;12511:18;;12179:356::o;14537:415::-;14739:2;14721:21;;;14778:2;14758:18;;;14751:30;14817:34;14812:2;14797:18;;14790:62;-1:-1:-1;;;14883:2:1;14868:18;;14861:49;14942:3;14927:19;;14537:415::o;17270:253::-;17310:3;-1:-1:-1;;;;;17399:2:1;17396:1;17392:10;17429:2;17426:1;17422:10;17460:3;17456:2;17452:12;17447:3;17444:21;17441:47;;;17468:18;;:::i;:::-;17504:13;;17270:253;-1:-1:-1;;;;17270:253:1:o;17528:128::-;17568:3;17599:1;17595:6;17592:1;17589:13;17586:39;;;17605:18;;:::i;:::-;-1:-1:-1;17641:9:1;;17528:128::o;17661:120::-;17701:1;17727;17717:35;;17732:18;;:::i;:::-;-1:-1:-1;17766:9:1;;17661:120::o;17786:168::-;17826:7;17892:1;17888;17884:6;17880:14;17877:1;17874:21;17869:1;17862:9;17855:17;17851:45;17848:71;;;17899:18;;:::i;:::-;-1:-1:-1;17939:9:1;;17786:168::o;17959:125::-;17999:4;18027:1;18024;18021:8;18018:34;;;18032:18;;:::i;:::-;-1:-1:-1;18069:9:1;;17959:125::o;18089:258::-;18161:1;18171:113;18185:6;18182:1;18179:13;18171:113;;;18261:11;;;18255:18;18242:11;;;18235:39;18207:2;18200:10;18171:113;;;18302:6;18299:1;18296:13;18293:48;;;-1:-1:-1;;18337:1:1;18319:16;;18312:27;18089:258::o;18352:136::-;18391:3;18419:5;18409:39;;18428:18;;:::i;:::-;-1:-1:-1;;;18464:18:1;;18352:136::o;18493:380::-;18572:1;18568:12;;;;18615;;;18636:61;;18690:4;18682:6;18678:17;18668:27;;18636:61;18743:2;18735:6;18732:14;18712:18;18709:38;18706:161;;;18789:10;18784:3;18780:20;18777:1;18770:31;18824:4;18821:1;18814:15;18852:4;18849:1;18842:15;18706:161;;18493:380;;;:::o;18878:135::-;18917:3;-1:-1:-1;;18938:17:1;;18935:43;;;18958:18;;:::i;:::-;-1:-1:-1;19005:1:1;18994:13;;18878:135::o;19018:112::-;19050:1;19076;19066:35;;19081:18;;:::i;:::-;-1:-1:-1;19115:9:1;;19018:112::o;19135:127::-;19196:10;19191:3;19187:20;19184:1;19177:31;19227:4;19224:1;19217:15;19251:4;19248:1;19241:15;19267:127;19328:10;19323:3;19319:20;19316:1;19309:31;19359:4;19356:1;19349:15;19383:4;19380:1;19373:15;19399:127;19460:10;19455:3;19451:20;19448:1;19441:31;19491:4;19488:1;19481:15;19515:4;19512:1;19505:15;19531:127;19592:10;19587:3;19583:20;19580:1;19573:31;19623:4;19620:1;19613:15;19647:4;19644:1;19637:15;19663:118;19749:5;19742:13;19735:21;19728:5;19725:32;19715:60;;19771:1;19768;19761:12;19786:131;-1:-1:-1;;;;;;19860:32:1;;19850:43;;19840:71;;19907:1;19904;19897:12

Swarm Source

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