ETH Price: $2,872.48 (-5.94%)
Gas: 5 Gwei

Token

RugsByElena (RugsByElena)
 

Overview

Max Total Supply

1,162 RugsByElena

Holders

1,069

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RugsByElena
0xf8d54fac03aa41ff3464595b53b7038bd4e09522
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:
RugsByElena

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-21
*/

// File: contracts/RugsByElena.sol

// File 1: Address.sol

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// FILE 2: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File 3: Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File 4: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}





// File 5: IERC165.sol

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;


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

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

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




// File 8: ERC165.sol

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

pragma solidity ^0.8.0;


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


// File 9: ERC721.sol

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

pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public 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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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





// File 10: 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 11: ERC721Enumerable.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// File 12: IERC721Receiver.sol

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

pragma solidity ^0.8.0;

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



// File 13: 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 virtual 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(), ".json")) : '';
    }

    /**
     * @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 {}
}


pragma solidity ^0.8.0;

contract RugsByElena is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = "ipfs://bafybeifdascglajz4jgxqwm6nhgitpxdgcn2y43d2scx7g3gle2el5o524/";
  string public uriSuffix = ".json";
  string private hiddenMetadataUri;

    constructor() ERC721A("RugsByElena", "RugsByElena") {
        setHiddenMetadataUri("ipfs://bafybeifdascglajz4jgxqwm6nhgitpxdgcn2y43d2scx7g3gle2el5o524/hidden.json");
    }

    uint256 public price = .003 ether;
    uint256 public maxPerTx = 6;
    uint256 public maxPerFree = 1;    
    uint256 public maxFreeSupply = 1069;
    uint256 public maxSupply = 1069;
     
  bool public paused = false;
  bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

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

    //mint
    function mint(uint256 count) external payable {
        uint256 cost = price;
        require(!paused, "The contract is paused!");
        require(count > 0, "Minimum 1 NFT has to be minted per transaction");
        if (msg.sender != owner()) {
            bool isFree = ((totalSupply() + count < maxFreeSupply + 1) &&
                (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

            if (isFree) {
                cost = 0;
                _mintedFreeAmount[msg.sender] += count;
            }

            require(msg.value >= count * cost, "Please send the exact amount.");
            require(count <= maxPerTx, "Max per TX reached.");
        }

        require(totalSupply() + count <= maxSupply, "No more");

        _safeMint(msg.sender, count);
    }


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

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }
  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

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

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

  function setmaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
  }

  function setmaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }  

  function setmaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
  }

  function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }  

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }  

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setmaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setmaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002bbf60a03980516200002a9160099160209091019062000204565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600a9162000204565b50660aa87bee538000600c556006600d556001600e5561042d600f8190556010556011805461ffff19166101001790553480156200009657600080fd5b50604080518082018252600b8082526a527567734279456c656e6160a81b602080840182815285518087019096529285528401528151919291620000dd9160019162000204565b508051620000f390600290602084019062000204565b5050506000620001086200018860201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600881905550620001826040518060800160405280604e815260200162002b71604e91396200018c565b620002e7565b3390565b6007546001600160a01b03163314620001eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020090600b90602084019062000204565b5050565b8280546200021290620002aa565b90600052602060002090601f01602090048101928262000236576000855562000281565b82601f106200025157805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028157825182559160200191906001019062000264565b506200028f92915062000293565b5090565b5b808211156200028f576000815560010162000294565b600181811c90821680620002bf57607f821691505b60208210811415620002e157634e487b7160e01b600052602260045260246000fd5b50919050565b61287a80620002f76000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a2b40d19116100ab578063d5abeb011161006f578063d5abeb011461067d578063e0a8085314610693578063e985e9c5146106b3578063f2fde38b146106fc578063f968adbe1461071c57600080fd5b8063a2b40d19146105e7578063b88d4fde14610607578063bde12d7314610627578063c7c39ffc14610647578063c87b56dd1461065d57600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a035b1fe1461059e578063a0712d68146105b4578063a22cb465146105c757600080fd5b80636352211e146104d657806370a08231146104f6578063715018a6146105165780637ec4a6591461052b578063805dcae51461054b57600080fd5b8063308d7798116101bc5780634f6ccce7116101805780634f6ccce7146104485780634fdd43cb1461046857806351830227146104885780635503a0e8146104a75780635c975abb146104bc57600080fd5b8063308d7798146103b05780633ccfd60b146103d057806342842e0e146103e5578063438b630014610405578063475133341461043257600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd14610331578063228025e81461035057806323b872dd146103705780632f745c591461039057600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461249f565b610732565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61079f565b60405161026c91906126ab565b3480156102a357600080fd5b506102b76102b2366004612522565b610831565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461245a565b6108c1565b005b3480156102fd57600080fd5b506102ef61030c3660046124d9565b6109d9565b34801561031d57600080fd5b506102ef61032c366004612484565b610a38565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b506102ef61036b366004612522565b610a93565b34801561037c57600080fd5b506102ef61038b366004612378565b610ae0565b34801561039c57600080fd5b506103426103ab36600461245a565b610aeb565b3480156103bc57600080fd5b506102ef6103cb366004612522565b610c57565b3480156103dc57600080fd5b506102ef610ca4565b3480156103f157600080fd5b506102ef610400366004612378565b610d87565b34801561041157600080fd5b5061042561042036600461232a565b610da2565b60405161026c9190612667565b34801561043e57600080fd5b50610342600f5481565b34801561045457600080fd5b50610342610463366004612522565b610e83565b34801561047457600080fd5b506102ef6104833660046124d9565b610ee5565b34801561049457600080fd5b5060115461026090610100900460ff1681565b3480156104b357600080fd5b5061028a610f40565b3480156104c857600080fd5b506011546102609060ff1681565b3480156104e257600080fd5b506102b76104f1366004612522565b610fce565b34801561050257600080fd5b5061034261051136600461232a565b610fe0565b34801561052257600080fd5b506102ef61107a565b34801561053757600080fd5b506102ef6105463660046124d9565b61110c565b34801561055757600080fd5b506102ef610566366004612522565b611167565b34801561057757600080fd5b506007546001600160a01b03166102b7565b34801561059557600080fd5b5061028a6111b4565b3480156105aa57600080fd5b50610342600c5481565b6102ef6105c2366004612522565b6111c3565b3480156105d357600080fd5b506102ef6105e2366004612430565b611426565b3480156105f357600080fd5b506102ef610602366004612522565b6114eb565b34801561061357600080fd5b506102ef6106223660046123b4565b611538565b34801561063357600080fd5b506102ef610642366004612522565b6115bd565b34801561065357600080fd5b50610342600e5481565b34801561066957600080fd5b5061028a610678366004612522565b61160a565b34801561068957600080fd5b5061034260105481565b34801561069f57600080fd5b506102ef6106ae366004612484565b611789565b3480156106bf57600080fd5b506102606106ce366004612345565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070857600080fd5b506102ef61071736600461232a565b6117eb565b34801561072857600080fd5b50610342600d5481565b60006001600160e01b031982166380ac58cd60e01b148061076357506001600160e01b03198216635b5e139f60e01b145b8061077e57506001600160e01b0319821663780e9d6360e01b145b8061079957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ae9061274c565b80601f01602080910402602001604051908101604052809291908181526020018280546107da9061274c565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083e826000541190565b6108a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108cc82610fce565b9050806001600160a01b0316836001600160a01b0316141561093b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161089c565b336001600160a01b0382161480610957575061095781336106ce565b6109c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161089c565b6109d48383836118f4565b505050565b6007546001600160a01b03163314610a215760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a3490600a9060208401906121f8565b5050565b6007546001600160a01b03163314610a805760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6011805460ff1916911515919091179055565b6007546001600160a01b03163314610adb5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b601055565b6109d4838383611950565b6000610af683610fe0565b8210610b4f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161089c565b600080549080805b83811015610be8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610baa57805192505b876001600160a01b0316836001600160a01b03161415610bdf5786841415610bd85750935061079992505050565b6001909301925b50600101610b57565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161089c565b6007546001600160a01b03163314610c9f5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600e55565b6007546001600160a01b03163314610cec5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b604051600090339047908381818185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d845760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161089c565b50565b6109d483838360405180602001604052806000815250611538565b60606000610daf83610fe0565b905060008167ffffffffffffffff811115610dcc57610dcc6127f8565b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050600160005b8381108015610e0e57506010548211155b15610e79576000610e1e83610fce565b9050866001600160a01b0316816001600160a01b03161415610e665782848381518110610e4d57610e4d6127e2565b602090810291909101015281610e6281612787565b9250505b82610e7081612787565b93505050610dfd565b5090949350505050565b600080548210610ee15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161089c565b5090565b6007546001600160a01b03163314610f2d5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a3490600b9060208401906121f8565b600a8054610f4d9061274c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f799061274c565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b6000610fd982611c52565b5192915050565b60006001600160a01b03821661104c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161089c565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146110c25760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146111545760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a349060099060208401906121f8565b6007546001600160a01b031633146111af5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600d55565b6060600280546107ae9061274c565b600c5460115460ff16156112195760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161089c565b6000821161128f5760405162461bcd60e51b815260206004820152602e60248201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060448201527f6572207472616e73616374696f6e000000000000000000000000000000000000606482015260840161089c565b6007546001600160a01b031633146113cd576000600f5460016112b291906126be565b836112bc60005490565b6112c691906126be565b1080156112ef5750600e54336000908152601260205260409020546112ec9085906126be565b11155b905080156113205733600090815260126020526040812080549193508491849061131a9084906126be565b90915550505b61132a82846126ea565b3410156113795760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161089c565b600d548311156113cb5760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e00000000000000000000000000604482015260640161089c565b505b601054826113da60005490565b6113e491906126be565b111561141c5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161089c565b610a343383611d29565b6001600160a01b03821633141561147f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161089c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146115335760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600c55565b611543848484611950565b61154f84848484611d43565b6115b75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b50505050565b6007546001600160a01b031633146116055760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600f55565b6060611617826000541190565b6116895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161089c565b601154610100900460ff1661172a57600b80546116a59061274c565b80601f01602080910402602001604051908101604052809291908181526020018280546116d19061274c565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611e9d565b905060008151116117545760405180602001604052806000815250611782565b8061175e84611eac565b600a60405160200161177293929190612567565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117d15760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b601180549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146118335760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6001600160a01b0381166118985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089c565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061195b82611c52565b80519091506000906001600160a01b0316336001600160a01b0316148061199257503361198784610831565b6001600160a01b0316145b806119a4575081516119a490336106ce565b905080611a195760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161089c565b846001600160a01b031682600001516001600160a01b031614611a8d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161089c565b6001600160a01b038416611af15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161089c565b611b0160008484600001516118f4565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611c0857611bbb816000541190565b15611c08578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c71826000541190565b611cd05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161089c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d1f579392505050565b5060001901611cd2565b610a34828260405180602001604052806000815250611fc2565b60006001600160a01b0384163b15611e9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8790339089908890889060040161262b565b602060405180830381600087803b158015611da157600080fd5b505af1925050508015611dd1575060408051601f3d908101601f19168201909252611dce918101906124bc565b60015b611e77573d808015611dff576040519150601f19603f3d011682016040523d82523d6000602084013e611e04565b606091505b508051611e6f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e95565b5060015b949350505050565b6060600980546107ae9061274c565b606081611ed05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611efa5780611ee481612787565b9150611ef39050600a836126d6565b9150611ed4565b60008167ffffffffffffffff811115611f1557611f156127f8565b6040519080825280601f01601f191660200182016040528015611f3f576020820181803683370190505b5090505b8415611e9557611f54600183612709565b9150611f61600a866127a2565b611f6c9060306126be565b60f81b818381518110611f8157611f816127e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fbb600a866126d6565b9450611f43565b6109d483838360016000546001600160a01b03851661202d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161089c565b8361208b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161089c565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156121e35761217b6000888488611d43565b6121e35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b60019182019101612128565b50600055611c4b565b8280546122049061274c565b90600052602060002090601f016020900481019282612226576000855561226c565b82601f1061223f57805160ff191683800117855561226c565b8280016001018555821561226c579182015b8281111561226c578251825591602001919060010190612251565b50610ee19291505b80821115610ee15760008155600101612274565b600067ffffffffffffffff808411156122a3576122a36127f8565b604051601f8501601f19908116603f011681019082821181831017156122cb576122cb6127f8565b816040528093508581528686860111156122e457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461231557600080fd5b919050565b8035801515811461231557600080fd5b60006020828403121561233c57600080fd5b611782826122fe565b6000806040838503121561235857600080fd5b612361836122fe565b915061236f602084016122fe565b90509250929050565b60008060006060848603121561238d57600080fd5b612396846122fe565b92506123a4602085016122fe565b9150604084013590509250925092565b600080600080608085870312156123ca57600080fd5b6123d3856122fe565b93506123e1602086016122fe565b925060408501359150606085013567ffffffffffffffff81111561240457600080fd5b8501601f8101871361241557600080fd5b61242487823560208401612288565b91505092959194509250565b6000806040838503121561244357600080fd5b61244c836122fe565b915061236f6020840161231a565b6000806040838503121561246d57600080fd5b612476836122fe565b946020939093013593505050565b60006020828403121561249657600080fd5b6117828261231a565b6000602082840312156124b157600080fd5b81356117828161280e565b6000602082840312156124ce57600080fd5b81516117828161280e565b6000602082840312156124eb57600080fd5b813567ffffffffffffffff81111561250257600080fd5b8201601f8101841361251357600080fd5b611e9584823560208401612288565b60006020828403121561253457600080fd5b5035919050565b60008151808452612553816020860160208601612720565b601f01601f19169290920160200192915050565b60008451602061257a8285838a01612720565b85519184019161258d8184848a01612720565b8554920191600090600181811c90808316806125aa57607f831692505b8583108114156125c857634e487b7160e01b85526022600452602485fd5b8080156125dc57600181146125ed5761261a565b60ff1985168852838801955061261a565b60008b81526020902060005b858110156126125781548a8201529084019088016125f9565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261265d608083018461253b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561269f57835183529284019291840191600101612683565b50909695505050505050565b602081526000611782602083018461253b565b600082198211156126d1576126d16127b6565b500190565b6000826126e5576126e56127cc565b500490565b6000816000190483118215151615612704576127046127b6565b500290565b60008282101561271b5761271b6127b6565b500390565b60005b8381101561273b578181015183820152602001612723565b838111156115b75750506000910152565b600181811c9082168061276057607f821691505b6020821081141561278157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279b5761279b6127b6565b5060010190565b6000826127b1576127b16127cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8457600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212204c01e80886b7aece1a28dd9aed33233d3c36d3c819d8d4c5863d89f6e2c4aeae64736f6c63430008070033697066733a2f2f626166796265696664617363676c616a7a346a677871776d366e6867697470786467636e327934336432736378376733676c6532656c356f3532342f68696464656e2e6a736f6e697066733a2f2f626166796265696664617363676c616a7a346a677871776d366e6867697470786467636e327934336432736378376733676c6532656c356f3532342f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a2b40d19116100ab578063d5abeb011161006f578063d5abeb011461067d578063e0a8085314610693578063e985e9c5146106b3578063f2fde38b146106fc578063f968adbe1461071c57600080fd5b8063a2b40d19146105e7578063b88d4fde14610607578063bde12d7314610627578063c7c39ffc14610647578063c87b56dd1461065d57600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a035b1fe1461059e578063a0712d68146105b4578063a22cb465146105c757600080fd5b80636352211e146104d657806370a08231146104f6578063715018a6146105165780637ec4a6591461052b578063805dcae51461054b57600080fd5b8063308d7798116101bc5780634f6ccce7116101805780634f6ccce7146104485780634fdd43cb1461046857806351830227146104885780635503a0e8146104a75780635c975abb146104bc57600080fd5b8063308d7798146103b05780633ccfd60b146103d057806342842e0e146103e5578063438b630014610405578063475133341461043257600080fd5b806316c38b3c1161020357806316c38b3c1461031157806318160ddd14610331578063228025e81461035057806323b872dd146103705780632f745c591461039057600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806316ba10e0146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461249f565b610732565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61079f565b60405161026c91906126ab565b3480156102a357600080fd5b506102b76102b2366004612522565b610831565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461245a565b6108c1565b005b3480156102fd57600080fd5b506102ef61030c3660046124d9565b6109d9565b34801561031d57600080fd5b506102ef61032c366004612484565b610a38565b34801561033d57600080fd5b506000545b60405190815260200161026c565b34801561035c57600080fd5b506102ef61036b366004612522565b610a93565b34801561037c57600080fd5b506102ef61038b366004612378565b610ae0565b34801561039c57600080fd5b506103426103ab36600461245a565b610aeb565b3480156103bc57600080fd5b506102ef6103cb366004612522565b610c57565b3480156103dc57600080fd5b506102ef610ca4565b3480156103f157600080fd5b506102ef610400366004612378565b610d87565b34801561041157600080fd5b5061042561042036600461232a565b610da2565b60405161026c9190612667565b34801561043e57600080fd5b50610342600f5481565b34801561045457600080fd5b50610342610463366004612522565b610e83565b34801561047457600080fd5b506102ef6104833660046124d9565b610ee5565b34801561049457600080fd5b5060115461026090610100900460ff1681565b3480156104b357600080fd5b5061028a610f40565b3480156104c857600080fd5b506011546102609060ff1681565b3480156104e257600080fd5b506102b76104f1366004612522565b610fce565b34801561050257600080fd5b5061034261051136600461232a565b610fe0565b34801561052257600080fd5b506102ef61107a565b34801561053757600080fd5b506102ef6105463660046124d9565b61110c565b34801561055757600080fd5b506102ef610566366004612522565b611167565b34801561057757600080fd5b506007546001600160a01b03166102b7565b34801561059557600080fd5b5061028a6111b4565b3480156105aa57600080fd5b50610342600c5481565b6102ef6105c2366004612522565b6111c3565b3480156105d357600080fd5b506102ef6105e2366004612430565b611426565b3480156105f357600080fd5b506102ef610602366004612522565b6114eb565b34801561061357600080fd5b506102ef6106223660046123b4565b611538565b34801561063357600080fd5b506102ef610642366004612522565b6115bd565b34801561065357600080fd5b50610342600e5481565b34801561066957600080fd5b5061028a610678366004612522565b61160a565b34801561068957600080fd5b5061034260105481565b34801561069f57600080fd5b506102ef6106ae366004612484565b611789565b3480156106bf57600080fd5b506102606106ce366004612345565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070857600080fd5b506102ef61071736600461232a565b6117eb565b34801561072857600080fd5b50610342600d5481565b60006001600160e01b031982166380ac58cd60e01b148061076357506001600160e01b03198216635b5e139f60e01b145b8061077e57506001600160e01b0319821663780e9d6360e01b145b8061079957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ae9061274c565b80601f01602080910402602001604051908101604052809291908181526020018280546107da9061274c565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083e826000541190565b6108a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108cc82610fce565b9050806001600160a01b0316836001600160a01b0316141561093b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161089c565b336001600160a01b0382161480610957575061095781336106ce565b6109c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161089c565b6109d48383836118f4565b505050565b6007546001600160a01b03163314610a215760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a3490600a9060208401906121f8565b5050565b6007546001600160a01b03163314610a805760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6011805460ff1916911515919091179055565b6007546001600160a01b03163314610adb5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b601055565b6109d4838383611950565b6000610af683610fe0565b8210610b4f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161089c565b600080549080805b83811015610be8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610baa57805192505b876001600160a01b0316836001600160a01b03161415610bdf5786841415610bd85750935061079992505050565b6001909301925b50600101610b57565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161089c565b6007546001600160a01b03163314610c9f5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600e55565b6007546001600160a01b03163314610cec5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b604051600090339047908381818185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d845760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161089c565b50565b6109d483838360405180602001604052806000815250611538565b60606000610daf83610fe0565b905060008167ffffffffffffffff811115610dcc57610dcc6127f8565b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050600160005b8381108015610e0e57506010548211155b15610e79576000610e1e83610fce565b9050866001600160a01b0316816001600160a01b03161415610e665782848381518110610e4d57610e4d6127e2565b602090810291909101015281610e6281612787565b9250505b82610e7081612787565b93505050610dfd565b5090949350505050565b600080548210610ee15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161089c565b5090565b6007546001600160a01b03163314610f2d5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a3490600b9060208401906121f8565b600a8054610f4d9061274c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f799061274c565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b6000610fd982611c52565b5192915050565b60006001600160a01b03821661104c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161089c565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146110c25760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031633146111545760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b8051610a349060099060208401906121f8565b6007546001600160a01b031633146111af5760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600d55565b6060600280546107ae9061274c565b600c5460115460ff16156112195760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161089c565b6000821161128f5760405162461bcd60e51b815260206004820152602e60248201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060448201527f6572207472616e73616374696f6e000000000000000000000000000000000000606482015260840161089c565b6007546001600160a01b031633146113cd576000600f5460016112b291906126be565b836112bc60005490565b6112c691906126be565b1080156112ef5750600e54336000908152601260205260409020546112ec9085906126be565b11155b905080156113205733600090815260126020526040812080549193508491849061131a9084906126be565b90915550505b61132a82846126ea565b3410156113795760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161089c565b600d548311156113cb5760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e00000000000000000000000000604482015260640161089c565b505b601054826113da60005490565b6113e491906126be565b111561141c5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161089c565b610a343383611d29565b6001600160a01b03821633141561147f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161089c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146115335760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600c55565b611543848484611950565b61154f84848484611d43565b6115b75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b50505050565b6007546001600160a01b031633146116055760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b600f55565b6060611617826000541190565b6116895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161089c565b601154610100900460ff1661172a57600b80546116a59061274c565b80601f01602080910402602001604051908101604052809291908181526020018280546116d19061274c565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611e9d565b905060008151116117545760405180602001604052806000815250611782565b8061175e84611eac565b600a60405160200161177293929190612567565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117d15760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b601180549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146118335760405162461bcd60e51b81526020600482018190526024820152600080516020612825833981519152604482015260640161089c565b6001600160a01b0381166118985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089c565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061195b82611c52565b80519091506000906001600160a01b0316336001600160a01b0316148061199257503361198784610831565b6001600160a01b0316145b806119a4575081516119a490336106ce565b905080611a195760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161089c565b846001600160a01b031682600001516001600160a01b031614611a8d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161089c565b6001600160a01b038416611af15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161089c565b611b0160008484600001516118f4565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611c0857611bbb816000541190565b15611c08578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c71826000541190565b611cd05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161089c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d1f579392505050565b5060001901611cd2565b610a34828260405180602001604052806000815250611fc2565b60006001600160a01b0384163b15611e9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8790339089908890889060040161262b565b602060405180830381600087803b158015611da157600080fd5b505af1925050508015611dd1575060408051601f3d908101601f19168201909252611dce918101906124bc565b60015b611e77573d808015611dff576040519150601f19603f3d011682016040523d82523d6000602084013e611e04565b606091505b508051611e6f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e95565b5060015b949350505050565b6060600980546107ae9061274c565b606081611ed05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611efa5780611ee481612787565b9150611ef39050600a836126d6565b9150611ed4565b60008167ffffffffffffffff811115611f1557611f156127f8565b6040519080825280601f01601f191660200182016040528015611f3f576020820181803683370190505b5090505b8415611e9557611f54600183612709565b9150611f61600a866127a2565b611f6c9060306126be565b60f81b818381518110611f8157611f816127e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fbb600a866126d6565b9450611f43565b6109d483838360016000546001600160a01b03851661202d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161089c565b8361208b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161089c565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156121e35761217b6000888488611d43565b6121e35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161089c565b60019182019101612128565b50600055611c4b565b8280546122049061274c565b90600052602060002090601f016020900481019282612226576000855561226c565b82601f1061223f57805160ff191683800117855561226c565b8280016001018555821561226c579182015b8281111561226c578251825591602001919060010190612251565b50610ee19291505b80821115610ee15760008155600101612274565b600067ffffffffffffffff808411156122a3576122a36127f8565b604051601f8501601f19908116603f011681019082821181831017156122cb576122cb6127f8565b816040528093508581528686860111156122e457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461231557600080fd5b919050565b8035801515811461231557600080fd5b60006020828403121561233c57600080fd5b611782826122fe565b6000806040838503121561235857600080fd5b612361836122fe565b915061236f602084016122fe565b90509250929050565b60008060006060848603121561238d57600080fd5b612396846122fe565b92506123a4602085016122fe565b9150604084013590509250925092565b600080600080608085870312156123ca57600080fd5b6123d3856122fe565b93506123e1602086016122fe565b925060408501359150606085013567ffffffffffffffff81111561240457600080fd5b8501601f8101871361241557600080fd5b61242487823560208401612288565b91505092959194509250565b6000806040838503121561244357600080fd5b61244c836122fe565b915061236f6020840161231a565b6000806040838503121561246d57600080fd5b612476836122fe565b946020939093013593505050565b60006020828403121561249657600080fd5b6117828261231a565b6000602082840312156124b157600080fd5b81356117828161280e565b6000602082840312156124ce57600080fd5b81516117828161280e565b6000602082840312156124eb57600080fd5b813567ffffffffffffffff81111561250257600080fd5b8201601f8101841361251357600080fd5b611e9584823560208401612288565b60006020828403121561253457600080fd5b5035919050565b60008151808452612553816020860160208601612720565b601f01601f19169290920160200192915050565b60008451602061257a8285838a01612720565b85519184019161258d8184848a01612720565b8554920191600090600181811c90808316806125aa57607f831692505b8583108114156125c857634e487b7160e01b85526022600452602485fd5b8080156125dc57600181146125ed5761261a565b60ff1985168852838801955061261a565b60008b81526020902060005b858110156126125781548a8201529084019088016125f9565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261265d608083018461253b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561269f57835183529284019291840191600101612683565b50909695505050505050565b602081526000611782602083018461253b565b600082198211156126d1576126d16127b6565b500190565b6000826126e5576126e56127cc565b500490565b6000816000190483118215151615612704576127046127b6565b500290565b60008282101561271b5761271b6127b6565b500390565b60005b8381101561273b578181015183820152602001612723565b838111156115b75750506000910152565b600181811c9082168061276057607f821691505b6020821081141561278157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279b5761279b6127b6565b5060010190565b6000826127b1576127b16127cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8457600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212204c01e80886b7aece1a28dd9aed33233d3c36d3c819d8d4c5863d89f6e2c4aeae64736f6c63430008070033

Deployed Bytecode Sourcemap

65093:4196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51931:372;;;;;;;;;;-1:-1:-1;51931:372:0;;;;;:::i;:::-;;:::i;:::-;;;7876:14:1;;7869:22;7851:41;;7839:2;7824:18;51931:372:0;;;;;;;;53817:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55388:214::-;;;;;;;;;;-1:-1:-1;55388:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6491:55:1;;;6473:74;;6461:2;6446:18;55388:214:0;6327:226:1;54909:413:0;;;;;;;;;;-1:-1:-1;54909:413:0;;;;;:::i;:::-;;:::i;:::-;;69076:100;;;;;;;;;;-1:-1:-1;69076:100:0;;;;;:::i;:::-;;:::i;68238:77::-;;;;;;;;;;-1:-1:-1;68238:77:0;;;;;:::i;:::-;;:::i;50180:108::-;;;;;;;;;;-1:-1:-1;50241:7:0;50268:12;50180:108;;;18132:25:1;;;18120:2;18105:18;50180:108:0;17986:177:1;68728:94:0;;;;;;;;;;-1:-1:-1;68728:94:0;;;;;:::i;:::-;;:::i;56264:162::-;;;;;;;;;;-1:-1:-1;56264:162:0;;;;;:::i;:::-;;:::i;50852:1007::-;;;;;;;;;;-1:-1:-1;50852:1007:0;;;;;:::i;:::-;;:::i;68506:98::-;;;;;;;;;;-1:-1:-1;68506:98:0;;;;;:::i;:::-;;:::i;66020:182::-;;;;;;;;;;;;;:::i;56497:177::-;;;;;;;;;;-1:-1:-1;56497:177:0;;;;;:::i;:::-;;:::i;67031:703::-;;;;;;;;;;-1:-1:-1;67031:703:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65703:35::-;;;;;;;;;;;;;;;;50365:187;;;;;;;;;;-1:-1:-1;50365:187:0;;;;;:::i;:::-;;:::i;68828:132::-;;;;;;;;;;-1:-1:-1;68828:132:0;;;;;:::i;:::-;;:::i;65819:27::-;;;;;;;;;;-1:-1:-1;65819:27:0;;;;;;;;;;;65329:33;;;;;;;;;;;;;:::i;65788:26::-;;;;;;;;;;-1:-1:-1;65788:26:0;;;;;;;;53626:124;;;;;;;;;;-1:-1:-1;53626:124:0;;;;;:::i;:::-;;:::i;52367:221::-;;;;;;;;;;-1:-1:-1;52367:221:0;;;;;:::i;:::-;;:::i;17470:148::-;;;;;;;;;;;;;:::i;68968:100::-;;;;;;;;;;-1:-1:-1;68968:100:0;;;;;:::i;:::-;;:::i;68410:90::-;;;;;;;;;;-1:-1:-1;68410:90:0;;;;;:::i;:::-;;:::i;16819:87::-;;;;;;;;;;-1:-1:-1;16892:6:0;;-1:-1:-1;;;;;16892:6:0;16819:87;;53986:104;;;;;;;;;;;;;:::i;65589:33::-;;;;;;;;;;;;;;;;66222:799;;;;;;:::i;:::-;;:::i;55674:288::-;;;;;;;;;;-1:-1:-1;55674:288:0;;;;;:::i;:::-;;:::i;65917:95::-;;;;;;;;;;-1:-1:-1;65917:95:0;;;;;:::i;:::-;;:::i;56745:355::-;;;;;;;;;;-1:-1:-1;56745:355:0;;;;;:::i;:::-;;:::i;68612:110::-;;;;;;;;;;-1:-1:-1;68612:110:0;;;;;:::i;:::-;;:::i;65663:29::-;;;;;;;;;;;;;;;;67742:490;;;;;;;;;;-1:-1:-1;67742:490:0;;;;;:::i;:::-;;:::i;65745:31::-;;;;;;;;;;;;;;;;68321:81;;;;;;;;;;-1:-1:-1;68321:81:0;;;;;:::i;:::-;;:::i;56033:164::-;;;;;;;;;;-1:-1:-1;56033:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;56154:25:0;;;56130:4;56154:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56033:164;17773:244;;;;;;;;;;-1:-1:-1;17773:244:0;;;;;:::i;:::-;;:::i;65629:27::-;;;;;;;;;;;;;;;;51931:372;52033:4;-1:-1:-1;;;;;;52070:40:0;;-1:-1:-1;;;52070:40:0;;:105;;-1:-1:-1;;;;;;;52127:48:0;;-1:-1:-1;;;52127:48:0;52070:105;:172;;;-1:-1:-1;;;;;;;52192:50:0;;-1:-1:-1;;;52192:50:0;52070:172;:225;;;-1:-1:-1;;;;;;;;;;25202:40:0;;;52259:36;52050:245;51931:372;-1:-1:-1;;51931:372:0:o;53817:100::-;53871:13;53904:5;53897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53817:100;:::o;55388:214::-;55456:7;55484:16;55492:7;57412:4;57446:12;-1:-1:-1;57436:22:0;57355:111;55484:16;55476:74;;;;-1:-1:-1;;;55476:74:0;;17774:2:1;55476:74:0;;;17756:21:1;17813:2;17793:18;;;17786:30;17852:34;17832:18;;;17825:62;-1:-1:-1;;;17903:18:1;;;17896:43;17956:19;;55476:74:0;;;;;;;;;-1:-1:-1;55570:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55570:24:0;;55388:214::o;54909:413::-;54982:13;54998:24;55014:7;54998:15;:24::i;:::-;54982:40;;55047:5;-1:-1:-1;;;;;55041:11:0;:2;-1:-1:-1;;;;;55041:11:0;;;55033:58;;;;-1:-1:-1;;;55033:58:0;;14616:2:1;55033:58:0;;;14598:21:1;14655:2;14635:18;;;14628:30;14694:34;14674:18;;;14667:62;-1:-1:-1;;;14745:18:1;;;14738:32;14787:19;;55033:58:0;14414:398:1;55033:58:0;11925:10;-1:-1:-1;;;;;55126:21:0;;;;:62;;-1:-1:-1;55151:37:0;55168:5;11925:10;56033:164;:::i;55151:37::-;55104:169;;;;-1:-1:-1;;;55104:169:0;;11110:2:1;55104:169:0;;;11092:21:1;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;11259:27;11239:18;;;11232:55;11304:19;;55104:169:0;10908:421:1;55104:169:0;55286:28;55295:2;55299:7;55308:5;55286:8;:28::i;:::-;54971:351;54909:413;;:::o;69076:100::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;69148:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69076:100:::0;:::o;68238:77::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68294:6:::1;:15:::0;;-1:-1:-1;;68294:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68238:77::o;68728:94::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68794:9:::1;:22:::0;68728:94::o;56264:162::-;56390:28;56400:4;56406:2;56410:7;56390:9;:28::i;50852:1007::-;50941:7;50977:16;50987:5;50977:9;:16::i;:::-;50969:5;:24;50961:71;;;;-1:-1:-1;;;50961:71:0;;8329:2:1;50961:71:0;;;8311:21:1;8368:2;8348:18;;;8341:30;8407:34;8387:18;;;8380:62;-1:-1:-1;;;8458:18:1;;;8451:32;8500:19;;50961:71:0;8127:398:1;50961:71:0;51043:22;50268:12;;;51043:22;;51306:466;51326:14;51322:1;:18;51306:466;;;51366:31;51400:14;;;:11;:14;;;;;;;;;51366:48;;;;;;;;;-1:-1:-1;;;;;51366:48:0;;;;;-1:-1:-1;;;51366:48:0;;;;;;;;;;;;51437:28;51433:111;;51510:14;;;-1:-1:-1;51433:111:0;51587:5;-1:-1:-1;;;;;51566:26:0;:17;-1:-1:-1;;;;;51566:26:0;;51562:195;;;51636:5;51621:11;:20;51617:85;;;-1:-1:-1;51677:1:0;-1:-1:-1;51670:8:0;;-1:-1:-1;;;51670:8:0;51617:85;51724:13;;;;;51562:195;-1:-1:-1;51342:3:0;;51306:466;;;-1:-1:-1;51795:56:0;;-1:-1:-1;;;51795:56:0;;16943:2:1;51795:56:0;;;16925:21:1;16982:2;16962:18;;;16955:30;17021:34;17001:18;;;16994:62;17092:16;17072:18;;;17065:44;17126:19;;51795:56:0;16741:410:1;68506:98:0;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68574:10:::1;:24:::0;68506:98::o;66020:182::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;66089:58:::1;::::0;66071:12:::1;::::0;66097:10:::1;::::0;66121:21:::1;::::0;66071:12;66089:58;66071:12;66089:58;66121:21;66097:10;66089:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66070:77;;;66166:7;66158:36;;;::::0;-1:-1:-1;;;66158:36:0;;15019:2:1;66158:36:0::1;::::0;::::1;15001:21:1::0;15058:2;15038:18;;;15031:30;15097:18;15077;;;15070:46;15133:18;;66158:36:0::1;14817:340:1::0;66158:36:0::1;66059:143;66020:182::o:0;56497:177::-;56627:39;56644:4;56650:2;56654:7;56627:39;;;;;;;;;;;;:16;:39::i;67031:703::-;67118:16;67152:23;67178:17;67188:6;67178:9;:17::i;:::-;67152:43;;67206:30;67253:15;67239:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67239:30:0;-1:-1:-1;67206:63:0;-1:-1:-1;67305:1:0;67280:22;67357:339;67382:15;67364;:33;:64;;;;;67419:9;;67401:14;:27;;67364:64;67357:339;;;67441:25;67469:23;67477:14;67469:7;:23::i;:::-;67441:51;;67532:6;-1:-1:-1;;;;;67511:27:0;:17;-1:-1:-1;;;;;67511:27:0;;67507:151;;;67592:14;67559:13;67573:15;67559:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;67625:17;;;;:::i;:::-;;;;67507:151;67668:16;;;;:::i;:::-;;;;67430:266;67357:339;;;-1:-1:-1;67713:13:0;;67031:703;-1:-1:-1;;;;67031:703:0:o;50365:187::-;50432:7;50268:12;;50460:5;:21;50452:69;;;;-1:-1:-1;;;50452:69:0;;10300:2:1;50452:69:0;;;10282:21:1;10339:2;10319:18;;;10312:30;10378:34;10358:18;;;10351:62;-1:-1:-1;;;10429:18:1;;;10422:33;10472:19;;50452:69:0;10098:399:1;50452:69:0;-1:-1:-1;50539:5:0;50365:187::o;68828:132::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68916:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;65329:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53626:124::-;53690:7;53717:20;53729:7;53717:11;:20::i;:::-;:25;;53626:124;-1:-1:-1;;53626:124:0:o;52367:221::-;52431:7;-1:-1:-1;;;;;52459:19:0;;52451:75;;;;-1:-1:-1;;;52451:75:0;;11536:2:1;52451:75:0;;;11518:21:1;11575:2;11555:18;;;11548:30;11614:34;11594:18;;;11587:62;-1:-1:-1;;;11665:18:1;;;11658:41;11716:19;;52451:75:0;11334:407:1;52451:75:0;-1:-1:-1;;;;;;52552:19:0;;;;;:12;:19;;;;;:27;;;;52367:221::o;17470:148::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;17561:6:::1;::::0;17540:40:::1;::::0;17577:1:::1;::::0;-1:-1:-1;;;;;17561:6:0::1;::::0;17540:40:::1;::::0;17577:1;;17540:40:::1;17591:6;:19:::0;;-1:-1:-1;;;;;;17591:19:0::1;::::0;;17470:148::o;68968:100::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;69040:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;68410:90::-:0;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68474:8:::1;:20:::0;68410:90::o;53986:104::-;54042:13;54075:7;54068:14;;;;;:::i;66222:799::-;66294:5;;66319:6;;;;66318:7;66310:43;;;;-1:-1:-1;;;66310:43:0;;12716:2:1;66310:43:0;;;12698:21:1;12755:2;12735:18;;;12728:30;12794:25;12774:18;;;12767:53;12837:18;;66310:43:0;12514:347:1;66310:43:0;66380:1;66372:5;:9;66364:68;;;;-1:-1:-1;;;66364:68:0;;8732:2:1;66364:68:0;;;8714:21:1;8771:2;8751:18;;;8744:30;8810:34;8790:18;;;8783:62;8881:16;8861:18;;;8854:44;8915:19;;66364:68:0;8530:410:1;66364:68:0;16892:6;;-1:-1:-1;;;;;16892:6:0;66447:10;:21;66443:463;;66485:11;66525:13;;66541:1;66525:17;;;;:::i;:::-;66517:5;66501:13;50241:7;50268:12;;50180:108;66501:13;:21;;;;:::i;:::-;:41;66500:117;;;;-1:-1:-1;66606:10:0;;66583;66565:29;;;;:17;:29;;;;;;:37;;66597:5;;66565:37;:::i;:::-;:51;;66500:117;66485:133;;66639:6;66635:112;;;66711:10;66673:1;66693:29;;;:17;:29;;;;;:38;;66673:1;;-1:-1:-1;66726:5:0;;66673:1;;66693:38;;66726:5;;66693:38;:::i;:::-;;;;-1:-1:-1;;66635:112:0;66784:12;66792:4;66784:5;:12;:::i;:::-;66771:9;:25;;66763:67;;;;-1:-1:-1;;;66763:67:0;;14258:2:1;66763:67:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336:31;14316:18;;;14309:59;14385:18;;66763:67:0;14056:353:1;66763:67:0;66862:8;;66853:5;:17;;66845:49;;;;-1:-1:-1;;;66845:49:0;;16595:2:1;66845:49:0;;;16577:21:1;16634:2;16614:18;;;16607:30;16673:21;16653:18;;;16646:49;16712:18;;66845:49:0;16393:343:1;66845:49:0;66470:436;66443:463;66951:9;;66942:5;66926:13;50241:7;50268:12;;50180:108;66926:13;:21;;;;:::i;:::-;:34;;66918:54;;;;-1:-1:-1;;;66918:54:0;;9147:2:1;66918:54:0;;;9129:21:1;9186:1;9166:18;;;9159:29;-1:-1:-1;;;9204:18:1;;;9197:37;9251:18;;66918:54:0;8945:330:1;66918:54:0;66985:28;66995:10;67007:5;66985:9;:28::i;55674:288::-;-1:-1:-1;;;;;55769:24:0;;11925:10;55769:24;;55761:63;;;;-1:-1:-1;;;55761:63:0;;13484:2:1;55761:63:0;;;13466:21:1;13523:2;13503:18;;;13496:30;13562:28;13542:18;;;13535:56;13608:18;;55761:63:0;13282:350:1;55761:63:0;11925:10;55837:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;55837:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;55837:53:0;;;;;;;;;;55906:48;;7851:41:1;;;55837:42:0;;11925:10;55906:48;;7824:18:1;55906:48:0;;;;;;;55674:288;;:::o;65917:95::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;65987:5:::1;:17:::0;65917:95::o;56745:355::-;56904:28;56914:4;56920:2;56924:7;56904:9;:28::i;:::-;56965:48;56988:4;56994:2;56998:7;57007:5;56965:22;:48::i;:::-;56943:149;;;;-1:-1:-1;;;56943:149:0;;15364:2:1;56943:149:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:49;15552:19;;56943:149:0;15162:415:1;56943:149:0;56745:355;;;;:::o;68612:110::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68686:13:::1;:30:::0;68612:110::o;67742:490::-;67841:13;67882:17;67890:8;57412:4;57446:12;-1:-1:-1;57436:22:0;57355:111;67882:17;67866:98;;;;-1:-1:-1;;;67866:98:0;;13068:2:1;67866:98:0;;;13050:21:1;13107:2;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13217:17;13197:18;;;13190:45;13252:19;;67866:98:0;12866:411:1;67866:98:0;67975:8;;;;;;;67971:64;;68010:17;68003:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67742:490;;;:::o;67971:64::-;68041:28;68072:10;:8;:10::i;:::-;68041:41;;68127:1;68102:14;68096:28;:32;:130;;;;;;;;;;;;;;;;;68164:14;68180:19;:8;:17;:19::i;:::-;68201:9;68147:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68096:130;68089:137;67742:490;-1:-1:-1;;;67742:490:0:o;68321:81::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;68379:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;68379:17:0;;::::1;::::0;;;::::1;::::0;;68321:81::o;17773:244::-;16892:6;;-1:-1:-1;;;;;16892:6:0;11925:10;17039:23;17031:68;;;;-1:-1:-1;;;17031:68:0;;12355:2:1;17031:68:0;;;12337:21:1;;;12374:18;;;12367:30;-1:-1:-1;;;;;;;;;;;12413:18:1;;;12406:62;12485:18;;17031:68:0;12153:356:1;17031:68:0;-1:-1:-1;;;;;17862:22:0;::::1;17854:73;;;::::0;-1:-1:-1;;;17854:73:0;;9482:2:1;17854:73:0::1;::::0;::::1;9464:21:1::0;9521:2;9501:18;;;9494:30;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:18:1;;;9604:36;9657:19;;17854:73:0::1;9280:402:1::0;17854:73:0::1;17964:6;::::0;17943:38:::1;::::0;-1:-1:-1;;;;;17943:38:0;;::::1;::::0;17964:6:::1;::::0;17943:38:::1;::::0;17964:6:::1;::::0;17943:38:::1;17992:6;:17:::0;;-1:-1:-1;;;;;;17992:17:0::1;-1:-1:-1::0;;;;;17992:17:0;;;::::1;::::0;;;::::1;::::0;;17773:244::o;62275:196::-;62390:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62390:29:0;-1:-1:-1;;;;;62390:29:0;;;;;;;;;62435:28;;62390:24;;62435:28;;;;;;;62275:196;;;:::o;60155:2002::-;60270:35;60308:20;60320:7;60308:11;:20::i;:::-;60383:18;;60270:58;;-1:-1:-1;60341:22:0;;-1:-1:-1;;;;;60367:34:0;11925:10;-1:-1:-1;;;;;60367:34:0;;:87;;;-1:-1:-1;11925:10:0;60418:20;60430:7;60418:11;:20::i;:::-;-1:-1:-1;;;;;60418:36:0;;60367:87;:154;;;-1:-1:-1;60488:18:0;;60471:50;;11925:10;56033:164;:::i;60471:50::-;60341:181;;60543:17;60535:80;;;;-1:-1:-1;;;60535:80:0;;13839:2:1;60535:80:0;;;13821:21:1;13878:2;13858:18;;;13851:30;13917:34;13897:18;;;13890:62;13988:20;13968:18;;;13961:48;14026:19;;60535:80:0;13637:414:1;60535:80:0;60658:4;-1:-1:-1;;;;;60636:26:0;:13;:18;;;-1:-1:-1;;;;;60636:26:0;;60628:77;;;;-1:-1:-1;;;60628:77:0;;11948:2:1;60628:77:0;;;11930:21:1;11987:2;11967:18;;;11960:30;12026:34;12006:18;;;11999:62;-1:-1:-1;;;12077:18:1;;;12070:36;12123:19;;60628:77:0;11746:402:1;60628:77:0;-1:-1:-1;;;;;60724:16:0;;60716:66;;;;-1:-1:-1;;;60716:66:0;;10704:2:1;60716:66:0;;;10686:21:1;10743:2;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;-1:-1:-1;;;10833:18:1;;;10826:35;10878:19;;60716:66:0;10502:401:1;60716:66:0;60903:49;60920:1;60924:7;60933:13;:18;;;60903:8;:49::i;:::-;-1:-1:-1;;;;;61248:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;61248:31:0;;;;;;;-1:-1:-1;;61248:31:0;;;;;;;61294:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;61294:29:0;;;;;;;;;;;;;61340:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;61385:61:0;;;;-1:-1:-1;;;61430:15:0;61385:61;;;;;;61720:11;;;61750:24;;;;;:29;61720:11;;61750:29;61746:295;;61818:20;61826:11;57412:4;57446:12;-1:-1:-1;57436:22:0;57355:111;61818:20;61814:212;;;61895:18;;;61863:24;;;:11;:24;;;;;;;;:50;;61978:28;;;;61936:70;;-1:-1:-1;;;61936:70:0;-1:-1:-1;;;;;;61936:70:0;;;-1:-1:-1;;;;;61863:50:0;;;61936:70;;;;;;;61814:212;61223:829;62088:7;62084:2;-1:-1:-1;;;;;62069:27:0;62078:4;-1:-1:-1;;;;;62069:27:0;;;;;;;;;;;62107:42;60259:1898;;60155:2002;;;:::o;53027:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;53130:16:0;53138:7;57412:4;57446:12;-1:-1:-1;57436:22:0;57355:111;53130:16;53122:71;;;;-1:-1:-1;;;53122:71:0;;9889:2:1;53122:71:0;;;9871:21:1;9928:2;9908:18;;;9901:30;9967:34;9947:18;;;9940:62;-1:-1:-1;;;10018:18:1;;;10011:40;10068:19;;53122:71:0;9687:406:1;53122:71:0;53251:7;53231:245;53298:31;53332:17;;;:11;:17;;;;;;;;;53298:51;;;;;;;;;-1:-1:-1;;;;;53298:51:0;;;;;-1:-1:-1;;;53298:51:0;;;;;;;;;;;;53372:28;53368:93;;53432:9;53027:537;-1:-1:-1;;;53027:537:0:o;53368:93::-;-1:-1:-1;;;53271:6:0;53231:245;;57474:104;57543:27;57553:2;57557:8;57543:27;;;;;;;;;;;;:9;:27::i;63036:804::-;63191:4;-1:-1:-1;;;;;63212:13:0;;1521:19;:23;63208:625;;63248:72;;-1:-1:-1;;;63248:72:0;;-1:-1:-1;;;;;63248:36:0;;;;;:72;;11925:10;;63299:4;;63305:7;;63314:5;;63248:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63248:72:0;;;;;;;;-1:-1:-1;;63248:72:0;;;;;;;;;;;;:::i;:::-;;;63244:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63494:13:0;;63490:273;;63537:61;;-1:-1:-1;;;63537:61:0;;15364:2:1;63537:61:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:49;15552:19;;63537:61:0;15162:415:1;63490:273:0;63713:6;63707:13;63698:6;63694:2;63690:15;63683:38;63244:534;-1:-1:-1;;;;;;63371:55:0;-1:-1:-1;;;63371:55:0;;-1:-1:-1;63364:62:0;;63208:625;-1:-1:-1;63817:4:0;63208:625;63036:804;;;;;;:::o;69182:104::-;69242:13;69271:9;69264:16;;;;;:::i;12528:723::-;12584:13;12805:10;12801:53;;-1:-1:-1;;12832:10:0;;;;;;;;;;;;-1:-1:-1;;;12832:10:0;;;;;12528:723::o;12801:53::-;12879:5;12864:12;12920:78;12927:9;;12920:78;;12953:8;;;;:::i;:::-;;-1:-1:-1;12976:10:0;;-1:-1:-1;12984:2:0;12976:10;;:::i;:::-;;;12920:78;;;13008:19;13040:6;13030:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13030:17:0;;13008:39;;13058:154;13065:10;;13058:154;;13092:11;13102:1;13092:11;;:::i;:::-;;-1:-1:-1;13161:10:0;13169:2;13161:5;:10;:::i;:::-;13148:24;;:2;:24;:::i;:::-;13135:39;;13118:6;13125;13118:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;13189:11:0;13198:2;13189:11;;:::i;:::-;;;13058:154;;57941:163;58064:32;58070:2;58074:8;58084:5;58091:4;58502:20;58525:12;-1:-1:-1;;;;;58556:16:0;;58548:62;;;;-1:-1:-1;;;58548:62:0;;15784:2:1;58548:62:0;;;15766:21:1;15823:2;15803:18;;;15796:30;15862:34;15842:18;;;15835:62;-1:-1:-1;;;15913:18:1;;;15906:31;15954:19;;58548:62:0;15582:397:1;58548:62:0;58629:13;58621:66;;;;-1:-1:-1;;;58621:66:0;;16186:2:1;58621:66:0;;;16168:21:1;16225:2;16205:18;;;16198:30;16264:34;16244:18;;;16237:62;-1:-1:-1;;;16315:18:1;;;16308:38;16363:19;;58621:66:0;15984:404:1;58621:66:0;-1:-1:-1;;;;;59039:16:0;;;;;;:12;:16;;;;;;;;:45;;59099:50;-1:-1:-1;;59039:45:0;;;;;;;;;;;;;59099:50;;;;;;;;;;;;;;59166:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;59216:66:0;;;;-1:-1:-1;;;59266:15:0;59216:66;;;;;;;59166:25;;59351:415;59371:8;59367:1;:12;59351:415;;;59410:38;;59435:12;;-1:-1:-1;;;;;59410:38:0;;;59427:1;;59410:38;;59427:1;;59410:38;59471:4;59467:249;;;59534:59;59565:1;59569:2;59573:12;59587:5;59534:22;:59::i;:::-;59500:196;;;;-1:-1:-1;;;59500:196:0;;15364:2:1;59500:196:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:49;15552:19;;59500:196:0;15162:415:1;59500:196:0;59736:14;;;;;59381:3;59351:415;;;-1:-1:-1;59782:12:0;:27;59833:60;56745:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:257::-;4364:3;4402:5;4396:12;4429:6;4424:3;4417:19;4445:63;4501:6;4494:4;4489:3;4485:14;4478:4;4471:5;4467:16;4445:63;:::i;:::-;4562:2;4541:15;-1:-1:-1;;4537:29:1;4528:39;;;;4569:4;4524:50;;4323:257;-1:-1:-1;;4323:257:1:o;4585:1527::-;4809:3;4847:6;4841:13;4873:4;4886:51;4930:6;4925:3;4920:2;4912:6;4908:15;4886:51;:::i;:::-;5000:13;;4959:16;;;;5022:55;5000:13;4959:16;5044:15;;;5022:55;:::i;:::-;5166:13;;5099:20;;;5139:1;;5226;5248:18;;;;5301;;;;5328:93;;5406:4;5396:8;5392:19;5380:31;;5328:93;5469:2;5459:8;5456:16;5436:18;5433:40;5430:167;;;-1:-1:-1;;;5496:33:1;;5552:4;5549:1;5542:15;5582:4;5503:3;5570:17;5430:167;5613:18;5640:110;;;;5764:1;5759:328;;;;5606:481;;5640:110;-1:-1:-1;;5675:24:1;;5661:39;;5720:20;;;;-1:-1:-1;5640:110:1;;5759:328;18241:1;18234:14;;;18278:4;18265:18;;5854:1;5868:169;5882:8;5879:1;5876:15;5868:169;;;5964:14;;5949:13;;;5942:37;6007:16;;;;5899:10;;5868:169;;;5872:3;;6068:8;6061:5;6057:20;6050:27;;5606:481;-1:-1:-1;6103:3:1;;4585:1527;-1:-1:-1;;;;;;;;;;;4585:1527:1:o;6558:511::-;6752:4;-1:-1:-1;;;;;6862:2:1;6854:6;6850:15;6839:9;6832:34;6914:2;6906:6;6902:15;6897:2;6886:9;6882:18;6875:43;;6954:6;6949:2;6938:9;6934:18;6927:34;6997:3;6992:2;6981:9;6977:18;6970:31;7018:45;7058:3;7047:9;7043:19;7035:6;7018:45;:::i;:::-;7010:53;6558:511;-1:-1:-1;;;;;;6558:511:1:o;7074:632::-;7245:2;7297:21;;;7367:13;;7270:18;;;7389:22;;;7216:4;;7245:2;7468:15;;;;7442:2;7427:18;;;7216:4;7511:169;7525:6;7522:1;7519:13;7511:169;;;7586:13;;7574:26;;7655:15;;;;7620:12;;;;7547:1;7540:9;7511:169;;;-1:-1:-1;7697:3:1;;7074:632;-1:-1:-1;;;;;;7074:632:1:o;7903:219::-;8052:2;8041:9;8034:21;8015:4;8072:44;8112:2;8101:9;8097:18;8089:6;8072:44;:::i;18294:128::-;18334:3;18365:1;18361:6;18358:1;18355:13;18352:39;;;18371:18;;:::i;:::-;-1:-1:-1;18407:9:1;;18294:128::o;18427:120::-;18467:1;18493;18483:35;;18498:18;;:::i;:::-;-1:-1:-1;18532:9:1;;18427:120::o;18552:168::-;18592:7;18658:1;18654;18650:6;18646:14;18643:1;18640:21;18635:1;18628:9;18621:17;18617:45;18614:71;;;18665:18;;:::i;:::-;-1:-1:-1;18705:9:1;;18552:168::o;18725:125::-;18765:4;18793:1;18790;18787:8;18784:34;;;18798:18;;:::i;:::-;-1:-1:-1;18835:9:1;;18725:125::o;18855:258::-;18927:1;18937:113;18951:6;18948:1;18945:13;18937:113;;;19027:11;;;19021:18;19008:11;;;19001:39;18973:2;18966:10;18937:113;;;19068:6;19065:1;19062:13;19059:48;;;-1:-1:-1;;19103:1:1;19085:16;;19078:27;18855:258::o;19118:380::-;19197:1;19193:12;;;;19240;;;19261:61;;19315:4;19307:6;19303:17;19293:27;;19261:61;19368:2;19360:6;19357:14;19337:18;19334:38;19331:161;;;19414:10;19409:3;19405:20;19402:1;19395:31;19449:4;19446:1;19439:15;19477:4;19474:1;19467:15;19331:161;;19118:380;;;:::o;19503:135::-;19542:3;-1:-1:-1;;19563:17:1;;19560:43;;;19583:18;;:::i;:::-;-1:-1:-1;19630:1:1;19619:13;;19503:135::o;19643:112::-;19675:1;19701;19691:35;;19706:18;;:::i;:::-;-1:-1:-1;19740:9:1;;19643:112::o;19760:127::-;19821:10;19816:3;19812:20;19809:1;19802:31;19852:4;19849:1;19842:15;19876:4;19873:1;19866:15;19892:127;19953:10;19948:3;19944:20;19941:1;19934:31;19984:4;19981:1;19974:15;20008:4;20005:1;19998:15;20024:127;20085:10;20080:3;20076:20;20073:1;20066:31;20116:4;20113:1;20106:15;20140:4;20137:1;20130:15;20156:127;20217:10;20212:3;20208:20;20205:1;20198:31;20248:4;20245:1;20238:15;20272:4;20269:1;20262:15;20288:131;-1:-1:-1;;;;;;20362:32:1;;20352:43;;20342:71;;20409:1;20406;20399:12

Swarm Source

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