ETH Price: $2,757.60 (+5.08%)

Token

Arabian Nights (ARN)
 

Overview

Max Total Supply

8 ARN

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ARN
0xeaeB42B770E662E653F0De9F4C6F1677102517b7
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:
ArabianNights

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-20
*/

//    ##   #####    ##   #####  #   ##   #    # 
//   #  #  #    #  #  #  #    # #  #  #  ##   # 
//  #    # #    # #    # #####  # #    # # #  # 
//  ###### #####  ###### #    # # ###### #  # # 
//  #    # #   #  #    # #    # # #    # #   ## 
//  #    # #    # #    # #####  # #    # #    # 
//
//  #    # #  ####  #    # #####  ####  
//  ##   # # #    # #    #   #   #      
//  # #  # # #      ######   #    ####  
//  #  # # # #  ### #    #   #        # 
//  #   ## # #    # #    #   #   #    # 
//  #    # #  ####  #    #   #    ####  

// SPDX-License-Identifier: MIT

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: 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: Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File: 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


pragma solidity ^0.8.0;









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;

    // 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;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; 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);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

pragma solidity ^0.8.2;

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

    bool public minting = false;
    uint256 public maxSupply = 666;
    uint256 public maxPerTxn = 2;
    uint256 public cost = 0.006 ether;

    string private _myBaseURI;
   
	constructor() ERC721A("Arabian Nights", "ARN") {}

 	function mint(uint256 _mintAmount) payable external nonReentrant {
        require(minting, "mintingFalse");
        require(_mintAmount > 0, "nonPositiveMintAmount");
        require(_mintAmount <= maxPerTxn, "mintAmountGtrThanMaxPerTxn");

        require(totalSupply() + _mintAmount <= maxSupply, "mintGtrThanMaxSupply");
        require(_msgSender() == tx.origin, "TriedMintFromContract");
        require(msg.value >= cost * _mintAmount, "PayMorePlz");
        _safeMint(_msgSender(), _mintAmount);
    }

    function mintState(bool _minting) external onlyOwner {
        minting = _minting;
    }

    function setMaxPerTxn(uint256 _maxPerTxn) external onlyOwner {
        maxPerTxn = _maxPerTxn;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMyBaseURI(string memory _myNewBaseURI) external onlyOwner {
        _myBaseURI = _myNewBaseURI;
    }
    function _baseURI() internal view virtual override(ERC721A) returns (string memory) {
        return _myBaseURI;
    }

    event Paid(address sender, uint256 amount);
    receive() external payable {
        emit Paid(msg.sender, msg.value);
    }

    function withdraw() external payable onlyOwner nonReentrant {
        // =============================================================================
        uint256 balance0 = address(this).balance;

        // =============================================================================
        (bool Cs, ) = payable(0x01656D41e041b50fc7c1eb270f7d891021937436).call{value: balance0 * 600000000000000 / 10000000000000000}("");
        require(Cs);


        // =============================================================================
        (bool Bs, ) = payable(0x748054C44EEa36AD603Bd149aa9eD9847419f5a6).call{value: balance0 * 3133333333333333 / 10000000000000000}("");
        require(Bs);

        // =============================================================================
        (bool As,  ) = payable(0x132747054Da1fE7dba0949809189f055E8Bb693a).call{value: balance0 * 6266666666666667 / 10000000000000000}("");
        require(As);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Paid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_minting","type":"bool"}],"name":"mintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_maxPerTxn","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_myNewBaseURI","type":"string"}],"name":"setMyBaseURI","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009805460ff1916905561029a600a556002600b55661550f7dca70000600c553480156200003157600080fd5b506040518060400160405280600e81526020016d4172616269616e204e696768747360901b8152506040518060400160405280600381526020016220a92760e91b8152508160019081620000869190620001b8565b506002620000958282620001b8565b505050620000b2620000ac620000bd60201b60201c565b620000c1565b600160085562000284565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013e57607f821691505b6020821081036200015f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001b357600081815260208120601f850160051c810160208610156200018e5750805b601f850160051c820191505b81811015620001af578281556001016200019a565b5050505b505050565b81516001600160401b03811115620001d457620001d462000113565b620001ec81620001e5845462000129565b8462000165565b602080601f8311600181146200022457600084156200020b5750858301515b600019600386901b1c1916600185901b178555620001af565b600085815260208120601f198616915b82811015620002555788860151825594840194600190910190840162000234565b5085821015620002745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61218a80620002946000396000f3fe6080604052600436106101c65760003560e01c80636f8b44b0116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610507578063dbcd49fb1461051d578063e985e9c51461053d578063f2fde38b1461058657600080fd5b8063a22cb46514610487578063b6f3ce00146104a7578063b88d4fde146104c7578063c87b56dd146104e757600080fd5b80637dc2268c116100d15780637dc2268c146104275780638da5cb5b1461044157806395d89b411461045f578063a0712d681461047457600080fd5b80636f8b44b0146103d257806370a08231146103f2578063715018a61461041257600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103525780634f6ccce7146103725780635dcce234146103925780636352211e146103b257600080fd5b80632f745c59146103145780633cb51994146103345780633ccfd60b1461034a57600080fd5b8063095ea7b3116101a0578063095ea7b31461029957806313faede6146102bb57806318160ddd146102df57806323b872dd146102f457600080fd5b806301ffc9a71461020a57806306fdde031461023f578063081812fc1461026157600080fd5b3661020557604080513381523460208201527f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc489910160405180910390a1005b600080fd5b34801561021657600080fd5b5061022a610225366004611b24565b6105a6565b60405190151581526020015b60405180910390f35b34801561024b57600080fd5b50610254610613565b6040516102369190611b91565b34801561026d57600080fd5b5061028161027c366004611ba4565b6106a5565b6040516001600160a01b039091168152602001610236565b3480156102a557600080fd5b506102b96102b4366004611bd9565b610735565b005b3480156102c757600080fd5b506102d1600c5481565b604051908152602001610236565b3480156102eb57600080fd5b506000546102d1565b34801561030057600080fd5b506102b961030f366004611c03565b61084c565b34801561032057600080fd5b506102d161032f366004611bd9565b610857565b34801561034057600080fd5b506102d1600b5481565b6102b96109b2565b34801561035e57600080fd5b506102b961036d366004611c03565b610bda565b34801561037e57600080fd5b506102d161038d366004611ba4565b610bf5565b34801561039e57600080fd5b506102b96103ad366004611ccb565b610c57565b3480156103be57600080fd5b506102816103cd366004611ba4565b610c91565b3480156103de57600080fd5b506102b96103ed366004611ba4565b610ca3565b3480156103fe57600080fd5b506102d161040d366004611d14565b610cd2565b34801561041e57600080fd5b506102b9610d63565b34801561043357600080fd5b5060095461022a9060ff1681565b34801561044d57600080fd5b506007546001600160a01b0316610281565b34801561046b57600080fd5b50610254610d99565b6102b9610482366004611ba4565b610da8565b34801561049357600080fd5b506102b96104a2366004611d3f565b610fd9565b3480156104b357600080fd5b506102b96104c2366004611ba4565b61109d565b3480156104d357600080fd5b506102b96104e2366004611d72565b6110cc565b3480156104f357600080fd5b50610254610502366004611ba4565b611105565b34801561051357600080fd5b506102d1600a5481565b34801561052957600080fd5b506102b9610538366004611dee565b6111d2565b34801561054957600080fd5b5061022a610558366004611e09565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506102b96105a1366004611d14565b61120f565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506001600160e01b0319821663780e9d6360e01b145b8061060d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062290611e33565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90611e33565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b60006106b2826000541190565b6107195760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610c91565b9050806001600160a01b0316836001600160a01b0316036107ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610710565b336001600160a01b03821614806107ca57506107ca8133610558565b61083c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610710565b6108478383836112aa565b505050565b610847838383611306565b600061086283610cd2565b82106108bb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610710565b600080549080805b83811015610952576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091657805192505b876001600160a01b0316836001600160a01b031603610949578684036109425750935061060d92505050565b6001909301925b506001016108c3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610710565b6007546001600160a01b031633146109dc5760405162461bcd60e51b815260040161071090611e6d565b600260085403610a2e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b60026008554760007301656d41e041b50fc7c1eb270f7d891021937436662386f26fc10000610a6484660221b262dd8000611eb8565b610a6e9190611eed565b604051600081818185875af1925050503d8060008114610aaa576040519150601f19603f3d011682016040523d82523d6000602084013e610aaf565b606091505b5050905080610abd57600080fd5b600073748054c44eea36ad603bd149aa9ed9847419f5a6662386f26fc10000610aed85660b21c0044bd555611eb8565b610af79190611eed565b604051600081818185875af1925050503d8060008114610b33576040519150601f19603f3d011682016040523d82523d6000602084013e610b38565b606091505b5050905080610b4657600080fd5b600073132747054da1fe7dba0949809189f055e8bb693a662386f26fc10000610b7686661643800897aaab611eb8565b610b809190611eed565b604051600081818185875af1925050503d8060008114610bbc576040519150601f19603f3d011682016040523d82523d6000602084013e610bc1565b606091505b5050905080610bcf57600080fd5b505060016008555050565b610847838383604051806020016040528060008152506110cc565b600080548210610c535760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610710565b5090565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260040161071090611e6d565b600d610c8d8282611f4f565b5050565b6000610c9c826115eb565b5192915050565b6007546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161071090611e6d565b600a55565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610710565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161071090611e6d565b610d9760006116c2565b565b60606002805461062290611e33565b600260085403610dfa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b600260085560095460ff16610e405760405162461bcd60e51b815260206004820152600c60248201526b6d696e74696e6746616c736560a01b6044820152606401610710565b60008111610e885760405162461bcd60e51b81526020600482015260156024820152741b9bdb941bdcda5d1a5d99535a5b9d105b5bdd5b9d605a1b6044820152606401610710565b600b54811115610eda5760405162461bcd60e51b815260206004820152601a60248201527f6d696e74416d6f756e744774725468616e4d617850657254786e0000000000006044820152606401610710565b600a5481610ee760005490565b610ef1919061200f565b1115610f365760405162461bcd60e51b81526020600482015260146024820152736d696e744774725468616e4d6178537570706c7960601b6044820152606401610710565b333214610f7d5760405162461bcd60e51b8152602060048201526015602482015274151c9a5959135a5b9d119c9bdb50dbdb9d1c9858dd605a1b6044820152606401610710565b80600c54610f8b9190611eb8565b341015610fc75760405162461bcd60e51b815260206004820152600a6024820152692830bca6b7b932a8363d60b11b6044820152606401610710565b610fd13382611714565b506001600855565b336001600160a01b038316036110315760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610710565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110c75760405162461bcd60e51b815260040161071090611e6d565b600b55565b6110d7848484611306565b6110e38484848461172e565b6110ff5760405162461bcd60e51b815260040161071090612022565b50505050565b6060611112826000541190565b6111765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610710565b6000611180611830565b905060008151116111a057604051806020016040528060008152506111cb565b806111aa8461183f565b6040516020016111bb929190612075565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111fc5760405162461bcd60e51b815260040161071090611e6d565b6009805460ff1916911515919091179055565b6007546001600160a01b031633146112395760405162461bcd60e51b815260040161071090611e6d565b6001600160a01b03811661129e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6112a7816116c2565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611311826115eb565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d846106a5565b6001600160a01b0316145b8061135a5750815161135a9033610558565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610710565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610710565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610710565b6114ac60008484600001516112aa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261160a826000541190565b6116695760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610710565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b8579392505050565b506000190161166b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c8d828260405180602001604052806000815250611940565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117729033908990889088906004016120a4565b6020604051808303816000875af19250505080156117ad575060408051601f3d908101601f191682019092526117aa918101906120e1565b60015b61180a573d8080156117db576040519150601f19603f3d011682016040523d82523d6000602084013e6117e0565b606091505b5080516000036118025760405162461bcd60e51b815260040161071090612022565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611828565b5060015b949350505050565b6060600d805461062290611e33565b6060816000036118665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611890578061187a816120fe565b91506118899050600a83611eed565b915061186a565b60008167ffffffffffffffff8111156118ab576118ab611c3f565b6040519080825280601f01601f1916602001820160405280156118d5576020820181803683370190505b5090505b8415611828576118ea600183612117565b91506118f7600a8661212a565b61190290603061200f565b60f81b8183815181106119175761191761213e565b60200101906001600160f81b031916908160001a905350611939600a86611eed565b94506118d9565b61084783838360016000546001600160a01b0385166119ab5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610710565b83600003611a0c5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610710565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b055760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611af957611add600088848861172e565b611af95760405162461bcd60e51b815260040161071090612022565b60019182019101611a8a565b506000556115e4565b6001600160e01b0319811681146112a757600080fd5b600060208284031215611b3657600080fd5b81356111cb81611b0e565b60005b83811015611b5c578181015183820152602001611b44565b50506000910152565b60008151808452611b7d816020860160208601611b41565b601f01601f19169290920160200192915050565b6020815260006111cb6020830184611b65565b600060208284031215611bb657600080fd5b5035919050565b80356001600160a01b0381168114611bd457600080fd5b919050565b60008060408385031215611bec57600080fd5b611bf583611bbd565b946020939093013593505050565b600080600060608486031215611c1857600080fd5b611c2184611bbd565b9250611c2f60208501611bbd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7057611c70611c3f565b604051601f8501601f19908116603f01168101908282118183101715611c9857611c98611c3f565b81604052809350858152868686011115611cb157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdd57600080fd5b813567ffffffffffffffff811115611cf457600080fd5b8201601f81018413611d0557600080fd5b61182884823560208401611c55565b600060208284031215611d2657600080fd5b6111cb82611bbd565b80358015158114611bd457600080fd5b60008060408385031215611d5257600080fd5b611d5b83611bbd565b9150611d6960208401611d2f565b90509250929050565b60008060008060808587031215611d8857600080fd5b611d9185611bbd565b9350611d9f60208601611bbd565b925060408501359150606085013567ffffffffffffffff811115611dc257600080fd5b8501601f81018713611dd357600080fd5b611de287823560208401611c55565b91505092959194509250565b600060208284031215611e0057600080fd5b6111cb82611d2f565b60008060408385031215611e1c57600080fd5b611e2583611bbd565b9150611d6960208401611bbd565b600181811c90821680611e4757607f821691505b602082108103611e6757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ed257611ed2611ea2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611efc57611efc611ed7565b500490565b601f82111561084757600081815260208120601f850160051c81016020861015611f285750805b601f850160051c820191505b81811015611f4757828155600101611f34565b505050505050565b815167ffffffffffffffff811115611f6957611f69611c3f565b611f7d81611f778454611e33565b84611f01565b602080601f831160018114611fb25760008415611f9a5750858301515b600019600386901b1c1916600185901b178555611f47565b600085815260208120601f198616915b82811015611fe157888601518255948401946001909101908401611fc2565b5085821015611fff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561060d5761060d611ea2565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612087818460208801611b41565b83519083019061209b818360208801611b41565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d790830184611b65565b9695505050505050565b6000602082840312156120f357600080fd5b81516111cb81611b0e565b60006001820161211057612110611ea2565b5060010190565b8181038181111561060d5761060d611ea2565b60008261213957612139611ed7565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a3904c64d7cc522c63ff88b40420b10ae2563615ac1c95c48b2a02d9c96b978464736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80636f8b44b0116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610507578063dbcd49fb1461051d578063e985e9c51461053d578063f2fde38b1461058657600080fd5b8063a22cb46514610487578063b6f3ce00146104a7578063b88d4fde146104c7578063c87b56dd146104e757600080fd5b80637dc2268c116100d15780637dc2268c146104275780638da5cb5b1461044157806395d89b411461045f578063a0712d681461047457600080fd5b80636f8b44b0146103d257806370a08231146103f2578063715018a61461041257600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103525780634f6ccce7146103725780635dcce234146103925780636352211e146103b257600080fd5b80632f745c59146103145780633cb51994146103345780633ccfd60b1461034a57600080fd5b8063095ea7b3116101a0578063095ea7b31461029957806313faede6146102bb57806318160ddd146102df57806323b872dd146102f457600080fd5b806301ffc9a71461020a57806306fdde031461023f578063081812fc1461026157600080fd5b3661020557604080513381523460208201527f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc489910160405180910390a1005b600080fd5b34801561021657600080fd5b5061022a610225366004611b24565b6105a6565b60405190151581526020015b60405180910390f35b34801561024b57600080fd5b50610254610613565b6040516102369190611b91565b34801561026d57600080fd5b5061028161027c366004611ba4565b6106a5565b6040516001600160a01b039091168152602001610236565b3480156102a557600080fd5b506102b96102b4366004611bd9565b610735565b005b3480156102c757600080fd5b506102d1600c5481565b604051908152602001610236565b3480156102eb57600080fd5b506000546102d1565b34801561030057600080fd5b506102b961030f366004611c03565b61084c565b34801561032057600080fd5b506102d161032f366004611bd9565b610857565b34801561034057600080fd5b506102d1600b5481565b6102b96109b2565b34801561035e57600080fd5b506102b961036d366004611c03565b610bda565b34801561037e57600080fd5b506102d161038d366004611ba4565b610bf5565b34801561039e57600080fd5b506102b96103ad366004611ccb565b610c57565b3480156103be57600080fd5b506102816103cd366004611ba4565b610c91565b3480156103de57600080fd5b506102b96103ed366004611ba4565b610ca3565b3480156103fe57600080fd5b506102d161040d366004611d14565b610cd2565b34801561041e57600080fd5b506102b9610d63565b34801561043357600080fd5b5060095461022a9060ff1681565b34801561044d57600080fd5b506007546001600160a01b0316610281565b34801561046b57600080fd5b50610254610d99565b6102b9610482366004611ba4565b610da8565b34801561049357600080fd5b506102b96104a2366004611d3f565b610fd9565b3480156104b357600080fd5b506102b96104c2366004611ba4565b61109d565b3480156104d357600080fd5b506102b96104e2366004611d72565b6110cc565b3480156104f357600080fd5b50610254610502366004611ba4565b611105565b34801561051357600080fd5b506102d1600a5481565b34801561052957600080fd5b506102b9610538366004611dee565b6111d2565b34801561054957600080fd5b5061022a610558366004611e09565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506102b96105a1366004611d14565b61120f565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506001600160e01b0319821663780e9d6360e01b145b8061060d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062290611e33565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90611e33565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b60006106b2826000541190565b6107195760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610c91565b9050806001600160a01b0316836001600160a01b0316036107ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610710565b336001600160a01b03821614806107ca57506107ca8133610558565b61083c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610710565b6108478383836112aa565b505050565b610847838383611306565b600061086283610cd2565b82106108bb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610710565b600080549080805b83811015610952576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091657805192505b876001600160a01b0316836001600160a01b031603610949578684036109425750935061060d92505050565b6001909301925b506001016108c3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610710565b6007546001600160a01b031633146109dc5760405162461bcd60e51b815260040161071090611e6d565b600260085403610a2e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b60026008554760007301656d41e041b50fc7c1eb270f7d891021937436662386f26fc10000610a6484660221b262dd8000611eb8565b610a6e9190611eed565b604051600081818185875af1925050503d8060008114610aaa576040519150601f19603f3d011682016040523d82523d6000602084013e610aaf565b606091505b5050905080610abd57600080fd5b600073748054c44eea36ad603bd149aa9ed9847419f5a6662386f26fc10000610aed85660b21c0044bd555611eb8565b610af79190611eed565b604051600081818185875af1925050503d8060008114610b33576040519150601f19603f3d011682016040523d82523d6000602084013e610b38565b606091505b5050905080610b4657600080fd5b600073132747054da1fe7dba0949809189f055e8bb693a662386f26fc10000610b7686661643800897aaab611eb8565b610b809190611eed565b604051600081818185875af1925050503d8060008114610bbc576040519150601f19603f3d011682016040523d82523d6000602084013e610bc1565b606091505b5050905080610bcf57600080fd5b505060016008555050565b610847838383604051806020016040528060008152506110cc565b600080548210610c535760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610710565b5090565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260040161071090611e6d565b600d610c8d8282611f4f565b5050565b6000610c9c826115eb565b5192915050565b6007546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161071090611e6d565b600a55565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610710565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161071090611e6d565b610d9760006116c2565b565b60606002805461062290611e33565b600260085403610dfa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b600260085560095460ff16610e405760405162461bcd60e51b815260206004820152600c60248201526b6d696e74696e6746616c736560a01b6044820152606401610710565b60008111610e885760405162461bcd60e51b81526020600482015260156024820152741b9bdb941bdcda5d1a5d99535a5b9d105b5bdd5b9d605a1b6044820152606401610710565b600b54811115610eda5760405162461bcd60e51b815260206004820152601a60248201527f6d696e74416d6f756e744774725468616e4d617850657254786e0000000000006044820152606401610710565b600a5481610ee760005490565b610ef1919061200f565b1115610f365760405162461bcd60e51b81526020600482015260146024820152736d696e744774725468616e4d6178537570706c7960601b6044820152606401610710565b333214610f7d5760405162461bcd60e51b8152602060048201526015602482015274151c9a5959135a5b9d119c9bdb50dbdb9d1c9858dd605a1b6044820152606401610710565b80600c54610f8b9190611eb8565b341015610fc75760405162461bcd60e51b815260206004820152600a6024820152692830bca6b7b932a8363d60b11b6044820152606401610710565b610fd13382611714565b506001600855565b336001600160a01b038316036110315760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610710565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110c75760405162461bcd60e51b815260040161071090611e6d565b600b55565b6110d7848484611306565b6110e38484848461172e565b6110ff5760405162461bcd60e51b815260040161071090612022565b50505050565b6060611112826000541190565b6111765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610710565b6000611180611830565b905060008151116111a057604051806020016040528060008152506111cb565b806111aa8461183f565b6040516020016111bb929190612075565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111fc5760405162461bcd60e51b815260040161071090611e6d565b6009805460ff1916911515919091179055565b6007546001600160a01b031633146112395760405162461bcd60e51b815260040161071090611e6d565b6001600160a01b03811661129e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6112a7816116c2565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611311826115eb565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d846106a5565b6001600160a01b0316145b8061135a5750815161135a9033610558565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610710565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610710565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610710565b6114ac60008484600001516112aa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261160a826000541190565b6116695760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610710565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b8579392505050565b506000190161166b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c8d828260405180602001604052806000815250611940565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117729033908990889088906004016120a4565b6020604051808303816000875af19250505080156117ad575060408051601f3d908101601f191682019092526117aa918101906120e1565b60015b61180a573d8080156117db576040519150601f19603f3d011682016040523d82523d6000602084013e6117e0565b606091505b5080516000036118025760405162461bcd60e51b815260040161071090612022565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611828565b5060015b949350505050565b6060600d805461062290611e33565b6060816000036118665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611890578061187a816120fe565b91506118899050600a83611eed565b915061186a565b60008167ffffffffffffffff8111156118ab576118ab611c3f565b6040519080825280601f01601f1916602001820160405280156118d5576020820181803683370190505b5090505b8415611828576118ea600183612117565b91506118f7600a8661212a565b61190290603061200f565b60f81b8183815181106119175761191761213e565b60200101906001600160f81b031916908160001a905350611939600a86611eed565b94506118d9565b61084783838360016000546001600160a01b0385166119ab5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610710565b83600003611a0c5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610710565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b055760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611af957611add600088848861172e565b611af95760405162461bcd60e51b815260040161071090612022565b60019182019101611a8a565b506000556115e4565b6001600160e01b0319811681146112a757600080fd5b600060208284031215611b3657600080fd5b81356111cb81611b0e565b60005b83811015611b5c578181015183820152602001611b44565b50506000910152565b60008151808452611b7d816020860160208601611b41565b601f01601f19169290920160200192915050565b6020815260006111cb6020830184611b65565b600060208284031215611bb657600080fd5b5035919050565b80356001600160a01b0381168114611bd457600080fd5b919050565b60008060408385031215611bec57600080fd5b611bf583611bbd565b946020939093013593505050565b600080600060608486031215611c1857600080fd5b611c2184611bbd565b9250611c2f60208501611bbd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7057611c70611c3f565b604051601f8501601f19908116603f01168101908282118183101715611c9857611c98611c3f565b81604052809350858152868686011115611cb157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdd57600080fd5b813567ffffffffffffffff811115611cf457600080fd5b8201601f81018413611d0557600080fd5b61182884823560208401611c55565b600060208284031215611d2657600080fd5b6111cb82611bbd565b80358015158114611bd457600080fd5b60008060408385031215611d5257600080fd5b611d5b83611bbd565b9150611d6960208401611d2f565b90509250929050565b60008060008060808587031215611d8857600080fd5b611d9185611bbd565b9350611d9f60208601611bbd565b925060408501359150606085013567ffffffffffffffff811115611dc257600080fd5b8501601f81018713611dd357600080fd5b611de287823560208401611c55565b91505092959194509250565b600060208284031215611e0057600080fd5b6111cb82611d2f565b60008060408385031215611e1c57600080fd5b611e2583611bbd565b9150611d6960208401611bbd565b600181811c90821680611e4757607f821691505b602082108103611e6757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ed257611ed2611ea2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611efc57611efc611ed7565b500490565b601f82111561084757600081815260208120601f850160051c81016020861015611f285750805b601f850160051c820191505b81811015611f4757828155600101611f34565b505050505050565b815167ffffffffffffffff811115611f6957611f69611c3f565b611f7d81611f778454611e33565b84611f01565b602080601f831160018114611fb25760008415611f9a5750858301515b600019600386901b1c1916600185901b178555611f47565b600085815260208120601f198616915b82811015611fe157888601518255948401946001909101908401611fc2565b5085821015611fff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561060d5761060d611ea2565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612087818460208801611b41565b83519083019061209b818360208801611b41565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d790830184611b65565b9695505050505050565b6000602082840312156120f357600080fd5b81516111cb81611b0e565b60006001820161211057612110611ea2565b5060010190565b8181038181111561060d5761060d611ea2565b60008261213957612139611ed7565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a3904c64d7cc522c63ff88b40420b10ae2563615ac1c95c48b2a02d9c96b978464736f6c63430008100033

Deployed Bytecode Sourcemap

41475:2545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000:27;;;43005:10;188:51:1;;43017:9:0;270:2:1;255:18;;248:34;43000:27:0;;161:18:1;43000:27:0;;;;;;;41475:2545;;;;;25633:372;;;;;;;;;;-1:-1:-1;25633:372:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;25633:372:0;;;;;;;;27519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29080:214::-;;;;;;;;;;-1:-1:-1;29080:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;29080:214:0;1812:203:1;28601:413:0;;;;;;;;;;-1:-1:-1;28601:413:0;;;;;:::i;:::-;;:::i;:::-;;41684:33;;;;;;;;;;;;;;;;;;;2603:25:1;;;2591:2;2576:18;41684:33:0;2457:177:1;23890:100:0;;;;;;;;;;-1:-1:-1;23943:7:0;23970:12;23890:100;;29956:162;;;;;;;;;;-1:-1:-1;29956:162:0;;;;;:::i;:::-;;:::i;24554:1007::-;;;;;;;;;;-1:-1:-1;24554:1007:0;;;;;:::i;:::-;;:::i;41649:28::-;;;;;;;;;;;;;;;;43043:974;;;:::i;30189:177::-;;;;;;;;;;-1:-1:-1;30189:177:0;;;;;:::i;:::-;;:::i;24067:187::-;;;;;;;;;;-1:-1:-1;24067:187:0;;;;;:::i;:::-;;:::i;42659:115::-;;;;;;;;;;-1:-1:-1;42659:115:0;;;;;:::i;:::-;;:::i;27328:124::-;;;;;;;;;;-1:-1:-1;27328:124:0;;;;;:::i;:::-;;:::i;42549:102::-;;;;;;;;;;-1:-1:-1;42549:102:0;;;;;:::i;:::-;;:::i;26069:221::-;;;;;;;;;;-1:-1:-1;26069:221:0;;;;;:::i;:::-;;:::i;5036:94::-;;;;;;;;;;;;;:::i;41578:27::-;;;;;;;;;;-1:-1:-1;41578:27:0;;;;;;;;4385:87;;;;;;;;;;-1:-1:-1;4458:6:0;;-1:-1:-1;;;;;4458:6:0;4385:87;;27688:104;;;;;;;;;;;;;:::i;41815:518::-;;;;;;:::i;:::-;;:::i;29366:288::-;;;;;;;;;;-1:-1:-1;29366:288:0;;;;;:::i;:::-;;:::i;42439:102::-;;;;;;;;;;-1:-1:-1;42439:102:0;;;;;:::i;:::-;;:::i;30437:355::-;;;;;;;;;;-1:-1:-1;30437:355:0;;;;;:::i;:::-;;:::i;27863:334::-;;;;;;;;;;-1:-1:-1;27863:334:0;;;;;:::i;:::-;;:::i;41612:30::-;;;;;;;;;;;;;;;;42341:90;;;;;;;;;;-1:-1:-1;42341:90:0;;;;;:::i;:::-;;:::i;29725:164::-;;;;;;;;;;-1:-1:-1;29725:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29846:25:0;;;29822:4;29846:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29725:164;5285:192;;;;;;;;;;-1:-1:-1;5285:192:0;;;;;:::i;:::-;;:::i;25633:372::-;25735:4;-1:-1:-1;;;;;;25772:40:0;;-1:-1:-1;;;25772:40:0;;:105;;-1:-1:-1;;;;;;;25829:48:0;;-1:-1:-1;;;25829:48:0;25772:105;:172;;;-1:-1:-1;;;;;;;25894:50:0;;-1:-1:-1;;;25894:50:0;25772:172;:225;;;-1:-1:-1;;;;;;;;;;16114:40:0;;;25961:36;25752:245;25633:372;-1:-1:-1;;25633:372:0:o;27519:100::-;27573:13;27606:5;27599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27519:100;:::o;29080:214::-;29148:7;29176:16;29184:7;31104:4;31138:12;-1:-1:-1;31128:22:0;31047:111;29176:16;29168:74;;;;-1:-1:-1;;;29168:74:0;;6521:2:1;29168:74:0;;;6503:21:1;6560:2;6540:18;;;6533:30;6599:34;6579:18;;;6572:62;-1:-1:-1;;;6650:18:1;;;6643:43;6703:19;;29168:74:0;;;;;;;;;-1:-1:-1;29262:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29262:24:0;;29080:214::o;28601:413::-;28674:13;28690:24;28706:7;28690:15;:24::i;:::-;28674:40;;28739:5;-1:-1:-1;;;;;28733:11:0;:2;-1:-1:-1;;;;;28733:11:0;;28725:58;;;;-1:-1:-1;;;28725:58:0;;6935:2:1;28725:58:0;;;6917:21:1;6974:2;6954:18;;;6947:30;7013:34;6993:18;;;6986:62;-1:-1:-1;;;7064:18:1;;;7057:32;7106:19;;28725:58:0;6733:398:1;28725:58:0;3282:10;-1:-1:-1;;;;;28818:21:0;;;;:62;;-1:-1:-1;28843:37:0;28860:5;3282:10;29725:164;:::i;28843:37::-;28796:169;;;;-1:-1:-1;;;28796:169:0;;7338:2:1;28796:169:0;;;7320:21:1;7377:2;7357:18;;;7350:30;7416:34;7396:18;;;7389:62;7487:27;7467:18;;;7460:55;7532:19;;28796:169:0;7136:421:1;28796:169:0;28978:28;28987:2;28991:7;29000:5;28978:8;:28::i;:::-;28663:351;28601:413;;:::o;29956:162::-;30082:28;30092:4;30098:2;30102:7;30082:9;:28::i;24554:1007::-;24643:7;24679:16;24689:5;24679:9;:16::i;:::-;24671:5;:24;24663:71;;;;-1:-1:-1;;;24663:71:0;;7764:2:1;24663:71:0;;;7746:21:1;7803:2;7783:18;;;7776:30;7842:34;7822:18;;;7815:62;-1:-1:-1;;;7893:18:1;;;7886:32;7935:19;;24663:71:0;7562:398:1;24663:71:0;24745:22;23970:12;;;24745:22;;25008:466;25028:14;25024:1;:18;25008:466;;;25068:31;25102:14;;;:11;:14;;;;;;;;;25068:48;;;;;;;;;-1:-1:-1;;;;;25068:48:0;;;;;-1:-1:-1;;;25068:48:0;;;;;;;;;;;;25139:28;25135:111;;25212:14;;;-1:-1:-1;25135:111:0;25289:5;-1:-1:-1;;;;;25268:26:0;:17;-1:-1:-1;;;;;25268:26:0;;25264:195;;25338:5;25323:11;:20;25319:85;;-1:-1:-1;25379:1:0;-1:-1:-1;25372:8:0;;-1:-1:-1;;;25372:8:0;25319:85;25426:13;;;;;25264:195;-1:-1:-1;25044:3:0;;25008:466;;;-1:-1:-1;25497:56:0;;-1:-1:-1;;;25497:56:0;;8167:2:1;25497:56:0;;;8149:21:1;8206:2;8186:18;;;8179:30;8245:34;8225:18;;;8218:62;-1:-1:-1;;;8296:18:1;;;8289:44;8350:19;;25497:56:0;7965:410:1;43043:974:0;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;40501:1:::1;41099:7;;:19:::0;41091:63:::1;;;::::0;-1:-1:-1;;;41091:63:0;;8943:2:1;41091:63:0::1;::::0;::::1;8925:21:1::0;8982:2;8962:18;;;8955:30;9021:33;9001:18;;;8994:61;9072:18;;41091:63:0::1;8741:355:1::0;41091:63:0::1;40501:1;41232:7;:18:::0;43223:21:::2;43204:16;43369:42;43454:17;43425:26;43223:21:::0;43436:15:::2;43425:26;:::i;:::-;:46;;;;:::i;:::-;43361:115;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43347:129;;;43495:2;43487:11;;;::::0;::::2;;43604:7;43625:42;43711:17;43681:27;:8:::0;43692:16:::2;43681:27;:::i;:::-;:47;;;;:::i;:::-;43617:116;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43603:130;;;43752:2;43744:11;;;::::0;::::2;;43859:7;43881:42;43967:17;43937:27;:8:::0;43948:16:::2;43937:27;:::i;:::-;:47;;;;:::i;:::-;43873:116;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43858:131;;;44008:2;44000:11;;;::::0;::::2;;-1:-1:-1::0;;40457:1:0::1;41411:7;:22:::0;-1:-1:-1;;43043:974:0:o;30189:177::-;30319:39;30336:4;30342:2;30346:7;30319:39;;;;;;;;;;;;:16;:39::i;24067:187::-;24134:7;23970:12;;24162:5;:21;24154:69;;;;-1:-1:-1;;;24154:69:0;;10075:2:1;24154:69:0;;;10057:21:1;10114:2;10094:18;;;10087:30;10153:34;10133:18;;;10126:62;-1:-1:-1;;;10204:18:1;;;10197:33;10247:19;;24154:69:0;9873:399:1;24154:69:0;-1:-1:-1;24241:5:0;24067:187::o;42659:115::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;42740:10:::1;:26;42753:13:::0;42740:10;:26:::1;:::i;:::-;;42659:115:::0;:::o;27328:124::-;27392:7;27419:20;27431:7;27419:11;:20::i;:::-;:25;;27328:124;-1:-1:-1;;27328:124:0:o;42549:102::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;42621:9:::1;:22:::0;42549:102::o;26069:221::-;26133:7;-1:-1:-1;;;;;26161:19:0;;26153:75;;;;-1:-1:-1;;;26153:75:0;;12683:2:1;26153:75:0;;;12665:21:1;12722:2;12702:18;;;12695:30;12761:34;12741:18;;;12734:62;-1:-1:-1;;;12812:18:1;;;12805:41;12863:19;;26153:75:0;12481:407:1;26153:75:0;-1:-1:-1;;;;;;26254:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26254:27:0;;26069:221::o;5036:94::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;5101:21:::1;5119:1;5101:9;:21::i;:::-;5036:94::o:0;27688:104::-;27744:13;27777:7;27770:14;;;;;:::i;41815:518::-;40501:1;41099:7;;:19;41091:63;;;;-1:-1:-1;;;41091:63:0;;8943:2:1;41091:63:0;;;8925:21:1;8982:2;8962:18;;;8955:30;9021:33;9001:18;;;8994:61;9072:18;;41091:63:0;8741:355:1;41091:63:0;40501:1;41232:7;:18;41899:7:::1;::::0;::::1;;41891:32;;;::::0;-1:-1:-1;;;41891:32:0;;13095:2:1;41891:32:0::1;::::0;::::1;13077:21:1::0;13134:2;13114:18;;;13107:30;-1:-1:-1;;;13153:18:1;;;13146:42;13205:18;;41891:32:0::1;12893:336:1::0;41891:32:0::1;41956:1;41942:11;:15;41934:49;;;::::0;-1:-1:-1;;;41934:49:0;;13436:2:1;41934:49:0::1;::::0;::::1;13418:21:1::0;13475:2;13455:18;;;13448:30;-1:-1:-1;;;13494:18:1;;;13487:51;13555:18;;41934:49:0::1;13234:345:1::0;41934:49:0::1;42017:9;;42002:11;:24;;41994:63;;;::::0;-1:-1:-1;;;41994:63:0;;13786:2:1;41994:63:0::1;::::0;::::1;13768:21:1::0;13825:2;13805:18;;;13798:30;13864:28;13844:18;;;13837:56;13910:18;;41994:63:0::1;13584:350:1::0;41994:63:0::1;42109:9;;42094:11;42078:13;23943:7:::0;23970:12;;23890:100;42078:13:::1;:27;;;;:::i;:::-;:40;;42070:73;;;::::0;-1:-1:-1;;;42070:73:0;;14271:2:1;42070:73:0::1;::::0;::::1;14253:21:1::0;14310:2;14290:18;;;14283:30;-1:-1:-1;;;14329:18:1;;;14322:50;14389:18;;42070:73:0::1;14069:344:1::0;42070:73:0::1;3282:10:::0;42178:9:::1;42162:25;42154:59;;;::::0;-1:-1:-1;;;42154:59:0;;14620:2:1;42154:59:0::1;::::0;::::1;14602:21:1::0;14659:2;14639:18;;;14632:30;-1:-1:-1;;;14678:18:1;;;14671:51;14739:18;;42154:59:0::1;14418:345:1::0;42154:59:0::1;42252:11;42245:4;;:18;;;;:::i;:::-;42232:9;:31;;42224:54;;;::::0;-1:-1:-1;;;42224:54:0;;14970:2:1;42224:54:0::1;::::0;::::1;14952:21:1::0;15009:2;14989:18;;;14982:30;-1:-1:-1;;;15028:18:1;;;15021:40;15078:18;;42224:54:0::1;14768:334:1::0;42224:54:0::1;42289:36;3282:10:::0;42313:11:::1;42289:9;:36::i;:::-;-1:-1:-1::0;40457:1:0;41411:7;:22;41815:518::o;29366:288::-;3282:10;-1:-1:-1;;;;;29461:24:0;;;29453:63;;;;-1:-1:-1;;;29453:63:0;;15309:2:1;29453:63:0;;;15291:21:1;15348:2;15328:18;;;15321:30;15387:28;15367:18;;;15360:56;15433:18;;29453:63:0;15107:350:1;29453:63:0;3282:10;29529:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29529:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29529:53:0;;;;;;;;;;29598:48;;819:41:1;;;29529:42:0;;3282:10;29598:48;;792:18:1;29598:48:0;;;;;;;29366:288;;:::o;42439:102::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;42511:9:::1;:22:::0;42439:102::o;30437:355::-;30596:28;30606:4;30612:2;30616:7;30596:9;:28::i;:::-;30657:48;30680:4;30686:2;30690:7;30699:5;30657:22;:48::i;:::-;30635:149;;;;-1:-1:-1;;;30635:149:0;;;;;;;:::i;:::-;30437:355;;;;:::o;27863:334::-;27936:13;27970:16;27978:7;31104:4;31138:12;-1:-1:-1;31128:22:0;31047:111;27970:16;27962:76;;;;-1:-1:-1;;;27962:76:0;;16084:2:1;27962:76:0;;;16066:21:1;16123:2;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;-1:-1:-1;;;16213:18:1;;;16206:45;16268:19;;27962:76:0;15882:411:1;27962:76:0;28051:21;28075:10;:8;:10::i;:::-;28051:34;;28127:1;28109:7;28103:21;:25;:86;;;;;;;;;;;;;;;;;28155:7;28164:18;:7;:16;:18::i;:::-;28138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28103:86;28096:93;27863:334;-1:-1:-1;;;27863:334:0:o;42341:90::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;42405:7:::1;:18:::0;;-1:-1:-1;;42405:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42341:90::o;5285:192::-;4458:6;;-1:-1:-1;;;;;4458:6:0;3282:10;4605:23;4597:68;;;;-1:-1:-1;;;4597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5374:22:0;::::1;5366:73;;;::::0;-1:-1:-1;;;5366:73:0;;17001:2:1;5366:73:0::1;::::0;::::1;16983:21:1::0;17040:2;17020:18;;;17013:30;17079:34;17059:18;;;17052:62;-1:-1:-1;;;17130:18:1;;;17123:36;17176:19;;5366:73:0::1;16799:402:1::0;5366:73:0::1;5450:19;5460:8;5450:9;:19::i;:::-;5285:192:::0;:::o;35967:196::-;36082:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36082:29:0;-1:-1:-1;;;;;36082:29:0;;;;;;;;;36127:28;;36082:24;;36127:28;;;;;;;35967:196;;;:::o;33847:2002::-;33962:35;34000:20;34012:7;34000:11;:20::i;:::-;34075:18;;33962:58;;-1:-1:-1;34033:22:0;;-1:-1:-1;;;;;34059:34:0;3282:10;-1:-1:-1;;;;;34059:34:0;;:87;;;-1:-1:-1;3282:10:0;34110:20;34122:7;34110:11;:20::i;:::-;-1:-1:-1;;;;;34110:36:0;;34059:87;:154;;;-1:-1:-1;34180:18:0;;34163:50;;3282:10;29725:164;:::i;34163:50::-;34033:181;;34235:17;34227:80;;;;-1:-1:-1;;;34227:80:0;;17408:2:1;34227:80:0;;;17390:21:1;17447:2;17427:18;;;17420:30;17486:34;17466:18;;;17459:62;-1:-1:-1;;;17537:18:1;;;17530:48;17595:19;;34227:80:0;17206:414:1;34227:80:0;34350:4;-1:-1:-1;;;;;34328:26:0;:13;:18;;;-1:-1:-1;;;;;34328:26:0;;34320:77;;;;-1:-1:-1;;;34320:77:0;;17827:2:1;34320:77:0;;;17809:21:1;17866:2;17846:18;;;17839:30;17905:34;17885:18;;;17878:62;-1:-1:-1;;;17956:18:1;;;17949:36;18002:19;;34320:77:0;17625:402:1;34320:77:0;-1:-1:-1;;;;;34416:16:0;;34408:66;;;;-1:-1:-1;;;34408:66:0;;18234:2:1;34408:66:0;;;18216:21:1;18273:2;18253:18;;;18246:30;18312:34;18292:18;;;18285:62;-1:-1:-1;;;18363:18:1;;;18356:35;18408:19;;34408:66:0;18032:401:1;34408:66:0;34595:49;34612:1;34616:7;34625:13;:18;;;34595:8;:49::i;:::-;-1:-1:-1;;;;;34940:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34940:31:0;;;-1:-1:-1;;;;;34940:31:0;;;-1:-1:-1;;34940:31:0;;;;;;;34986:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34986:29:0;;;;;;;;;;;;;35032:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35077:61:0;;;;-1:-1:-1;;;35122:15:0;35077:61;;;;;;35412:11;;;35442:24;;;;;:29;35412:11;;35442:29;35438:295;;35510:20;35518:11;31104:4;31138:12;-1:-1:-1;31128:22:0;31047:111;35510:20;35506:212;;;35587:18;;;35555:24;;;:11;:24;;;;;;;;:50;;35670:28;;;;35628:70;;-1:-1:-1;;;35628:70:0;-1:-1:-1;;;;;;35628:70:0;;;-1:-1:-1;;;;;35555:50:0;;;35628:70;;;;;;;35506:212;34915:829;35780:7;35776:2;-1:-1:-1;;;;;35761:27:0;35770:4;-1:-1:-1;;;;;35761:27:0;;;;;;;;;;;35799:42;33951:1898;;33847:2002;;;:::o;26729:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26832:16:0;26840:7;31104:4;31138:12;-1:-1:-1;31128:22:0;31047:111;26832:16;26824:71;;;;-1:-1:-1;;;26824:71:0;;18640:2:1;26824:71:0;;;18622:21:1;18679:2;18659:18;;;18652:30;18718:34;18698:18;;;18691:62;-1:-1:-1;;;18769:18:1;;;18762:40;18819:19;;26824:71:0;18438:406:1;26824:71:0;26953:7;26933:245;27000:31;27034:17;;;:11;:17;;;;;;;;;27000:51;;;;;;;;;-1:-1:-1;;;;;27000:51:0;;;;;-1:-1:-1;;;27000:51:0;;;;;;;;;;;;27074:28;27070:93;;27134:9;26729:537;-1:-1:-1;;;26729:537:0:o;27070:93::-;-1:-1:-1;;;26973:6:0;26933:245;;5485:173;5560:6;;;-1:-1:-1;;;;;5577:17:0;;;-1:-1:-1;;;;;;5577:17:0;;;;;;;5610:40;;5560:6;;;5577:17;5560:6;;5610:40;;5541:16;;5610:40;5530:128;5485:173;:::o;31166:104::-;31235:27;31245:2;31249:8;31235:27;;;;;;;;;;;;:9;:27::i;36728:804::-;36883:4;-1:-1:-1;;;;;36904:13:0;;6726:20;6774:8;36900:625;;36940:72;;-1:-1:-1;;;36940:72:0;;-1:-1:-1;;;;;36940:36:0;;;;;:72;;3282:10;;36991:4;;36997:7;;37006:5;;36940:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36940:72:0;;;;;;;;-1:-1:-1;;36940:72:0;;;;;;;;;;;;:::i;:::-;;;36936:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37186:6;:13;37203:1;37186:18;37182:273;;37229:61;;-1:-1:-1;;;37229:61:0;;;;;;;:::i;37182:273::-;37405:6;37399:13;37390:6;37386:2;37382:15;37375:38;36936:534;-1:-1:-1;;;;;;37063:55:0;-1:-1:-1;;;37063:55:0;;-1:-1:-1;37056:62:0;;36900:625;-1:-1:-1;37509:4:0;36900:625;36728:804;;;;;;:::o;42780:120::-;42849:13;42882:10;42875:17;;;;;:::i;846:723::-;902:13;1123:5;1132:1;1123:10;1119:53;;-1:-1:-1;;1150:10:0;;;;;;;;;;;;-1:-1:-1;;;1150:10:0;;;;;846:723::o;1119:53::-;1197:5;1182:12;1238:78;1245:9;;1238:78;;1271:8;;;;:::i;:::-;;-1:-1:-1;1294:10:0;;-1:-1:-1;1302:2:0;1294:10;;:::i;:::-;;;1238:78;;;1326:19;1358:6;1348:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1348:17:0;;1326:39;;1376:154;1383:10;;1376:154;;1410:11;1420:1;1410:11;;:::i;:::-;;-1:-1:-1;1479:10:0;1487:2;1479:5;:10;:::i;:::-;1466:24;;:2;:24;:::i;:::-;1453:39;;1436:6;1443;1436:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1436:56:0;;;;;;;;-1:-1:-1;1507:11:0;1516:2;1507:11;;:::i;:::-;;;1376:154;;31633:163;31756:32;31762:2;31766:8;31776:5;31783:4;32194:20;32217:12;-1:-1:-1;;;;;32248:16:0;;32240:62;;;;-1:-1:-1;;;32240:62:0;;20737:2:1;32240:62:0;;;20719:21:1;20776:2;20756:18;;;20749:30;20815:34;20795:18;;;20788:62;-1:-1:-1;;;20866:18:1;;;20859:31;20907:19;;32240:62:0;20535:397:1;32240:62:0;32321:8;32333:1;32321:13;32313:66;;;;-1:-1:-1;;;32313:66:0;;21139:2:1;32313:66:0;;;21121:21:1;21178:2;21158:18;;;21151:30;21217:34;21197:18;;;21190:62;-1:-1:-1;;;21268:18:1;;;21261:38;21316:19;;32313:66:0;20937:404:1;32313:66:0;-1:-1:-1;;;;;32731:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32731:45:0;;-1:-1:-1;;;;;32731:45:0;;;;;;;;;;32791:50;;;;;;;;;;;;;;32858:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32908:66:0;;;;-1:-1:-1;;;32958:15:0;32908:66;;;;;;;32858:25;;33043:415;33063:8;33059:1;:12;33043:415;;;33102:38;;33127:12;;-1:-1:-1;;;;;33102:38:0;;;33119:1;;33102:38;;33119:1;;33102:38;33163:4;33159:249;;;33226:59;33257:1;33261:2;33265:12;33279:5;33226:22;:59::i;:::-;33192:196;;;;-1:-1:-1;;;33192:196:0;;;;;;;:::i;:::-;33428:14;;;;;33073:3;33043:415;;;-1:-1:-1;33474:12:0;:27;33525:60;30437:355;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:173::-;2088:20;;-1:-1:-1;;;;;2137:31:1;;2127:42;;2117:70;;2183:1;2180;2173:12;2117:70;2020:173;;;:::o;2198:254::-;2266:6;2274;2327:2;2315:9;2306:7;2302:23;2298:32;2295:52;;;2343:1;2340;2333:12;2295:52;2366:29;2385:9;2366:29;:::i;:::-;2356:39;2442:2;2427:18;;;;2414:32;;-1:-1:-1;;;2198:254:1:o;2639:328::-;2716:6;2724;2732;2785:2;2773:9;2764:7;2760:23;2756:32;2753:52;;;2801:1;2798;2791:12;2753:52;2824:29;2843:9;2824:29;:::i;:::-;2814:39;;2872:38;2906:2;2895:9;2891:18;2872:38;:::i;:::-;2862:48;;2957:2;2946:9;2942:18;2929:32;2919:42;;2639:328;;;;;:::o;2972:127::-;3033:10;3028:3;3024:20;3021:1;3014:31;3064:4;3061:1;3054:15;3088:4;3085:1;3078:15;3104:632;3169:5;3199:18;3240:2;3232:6;3229:14;3226:40;;;3246:18;;:::i;:::-;3321:2;3315:9;3289:2;3375:15;;-1:-1:-1;;3371:24:1;;;3397:2;3367:33;3363:42;3351:55;;;3421:18;;;3441:22;;;3418:46;3415:72;;;3467:18;;:::i;:::-;3507:10;3503:2;3496:22;3536:6;3527:15;;3566:6;3558;3551:22;3606:3;3597:6;3592:3;3588:16;3585:25;3582:45;;;3623:1;3620;3613:12;3582:45;3673:6;3668:3;3661:4;3653:6;3649:17;3636:44;3728:1;3721:4;3712:6;3704;3700:19;3696:30;3689:41;;;;3104:632;;;;;:::o;3741:451::-;3810:6;3863:2;3851:9;3842:7;3838:23;3834:32;3831:52;;;3879:1;3876;3869:12;3831:52;3919:9;3906:23;3952:18;3944:6;3941:30;3938:50;;;3984:1;3981;3974:12;3938:50;4007:22;;4060:4;4052:13;;4048:27;-1:-1:-1;4038:55:1;;4089:1;4086;4079:12;4038:55;4112:74;4178:7;4173:2;4160:16;4155:2;4151;4147:11;4112:74;:::i;4197:186::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;4348:29;4367:9;4348:29;:::i;4388:160::-;4453:20;;4509:13;;4502:21;4492:32;;4482:60;;4538:1;4535;4528:12;4553:254;4618:6;4626;4679:2;4667:9;4658:7;4654:23;4650:32;4647:52;;;4695:1;4692;4685:12;4647:52;4718:29;4737:9;4718:29;:::i;:::-;4708:39;;4766:35;4797:2;4786:9;4782:18;4766:35;:::i;:::-;4756:45;;4553:254;;;;;:::o;4812:667::-;4907:6;4915;4923;4931;4984:3;4972:9;4963:7;4959:23;4955:33;4952:53;;;5001:1;4998;4991:12;4952:53;5024:29;5043:9;5024:29;:::i;:::-;5014:39;;5072:38;5106:2;5095:9;5091:18;5072:38;:::i;:::-;5062:48;;5157:2;5146:9;5142:18;5129:32;5119:42;;5212:2;5201:9;5197:18;5184:32;5239:18;5231:6;5228:30;5225:50;;;5271:1;5268;5261:12;5225:50;5294:22;;5347:4;5339:13;;5335:27;-1:-1:-1;5325:55:1;;5376:1;5373;5366:12;5325:55;5399:74;5465:7;5460:2;5447:16;5442:2;5438;5434:11;5399:74;:::i;:::-;5389:84;;;4812:667;;;;;;;:::o;5484:180::-;5540:6;5593:2;5581:9;5572:7;5568:23;5564:32;5561:52;;;5609:1;5606;5599:12;5561:52;5632:26;5648:9;5632:26;:::i;5669:260::-;5737:6;5745;5798:2;5786:9;5777:7;5773:23;5769:32;5766:52;;;5814:1;5811;5804:12;5766:52;5837:29;5856:9;5837:29;:::i;:::-;5827:39;;5885:38;5919:2;5908:9;5904:18;5885:38;:::i;5934:380::-;6013:1;6009:12;;;;6056;;;6077:61;;6131:4;6123:6;6119:17;6109:27;;6077:61;6184:2;6176:6;6173:14;6153:18;6150:38;6147:161;;6230:10;6225:3;6221:20;6218:1;6211:31;6265:4;6262:1;6255:15;6293:4;6290:1;6283:15;6147:161;;5934:380;;;:::o;8380:356::-;8582:2;8564:21;;;8601:18;;;8594:30;8660:34;8655:2;8640:18;;8633:62;8727:2;8712:18;;8380:356::o;9101:127::-;9162:10;9157:3;9153:20;9150:1;9143:31;9193:4;9190:1;9183:15;9217:4;9214:1;9207:15;9233:168;9273:7;9339:1;9335;9331:6;9327:14;9324:1;9321:21;9316:1;9309:9;9302:17;9298:45;9295:71;;;9346:18;;:::i;:::-;-1:-1:-1;9386:9:1;;9233:168::o;9406:127::-;9467:10;9462:3;9458:20;9455:1;9448:31;9498:4;9495:1;9488:15;9522:4;9519:1;9512:15;9538:120;9578:1;9604;9594:35;;9609:18;;:::i;:::-;-1:-1:-1;9643:9:1;;9538:120::o;10403:545::-;10505:2;10500:3;10497:11;10494:448;;;10541:1;10566:5;10562:2;10555:17;10611:4;10607:2;10597:19;10681:2;10669:10;10665:19;10662:1;10658:27;10652:4;10648:38;10717:4;10705:10;10702:20;10699:47;;;-1:-1:-1;10740:4:1;10699:47;10795:2;10790:3;10786:12;10783:1;10779:20;10773:4;10769:31;10759:41;;10850:82;10868:2;10861:5;10858:13;10850:82;;;10913:17;;;10894:1;10883:13;10850:82;;;10854:3;;;10403:545;;;:::o;11124:1352::-;11250:3;11244:10;11277:18;11269:6;11266:30;11263:56;;;11299:18;;:::i;:::-;11328:97;11418:6;11378:38;11410:4;11404:11;11378:38;:::i;:::-;11372:4;11328:97;:::i;:::-;11480:4;;11544:2;11533:14;;11561:1;11556:663;;;;12263:1;12280:6;12277:89;;;-1:-1:-1;12332:19:1;;;12326:26;12277:89;-1:-1:-1;;11081:1:1;11077:11;;;11073:24;11069:29;11059:40;11105:1;11101:11;;;11056:57;12379:81;;11526:944;;11556:663;10350:1;10343:14;;;10387:4;10374:18;;-1:-1:-1;;11592:20:1;;;11710:236;11724:7;11721:1;11718:14;11710:236;;;11813:19;;;11807:26;11792:42;;11905:27;;;;11873:1;11861:14;;;;11740:19;;11710:236;;;11714:3;11974:6;11965:7;11962:19;11959:201;;;12035:19;;;12029:26;-1:-1:-1;;12118:1:1;12114:14;;;12130:3;12110:24;12106:37;12102:42;12087:58;12072:74;;11959:201;-1:-1:-1;;;;;12206:1:1;12190:14;;;12186:22;12173:36;;-1:-1:-1;11124:1352:1:o;13939:125::-;14004:9;;;14025:10;;;14022:36;;;14038:18;;:::i;15462:415::-;15664:2;15646:21;;;15703:2;15683:18;;;15676:30;15742:34;15737:2;15722:18;;15715:62;-1:-1:-1;;;15808:2:1;15793:18;;15786:49;15867:3;15852:19;;15462:415::o;16298:496::-;16477:3;16515:6;16509:13;16531:66;16590:6;16585:3;16578:4;16570:6;16566:17;16531:66;:::i;:::-;16660:13;;16619:16;;;;16682:70;16660:13;16619:16;16729:4;16717:17;;16682:70;:::i;:::-;16768:20;;16298:496;-1:-1:-1;;;;16298:496:1:o;19265:489::-;-1:-1:-1;;;;;19534:15:1;;;19516:34;;19586:15;;19581:2;19566:18;;19559:43;19633:2;19618:18;;19611:34;;;19681:3;19676:2;19661:18;;19654:31;;;19459:4;;19702:46;;19728:19;;19720:6;19702:46;:::i;:::-;19694:54;19265:489;-1:-1:-1;;;;;;19265:489:1:o;19759:249::-;19828:6;19881:2;19869:9;19860:7;19856:23;19852:32;19849:52;;;19897:1;19894;19887:12;19849:52;19929:9;19923:16;19948:30;19972:5;19948:30;:::i;20013:135::-;20052:3;20073:17;;;20070:43;;20093:18;;:::i;:::-;-1:-1:-1;20140:1:1;20129:13;;20013:135::o;20153:128::-;20220:9;;;20241:11;;;20238:37;;;20255:18;;:::i;20286:112::-;20318:1;20344;20334:35;;20349:18;;:::i;:::-;-1:-1:-1;20383:9:1;;20286:112::o;20403:127::-;20464:10;20459:3;20455:20;20452:1;20445:31;20495:4;20492:1;20485:15;20519:4;20516:1;20509:15

Swarm Source

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