ETH Price: $3,486.67 (+3.42%)
Gas: 4 Gwei

Token

Cyberfeminism by Amira (CBA)
 

Overview

Max Total Supply

330 CBA

Holders

181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xblurz.eth
Balance
2 CBA
0xf807f1d0ee1b4ad27c9581f6ad043686f957bbdd
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:
Cyberfeminism

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2022-12-04
*/

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

// SPDX-License-Identifier: MIT

// 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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev 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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement 
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev 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 contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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



pragma solidity ^0.8.0;





contract Cyberfeminism is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "";
  uint256  public  maxSupply = 330;
  uint256 public  maxPerTx = 2;
  uint256 public  price = 0.01 ether;
  bool public SaleActive = false;
  constructor(
  ) ERC721A("Cyberfeminism by Amira", "CBA") {
  }


    function mint(uint256 amount) payable public {
        require(SaleActive, "Public sale is not open");
        require(totalSupply() + amount < maxSupply + 1, "No more");
        require((price * amount) <= msg.value,"Incorrect ETH value sent");
        require(amount <= maxPerTx,"Max mints per transaction exceeded");
        _safeMint(msg.sender, amount);
    }

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

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, _tokenId.toString(), ".json"));
  }

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

  function setSaleActive(bool _SaleActive)
      external
      onlyOwner
  {
      SaleActive = _SaleActive;
  }


  function setPrice(uint256 _price)
      external
      onlyOwner
  {
      price = _price;
  }

  function setMaxPerTx(uint256 _limit)
      external
      onlyOwner
  {
      maxPerTx = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_SaleActive","type":"bool"}],"name":"setSaleActive","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000226565b5061014a600b556002600c55662386f26fc10000600d556000600e60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280601681526020017f437962657266656d696e69736d20627920416d697261000000000000000000008152506040518060400160405280600381526020017f43424100000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ef92919062000226565b5080600390805190602001906200010892919062000226565b50620001196200014f60201b60201c565b600081905550505062000141620001356200015860201b60201c565b6200016060201b60201c565b60016009819055506200033b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023490620002d6565b90600052602060002090601f016020900481019282620002585760008555620002a4565b82601f106200027357805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a357825182559160200191906001019062000286565b5b509050620002b39190620002b7565b5090565b5b80821115620002d2576000816000905550600101620002b8565b5090565b60006002820490506001821680620002ef57607f821691505b602082108114156200030657620003056200030c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61381b806200034b6000396000f3fe6080604052600436106101b75760003560e01c806391b7f5ed116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d5578063f1d2165f14610612578063f2fde38b1461063d578063f968adbe14610666576101b7565b8063c87b56dd14610542578063d547cfb71461057f578063d5abeb01146105aa576101b7565b8063a0712d68116100c6578063a0712d68146104ab578063a22cb465146104c7578063b88d4fde146104f0578063c6f6f21614610519576101b7565b806391b7f5ed1461042c57806395d89b4114610455578063a035b1fe14610480576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610384578063715018a6146103c1578063841718a6146103d85780638da5cb5b14610401576101b7565b806342842e0e146102f557806355f804b31461031e5780636352211e14610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a83565b610691565b6040516101f09190612ef1565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612f0c565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612b26565b610805565b6040516102589190612e8a565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a16565b610881565b005b34801561029657600080fd5b5061029f61098c565b6040516102ac919061306e565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612900565b6109a3565b005b3480156102ea57600080fd5b506102f36109b3565b005b34801561030157600080fd5b5061031c60048036038101906103179190612900565b610a91565b005b34801561032a57600080fd5b5061034560048036038101906103409190612add565b610ab1565b005b34801561035357600080fd5b5061036e60048036038101906103699190612b26565b610b47565b60405161037b9190612e8a565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612893565b610b5d565b6040516103b8919061306e565b60405180910390f35b3480156103cd57600080fd5b506103d6610c2d565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612a56565b610cb5565b005b34801561040d57600080fd5b50610416610d4e565b6040516104239190612e8a565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612b26565b610d78565b005b34801561046157600080fd5b5061046a610dfe565b6040516104779190612f0c565b60405180910390f35b34801561048c57600080fd5b50610495610e90565b6040516104a2919061306e565b60405180910390f35b6104c560048036038101906104c09190612b26565b610e96565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906129d6565b610fe9565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612953565b611161565b005b34801561052557600080fd5b50610540600480360381019061053b9190612b26565b6111dd565b005b34801561054e57600080fd5b5061056960048036038101906105649190612b26565b611263565b6040516105769190612f0c565b60405180910390f35b34801561058b57600080fd5b506105946112df565b6040516105a19190612f0c565b60405180910390f35b3480156105b657600080fd5b506105bf61136d565b6040516105cc919061306e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906128c0565b611373565b6040516106099190612ef1565b60405180910390f35b34801561061e57600080fd5b50610627611407565b6040516106349190612ef1565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190612893565b61141a565b005b34801561067257600080fd5b5061067b611512565b604051610688919061306e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b82611518565b5b9050919050565b6060600280546107829061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae9061333e565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611582565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088c82610b47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109136115d0565b73ffffffffffffffffffffffffffffffffffffffff161415801561094557506109438161093e6115d0565b611373565b155b1561097c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109878383836115d8565b505050565b600061099661168a565b6001546000540303905090565b6109ae838383611693565b505050565b6109bb6115d0565b73ffffffffffffffffffffffffffffffffffffffff166109d9610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612fce565b60405180910390fd5b60026009541415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061302e565b60405180910390fd5b6002600981905550610a873347611b49565b6001600981905550565b610aac83838360405180602001604052806000815250611161565b505050565b610ab96115d0565b73ffffffffffffffffffffffffffffffffffffffff16610ad7610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612fce565b60405180910390fd5b80600a9080519060200190610b43929190612664565b5050565b6000610b5282611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c356115d0565b73ffffffffffffffffffffffffffffffffffffffff16610c53610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090612fce565b60405180910390fd5b610cb36000611ecc565b565b610cbd6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610cdb610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612fce565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d806115d0565b73ffffffffffffffffffffffffffffffffffffffff16610d9e610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612fce565b60405180910390fd5b80600d8190555050565b606060038054610e0d9061333e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e399061333e565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b600d5481565b600e60009054906101000a900460ff16610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061304e565b60405180910390fd5b6001600b54610ef49190613173565b81610efd61098c565b610f079190613173565b10610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90612f2e565b60405180910390fd5b3481600d54610f5691906131fa565b1115610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061300e565b60405180910390fd5b600c54811115610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612fae565b60405180910390fd5b610fe63382611f92565b50565b610ff16115d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611056576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110636115d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111106115d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111559190612ef1565b60405180910390a35050565b61116c848484611693565b61118b8373ffffffffffffffffffffffffffffffffffffffff16611fb0565b80156111a0575061119e84848484611fd3565b155b156111d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6111e56115d0565b73ffffffffffffffffffffffffffffffffffffffff16611203610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612fce565b60405180910390fd5b80600c8190555050565b606061126e82611582565b6112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612fee565b60405180910390fd5b600a6112b883612133565b6040516020016112c9929190612e46565b6040516020818303038152906040529050919050565b600a80546112ec9061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546113189061333e565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6114226115d0565b73ffffffffffffffffffffffffffffffffffffffff16611440610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90612f4e565b60405180910390fd5b61150f81611ecc565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161158d61168a565b1115801561159c575060005482105b80156115c9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061169e82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611709576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661172a6115d0565b73ffffffffffffffffffffffffffffffffffffffff1614806117595750611758856117536115d0565b611373565b5b8061179e57506117676115d0565b73ffffffffffffffffffffffffffffffffffffffff1661178684610805565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184b8585856001612294565b611857600084876115d8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ad7576000548214611ad657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b42858585600161229a565b5050505050565b80471015611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390612f8e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bb290612e75565b60006040518083038185875af1925050503d8060008114611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b5050905080611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90612f6e565b60405180910390fd5b505050565b611c456126ea565b600082905080611c5361168a565b11158015611c62575060005481105b15611e95576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e9357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d77578092505050611ec7565b5b600115611e9257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8d578092505050611ec7565b611d78565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fac8282604051806020016040528060008152506122a0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff96115d0565b8786866040518563ffffffff1660e01b815260040161201b9493929190612ea5565b602060405180830381600087803b15801561203557600080fd5b505af192505050801561206657506040513d601f19601f820116820180604052508101906120639190612ab0565b60015b6120e0573d8060008114612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b506000815114156120d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561217b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228f565b600082905060005b600082146121ad578080612196906133a1565b915050600a826121a691906131c9565b9150612183565b60008167ffffffffffffffff8111156121c9576121c86134d7565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b5090505b60008514612288576001826122149190613254565b9150600a8561222391906133ea565b603061222f9190613173565b60f81b818381518110612245576122446134a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228191906131c9565b94506121ff565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612348576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123556000858386612294565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125168673ffffffffffffffffffffffffffffffffffffffff16611fb0565b156125dc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258b6000878480600101955087611fd3565b6125c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251c5782600054146125d757600080fd5b612648565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dd575b81600081905550505061265e600085838661229a565b50505050565b8280546126709061333e565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e6919061272d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561274657600081600090555060010161272e565b5090565b600061275d612758846130ae565b613089565b9050828152602081018484840111156127795761277861350b565b5b6127848482856132fc565b509392505050565b600061279f61279a846130df565b613089565b9050828152602081018484840111156127bb576127ba61350b565b5b6127c68482856132fc565b509392505050565b6000813590506127dd81613789565b92915050565b6000813590506127f2816137a0565b92915050565b600081359050612807816137b7565b92915050565b60008151905061281c816137b7565b92915050565b600082601f83011261283757612836613506565b5b813561284784826020860161274a565b91505092915050565b600082601f83011261286557612864613506565b5b813561287584826020860161278c565b91505092915050565b60008135905061288d816137ce565b92915050565b6000602082840312156128a9576128a8613515565b5b60006128b7848285016127ce565b91505092915050565b600080604083850312156128d7576128d6613515565b5b60006128e5858286016127ce565b92505060206128f6858286016127ce565b9150509250929050565b60008060006060848603121561291957612918613515565b5b6000612927868287016127ce565b9350506020612938868287016127ce565b92505060406129498682870161287e565b9150509250925092565b6000806000806080858703121561296d5761296c613515565b5b600061297b878288016127ce565b945050602061298c878288016127ce565b935050604061299d8782880161287e565b925050606085013567ffffffffffffffff8111156129be576129bd613510565b5b6129ca87828801612822565b91505092959194509250565b600080604083850312156129ed576129ec613515565b5b60006129fb858286016127ce565b9250506020612a0c858286016127e3565b9150509250929050565b60008060408385031215612a2d57612a2c613515565b5b6000612a3b858286016127ce565b9250506020612a4c8582860161287e565b9150509250929050565b600060208284031215612a6c57612a6b613515565b5b6000612a7a848285016127e3565b91505092915050565b600060208284031215612a9957612a98613515565b5b6000612aa7848285016127f8565b91505092915050565b600060208284031215612ac657612ac5613515565b5b6000612ad48482850161280d565b91505092915050565b600060208284031215612af357612af2613515565b5b600082013567ffffffffffffffff811115612b1157612b10613510565b5b612b1d84828501612850565b91505092915050565b600060208284031215612b3c57612b3b613515565b5b6000612b4a8482850161287e565b91505092915050565b612b5c81613288565b82525050565b612b6b8161329a565b82525050565b6000612b7c82613125565b612b86818561313b565b9350612b9681856020860161330b565b612b9f8161351a565b840191505092915050565b6000612bb582613130565b612bbf8185613157565b9350612bcf81856020860161330b565b612bd88161351a565b840191505092915050565b6000612bee82613130565b612bf88185613168565b9350612c0881856020860161330b565b80840191505092915050565b60008154612c218161333e565b612c2b8186613168565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c6085613110565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca0600783613157565b9150612cab8261352b565b602082019050919050565b6000612cc3602683613157565b9150612cce82613554565b604082019050919050565b6000612ce6603a83613157565b9150612cf1826135a3565b604082019050919050565b6000612d09601d83613157565b9150612d14826135f2565b602082019050919050565b6000612d2c602283613157565b9150612d378261361b565b604082019050919050565b6000612d4f600583613168565b9150612d5a8261366a565b600582019050919050565b6000612d72602083613157565b9150612d7d82613693565b602082019050919050565b6000612d95602f83613157565b9150612da0826136bc565b604082019050919050565b6000612db860008361314c565b9150612dc38261370b565b600082019050919050565b6000612ddb601883613157565b9150612de68261370e565b602082019050919050565b6000612dfe601f83613157565b9150612e0982613737565b602082019050919050565b6000612e21601783613157565b9150612e2c82613760565b602082019050919050565b612e40816132f2565b82525050565b6000612e528285612c14565b9150612e5e8284612be3565b9150612e6982612d42565b91508190509392505050565b6000612e8082612dab565b9150819050919050565b6000602082019050612e9f6000830184612b53565b92915050565b6000608082019050612eba6000830187612b53565b612ec76020830186612b53565b612ed46040830185612e37565b8181036060830152612ee68184612b71565b905095945050505050565b6000602082019050612f066000830184612b62565b92915050565b60006020820190508181036000830152612f268184612baa565b905092915050565b60006020820190508181036000830152612f4781612c93565b9050919050565b60006020820190508181036000830152612f6781612cb6565b9050919050565b60006020820190508181036000830152612f8781612cd9565b9050919050565b60006020820190508181036000830152612fa781612cfc565b9050919050565b60006020820190508181036000830152612fc781612d1f565b9050919050565b60006020820190508181036000830152612fe781612d65565b9050919050565b6000602082019050818103600083015261300781612d88565b9050919050565b6000602082019050818103600083015261302781612dce565b9050919050565b6000602082019050818103600083015261304781612df1565b9050919050565b6000602082019050818103600083015261306781612e14565b9050919050565b60006020820190506130836000830184612e37565b92915050565b60006130936130a4565b905061309f8282613370565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c9576130c86134d7565b5b6130d28261351a565b9050602081019050919050565b600067ffffffffffffffff8211156130fa576130f96134d7565b5b6131038261351a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317e826132f2565b9150613189836132f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd61341b565b5b828201905092915050565b60006131d4826132f2565b91506131df836132f2565b9250826131ef576131ee61344a565b5b828204905092915050565b6000613205826132f2565b9150613210836132f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132495761324861341b565b5b828202905092915050565b600061325f826132f2565b915061326a836132f2565b92508282101561327d5761327c61341b565b5b828203905092915050565b6000613293826132d2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000600282049050600182168061335657607f821691505b6020821081141561336a57613369613479565b5b50919050565b6133798261351a565b810181811067ffffffffffffffff82111715613398576133976134d7565b5b80604052505050565b60006133ac826132f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133df576133de61341b565b5b600182019050919050565b60006133f5826132f2565b9150613400836132f2565b9250826134105761340f61344a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b61379281613288565b811461379d57600080fd5b50565b6137a98161329a565b81146137b457600080fd5b50565b6137c0816132a6565b81146137cb57600080fd5b50565b6137d7816132f2565b81146137e257600080fd5b5056fea26469706673582212203fb22e802fcc216e0f37eafa0859486ebb6a4eca42005f09bc3bbfc528864a5364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806391b7f5ed116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d5578063f1d2165f14610612578063f2fde38b1461063d578063f968adbe14610666576101b7565b8063c87b56dd14610542578063d547cfb71461057f578063d5abeb01146105aa576101b7565b8063a0712d68116100c6578063a0712d68146104ab578063a22cb465146104c7578063b88d4fde146104f0578063c6f6f21614610519576101b7565b806391b7f5ed1461042c57806395d89b4114610455578063a035b1fe14610480576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610384578063715018a6146103c1578063841718a6146103d85780638da5cb5b14610401576101b7565b806342842e0e146102f557806355f804b31461031e5780636352211e14610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612a83565b610691565b6040516101f09190612ef1565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612f0c565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612b26565b610805565b6040516102589190612e8a565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a16565b610881565b005b34801561029657600080fd5b5061029f61098c565b6040516102ac919061306e565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612900565b6109a3565b005b3480156102ea57600080fd5b506102f36109b3565b005b34801561030157600080fd5b5061031c60048036038101906103179190612900565b610a91565b005b34801561032a57600080fd5b5061034560048036038101906103409190612add565b610ab1565b005b34801561035357600080fd5b5061036e60048036038101906103699190612b26565b610b47565b60405161037b9190612e8a565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612893565b610b5d565b6040516103b8919061306e565b60405180910390f35b3480156103cd57600080fd5b506103d6610c2d565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612a56565b610cb5565b005b34801561040d57600080fd5b50610416610d4e565b6040516104239190612e8a565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612b26565b610d78565b005b34801561046157600080fd5b5061046a610dfe565b6040516104779190612f0c565b60405180910390f35b34801561048c57600080fd5b50610495610e90565b6040516104a2919061306e565b60405180910390f35b6104c560048036038101906104c09190612b26565b610e96565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906129d6565b610fe9565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612953565b611161565b005b34801561052557600080fd5b50610540600480360381019061053b9190612b26565b6111dd565b005b34801561054e57600080fd5b5061056960048036038101906105649190612b26565b611263565b6040516105769190612f0c565b60405180910390f35b34801561058b57600080fd5b506105946112df565b6040516105a19190612f0c565b60405180910390f35b3480156105b657600080fd5b506105bf61136d565b6040516105cc919061306e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906128c0565b611373565b6040516106099190612ef1565b60405180910390f35b34801561061e57600080fd5b50610627611407565b6040516106349190612ef1565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190612893565b61141a565b005b34801561067257600080fd5b5061067b611512565b604051610688919061306e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b82611518565b5b9050919050565b6060600280546107829061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae9061333e565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611582565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088c82610b47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109136115d0565b73ffffffffffffffffffffffffffffffffffffffff161415801561094557506109438161093e6115d0565b611373565b155b1561097c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109878383836115d8565b505050565b600061099661168a565b6001546000540303905090565b6109ae838383611693565b505050565b6109bb6115d0565b73ffffffffffffffffffffffffffffffffffffffff166109d9610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612fce565b60405180910390fd5b60026009541415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061302e565b60405180910390fd5b6002600981905550610a873347611b49565b6001600981905550565b610aac83838360405180602001604052806000815250611161565b505050565b610ab96115d0565b73ffffffffffffffffffffffffffffffffffffffff16610ad7610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612fce565b60405180910390fd5b80600a9080519060200190610b43929190612664565b5050565b6000610b5282611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c356115d0565b73ffffffffffffffffffffffffffffffffffffffff16610c53610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090612fce565b60405180910390fd5b610cb36000611ecc565b565b610cbd6115d0565b73ffffffffffffffffffffffffffffffffffffffff16610cdb610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612fce565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d806115d0565b73ffffffffffffffffffffffffffffffffffffffff16610d9e610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612fce565b60405180910390fd5b80600d8190555050565b606060038054610e0d9061333e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e399061333e565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b600d5481565b600e60009054906101000a900460ff16610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061304e565b60405180910390fd5b6001600b54610ef49190613173565b81610efd61098c565b610f079190613173565b10610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90612f2e565b60405180910390fd5b3481600d54610f5691906131fa565b1115610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061300e565b60405180910390fd5b600c54811115610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612fae565b60405180910390fd5b610fe63382611f92565b50565b610ff16115d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611056576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110636115d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111106115d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111559190612ef1565b60405180910390a35050565b61116c848484611693565b61118b8373ffffffffffffffffffffffffffffffffffffffff16611fb0565b80156111a0575061119e84848484611fd3565b155b156111d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6111e56115d0565b73ffffffffffffffffffffffffffffffffffffffff16611203610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612fce565b60405180910390fd5b80600c8190555050565b606061126e82611582565b6112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612fee565b60405180910390fd5b600a6112b883612133565b6040516020016112c9929190612e46565b6040516020818303038152906040529050919050565b600a80546112ec9061333e565b80601f01602080910402602001604051908101604052809291908181526020018280546113189061333e565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6114226115d0565b73ffffffffffffffffffffffffffffffffffffffff16611440610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612fce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90612f4e565b60405180910390fd5b61150f81611ecc565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161158d61168a565b1115801561159c575060005482105b80156115c9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061169e82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611709576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661172a6115d0565b73ffffffffffffffffffffffffffffffffffffffff1614806117595750611758856117536115d0565b611373565b5b8061179e57506117676115d0565b73ffffffffffffffffffffffffffffffffffffffff1661178684610805565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184b8585856001612294565b611857600084876115d8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ad7576000548214611ad657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b42858585600161229a565b5050505050565b80471015611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390612f8e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bb290612e75565b60006040518083038185875af1925050503d8060008114611bef576040519150601f19603f3d011682016040523d82523d6000602084013e611bf4565b606091505b5050905080611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90612f6e565b60405180910390fd5b505050565b611c456126ea565b600082905080611c5361168a565b11158015611c62575060005481105b15611e95576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e9357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d77578092505050611ec7565b5b600115611e9257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8d578092505050611ec7565b611d78565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fac8282604051806020016040528060008152506122a0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff96115d0565b8786866040518563ffffffff1660e01b815260040161201b9493929190612ea5565b602060405180830381600087803b15801561203557600080fd5b505af192505050801561206657506040513d601f19601f820116820180604052508101906120639190612ab0565b60015b6120e0573d8060008114612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b506000815114156120d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561217b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228f565b600082905060005b600082146121ad578080612196906133a1565b915050600a826121a691906131c9565b9150612183565b60008167ffffffffffffffff8111156121c9576121c86134d7565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b5090505b60008514612288576001826122149190613254565b9150600a8561222391906133ea565b603061222f9190613173565b60f81b818381518110612245576122446134a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228191906131c9565b94506121ff565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612348576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123556000858386612294565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125168673ffffffffffffffffffffffffffffffffffffffff16611fb0565b156125dc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258b6000878480600101955087611fd3565b6125c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251c5782600054146125d757600080fd5b612648565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dd575b81600081905550505061265e600085838661229a565b50505050565b8280546126709061333e565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e6919061272d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561274657600081600090555060010161272e565b5090565b600061275d612758846130ae565b613089565b9050828152602081018484840111156127795761277861350b565b5b6127848482856132fc565b509392505050565b600061279f61279a846130df565b613089565b9050828152602081018484840111156127bb576127ba61350b565b5b6127c68482856132fc565b509392505050565b6000813590506127dd81613789565b92915050565b6000813590506127f2816137a0565b92915050565b600081359050612807816137b7565b92915050565b60008151905061281c816137b7565b92915050565b600082601f83011261283757612836613506565b5b813561284784826020860161274a565b91505092915050565b600082601f83011261286557612864613506565b5b813561287584826020860161278c565b91505092915050565b60008135905061288d816137ce565b92915050565b6000602082840312156128a9576128a8613515565b5b60006128b7848285016127ce565b91505092915050565b600080604083850312156128d7576128d6613515565b5b60006128e5858286016127ce565b92505060206128f6858286016127ce565b9150509250929050565b60008060006060848603121561291957612918613515565b5b6000612927868287016127ce565b9350506020612938868287016127ce565b92505060406129498682870161287e565b9150509250925092565b6000806000806080858703121561296d5761296c613515565b5b600061297b878288016127ce565b945050602061298c878288016127ce565b935050604061299d8782880161287e565b925050606085013567ffffffffffffffff8111156129be576129bd613510565b5b6129ca87828801612822565b91505092959194509250565b600080604083850312156129ed576129ec613515565b5b60006129fb858286016127ce565b9250506020612a0c858286016127e3565b9150509250929050565b60008060408385031215612a2d57612a2c613515565b5b6000612a3b858286016127ce565b9250506020612a4c8582860161287e565b9150509250929050565b600060208284031215612a6c57612a6b613515565b5b6000612a7a848285016127e3565b91505092915050565b600060208284031215612a9957612a98613515565b5b6000612aa7848285016127f8565b91505092915050565b600060208284031215612ac657612ac5613515565b5b6000612ad48482850161280d565b91505092915050565b600060208284031215612af357612af2613515565b5b600082013567ffffffffffffffff811115612b1157612b10613510565b5b612b1d84828501612850565b91505092915050565b600060208284031215612b3c57612b3b613515565b5b6000612b4a8482850161287e565b91505092915050565b612b5c81613288565b82525050565b612b6b8161329a565b82525050565b6000612b7c82613125565b612b86818561313b565b9350612b9681856020860161330b565b612b9f8161351a565b840191505092915050565b6000612bb582613130565b612bbf8185613157565b9350612bcf81856020860161330b565b612bd88161351a565b840191505092915050565b6000612bee82613130565b612bf88185613168565b9350612c0881856020860161330b565b80840191505092915050565b60008154612c218161333e565b612c2b8186613168565b94506001821660008114612c465760018114612c5757612c8a565b60ff19831686528186019350612c8a565b612c6085613110565b60005b83811015612c8257815481890152600182019150602081019050612c63565b838801955050505b50505092915050565b6000612ca0600783613157565b9150612cab8261352b565b602082019050919050565b6000612cc3602683613157565b9150612cce82613554565b604082019050919050565b6000612ce6603a83613157565b9150612cf1826135a3565b604082019050919050565b6000612d09601d83613157565b9150612d14826135f2565b602082019050919050565b6000612d2c602283613157565b9150612d378261361b565b604082019050919050565b6000612d4f600583613168565b9150612d5a8261366a565b600582019050919050565b6000612d72602083613157565b9150612d7d82613693565b602082019050919050565b6000612d95602f83613157565b9150612da0826136bc565b604082019050919050565b6000612db860008361314c565b9150612dc38261370b565b600082019050919050565b6000612ddb601883613157565b9150612de68261370e565b602082019050919050565b6000612dfe601f83613157565b9150612e0982613737565b602082019050919050565b6000612e21601783613157565b9150612e2c82613760565b602082019050919050565b612e40816132f2565b82525050565b6000612e528285612c14565b9150612e5e8284612be3565b9150612e6982612d42565b91508190509392505050565b6000612e8082612dab565b9150819050919050565b6000602082019050612e9f6000830184612b53565b92915050565b6000608082019050612eba6000830187612b53565b612ec76020830186612b53565b612ed46040830185612e37565b8181036060830152612ee68184612b71565b905095945050505050565b6000602082019050612f066000830184612b62565b92915050565b60006020820190508181036000830152612f268184612baa565b905092915050565b60006020820190508181036000830152612f4781612c93565b9050919050565b60006020820190508181036000830152612f6781612cb6565b9050919050565b60006020820190508181036000830152612f8781612cd9565b9050919050565b60006020820190508181036000830152612fa781612cfc565b9050919050565b60006020820190508181036000830152612fc781612d1f565b9050919050565b60006020820190508181036000830152612fe781612d65565b9050919050565b6000602082019050818103600083015261300781612d88565b9050919050565b6000602082019050818103600083015261302781612dce565b9050919050565b6000602082019050818103600083015261304781612df1565b9050919050565b6000602082019050818103600083015261306781612e14565b9050919050565b60006020820190506130836000830184612e37565b92915050565b60006130936130a4565b905061309f8282613370565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c9576130c86134d7565b5b6130d28261351a565b9050602081019050919050565b600067ffffffffffffffff8211156130fa576130f96134d7565b5b6131038261351a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317e826132f2565b9150613189836132f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd61341b565b5b828201905092915050565b60006131d4826132f2565b91506131df836132f2565b9250826131ef576131ee61344a565b5b828204905092915050565b6000613205826132f2565b9150613210836132f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132495761324861341b565b5b828202905092915050565b600061325f826132f2565b915061326a836132f2565b92508282101561327d5761327c61341b565b5b828203905092915050565b6000613293826132d2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332957808201518184015260208101905061330e565b83811115613338576000848401525b50505050565b6000600282049050600182168061335657607f821691505b6020821081141561336a57613369613479565b5b50919050565b6133798261351a565b810181811067ffffffffffffffff82111715613398576133976134d7565b5b80604052505050565b60006133ac826132f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133df576133de61341b565b5b600182019050919050565b60006133f5826132f2565b9150613400836132f2565b9250826134105761340f61344a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b61379281613288565b811461379d57600080fd5b50565b6137a98161329a565b81146137b457600080fd5b50565b6137c0816132a6565b81146137cb57600080fd5b50565b6137d7816132f2565b81146137e257600080fd5b5056fea26469706673582212203fb22e802fcc216e0f37eafa0859486ebb6a4eca42005f09bc3bbfc528864a5364736f6c63430008070033

Deployed Bytecode Sourcemap

48790:1810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29898:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34514:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34077:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29147:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35379:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49661:142;;;;;;;;;;;;;:::i;:::-;;35620:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49547:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32819:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30267:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7664:103;;;;;;;;;;;;;:::i;:::-;;50263:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7013:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50387:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33180:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49022:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49171:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34790:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35876:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50492:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49809:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48914:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48952:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35148:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49061:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7922:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48989:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29898:305;30000:4;30052:25;30037:40;;;:11;:40;;;;:105;;;;30109:33;30094:48;;;:11;:48;;;;30037:105;:158;;;;30159:36;30183:11;30159:23;:36::i;:::-;30037:158;30017:178;;29898:305;;;:::o;33011:100::-;33065:13;33098:5;33091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33011:100;:::o;34514:204::-;34582:7;34607:16;34615:7;34607;:16::i;:::-;34602:64;;34632:34;;;;;;;;;;;;;;34602:64;34686:15;:24;34702:7;34686:24;;;;;;;;;;;;;;;;;;;;;34679:31;;34514:204;;;:::o;34077:371::-;34150:13;34166:24;34182:7;34166:15;:24::i;:::-;34150:40;;34211:5;34205:11;;:2;:11;;;34201:48;;;34225:24;;;;;;;;;;;;;;34201:48;34282:5;34266:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34292:37;34309:5;34316:12;:10;:12::i;:::-;34292:16;:37::i;:::-;34291:38;34266:63;34262:138;;;34353:35;;;;;;;;;;;;;;34262:138;34412:28;34421:2;34425:7;34434:5;34412:8;:28::i;:::-;34139:309;34077:371;;:::o;29147:303::-;29191:7;29416:15;:13;:15::i;:::-;29401:12;;29385:13;;:28;:46;29378:53;;29147:303;:::o;35379:170::-;35513:28;35523:4;35529:2;35533:7;35513:9;:28::i;:::-;35379:170;;;:::o;49661:142::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1987:1:::1;2585:7;;:19;;2577:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1987:1;2718:7;:18;;;;49736:61:::2;49762:10;49775:21;49736:17;:61::i;:::-;1943:1:::1;2897:7;:22;;;;49661:142::o:0;35620:185::-;35758:39;35775:4;35781:2;35785:7;35758:39;;;;;;;;;;;;:16;:39::i;:::-;35620:185;;;:::o;49547:108::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49642:7:::1;49627:12;:22;;;;;;;;;;;;:::i;:::-;;49547:108:::0;:::o;32819:125::-;32883:7;32910:21;32923:7;32910:12;:21::i;:::-;:26;;;32903:33;;32819:125;;;:::o;30267:206::-;30331:7;30372:1;30355:19;;:5;:19;;;30351:60;;;30383:28;;;;;;;;;;;;;;30351:60;30437:12;:19;30450:5;30437:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30429:36;;30422:43;;30267:206;;;:::o;7664:103::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7729:30:::1;7756:1;7729:18;:30::i;:::-;7664:103::o:0;50263:116::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50362:11:::1;50349:10;;:24;;;;;;;;;;;;;;;;;;50263:116:::0;:::o;7013:87::-;7059:7;7086:6;;;;;;;;;;;7079:13;;7013:87;:::o;50387:99::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50474:6:::1;50466:5;:14;;;;50387:99:::0;:::o;33180:104::-;33236:13;33269:7;33262:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33180:104;:::o;49022:34::-;;;;:::o;49171:370::-;49235:10;;;;;;;;;;;49227:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49329:1;49317:9;;:13;;;;:::i;:::-;49308:6;49292:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;49284:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49381:9;49370:6;49362:5;;:14;;;;:::i;:::-;49361:29;;49353:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49447:8;;49437:6;:18;;49429:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49504:29;49514:10;49526:6;49504:9;:29::i;:::-;49171:370;:::o;34790:287::-;34901:12;:10;:12::i;:::-;34889:24;;:8;:24;;;34885:54;;;34922:17;;;;;;;;;;;;;;34885:54;34997:8;34952:18;:32;34971:12;:10;:12::i;:::-;34952:32;;;;;;;;;;;;;;;:42;34985:8;34952:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35050:8;35021:48;;35036:12;:10;:12::i;:::-;35021:48;;;35060:8;35021:48;;;;;;:::i;:::-;;;;;;;;34790:287;;:::o;35876:369::-;36043:28;36053:4;36059:2;36063:7;36043:9;:28::i;:::-;36086:15;:2;:13;;;:15::i;:::-;:76;;;;;36106:56;36137:4;36143:2;36147:7;36156:5;36106:30;:56::i;:::-;36105:57;36086:76;36082:156;;;36186:40;;;;;;;;;;;;;;36082:156;35876:369;;;;:::o;50492:105::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50585:6:::1;50574:8;:17;;;;50492:105:::0;:::o;49809:307::-;49905:13;49946:17;49954:8;49946:7;:17::i;:::-;49930:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50066:12;50080:19;:8;:17;:19::i;:::-;50049:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50035:75;;49809:307;;;:::o;48914:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48952:32::-;;;;:::o;35148:164::-;35245:4;35269:18;:25;35288:5;35269:25;;;;;;;;;;;;;;;:35;35295:8;35269:35;;;;;;;;;;;;;;;;;;;;;;;;;35262:42;;35148:164;;;;:::o;49061:30::-;;;;;;;;;;;;;:::o;7922:201::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8031:1:::1;8011:22;;:8;:22;;;;8003:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8087:28;8106:8;8087:18;:28::i;:::-;7922:201:::0;:::o;48989:28::-;;;;:::o;19797:157::-;19882:4;19921:25;19906:40;;;:11;:40;;;;19899:47;;19797:157;;;:::o;36500:174::-;36557:4;36600:7;36581:15;:13;:15::i;:::-;:26;;:53;;;;;36621:13;;36611:7;:23;36581:53;:85;;;;;36639:11;:20;36651:7;36639:20;;;;;;;;;;;:27;;;;;;;;;;;;36638:28;36581:85;36574:92;;36500:174;;;:::o;5737:98::-;5790:7;5817:10;5810:17;;5737:98;:::o;45726:196::-;45868:2;45841:15;:24;45857:7;45841:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45906:7;45902:2;45886:28;;45895:5;45886:28;;;;;;;;;;;;45726:196;;;:::o;28921:92::-;28977:7;29004:1;28997:8;;28921:92;:::o;40674:2130::-;40789:35;40827:21;40840:7;40827:12;:21::i;:::-;40789:59;;40887:4;40865:26;;:13;:18;;;:26;;;40861:67;;40900:28;;;;;;;;;;;;;;40861:67;40941:22;40983:4;40967:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41004:36;41021:4;41027:12;:10;:12::i;:::-;41004:16;:36::i;:::-;40967:73;:126;;;;41081:12;:10;:12::i;:::-;41057:36;;:20;41069:7;41057:11;:20::i;:::-;:36;;;40967:126;40941:153;;41112:17;41107:66;;41138:35;;;;;;;;;;;;;;41107:66;41202:1;41188:16;;:2;:16;;;41184:52;;;41213:23;;;;;;;;;;;;;;41184:52;41249:43;41271:4;41277:2;41281:7;41290:1;41249:21;:43::i;:::-;41357:35;41374:1;41378:7;41387:4;41357:8;:35::i;:::-;41718:1;41688:12;:18;41701:4;41688:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41762:1;41734:12;:16;41747:2;41734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41780:31;41814:11;:20;41826:7;41814:20;;;;;;;;;;;41780:54;;41865:2;41849:8;:13;;;:18;;;;;;;;;;;;;;;;;;41915:15;41882:8;:23;;;:49;;;;;;;;;;;;;;;;;;42183:19;42215:1;42205:7;:11;42183:33;;42231:31;42265:11;:24;42277:11;42265:24;;;;;;;;;;;42231:58;;42333:1;42308:27;;:8;:13;;;;;;;;;;;;:27;;;42304:384;;;42518:13;;42503:11;:28;42499:174;;42572:4;42556:8;:13;;;:20;;;;;;;;;;;;;;;;;;42625:13;:28;;;42599:8;:23;;;:54;;;;;;;;;;;;;;;;;;42499:174;42304:384;41663:1036;;;42735:7;42731:2;42716:27;;42725:4;42716:27;;;;;;;;;;;;42754:42;42775:4;42781:2;42785:7;42794:1;42754:20;:42::i;:::-;40778:2026;;40674:2130;;;:::o;10975:317::-;11090:6;11065:21;:31;;11057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11144:12;11162:9;:14;;11184:6;11162:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11143:52;;;11214:7;11206:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11046:246;10975:317;;:::o;31648:1109::-;31710:21;;:::i;:::-;31744:12;31759:7;31744:22;;31827:4;31808:15;:13;:15::i;:::-;:23;;:47;;;;;31842:13;;31835:4;:20;31808:47;31804:886;;;31876:31;31910:11;:17;31922:4;31910:17;;;;;;;;;;;31876:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31951:9;:16;;;31946:729;;32022:1;31996:28;;:9;:14;;;:28;;;31992:101;;32060:9;32053:16;;;;;;31992:101;32395:261;32402:4;32395:261;;;32435:6;;;;;;;;32480:11;:17;32492:4;32480:17;;;;;;;;;;;32468:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32554:1;32528:28;;:9;:14;;;:28;;;32524:109;;32596:9;32589:16;;;;;;32524:109;32395:261;;;31946:729;31857:833;31804:886;32718:31;;;;;;;;;;;;;;31648:1109;;;;:::o;8283:191::-;8357:16;8376:6;;;;;;;;;;;8357:25;;8402:8;8393:6;;:17;;;;;;;;;;;;;;;;;;8457:8;8426:40;;8447:8;8426:40;;;;;;;;;;;;8346:128;8283:191;:::o;36758:104::-;36827:27;36837:2;36841:8;36827:27;;;;;;;;;;;;:9;:27::i;:::-;36758:104;;:::o;9714:326::-;9774:4;10031:1;10009:7;:19;;;:23;10002:30;;9714:326;;;:::o;46414:667::-;46577:4;46614:2;46598:36;;;46635:12;:10;:12::i;:::-;46649:4;46655:7;46664:5;46598:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46594:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46849:1;46832:6;:13;:18;46828:235;;;46878:40;;;;;;;;;;;;;;46828:235;47021:6;47015:13;47006:6;47002:2;46998:15;46991:38;46594:480;46727:45;;;46717:55;;;:6;:55;;;;46710:62;;;46414:667;;;;;;:::o;3299:723::-;3355:13;3585:1;3576:5;:10;3572:53;;;3603:10;;;;;;;;;;;;;;;;;;;;;3572:53;3635:12;3650:5;3635:20;;3666:14;3691:78;3706:1;3698:4;:9;3691:78;;3724:8;;;;;:::i;:::-;;;;3755:2;3747:10;;;;;:::i;:::-;;;3691:78;;;3779:19;3811:6;3801:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3779:39;;3829:154;3845:1;3836:5;:10;3829:154;;3873:1;3863:11;;;;;:::i;:::-;;;3940:2;3932:5;:10;;;;:::i;:::-;3919:2;:24;;;;:::i;:::-;3906:39;;3889:6;3896;3889:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3969:2;3960:11;;;;;:::i;:::-;;;3829:154;;;4007:6;3993:21;;;;;3299:723;;;;:::o;47729:159::-;;;;;:::o;48547:158::-;;;;;:::o;37236:1751::-;37359:20;37382:13;;37359:36;;37424:1;37410:16;;:2;:16;;;37406:48;;;37435:19;;;;;;;;;;;;;;37406:48;37481:1;37469:8;:13;37465:44;;;37491:18;;;;;;;;;;;;;;37465:44;37522:61;37552:1;37556:2;37560:12;37574:8;37522:21;:61::i;:::-;37895:8;37860:12;:16;37873:2;37860:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37959:8;37919:12;:16;37932:2;37919:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38018:2;37985:11;:25;37997:12;37985:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38085:15;38035:11;:25;38047:12;38035:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38118:20;38141:12;38118:35;;38168:11;38197:8;38182:12;:23;38168:37;;38226:15;:2;:13;;;:15::i;:::-;38222:633;;;38262:314;38318:12;38314:2;38293:38;;38310:1;38293:38;;;;;;;;;;;;38359:69;38398:1;38402:2;38406:14;;;;;;38422:5;38359:30;:69::i;:::-;38354:174;;38464:40;;;;;;;;;;;;;;38354:174;38571:3;38555:12;:19;;38262:314;;38657:12;38640:13;;:29;38636:43;;38671:8;;;38636:43;38222:633;;;38720:120;38776:14;;;;;;38772:2;38751:40;;38768:1;38751:40;;;;;;;;;;;;38835:3;38819:12;:19;;38720:120;;38222:633;38885:12;38869:13;:28;;;;37835:1074;;38919:60;38948:1;38952:2;38956:12;38970:8;38919:20;:60::i;:::-;37348:1639;37236:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:400::-;11739:3;11760:84;11842:1;11837:3;11760:84;:::i;:::-;11753:91;;11853:93;11942:3;11853:93;:::i;:::-;11971:1;11966:3;11962:11;11955:18;;11579:400;;;:::o;11985:366::-;12127:3;12148:67;12212:2;12207:3;12148:67;:::i;:::-;12141:74;;12224:93;12313:3;12224:93;:::i;:::-;12342:2;12337:3;12333:12;12326:19;;11985:366;;;:::o;12357:::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:398::-;12888:3;12909:83;12990:1;12985:3;12909:83;:::i;:::-;12902:90;;13001:93;13090:3;13001:93;:::i;:::-;13119:1;13114:3;13110:11;13103:18;;12729:398;;;:::o;13133:366::-;13275:3;13296:67;13360:2;13355:3;13296:67;:::i;:::-;13289:74;;13372:93;13461:3;13372:93;:::i;:::-;13490:2;13485:3;13481:12;13474:19;;13133:366;;;:::o;13505:::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:118::-;14336:24;14354:5;14336:24;:::i;:::-;14331:3;14324:37;14249:118;;:::o;14373:695::-;14651:3;14673:92;14761:3;14752:6;14673:92;:::i;:::-;14666:99;;14782:95;14873:3;14864:6;14782:95;:::i;:::-;14775:102;;14894:148;15038:3;14894:148;:::i;:::-;14887:155;;15059:3;15052:10;;14373:695;;;;;:::o;15074:379::-;15258:3;15280:147;15423:3;15280:147;:::i;:::-;15273:154;;15444:3;15437:10;;15074:379;;;:::o;15459:222::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15603:71;15671:1;15660:9;15656:17;15647:6;15603:71;:::i;:::-;15459:222;;;;:::o;15687:640::-;15882:4;15920:3;15909:9;15905:19;15897:27;;15934:71;16002:1;15991:9;15987:17;15978:6;15934:71;:::i;:::-;16015:72;16083:2;16072:9;16068:18;16059:6;16015:72;:::i;:::-;16097;16165:2;16154:9;16150:18;16141:6;16097:72;:::i;:::-;16216:9;16210:4;16206:20;16201:2;16190:9;16186:18;16179:48;16244:76;16315:4;16306:6;16244:76;:::i;:::-;16236:84;;15687:640;;;;;;;:::o;16333:210::-;16420:4;16458:2;16447:9;16443:18;16435:26;;16471:65;16533:1;16522:9;16518:17;16509:6;16471:65;:::i;:::-;16333:210;;;;:::o;16549:313::-;16662:4;16700:2;16689:9;16685:18;16677:26;;16749:9;16743:4;16739:20;16735:1;16724:9;16720:17;16713:47;16777:78;16850:4;16841:6;16777:78;:::i;:::-;16769:86;;16549:313;;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:::-;20434:4;20472:2;20461:9;20457:18;20449:26;;20521:9;20515:4;20511:20;20507:1;20496:9;20492:17;20485:47;20549:131;20675:4;20549:131;:::i;:::-;20541:139;;20268:419;;;:::o;20693:::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:222::-;21211:4;21249:2;21238:9;21234:18;21226:26;;21262:71;21330:1;21319:9;21315:17;21306:6;21262:71;:::i;:::-;21118:222;;;;:::o;21346:129::-;21380:6;21407:20;;:::i;:::-;21397:30;;21436:33;21464:4;21456:6;21436:33;:::i;:::-;21346:129;;;:::o;21481:75::-;21514:6;21547:2;21541:9;21531:19;;21481:75;:::o;21562:307::-;21623:4;21713:18;21705:6;21702:30;21699:56;;;21735:18;;:::i;:::-;21699:56;21773:29;21795:6;21773:29;:::i;:::-;21765:37;;21857:4;21851;21847:15;21839:23;;21562:307;;;:::o;21875:308::-;21937:4;22027:18;22019:6;22016:30;22013:56;;;22049:18;;:::i;:::-;22013:56;22087:29;22109:6;22087:29;:::i;:::-;22079:37;;22171:4;22165;22161:15;22153:23;;21875:308;;;:::o;22189:141::-;22238:4;22261:3;22253:11;;22284:3;22281:1;22274:14;22318:4;22315:1;22305:18;22297:26;;22189:141;;;:::o;22336:98::-;22387:6;22421:5;22415:12;22405:22;;22336:98;;;:::o;22440:99::-;22492:6;22526:5;22520:12;22510:22;;22440:99;;;:::o;22545:168::-;22628:11;22662:6;22657:3;22650:19;22702:4;22697:3;22693:14;22678:29;;22545:168;;;;:::o;22719:147::-;22820:11;22857:3;22842:18;;22719:147;;;;:::o;22872:169::-;22956:11;22990:6;22985:3;22978:19;23030:4;23025:3;23021:14;23006:29;;22872:169;;;;:::o;23047:148::-;23149:11;23186:3;23171:18;;23047:148;;;;:::o;23201:305::-;23241:3;23260:20;23278:1;23260:20;:::i;:::-;23255:25;;23294:20;23312:1;23294:20;:::i;:::-;23289:25;;23448:1;23380:66;23376:74;23373:1;23370:81;23367:107;;;23454:18;;:::i;:::-;23367:107;23498:1;23495;23491:9;23484:16;;23201:305;;;;:::o;23512:185::-;23552:1;23569:20;23587:1;23569:20;:::i;:::-;23564:25;;23603:20;23621:1;23603:20;:::i;:::-;23598:25;;23642:1;23632:35;;23647:18;;:::i;:::-;23632:35;23689:1;23686;23682:9;23677:14;;23512:185;;;;:::o;23703:348::-;23743:7;23766:20;23784:1;23766:20;:::i;:::-;23761:25;;23800:20;23818:1;23800:20;:::i;:::-;23795:25;;23988:1;23920:66;23916:74;23913:1;23910:81;23905:1;23898:9;23891:17;23887:105;23884:131;;;23995:18;;:::i;:::-;23884:131;24043:1;24040;24036:9;24025:20;;23703:348;;;;:::o;24057:191::-;24097:4;24117:20;24135:1;24117:20;:::i;:::-;24112:25;;24151:20;24169:1;24151:20;:::i;:::-;24146:25;;24190:1;24187;24184:8;24181:34;;;24195:18;;:::i;:::-;24181:34;24240:1;24237;24233:9;24225:17;;24057:191;;;;:::o;24254:96::-;24291:7;24320:24;24338:5;24320:24;:::i;:::-;24309:35;;24254:96;;;:::o;24356:90::-;24390:7;24433:5;24426:13;24419:21;24408:32;;24356:90;;;:::o;24452:149::-;24488:7;24528:66;24521:5;24517:78;24506:89;;24452:149;;;:::o;24607:126::-;24644:7;24684:42;24677:5;24673:54;24662:65;;24607:126;;;:::o;24739:77::-;24776:7;24805:5;24794:16;;24739:77;;;:::o;24822:154::-;24906:6;24901:3;24896;24883:30;24968:1;24959:6;24954:3;24950:16;24943:27;24822:154;;;:::o;24982:307::-;25050:1;25060:113;25074:6;25071:1;25068:13;25060:113;;;25159:1;25154:3;25150:11;25144:18;25140:1;25135:3;25131:11;25124:39;25096:2;25093:1;25089:10;25084:15;;25060:113;;;25191:6;25188:1;25185:13;25182:101;;;25271:1;25262:6;25257:3;25253:16;25246:27;25182:101;25031:258;24982:307;;;:::o;25295:320::-;25339:6;25376:1;25370:4;25366:12;25356:22;;25423:1;25417:4;25413:12;25444:18;25434:81;;25500:4;25492:6;25488:17;25478:27;;25434:81;25562:2;25554:6;25551:14;25531:18;25528:38;25525:84;;;25581:18;;:::i;:::-;25525:84;25346:269;25295:320;;;:::o;25621:281::-;25704:27;25726:4;25704:27;:::i;:::-;25696:6;25692:40;25834:6;25822:10;25819:22;25798:18;25786:10;25783:34;25780:62;25777:88;;;25845:18;;:::i;:::-;25777:88;25885:10;25881:2;25874:22;25664:238;25621:281;;:::o;25908:233::-;25947:3;25970:24;25988:5;25970:24;:::i;:::-;25961:33;;26016:66;26009:5;26006:77;26003:103;;;26086:18;;:::i;:::-;26003:103;26133:1;26126:5;26122:13;26115:20;;25908:233;;;:::o;26147:176::-;26179:1;26196:20;26214:1;26196:20;:::i;:::-;26191:25;;26230:20;26248:1;26230:20;:::i;:::-;26225:25;;26269:1;26259:35;;26274:18;;:::i;:::-;26259:35;26315:1;26312;26308:9;26303:14;;26147:176;;;;:::o;26329:180::-;26377:77;26374:1;26367:88;26474:4;26471:1;26464:15;26498:4;26495:1;26488:15;26515:180;26563:77;26560:1;26553:88;26660:4;26657:1;26650:15;26684:4;26681:1;26674:15;26701:180;26749:77;26746:1;26739:88;26846:4;26843:1;26836:15;26870:4;26867:1;26860:15;26887:180;26935:77;26932:1;26925:88;27032:4;27029:1;27022:15;27056:4;27053:1;27046:15;27073:180;27121:77;27118:1;27111:88;27218:4;27215:1;27208:15;27242:4;27239:1;27232:15;27259:117;27368:1;27365;27358:12;27382:117;27491:1;27488;27481:12;27505:117;27614:1;27611;27604:12;27628:117;27737:1;27734;27727:12;27751:102;27792:6;27843:2;27839:7;27834:2;27827:5;27823:14;27819:28;27809:38;;27751:102;;;:::o;27859:157::-;27999:9;27995:1;27987:6;27983:14;27976:33;27859:157;:::o;28022:225::-;28162:34;28158:1;28150:6;28146:14;28139:58;28231:8;28226:2;28218:6;28214:15;28207:33;28022:225;:::o;28253:245::-;28393:34;28389:1;28381:6;28377:14;28370:58;28462:28;28457:2;28449:6;28445:15;28438:53;28253:245;:::o;28504:179::-;28644:31;28640:1;28632:6;28628:14;28621:55;28504:179;:::o;28689:221::-;28829:34;28825:1;28817:6;28813:14;28806:58;28898:4;28893:2;28885:6;28881:15;28874:29;28689:221;:::o;28916:155::-;29056:7;29052:1;29044:6;29040:14;29033:31;28916:155;:::o;29077:182::-;29217:34;29213:1;29205:6;29201:14;29194:58;29077:182;:::o;29265:234::-;29405:34;29401:1;29393:6;29389:14;29382:58;29474:17;29469:2;29461:6;29457:15;29450:42;29265:234;:::o;29505:114::-;;:::o;29625:174::-;29765:26;29761:1;29753:6;29749:14;29742:50;29625:174;:::o;29805:181::-;29945:33;29941:1;29933:6;29929:14;29922:57;29805:181;:::o;29992:173::-;30132:25;30128:1;30120:6;30116:14;30109:49;29992:173;:::o;30171:122::-;30244:24;30262:5;30244:24;:::i;:::-;30237:5;30234:35;30224:63;;30283:1;30280;30273:12;30224:63;30171:122;:::o;30299:116::-;30369:21;30384:5;30369:21;:::i;:::-;30362:5;30359:32;30349:60;;30405:1;30402;30395:12;30349:60;30299:116;:::o;30421:120::-;30493:23;30510:5;30493:23;:::i;:::-;30486:5;30483:34;30473:62;;30531:1;30528;30521:12;30473:62;30421:120;:::o;30547:122::-;30620:24;30638:5;30620:24;:::i;:::-;30613:5;30610:35;30600:63;;30659:1;30656;30649:12;30600:63;30547:122;:::o

Swarm Source

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