ETH Price: $3,468.79 (+4.13%)
Gas: 4 Gwei

Token

Saudi Frens (SFRENS)
 

Overview

Max Total Supply

3,300 SFRENS

Holders

308

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 SFRENS
0x731890c6345cc76a20c38849737896501e419bb6
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:
SaudiFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

// 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: erc721a/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 0;
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        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 (safe && 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 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 This is 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/SaudiFrens.sol


pragma solidity ^0.8.4;

////(((///////((((((((((/////////////(((////(((/////////////((((////////////////
////(((///////((((((((((/////////////(((////(((/////////////((((////////////////
///////(((////(((//////////(((((((//////////////////////////////////////////////
//////////((((//////////(((///((((//////((((///(((//////////////////////////////
//////////////////////////////////////////////////((((//////////(((/////////////
//////////////////////////////////////////////////((((//////////(((/////////////
////////////////////////////////////////////////////////////////////////////////
//////////((((/////////////(((%%%%   %%%    %%%   %%%%//////////(((/////////////
///////(((///////(((///////%%%    %%%   %%%%   %%%    %%%(((//////////////(((///
///////(((///////(((///////%%%    %%%   %%%%   %%%    %%%(((//////////////(((///
////////////////////    %%%   %%%%   %%%    %%%   %%%%   %%%    ////////////////
//////////((((///(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//////////((((((
//////////((((///(((%%%%   %%%    %%%   %%%%   %%%    %%%   %%%%///(((//////////
//////////((((///(((%%%%   %%%    %%%   %%%%   %%%    %%%   %%%%///(((//////////
//////////////(((%%%    ********************///*****************@@@///////((((((
//////////////%%%   %%%%**********@@@@@@@@@@@@@@@@****@@@@@@@@@@@@@@@@//////////
//////////%%%%   @@@@@@@@@@@@@@@@@@@@%%%,,,,%%%@@@@@@@@@@%%%,,,,%%%@@@//////////
//////////%%%%   @@@@@@@@@@@@@@@@@@@@%%%,,,,%%%@@@@@@@@@@%%%,,,,%%%@@@//////////
///////(((    %%%   **************@@@,,,%%%%,,,@@@////@@@,,,%%%%,,,@@@//////////
//////////%%%%   %%%**************@@@@@@@@@@@@@@@@****@@@@@@@@@@@@@@@@//////////
//////////    %%%   *******%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@@////(((///
//////////    %%%   *******%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@@////(((///
//////////%%%%   %%%****%%%////////////////////////////////////////@@@////(((///
//////////    %%%   ****%%%///&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@//////////
////(((///%%%%   %%%**********/////////////////////////////////////@@@////((((((
////(((///%%%%   %%%**********/////////////////////////////////////@@@////((((((
///////%%%    %%%   ****************************************@@@@@@@//////////(((
///////   %%%%      @@@@@@@,,,@@@@@@@@@@@@@@@@@@@@,,,,@@@@@@/////////////////(((
///////%%%    %%%@@@@@@@@@@@@@,,,,@@@@@@@@@@@@@,,,@@@@@@@@@@@@@@////////////////
///////%%%    %%%@@@@@@@@@@@@@,,,,@@@@@@@@@@@@@,,,@@@@@@@@@@@@@@////////////////
////(((   %%%%   @@@****@@@@@@@@@@,,,,,,,,,,,,,@@@@@@@@@@,,,@@@@//////////(((///
///////%%%    %%%   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@////////////////////



contract SaudiFrens is ERC721A, Ownable {
    uint256 public MAX_SUPPLY = 3333;
    uint256 public RESERVE_SUPPLY = 333;
    uint256 public REWARD_SUPPLY = 33;
    bool private isPublicSaleLive = false;
    bool private reserveMinted = false;

    struct Sacrifice {
        uint256 sacrificedFren;
        address killer;
    }
    Sacrifice[] public sacrifices;

    string public baseURI = "ipfs://QmcFTWmMCNs1tNtQ5tqdUm5esVWT3QiERb2aftMRmU3phi/";
    string public contractURI;

    constructor() ERC721A("Saudi Frens", "SFRENS") {}

    function SacrificeFren(uint256 tokenId) public {
        require(msg.sender == ownerOf(tokenId), "That is not your fren to sacrifice!");
        Sacrifice memory sacrifice = Sacrifice(tokenId, msg.sender);
        sacrifices.push(sacrifice);
        super._burn(tokenId);
    }

    function getAllEverMinted() view public returns(uint256) {
        return totalSupply() + sacrifices.length;
    }

    function mint(uint256 _quantity) external {
        require((balanceOf(msg.sender) + _quantity) < 11, "You already have enough fren!");
        require(isPublicSaleLive && reserveMinted, "Public sale not live yet fren!");
        require(getAllEverMinted() + _quantity <= (MAX_SUPPLY - REWARD_SUPPLY), "Not enough frens left!");
        _safeMint(msg.sender, _quantity);
    }

    function mintReserve() external onlyOwner {
        require(!reserveMinted, "The reserved supply is already minted!");
        reserveMinted = true;
        _safeMint(msg.sender, RESERVE_SUPPLY);
    }

    function mintRewards() external onlyOwner {
        require(getAllEverMinted() == MAX_SUPPLY - REWARD_SUPPLY, "Not all public frens have been minted yet!");
        _safeMint(msg.sender, REWARD_SUPPLY);
    }

    function setPublicSale(bool _isLive) external onlyOwner {
        require(reserveMinted, "Mint the reserved amount first!");
        isPublicSaleLive = _isLive;
    }

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

    function setBaseURI(string calldata __baseURI) public onlyOwner {
        baseURI = __baseURI;
    }

    function setContractURI(string calldata _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

    function getIsPublicSaleLive() view external returns(bool isSaleLive_) {
        return isPublicSaleLive;
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"SacrificeFren","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllEverMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleLive","outputs":[{"internalType":"bool","name":"isSaleLive_","type":"bool"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sacrifices","outputs":[{"internalType":"uint256","name":"sacrificedFren","type":"uint256"},{"internalType":"address","name":"killer","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isLive","type":"bool"}],"name":"setPublicSale","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"}]

6080604052610d0560095561014d600a556021600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003f7260369139600e90805190602001906200007c9291906200023a565b503480156200008a57600080fd5b506040518060400160405280600b81526020017f5361756469204672656e730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534652454e53000000000000000000000000000000000000000000000000000081525081600290805190602001906200010f9291906200023a565b508060039080519060200190620001289291906200023a565b50620001396200016760201b60201c565b600081905550505062000161620001556200016c60201b60201c565b6200017460201b60201c565b6200034f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024890620002ea565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600060028204905060018216806200030357607f821691505b602082108114156200031a576200031962000320565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c13806200035f6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806373e40ed41161010f578063a22cb465116100a2578063d185ad9411610071578063d185ad941461055a578063e8a3d48514610578578063e985e9c514610596578063f2fde38b146105c6576101f0565b8063a22cb465146104d4578063aa66797b146104f0578063b88d4fde1461050e578063c87b56dd1461052a576101f0565b80638da5cb5b116100de5780638da5cb5b14610460578063938e3d7b1461047e57806395d89b411461049a578063a0712d68146104b8576101f0565b806373e40ed4146103e95780637923fcc814610407578063890ac366146104385780638c7b44d814610442576101f0565b806342842e0e116101875780636352211e116101565780636352211e146103615780636c0360eb1461039157806370a08231146103af578063715018a6146103df576101f0565b806342842e0e146102f157806355f804b31461030d5780635aca1bb6146103295780635cb8ecbb14610345576101f0565b806318160ddd116101c357806318160ddd1461028f578063234cb051146102ad57806323b872dd146102b757806332cb6b0c146102d3576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a919061306c565b6105e2565b60405161021c91906133d6565b60405180910390f35b61022d6106c4565b60405161023a91906133f1565b60405180910390f35b61025d60048036038101906102589190613113565b610756565b60405161026a919061336f565b60405180910390f35b61028d60048036038101906102889190612fff565b6107d2565b005b6102976108dd565b6040516102a49190613533565b60405180910390f35b6102b56108f4565b005b6102d160048036038101906102cc9190612ee9565b6109d6565b005b6102db6109e6565b6040516102e89190613533565b60405180910390f35b61030b60048036038101906103069190612ee9565b6109ec565b005b610327600480360381019061032291906130c6565b610a0c565b005b610343600480360381019061033e919061303f565b610a9e565b005b61035f600480360381019061035a9190613113565b610b86565b005b61037b60048036038101906103769190613113565b610cb7565b604051610388919061336f565b60405180910390f35b610399610ccd565b6040516103a691906133f1565b60405180910390f35b6103c960048036038101906103c49190612e7c565b610d5b565b6040516103d69190613533565b60405180910390f35b6103e7610e2b565b005b6103f1610eb3565b6040516103fe9190613533565b60405180910390f35b610421600480360381019061041c9190613113565b610eb9565b60405161042f92919061354e565b60405180910390f35b610440610f0d565b005b61044a611002565b6040516104579190613533565b60405180910390f35b610468611021565b604051610475919061336f565b60405180910390f35b610498600480360381019061049391906130c6565b61104b565b005b6104a26110dd565b6040516104af91906133f1565b60405180910390f35b6104d260048036038101906104cd9190613113565b61116f565b005b6104ee60048036038101906104e99190612fbf565b61129d565b005b6104f8611415565b6040516105059190613533565b60405180910390f35b61052860048036038101906105239190612f3c565b61141b565b005b610544600480360381019061053f9190613113565b611497565b60405161055191906133f1565b60405180910390f35b610562611536565b60405161056f91906133d6565b60405180910390f35b61058061154d565b60405161058d91906133f1565b60405180910390f35b6105b060048036038101906105ab9190612ea9565b6115db565b6040516105bd91906133d6565b60405180910390f35b6105e060048036038101906105db9190612e7c565b61166f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bd57506106bc82611767565b5b9050919050565b6060600280546106d390613781565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90613781565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000610761826117d1565b610797576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107dd82610cb7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610845576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086461181f565b73ffffffffffffffffffffffffffffffffffffffff161415801561089657506108948161088f61181f565b6115db565b155b156108cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108d8838383611827565b505050565b60006108e76118d9565b6001546000540303905090565b6108fc61181f565b73ffffffffffffffffffffffffffffffffffffffff1661091a611021565b73ffffffffffffffffffffffffffffffffffffffff1614610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613493565b60405180910390fd5b600b546009546109809190613697565b610988611002565b146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90613473565b60405180910390fd5b6109d433600b546118de565b565b6109e18383836118fc565b505050565b60095481565b610a078383836040518060200160405280600081525061141b565b505050565b610a1461181f565b73ffffffffffffffffffffffffffffffffffffffff16610a32611021565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613493565b60405180910390fd5b8181600e9190610a99929190612c67565b505050565b610aa661181f565b73ffffffffffffffffffffffffffffffffffffffff16610ac4611021565b73ffffffffffffffffffffffffffffffffffffffff1614610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613493565b60405180910390fd5b600c60019054906101000a900460ff16610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613513565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610b8f81610cb7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906134d3565b60405180910390fd5b600060405180604001604052808381526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600d8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050610cb382611db2565b5050565b6000610cc282611dc0565b600001519050919050565b600e8054610cda90613781565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690613781565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e3361181f565b73ffffffffffffffffffffffffffffffffffffffff16610e51611021565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613493565b60405180910390fd5b610eb1600061204f565b565b600b5481565b600d8181548110610ec957600080fd5b90600052602060002090600202016000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b610f1561181f565b73ffffffffffffffffffffffffffffffffffffffff16610f33611021565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613493565b60405180910390fd5b600c60019054906101000a900460ff1615610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613453565b60405180910390fd5b6001600c60016101000a81548160ff02191690831515021790555061100033600a546118de565b565b6000600d805490506110126108dd565b61101c9190613610565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105361181f565b73ffffffffffffffffffffffffffffffffffffffff16611071611021565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613493565b60405180910390fd5b8181600f91906110d8929190612c67565b505050565b6060600380546110ec90613781565b80601f016020809104026020016040519081016040528092919081815260200182805461111890613781565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600b8161117b33610d5b565b6111859190613610565b106111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613413565b60405180910390fd5b600c60009054906101000a900460ff1680156111ed5750600c60019054906101000a900460ff165b61122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906134b3565b60405180910390fd5b600b5460095461123c9190613697565b81611245611002565b61124f9190613610565b1115611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906134f3565b60405180910390fd5b61129a33826118de565b50565b6112a561181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131761181f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c461181f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140991906133d6565b60405180910390a35050565b600a5481565b6114268484846118fc565b6114458373ffffffffffffffffffffffffffffffffffffffff16612115565b801561145a575061145884848484612138565b155b15611491576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114a2826117d1565b6114d8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114e2612298565b9050600081511415611503576040518060200160405280600081525061152e565b8061150d8461232a565b60405160200161151e92919061334b565b6040516020818303038152906040525b915050919050565b6000600c60009054906101000a900460ff16905090565b600f805461155a90613781565b80601f016020809104026020016040519081016040528092919081815260200182805461158690613781565b80156115d35780601f106115a8576101008083540402835291602001916115d3565b820191906000526020600020905b8154815290600101906020018083116115b657829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167761181f565b73ffffffffffffffffffffffffffffffffffffffff16611695611021565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613433565b60405180910390fd5b6117648161204f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117dc6118d9565b111580156117eb575060005482105b8015611818575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6118f882826040518060200160405280600081525061248b565b5050565b600061190782611dc0565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611972576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661199361181f565b73ffffffffffffffffffffffffffffffffffffffff1614806119c257506119c1856119bc61181f565b6115db565b5b80611a0757506119d061181f565b73ffffffffffffffffffffffffffffffffffffffff166119ef84610756565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ab4858585600161249d565b611ac060008487611827565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d40576000548214611d3f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dab85858560016124a3565b5050505050565b611dbd8160006124a9565b50565b611dc8612ced565b600082905080611dd66118d9565b11158015611de5575060005481105b15612018576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efa57809250505061204a565b5b60011561201557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201057809250505061204a565b611efb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215e61181f565b8786866040518563ffffffff1660e01b8152600401612180949392919061338a565b602060405180830381600087803b15801561219a57600080fd5b505af19250505080156121cb57506040513d601f19601f820116820180604052508101906121c89190613099565b60015b612245573d80600081146121fb576040519150601f19603f3d011682016040523d82523d6000602084013e612200565b606091505b5060008151141561223d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546122a790613781565b80601f01602080910402602001604051908101604052809291908181526020018280546122d390613781565b80156123205780601f106122f557610100808354040283529160200191612320565b820191906000526020600020905b81548152906001019060200180831161230357829003601f168201915b5050505050905090565b60606000821415612372576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612486565b600082905060005b600082146123a457808061238d906137e4565b915050600a8261239d9190613666565b915061237a565b60008167ffffffffffffffff8111156123c0576123bf61391a565b5b6040519080825280601f01601f1916602001820160405280156123f25781602001600182028036833780820191505090505b5090505b6000851461247f5760018261240b9190613697565b9150600a8561241a919061382d565b60306124269190613610565b60f81b81838151811061243c5761243b6138eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124789190613666565b94506123f6565b8093505050505b919050565b6124988383836001612899565b505050565b50505050565b50505050565b60006124b483611dc0565b905060008160000151905082156125955760008173ffffffffffffffffffffffffffffffffffffffff166124e661181f565b73ffffffffffffffffffffffffffffffffffffffff16148061251557506125148261250f61181f565b6115db565b5b8061255a575061252361181f565b73ffffffffffffffffffffffffffffffffffffffff1661254286610756565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612593576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6125a381600086600161249d565b6125af60008583611827565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561281357600054821461281257848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128818160008660016124a3565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612906576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612941576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294e600086838761249d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b185750612b178773ffffffffffffffffffffffffffffffffffffffff16612115565b5b15612bde575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8d6000888480600101955088612138565b612bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1e578260005414612bd957600080fd5b612c4a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdf575b816000819055505050612c6060008683876124a3565b5050505050565b828054612c7390613781565b90600052602060002090601f016020900481019282612c955760008555612cdc565b82601f10612cae57803560ff1916838001178555612cdc565b82800160010185558215612cdc579182015b82811115612cdb578235825591602001919060010190612cc0565b5b509050612ce99190612d30565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d49576000816000905550600101612d31565b5090565b6000612d60612d5b8461359c565b613577565b905082815260208101848484011115612d7c57612d7b613958565b5b612d8784828561373f565b509392505050565b600081359050612d9e81613b81565b92915050565b600081359050612db381613b98565b92915050565b600081359050612dc881613baf565b92915050565b600081519050612ddd81613baf565b92915050565b600082601f830112612df857612df761394e565b5b8135612e08848260208601612d4d565b91505092915050565b60008083601f840112612e2757612e2661394e565b5b8235905067ffffffffffffffff811115612e4457612e43613949565b5b602083019150836001820283011115612e6057612e5f613953565b5b9250929050565b600081359050612e7681613bc6565b92915050565b600060208284031215612e9257612e91613962565b5b6000612ea084828501612d8f565b91505092915050565b60008060408385031215612ec057612ebf613962565b5b6000612ece85828601612d8f565b9250506020612edf85828601612d8f565b9150509250929050565b600080600060608486031215612f0257612f01613962565b5b6000612f1086828701612d8f565b9350506020612f2186828701612d8f565b9250506040612f3286828701612e67565b9150509250925092565b60008060008060808587031215612f5657612f55613962565b5b6000612f6487828801612d8f565b9450506020612f7587828801612d8f565b9350506040612f8687828801612e67565b925050606085013567ffffffffffffffff811115612fa757612fa661395d565b5b612fb387828801612de3565b91505092959194509250565b60008060408385031215612fd657612fd5613962565b5b6000612fe485828601612d8f565b9250506020612ff585828601612da4565b9150509250929050565b6000806040838503121561301657613015613962565b5b600061302485828601612d8f565b925050602061303585828601612e67565b9150509250929050565b60006020828403121561305557613054613962565b5b600061306384828501612da4565b91505092915050565b60006020828403121561308257613081613962565b5b600061309084828501612db9565b91505092915050565b6000602082840312156130af576130ae613962565b5b60006130bd84828501612dce565b91505092915050565b600080602083850312156130dd576130dc613962565b5b600083013567ffffffffffffffff8111156130fb576130fa61395d565b5b61310785828601612e11565b92509250509250929050565b60006020828403121561312957613128613962565b5b600061313784828501612e67565b91505092915050565b613149816136cb565b82525050565b613158816136dd565b82525050565b6000613169826135cd565b61317381856135e3565b935061318381856020860161374e565b61318c81613967565b840191505092915050565b60006131a2826135d8565b6131ac81856135f4565b93506131bc81856020860161374e565b6131c581613967565b840191505092915050565b60006131db826135d8565b6131e58185613605565b93506131f581856020860161374e565b80840191505092915050565b600061320e601d836135f4565b915061321982613978565b602082019050919050565b60006132316026836135f4565b915061323c826139a1565b604082019050919050565b60006132546026836135f4565b915061325f826139f0565b604082019050919050565b6000613277602a836135f4565b915061328282613a3f565b604082019050919050565b600061329a6020836135f4565b91506132a582613a8e565b602082019050919050565b60006132bd601e836135f4565b91506132c882613ab7565b602082019050919050565b60006132e06023836135f4565b91506132eb82613ae0565b604082019050919050565b60006133036016836135f4565b915061330e82613b2f565b602082019050919050565b6000613326601f836135f4565b915061333182613b58565b602082019050919050565b61334581613735565b82525050565b600061335782856131d0565b915061336382846131d0565b91508190509392505050565b60006020820190506133846000830184613140565b92915050565b600060808201905061339f6000830187613140565b6133ac6020830186613140565b6133b9604083018561333c565b81810360608301526133cb818461315e565b905095945050505050565b60006020820190506133eb600083018461314f565b92915050565b6000602082019050818103600083015261340b8184613197565b905092915050565b6000602082019050818103600083015261342c81613201565b9050919050565b6000602082019050818103600083015261344c81613224565b9050919050565b6000602082019050818103600083015261346c81613247565b9050919050565b6000602082019050818103600083015261348c8161326a565b9050919050565b600060208201905081810360008301526134ac8161328d565b9050919050565b600060208201905081810360008301526134cc816132b0565b9050919050565b600060208201905081810360008301526134ec816132d3565b9050919050565b6000602082019050818103600083015261350c816132f6565b9050919050565b6000602082019050818103600083015261352c81613319565b9050919050565b6000602082019050613548600083018461333c565b92915050565b6000604082019050613563600083018561333c565b6135706020830184613140565b9392505050565b6000613581613592565b905061358d82826137b3565b919050565b6000604051905090565b600067ffffffffffffffff8211156135b7576135b661391a565b5b6135c082613967565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061361b82613735565b915061362683613735565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365b5761365a61385e565b5b828201905092915050565b600061367182613735565b915061367c83613735565b92508261368c5761368b61388d565b5b828204905092915050565b60006136a282613735565b91506136ad83613735565b9250828210156136c0576136bf61385e565b5b828203905092915050565b60006136d682613715565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561376c578082015181840152602081019050613751565b8381111561377b576000848401525b50505050565b6000600282049050600182168061379957607f821691505b602082108114156137ad576137ac6138bc565b5b50919050565b6137bc82613967565b810181811067ffffffffffffffff821117156137db576137da61391a565b5b80604052505050565b60006137ef82613735565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138225761382161385e565b5b600182019050919050565b600061383882613735565b915061384383613735565b9250826138535761385261388d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520616c7265616479206861766520656e6f756768206672656e21000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686520726573657276656420737570706c7920697320616c7265616479206d60008201527f696e746564210000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420616c6c207075626c6963206672656e732068617665206265656e206d60008201527f696e746564207965742100000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632073616c65206e6f74206c69766520796574206672656e210000600082015250565b7f54686174206973206e6f7420796f7572206672656e20746f207361637269666960008201527f6365210000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206672656e73206c6566742100000000000000000000600082015250565b7f4d696e742074686520726573657276656420616d6f756e742066697273742100600082015250565b613b8a816136cb565b8114613b9557600080fd5b50565b613ba1816136dd565b8114613bac57600080fd5b50565b613bb8816136e9565b8114613bc357600080fd5b50565b613bcf81613735565b8114613bda57600080fd5b5056fea26469706673582212208406ae2df183b48ae40de2fd9933495613d2777434bba63aca552a1733a03ba364736f6c63430008070033697066733a2f2f516d634654576d4d434e7331744e745135747164556d356573565754335169455262326166744d526d55337068692f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806373e40ed41161010f578063a22cb465116100a2578063d185ad9411610071578063d185ad941461055a578063e8a3d48514610578578063e985e9c514610596578063f2fde38b146105c6576101f0565b8063a22cb465146104d4578063aa66797b146104f0578063b88d4fde1461050e578063c87b56dd1461052a576101f0565b80638da5cb5b116100de5780638da5cb5b14610460578063938e3d7b1461047e57806395d89b411461049a578063a0712d68146104b8576101f0565b806373e40ed4146103e95780637923fcc814610407578063890ac366146104385780638c7b44d814610442576101f0565b806342842e0e116101875780636352211e116101565780636352211e146103615780636c0360eb1461039157806370a08231146103af578063715018a6146103df576101f0565b806342842e0e146102f157806355f804b31461030d5780635aca1bb6146103295780635cb8ecbb14610345576101f0565b806318160ddd116101c357806318160ddd1461028f578063234cb051146102ad57806323b872dd146102b757806332cb6b0c146102d3576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a919061306c565b6105e2565b60405161021c91906133d6565b60405180910390f35b61022d6106c4565b60405161023a91906133f1565b60405180910390f35b61025d60048036038101906102589190613113565b610756565b60405161026a919061336f565b60405180910390f35b61028d60048036038101906102889190612fff565b6107d2565b005b6102976108dd565b6040516102a49190613533565b60405180910390f35b6102b56108f4565b005b6102d160048036038101906102cc9190612ee9565b6109d6565b005b6102db6109e6565b6040516102e89190613533565b60405180910390f35b61030b60048036038101906103069190612ee9565b6109ec565b005b610327600480360381019061032291906130c6565b610a0c565b005b610343600480360381019061033e919061303f565b610a9e565b005b61035f600480360381019061035a9190613113565b610b86565b005b61037b60048036038101906103769190613113565b610cb7565b604051610388919061336f565b60405180910390f35b610399610ccd565b6040516103a691906133f1565b60405180910390f35b6103c960048036038101906103c49190612e7c565b610d5b565b6040516103d69190613533565b60405180910390f35b6103e7610e2b565b005b6103f1610eb3565b6040516103fe9190613533565b60405180910390f35b610421600480360381019061041c9190613113565b610eb9565b60405161042f92919061354e565b60405180910390f35b610440610f0d565b005b61044a611002565b6040516104579190613533565b60405180910390f35b610468611021565b604051610475919061336f565b60405180910390f35b610498600480360381019061049391906130c6565b61104b565b005b6104a26110dd565b6040516104af91906133f1565b60405180910390f35b6104d260048036038101906104cd9190613113565b61116f565b005b6104ee60048036038101906104e99190612fbf565b61129d565b005b6104f8611415565b6040516105059190613533565b60405180910390f35b61052860048036038101906105239190612f3c565b61141b565b005b610544600480360381019061053f9190613113565b611497565b60405161055191906133f1565b60405180910390f35b610562611536565b60405161056f91906133d6565b60405180910390f35b61058061154d565b60405161058d91906133f1565b60405180910390f35b6105b060048036038101906105ab9190612ea9565b6115db565b6040516105bd91906133d6565b60405180910390f35b6105e060048036038101906105db9190612e7c565b61166f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bd57506106bc82611767565b5b9050919050565b6060600280546106d390613781565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90613781565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000610761826117d1565b610797576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107dd82610cb7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610845576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086461181f565b73ffffffffffffffffffffffffffffffffffffffff161415801561089657506108948161088f61181f565b6115db565b155b156108cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108d8838383611827565b505050565b60006108e76118d9565b6001546000540303905090565b6108fc61181f565b73ffffffffffffffffffffffffffffffffffffffff1661091a611021565b73ffffffffffffffffffffffffffffffffffffffff1614610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613493565b60405180910390fd5b600b546009546109809190613697565b610988611002565b146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90613473565b60405180910390fd5b6109d433600b546118de565b565b6109e18383836118fc565b505050565b60095481565b610a078383836040518060200160405280600081525061141b565b505050565b610a1461181f565b73ffffffffffffffffffffffffffffffffffffffff16610a32611021565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613493565b60405180910390fd5b8181600e9190610a99929190612c67565b505050565b610aa661181f565b73ffffffffffffffffffffffffffffffffffffffff16610ac4611021565b73ffffffffffffffffffffffffffffffffffffffff1614610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613493565b60405180910390fd5b600c60019054906101000a900460ff16610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613513565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610b8f81610cb7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906134d3565b60405180910390fd5b600060405180604001604052808381526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600d8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050610cb382611db2565b5050565b6000610cc282611dc0565b600001519050919050565b600e8054610cda90613781565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690613781565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e3361181f565b73ffffffffffffffffffffffffffffffffffffffff16610e51611021565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613493565b60405180910390fd5b610eb1600061204f565b565b600b5481565b600d8181548110610ec957600080fd5b90600052602060002090600202016000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b610f1561181f565b73ffffffffffffffffffffffffffffffffffffffff16610f33611021565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613493565b60405180910390fd5b600c60019054906101000a900460ff1615610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613453565b60405180910390fd5b6001600c60016101000a81548160ff02191690831515021790555061100033600a546118de565b565b6000600d805490506110126108dd565b61101c9190613610565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105361181f565b73ffffffffffffffffffffffffffffffffffffffff16611071611021565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613493565b60405180910390fd5b8181600f91906110d8929190612c67565b505050565b6060600380546110ec90613781565b80601f016020809104026020016040519081016040528092919081815260200182805461111890613781565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600b8161117b33610d5b565b6111859190613610565b106111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613413565b60405180910390fd5b600c60009054906101000a900460ff1680156111ed5750600c60019054906101000a900460ff165b61122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906134b3565b60405180910390fd5b600b5460095461123c9190613697565b81611245611002565b61124f9190613610565b1115611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906134f3565b60405180910390fd5b61129a33826118de565b50565b6112a561181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131761181f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c461181f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140991906133d6565b60405180910390a35050565b600a5481565b6114268484846118fc565b6114458373ffffffffffffffffffffffffffffffffffffffff16612115565b801561145a575061145884848484612138565b155b15611491576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114a2826117d1565b6114d8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114e2612298565b9050600081511415611503576040518060200160405280600081525061152e565b8061150d8461232a565b60405160200161151e92919061334b565b6040516020818303038152906040525b915050919050565b6000600c60009054906101000a900460ff16905090565b600f805461155a90613781565b80601f016020809104026020016040519081016040528092919081815260200182805461158690613781565b80156115d35780601f106115a8576101008083540402835291602001916115d3565b820191906000526020600020905b8154815290600101906020018083116115b657829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167761181f565b73ffffffffffffffffffffffffffffffffffffffff16611695611021565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613433565b60405180910390fd5b6117648161204f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117dc6118d9565b111580156117eb575060005482105b8015611818575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6118f882826040518060200160405280600081525061248b565b5050565b600061190782611dc0565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611972576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661199361181f565b73ffffffffffffffffffffffffffffffffffffffff1614806119c257506119c1856119bc61181f565b6115db565b5b80611a0757506119d061181f565b73ffffffffffffffffffffffffffffffffffffffff166119ef84610756565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ab4858585600161249d565b611ac060008487611827565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d40576000548214611d3f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dab85858560016124a3565b5050505050565b611dbd8160006124a9565b50565b611dc8612ced565b600082905080611dd66118d9565b11158015611de5575060005481105b15612018576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efa57809250505061204a565b5b60011561201557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201057809250505061204a565b611efb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215e61181f565b8786866040518563ffffffff1660e01b8152600401612180949392919061338a565b602060405180830381600087803b15801561219a57600080fd5b505af19250505080156121cb57506040513d601f19601f820116820180604052508101906121c89190613099565b60015b612245573d80600081146121fb576040519150601f19603f3d011682016040523d82523d6000602084013e612200565b606091505b5060008151141561223d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546122a790613781565b80601f01602080910402602001604051908101604052809291908181526020018280546122d390613781565b80156123205780601f106122f557610100808354040283529160200191612320565b820191906000526020600020905b81548152906001019060200180831161230357829003601f168201915b5050505050905090565b60606000821415612372576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612486565b600082905060005b600082146123a457808061238d906137e4565b915050600a8261239d9190613666565b915061237a565b60008167ffffffffffffffff8111156123c0576123bf61391a565b5b6040519080825280601f01601f1916602001820160405280156123f25781602001600182028036833780820191505090505b5090505b6000851461247f5760018261240b9190613697565b9150600a8561241a919061382d565b60306124269190613610565b60f81b81838151811061243c5761243b6138eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124789190613666565b94506123f6565b8093505050505b919050565b6124988383836001612899565b505050565b50505050565b50505050565b60006124b483611dc0565b905060008160000151905082156125955760008173ffffffffffffffffffffffffffffffffffffffff166124e661181f565b73ffffffffffffffffffffffffffffffffffffffff16148061251557506125148261250f61181f565b6115db565b5b8061255a575061252361181f565b73ffffffffffffffffffffffffffffffffffffffff1661254286610756565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612593576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6125a381600086600161249d565b6125af60008583611827565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561281357600054821461281257848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128818160008660016124a3565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612906576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612941576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294e600086838761249d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b185750612b178773ffffffffffffffffffffffffffffffffffffffff16612115565b5b15612bde575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8d6000888480600101955088612138565b612bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1e578260005414612bd957600080fd5b612c4a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdf575b816000819055505050612c6060008683876124a3565b5050505050565b828054612c7390613781565b90600052602060002090601f016020900481019282612c955760008555612cdc565b82601f10612cae57803560ff1916838001178555612cdc565b82800160010185558215612cdc579182015b82811115612cdb578235825591602001919060010190612cc0565b5b509050612ce99190612d30565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d49576000816000905550600101612d31565b5090565b6000612d60612d5b8461359c565b613577565b905082815260208101848484011115612d7c57612d7b613958565b5b612d8784828561373f565b509392505050565b600081359050612d9e81613b81565b92915050565b600081359050612db381613b98565b92915050565b600081359050612dc881613baf565b92915050565b600081519050612ddd81613baf565b92915050565b600082601f830112612df857612df761394e565b5b8135612e08848260208601612d4d565b91505092915050565b60008083601f840112612e2757612e2661394e565b5b8235905067ffffffffffffffff811115612e4457612e43613949565b5b602083019150836001820283011115612e6057612e5f613953565b5b9250929050565b600081359050612e7681613bc6565b92915050565b600060208284031215612e9257612e91613962565b5b6000612ea084828501612d8f565b91505092915050565b60008060408385031215612ec057612ebf613962565b5b6000612ece85828601612d8f565b9250506020612edf85828601612d8f565b9150509250929050565b600080600060608486031215612f0257612f01613962565b5b6000612f1086828701612d8f565b9350506020612f2186828701612d8f565b9250506040612f3286828701612e67565b9150509250925092565b60008060008060808587031215612f5657612f55613962565b5b6000612f6487828801612d8f565b9450506020612f7587828801612d8f565b9350506040612f8687828801612e67565b925050606085013567ffffffffffffffff811115612fa757612fa661395d565b5b612fb387828801612de3565b91505092959194509250565b60008060408385031215612fd657612fd5613962565b5b6000612fe485828601612d8f565b9250506020612ff585828601612da4565b9150509250929050565b6000806040838503121561301657613015613962565b5b600061302485828601612d8f565b925050602061303585828601612e67565b9150509250929050565b60006020828403121561305557613054613962565b5b600061306384828501612da4565b91505092915050565b60006020828403121561308257613081613962565b5b600061309084828501612db9565b91505092915050565b6000602082840312156130af576130ae613962565b5b60006130bd84828501612dce565b91505092915050565b600080602083850312156130dd576130dc613962565b5b600083013567ffffffffffffffff8111156130fb576130fa61395d565b5b61310785828601612e11565b92509250509250929050565b60006020828403121561312957613128613962565b5b600061313784828501612e67565b91505092915050565b613149816136cb565b82525050565b613158816136dd565b82525050565b6000613169826135cd565b61317381856135e3565b935061318381856020860161374e565b61318c81613967565b840191505092915050565b60006131a2826135d8565b6131ac81856135f4565b93506131bc81856020860161374e565b6131c581613967565b840191505092915050565b60006131db826135d8565b6131e58185613605565b93506131f581856020860161374e565b80840191505092915050565b600061320e601d836135f4565b915061321982613978565b602082019050919050565b60006132316026836135f4565b915061323c826139a1565b604082019050919050565b60006132546026836135f4565b915061325f826139f0565b604082019050919050565b6000613277602a836135f4565b915061328282613a3f565b604082019050919050565b600061329a6020836135f4565b91506132a582613a8e565b602082019050919050565b60006132bd601e836135f4565b91506132c882613ab7565b602082019050919050565b60006132e06023836135f4565b91506132eb82613ae0565b604082019050919050565b60006133036016836135f4565b915061330e82613b2f565b602082019050919050565b6000613326601f836135f4565b915061333182613b58565b602082019050919050565b61334581613735565b82525050565b600061335782856131d0565b915061336382846131d0565b91508190509392505050565b60006020820190506133846000830184613140565b92915050565b600060808201905061339f6000830187613140565b6133ac6020830186613140565b6133b9604083018561333c565b81810360608301526133cb818461315e565b905095945050505050565b60006020820190506133eb600083018461314f565b92915050565b6000602082019050818103600083015261340b8184613197565b905092915050565b6000602082019050818103600083015261342c81613201565b9050919050565b6000602082019050818103600083015261344c81613224565b9050919050565b6000602082019050818103600083015261346c81613247565b9050919050565b6000602082019050818103600083015261348c8161326a565b9050919050565b600060208201905081810360008301526134ac8161328d565b9050919050565b600060208201905081810360008301526134cc816132b0565b9050919050565b600060208201905081810360008301526134ec816132d3565b9050919050565b6000602082019050818103600083015261350c816132f6565b9050919050565b6000602082019050818103600083015261352c81613319565b9050919050565b6000602082019050613548600083018461333c565b92915050565b6000604082019050613563600083018561333c565b6135706020830184613140565b9392505050565b6000613581613592565b905061358d82826137b3565b919050565b6000604051905090565b600067ffffffffffffffff8211156135b7576135b661391a565b5b6135c082613967565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061361b82613735565b915061362683613735565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365b5761365a61385e565b5b828201905092915050565b600061367182613735565b915061367c83613735565b92508261368c5761368b61388d565b5b828204905092915050565b60006136a282613735565b91506136ad83613735565b9250828210156136c0576136bf61385e565b5b828203905092915050565b60006136d682613715565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561376c578082015181840152602081019050613751565b8381111561377b576000848401525b50505050565b6000600282049050600182168061379957607f821691505b602082108114156137ad576137ac6138bc565b5b50919050565b6137bc82613967565b810181811067ffffffffffffffff821117156137db576137da61391a565b5b80604052505050565b60006137ef82613735565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138225761382161385e565b5b600182019050919050565b600061383882613735565b915061384383613735565b9250826138535761385261388d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520616c7265616479206861766520656e6f756768206672656e21000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686520726573657276656420737570706c7920697320616c7265616479206d60008201527f696e746564210000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420616c6c207075626c6963206672656e732068617665206265656e206d60008201527f696e746564207965742100000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632073616c65206e6f74206c69766520796574206672656e210000600082015250565b7f54686174206973206e6f7420796f7572206672656e20746f207361637269666960008201527f6365210000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206672656e73206c6566742100000000000000000000600082015250565b7f4d696e742074686520726573657276656420616d6f756e742066697273742100600082015250565b613b8a816136cb565b8114613b9557600080fd5b50565b613ba1816136dd565b8114613bac57600080fd5b50565b613bb8816136e9565b8114613bc357600080fd5b50565b613bcf81613735565b8114613bda57600080fd5b5056fea26469706673582212208406ae2df183b48ae40de2fd9933495613d2777434bba63aca552a1733a03ba364736f6c63430008070033

Deployed Bytecode Sourcemap

47413:2430:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31588:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31151:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26221:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48989:211;;;:::i;:::-;;32453:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47460:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32694:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49493:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49208:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47973:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29893:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47795:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27341:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;:::i;:::-;;47541:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47757:29;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;48776:205;;;:::i;:::-;;48263:116;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49603:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30254:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48387:381;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31864:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47499:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32950:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30429:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49727:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47882:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32222:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26972:305;27074:4;27126:25;27111:40;;;:11;:40;;;;:105;;;;27183:33;27168:48;;;:11;:48;;;;27111:105;:158;;;;27233:36;27257:11;27233:23;:36::i;:::-;27111:158;27091:178;;26972:305;;;:::o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;;;;;;;;;;;;;31676:64;31760:15;:24;31776:7;31760:24;;;;;;;;;;;;;;;;;;;;;31753:31;;31588:204;;;:::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;31279:11;;:2;:11;;;31275:48;;;31299:24;;;;;;;;;;;;;;31275:48;31356:5;31340:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31366:37;31383:5;31390:12;:10;:12::i;:::-;31366:16;:37::i;:::-;31365:38;31340:63;31336:138;;;31427:35;;;;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;26221:303::-;26265:7;26490:15;:13;:15::i;:::-;26475:12;;26459:13;;:28;:46;26452:53;;26221:303;:::o;48989:211::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49085:13:::1;;49072:10;;:26;;;;:::i;:::-;49050:18;:16;:18::i;:::-;:48;49042:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;49156:36;49166:10;49178:13;;49156:9;:36::i;:::-;48989:211::o:0;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;:::-;32453:170;;;:::o;47460:32::-;;;;:::o;32694:185::-;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;:::-;32694:185;;;:::o;49493:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:9:::1;;49568:7;:19;;;;;;;:::i;:::-;;49493:102:::0;;:::o;49208:169::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49283:13:::1;;;;;;;;;;;49275:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49362:7;49343:16;;:26;;;;;;;;;;;;;;;;;;49208:169:::0;:::o;47973:282::-;48053:16;48061:7;48053;:16::i;:::-;48039:30;;:10;:30;;;48031:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;48120:26;48149:30;;;;;;;;48159:7;48149:30;;;;48168:10;48149:30;;;;;48120:59;;48190:10;48206:9;48190:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48227:20;48239:7;48227:11;:20::i;:::-;48020:235;47973:282;:::o;29893:125::-;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;;29977:33;;29893:125;;;:::o;47795:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27341:206::-;27405:7;27446:1;27429:19;;:5;:19;;;27425:60;;;27457:28;;;;;;;;;;;;;;27425:60;27511:12;:19;27524:5;27511:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27503:36;;27496:43;;27341:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47541:33::-;;;;:::o;47757:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48776:205::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48838:13:::1;;;;;;;;;;;48837:14;48829:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48921:4;48905:13;;:20;;;;;;;;;;;;;;;;;;48936:37;48946:10;48958:14;;48936:9;:37::i;:::-;48776:205::o:0;48263:116::-;48311:7;48354:10;:17;;;;48338:13;:11;:13::i;:::-;:33;;;;:::i;:::-;48331:40;;48263:116;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;49603:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:12:::1;;49685:11;:26;;;;;;;:::i;:::-;;49603:116:::0;;:::o;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30254:104;:::o;48387:381::-;48486:2;48473:9;48449:21;48459:10;48449:9;:21::i;:::-;:33;;;;:::i;:::-;48448:40;48440:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;48541:16;;;;;;;;;;;:33;;;;;48561:13;;;;;;;;;;;48541:33;48533:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48676:13;;48663:10;;:26;;;;:::i;:::-;48649:9;48628:18;:16;:18::i;:::-;:30;;;;:::i;:::-;:62;;48620:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48728:32;48738:10;48750:9;48728;:32::i;:::-;48387:381;:::o;31864:287::-;31975:12;:10;:12::i;:::-;31963:24;;:8;:24;;;31959:54;;;31996:17;;;;;;;;;;;;;;31959:54;32071:8;32026:18;:32;32045:12;:10;:12::i;:::-;32026:32;;;;;;;;;;;;;;;:42;32059:8;32026:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32124:8;32095:48;;32110:12;:10;:12::i;:::-;32095:48;;;32134:8;32095:48;;;;;;:::i;:::-;;;;;;;;31864:287;;:::o;47499:35::-;;;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;33160:15;:2;:13;;;:15::i;:::-;:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;;;;;;;;;;;;;33156:156;32950:369;;;;:::o;30429:318::-;30502:13;30533:16;30541:7;30533;:16::i;:::-;30528:59;;30558:29;;;;;;;;;;;;;;30528:59;30600:21;30624:10;:8;:10::i;:::-;30600:34;;30677:1;30658:7;30652:21;:26;;:87;;;;;;;;;;;;;;;;;30705:7;30714:18;:7;:16;:18::i;:::-;30688:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30652:87;30645:94;;;30429:318;;;:::o;49727:113::-;49780:16;49816;;;;;;;;;;;49809:23;;49727:113;:::o;47882:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32222:164::-;32319:4;32343:18;:25;32362:5;32343:25;;;;;;;;;;;;;;;:35;32369:8;32343:35;;;;;;;;;;;;;;;;;;;;;;;;;32336:42;;32222:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;33574:174::-;33631:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:53;;;;;33695:13;;33685:7;:23;33655:53;:85;;;;;33713:11;:20;33725:7;33713:20;;;;;;;;;;;:27;;;;;;;;;;;;33712:28;33655:85;33648:92;;33574:174;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;41731:196::-;41873:2;41846:15;:24;41862:7;41846:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41911:7;41907:2;41891:28;;41900:5;41891:28;;;;;;;;;;;;41731:196;;;:::o;25995:92::-;26051:7;25995:92;:::o;33756:104::-;33825:27;33835:2;33839:8;33825:27;;;;;;;;;;;;:9;:27::i;:::-;33756:104;;:::o;36674:2130::-;36789:35;36827:21;36840:7;36827:12;:21::i;:::-;36789:59;;36887:4;36865:26;;:13;:18;;;:26;;;36861:67;;36900:28;;;;;;;;;;;;;;36861:67;36941:22;36983:4;36967:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37004:36;37021:4;37027:12;:10;:12::i;:::-;37004:16;:36::i;:::-;36967:73;:126;;;;37081:12;:10;:12::i;:::-;37057:36;;:20;37069:7;37057:11;:20::i;:::-;:36;;;36967:126;36941:153;;37112:17;37107:66;;37138:35;;;;;;;;;;;;;;37107:66;37202:1;37188:16;;:2;:16;;;37184:52;;;37213:23;;;;;;;;;;;;;;37184:52;37249:43;37271:4;37277:2;37281:7;37290:1;37249:21;:43::i;:::-;37357:35;37374:1;37378:7;37387:4;37357:8;:35::i;:::-;37718:1;37688:12;:18;37701:4;37688:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:1;37734:12;:16;37747:2;37734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37780:31;37814:11;:20;37826:7;37814:20;;;;;;;;;;;37780:54;;37865:2;37849:8;:13;;;:18;;;;;;;;;;;;;;;;;;37915:15;37882:8;:23;;;:49;;;;;;;;;;;;;;;;;;38183:19;38215:1;38205:7;:11;38183:33;;38231:31;38265:11;:24;38277:11;38265:24;;;;;;;;;;;38231:58;;38333:1;38308:27;;:8;:13;;;;;;;;;;;;:27;;;38304:384;;;38518:13;;38503:11;:28;38499:174;;38572:4;38556:8;:13;;;:20;;;;;;;;;;;;;;;;;;38625:13;:28;;;38599:8;:23;;;:54;;;;;;;;;;;;;;;;;;38499:174;38304:384;37663:1036;;;38735:7;38731:2;38716:27;;38725:4;38716:27;;;;;;;;;;;;38754:42;38775:4;38781:2;38785:7;38794:1;38754:20;:42::i;:::-;36778:2026;;36674:2130;;;:::o;38887:89::-;38947:21;38953:7;38962:5;38947;:21::i;:::-;38887:89;:::o;28722:1109::-;28784:21;;:::i;:::-;28818:12;28833:7;28818:22;;28901:4;28882:15;:13;:15::i;:::-;:23;;:47;;;;;28916:13;;28909:4;:20;28882:47;28878:886;;;28950:31;28984:11;:17;28996:4;28984:17;;;;;;;;;;;28950:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29025:9;:16;;;29020:729;;29096:1;29070:28;;:9;:14;;;:28;;;29066:101;;29134:9;29127:16;;;;;;29066:101;29469:261;29476:4;29469:261;;;29509:6;;;;;;;;29554:11;:17;29566:4;29554:17;;;;;;;;;;;29542:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29628:1;29602:28;;:9;:14;;;:28;;;29598:109;;29670:9;29663:16;;;;;;29598:109;29469:261;;;29020:729;28931:833;28878:886;29792:31;;;;;;;;;;;;;;28722:1109;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;42419:667::-;42582:4;42619:2;42603:36;;;42640:12;:10;:12::i;:::-;42654:4;42660:7;42669:5;42603:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42599:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42854:1;42837:6;:13;:18;42833:235;;;42883:40;;;;;;;;;;;;;;42833:235;43026:6;43020:13;43011:6;43007:2;43003:15;42996:38;42599:480;42732:45;;;42722:55;;;:6;:55;;;;42715:62;;;42419:667;;;;;;:::o;49385:100::-;49437:13;49470:7;49463:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49385:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;34223:163::-;34346:32;34352:2;34356:8;34366:5;34373:4;34346:5;:32::i;:::-;34223:163;;;:::o;43734:159::-;;;;;:::o;44552:158::-;;;;;:::o;39205:2408::-;39285:35;39323:21;39336:7;39323:12;:21::i;:::-;39285:59;;39357:12;39372:13;:18;;;39357:33;;39407:13;39403:290;;;39437:22;39479:4;39463:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;39504:36;39521:4;39527:12;:10;:12::i;:::-;39504:16;:36::i;:::-;39463:77;:134;;;;39585:12;:10;:12::i;:::-;39561:36;;:20;39573:7;39561:11;:20::i;:::-;:36;;;39463:134;39437:161;;39620:17;39615:66;;39646:35;;;;;;;;;;;;;;39615:66;39422:271;39403:290;39705:51;39727:4;39741:1;39745:7;39754:1;39705:21;:51::i;:::-;39821:35;39838:1;39842:7;39851:4;39821:8;:35::i;:::-;40152:31;40186:12;:18;40199:4;40186:18;;;;;;;;;;;;;;;40152:52;;40242:1;40219:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40286:1;40258:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40386:31;40420:11;:20;40432:7;40420:20;;;;;;;;;;;40386:54;;40471:4;40455:8;:13;;;:20;;;;;;;;;;;;;;;;;;40523:15;40490:8;:23;;;:49;;;;;;;;;;;;;;;;;;40572:4;40554:8;:15;;;:22;;;;;;;;;;;;;;;;;;40824:19;40856:1;40846:7;:11;40824:33;;40872:31;40906:11;:24;40918:11;40906:24;;;;;;;;;;;40872:58;;40974:1;40949:27;;:8;:13;;;;;;;;;;;;:27;;;40945:384;;;41159:13;;41144:11;:28;41140:174;;41213:4;41197:8;:13;;;:20;;;;;;;;;;;;;;;;;;41266:13;:28;;;41240:8;:23;;;:54;;;;;;;;;;;;;;;;;;41140:174;40945:384;40127:1213;;;;41384:7;41380:1;41357:35;;41366:4;41357:35;;;;;;;;;;;;41403:50;41424:4;41438:1;41442:7;41451:1;41403:20;:50::i;:::-;41580:12;;:14;;;;;;;;;;;;;39274:2339;;39205:2408;;:::o;34645:1775::-;34784:20;34807:13;;34784:36;;34849:1;34835:16;;:2;:16;;;34831:48;;;34860:19;;;;;;;;;;;;;;34831:48;34906:1;34894:8;:13;34890:44;;;34916:18;;;;;;;;;;;;;;34890:44;34947:61;34977:1;34981:2;34985:12;34999:8;34947:21;:61::i;:::-;35320:8;35285:12;:16;35298:2;35285:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35384:8;35344:12;:16;35357:2;35344:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35443:2;35410:11;:25;35422:12;35410:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35510:15;35460:11;:25;35472:12;35460:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35543:20;35566:12;35543:35;;35593:11;35622:8;35607:12;:23;35593:37;;35651:4;:23;;;;;35659:15;:2;:13;;;:15::i;:::-;35651:23;35647:641;;;35695:314;35751:12;35747:2;35726:38;;35743:1;35726:38;;;;;;;;;;;;35792:69;35831:1;35835:2;35839:14;;;;;;35855:5;35792:30;:69::i;:::-;35787:174;;35897:40;;;;;;;;;;;;;;35787:174;36004:3;35988:12;:19;;35695:314;;36090:12;36073:13;;:29;36069:43;;36104:8;;;36069:43;35647:641;;;36153:120;36209:14;;;;;;36205:2;36184:40;;36201:1;36184:40;;;;;;;;;;;;36268:3;36252:12;:19;;36153:120;;35647:641;36318:12;36302:13;:28;;;;35260:1082;;36352:60;36381:1;36385:2;36389:12;36403:8;36352:20;:60::i;:::-;34773:1647;34645:1775;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:323::-;5471:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:50;5713:7;5704:6;5693:9;5689:22;5671:50;:::i;:::-;5661:60;;5617:114;5415:323;;;;:::o;5744:327::-;5802:6;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:52;6046:7;6037:6;6026:9;6022:22;6002:52;:::i;:::-;5992:62;;5948:116;5744:327;;;;:::o;6077:349::-;6146:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:119;;;6201:79;;:::i;:::-;6163:119;6321:1;6346:63;6401:7;6392:6;6381:9;6377:22;6346:63;:::i;:::-;6336:73;;6292:127;6077:349;;;;:::o;6432:529::-;6503:6;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6714:1;6703:9;6699:17;6686:31;6744:18;6736:6;6733:30;6730:117;;;6766:79;;:::i;:::-;6730:117;6879:65;6936:7;6927:6;6916:9;6912:22;6879:65;:::i;:::-;6861:83;;;;6657:297;6432:529;;;;;:::o;6967:329::-;7026:6;7075:2;7063:9;7054:7;7050:23;7046:32;7043:119;;;7081:79;;:::i;:::-;7043:119;7201:1;7226:53;7271:7;7262:6;7251:9;7247:22;7226:53;:::i;:::-;7216:63;;7172:117;6967:329;;;;:::o;7302:118::-;7389:24;7407:5;7389:24;:::i;:::-;7384:3;7377:37;7302:118;;:::o;7426:109::-;7507:21;7522:5;7507:21;:::i;:::-;7502:3;7495:34;7426:109;;:::o;7541:360::-;7627:3;7655:38;7687:5;7655:38;:::i;:::-;7709:70;7772:6;7767:3;7709:70;:::i;:::-;7702:77;;7788:52;7833:6;7828:3;7821:4;7814:5;7810:16;7788:52;:::i;:::-;7865:29;7887:6;7865:29;:::i;:::-;7860:3;7856:39;7849:46;;7631:270;7541:360;;;;:::o;7907:364::-;7995:3;8023:39;8056:5;8023:39;:::i;:::-;8078:71;8142:6;8137:3;8078:71;:::i;:::-;8071:78;;8158:52;8203:6;8198:3;8191:4;8184:5;8180:16;8158:52;:::i;:::-;8235:29;8257:6;8235:29;:::i;:::-;8230:3;8226:39;8219:46;;7999:272;7907:364;;;;:::o;8277:377::-;8383:3;8411:39;8444:5;8411:39;:::i;:::-;8466:89;8548:6;8543:3;8466:89;:::i;:::-;8459:96;;8564:52;8609:6;8604:3;8597:4;8590:5;8586:16;8564:52;:::i;:::-;8641:6;8636:3;8632:16;8625:23;;8387:267;8277:377;;;;:::o;8660:366::-;8802:3;8823:67;8887:2;8882:3;8823:67;:::i;:::-;8816:74;;8899:93;8988:3;8899:93;:::i;:::-;9017:2;9012:3;9008:12;9001:19;;8660:366;;;:::o;9032:::-;9174:3;9195:67;9259:2;9254:3;9195:67;:::i;:::-;9188:74;;9271:93;9360:3;9271:93;:::i;:::-;9389:2;9384:3;9380:12;9373:19;;9032:366;;;:::o;9404:::-;9546:3;9567:67;9631:2;9626:3;9567:67;:::i;:::-;9560:74;;9643:93;9732:3;9643:93;:::i;:::-;9761:2;9756:3;9752:12;9745:19;;9404:366;;;:::o;9776:::-;9918:3;9939:67;10003:2;9998:3;9939:67;:::i;:::-;9932:74;;10015:93;10104:3;10015:93;:::i;:::-;10133:2;10128:3;10124:12;10117:19;;9776:366;;;:::o;10148:::-;10290:3;10311:67;10375:2;10370:3;10311:67;:::i;:::-;10304:74;;10387:93;10476:3;10387:93;:::i;:::-;10505:2;10500:3;10496:12;10489:19;;10148:366;;;:::o;10520:::-;10662:3;10683:67;10747:2;10742:3;10683:67;:::i;:::-;10676:74;;10759:93;10848:3;10759:93;:::i;:::-;10877:2;10872:3;10868:12;10861:19;;10520:366;;;:::o;10892:::-;11034:3;11055:67;11119:2;11114:3;11055:67;:::i;:::-;11048:74;;11131:93;11220:3;11131:93;:::i;:::-;11249:2;11244:3;11240:12;11233:19;;10892:366;;;:::o;11264:::-;11406:3;11427:67;11491:2;11486:3;11427:67;:::i;:::-;11420:74;;11503:93;11592:3;11503:93;:::i;:::-;11621:2;11616:3;11612:12;11605:19;;11264:366;;;:::o;11636:::-;11778:3;11799:67;11863:2;11858:3;11799:67;:::i;:::-;11792:74;;11875:93;11964:3;11875:93;:::i;:::-;11993:2;11988:3;11984:12;11977:19;;11636:366;;;:::o;12008:118::-;12095:24;12113:5;12095:24;:::i;:::-;12090:3;12083:37;12008:118;;:::o;12132:435::-;12312:3;12334:95;12425:3;12416:6;12334:95;:::i;:::-;12327:102;;12446:95;12537:3;12528:6;12446:95;:::i;:::-;12439:102;;12558:3;12551:10;;12132:435;;;;;:::o;12573:222::-;12666:4;12704:2;12693:9;12689:18;12681:26;;12717:71;12785:1;12774:9;12770:17;12761:6;12717:71;:::i;:::-;12573:222;;;;:::o;12801:640::-;12996:4;13034:3;13023:9;13019:19;13011:27;;13048:71;13116:1;13105:9;13101:17;13092:6;13048:71;:::i;:::-;13129:72;13197:2;13186:9;13182:18;13173:6;13129:72;:::i;:::-;13211;13279:2;13268:9;13264:18;13255:6;13211:72;:::i;:::-;13330:9;13324:4;13320:20;13315:2;13304:9;13300:18;13293:48;13358:76;13429:4;13420:6;13358:76;:::i;:::-;13350:84;;12801:640;;;;;;;:::o;13447:210::-;13534:4;13572:2;13561:9;13557:18;13549:26;;13585:65;13647:1;13636:9;13632:17;13623:6;13585:65;:::i;:::-;13447:210;;;;:::o;13663:313::-;13776:4;13814:2;13803:9;13799:18;13791:26;;13863:9;13857:4;13853:20;13849:1;13838:9;13834:17;13827:47;13891:78;13964:4;13955:6;13891:78;:::i;:::-;13883:86;;13663:313;;;;:::o;13982:419::-;14148:4;14186:2;14175:9;14171:18;14163:26;;14235:9;14229:4;14225:20;14221:1;14210:9;14206:17;14199:47;14263:131;14389:4;14263:131;:::i;:::-;14255:139;;13982:419;;;:::o;14407:::-;14573:4;14611:2;14600:9;14596:18;14588:26;;14660:9;14654:4;14650:20;14646:1;14635:9;14631:17;14624:47;14688:131;14814:4;14688:131;:::i;:::-;14680:139;;14407:419;;;:::o;14832:::-;14998:4;15036:2;15025:9;15021:18;15013:26;;15085:9;15079:4;15075:20;15071:1;15060:9;15056:17;15049:47;15113:131;15239:4;15113:131;:::i;:::-;15105:139;;14832:419;;;:::o;15257:::-;15423:4;15461:2;15450:9;15446:18;15438:26;;15510:9;15504:4;15500:20;15496:1;15485:9;15481:17;15474:47;15538:131;15664:4;15538:131;:::i;:::-;15530:139;;15257:419;;;:::o;15682:::-;15848:4;15886:2;15875:9;15871:18;15863:26;;15935:9;15929:4;15925:20;15921:1;15910:9;15906:17;15899:47;15963:131;16089:4;15963:131;:::i;:::-;15955:139;;15682:419;;;:::o;16107:::-;16273:4;16311:2;16300:9;16296:18;16288:26;;16360:9;16354:4;16350:20;16346:1;16335:9;16331:17;16324:47;16388:131;16514:4;16388:131;:::i;:::-;16380:139;;16107:419;;;:::o;16532:::-;16698:4;16736:2;16725:9;16721:18;16713:26;;16785:9;16779:4;16775:20;16771:1;16760:9;16756:17;16749:47;16813:131;16939:4;16813:131;:::i;:::-;16805:139;;16532:419;;;:::o;16957:::-;17123:4;17161:2;17150:9;17146:18;17138:26;;17210:9;17204:4;17200:20;17196:1;17185:9;17181:17;17174:47;17238:131;17364:4;17238:131;:::i;:::-;17230:139;;16957:419;;;:::o;17382:::-;17548:4;17586:2;17575:9;17571:18;17563:26;;17635:9;17629:4;17625:20;17621:1;17610:9;17606:17;17599:47;17663:131;17789:4;17663:131;:::i;:::-;17655:139;;17382:419;;;:::o;17807:222::-;17900:4;17938:2;17927:9;17923:18;17915:26;;17951:71;18019:1;18008:9;18004:17;17995:6;17951:71;:::i;:::-;17807:222;;;;:::o;18035:332::-;18156:4;18194:2;18183:9;18179:18;18171:26;;18207:71;18275:1;18264:9;18260:17;18251:6;18207:71;:::i;:::-;18288:72;18356:2;18345:9;18341:18;18332:6;18288:72;:::i;:::-;18035:332;;;;;:::o;18373:129::-;18407:6;18434:20;;:::i;:::-;18424:30;;18463:33;18491:4;18483:6;18463:33;:::i;:::-;18373:129;;;:::o;18508:75::-;18541:6;18574:2;18568:9;18558:19;;18508:75;:::o;18589:307::-;18650:4;18740:18;18732:6;18729:30;18726:56;;;18762:18;;:::i;:::-;18726:56;18800:29;18822:6;18800:29;:::i;:::-;18792:37;;18884:4;18878;18874:15;18866:23;;18589:307;;;:::o;18902:98::-;18953:6;18987:5;18981:12;18971:22;;18902:98;;;:::o;19006:99::-;19058:6;19092:5;19086:12;19076:22;;19006:99;;;:::o;19111:168::-;19194:11;19228:6;19223:3;19216:19;19268:4;19263:3;19259:14;19244:29;;19111:168;;;;:::o;19285:169::-;19369:11;19403:6;19398:3;19391:19;19443:4;19438:3;19434:14;19419:29;;19285:169;;;;:::o;19460:148::-;19562:11;19599:3;19584:18;;19460:148;;;;:::o;19614:305::-;19654:3;19673:20;19691:1;19673:20;:::i;:::-;19668:25;;19707:20;19725:1;19707:20;:::i;:::-;19702:25;;19861:1;19793:66;19789:74;19786:1;19783:81;19780:107;;;19867:18;;:::i;:::-;19780:107;19911:1;19908;19904:9;19897:16;;19614:305;;;;:::o;19925:185::-;19965:1;19982:20;20000:1;19982:20;:::i;:::-;19977:25;;20016:20;20034:1;20016:20;:::i;:::-;20011:25;;20055:1;20045:35;;20060:18;;:::i;:::-;20045:35;20102:1;20099;20095:9;20090:14;;19925:185;;;;:::o;20116:191::-;20156:4;20176:20;20194:1;20176:20;:::i;:::-;20171:25;;20210:20;20228:1;20210:20;:::i;:::-;20205:25;;20249:1;20246;20243:8;20240:34;;;20254:18;;:::i;:::-;20240:34;20299:1;20296;20292:9;20284:17;;20116:191;;;;:::o;20313:96::-;20350:7;20379:24;20397:5;20379:24;:::i;:::-;20368:35;;20313:96;;;:::o;20415:90::-;20449:7;20492:5;20485:13;20478:21;20467:32;;20415:90;;;:::o;20511:149::-;20547:7;20587:66;20580:5;20576:78;20565:89;;20511:149;;;:::o;20666:126::-;20703:7;20743:42;20736:5;20732:54;20721:65;;20666:126;;;:::o;20798:77::-;20835:7;20864:5;20853:16;;20798:77;;;:::o;20881:154::-;20965:6;20960:3;20955;20942:30;21027:1;21018:6;21013:3;21009:16;21002:27;20881:154;;;:::o;21041:307::-;21109:1;21119:113;21133:6;21130:1;21127:13;21119:113;;;21218:1;21213:3;21209:11;21203:18;21199:1;21194:3;21190:11;21183:39;21155:2;21152:1;21148:10;21143:15;;21119:113;;;21250:6;21247:1;21244:13;21241:101;;;21330:1;21321:6;21316:3;21312:16;21305:27;21241:101;21090:258;21041:307;;;:::o;21354:320::-;21398:6;21435:1;21429:4;21425:12;21415:22;;21482:1;21476:4;21472:12;21503:18;21493:81;;21559:4;21551:6;21547:17;21537:27;;21493:81;21621:2;21613:6;21610:14;21590:18;21587:38;21584:84;;;21640:18;;:::i;:::-;21584:84;21405:269;21354:320;;;:::o;21680:281::-;21763:27;21785:4;21763:27;:::i;:::-;21755:6;21751:40;21893:6;21881:10;21878:22;21857:18;21845:10;21842:34;21839:62;21836:88;;;21904:18;;:::i;:::-;21836:88;21944:10;21940:2;21933:22;21723:238;21680:281;;:::o;21967:233::-;22006:3;22029:24;22047:5;22029:24;:::i;:::-;22020:33;;22075:66;22068:5;22065:77;22062:103;;;22145:18;;:::i;:::-;22062:103;22192:1;22185:5;22181:13;22174:20;;21967:233;;;:::o;22206:176::-;22238:1;22255:20;22273:1;22255:20;:::i;:::-;22250:25;;22289:20;22307:1;22289:20;:::i;:::-;22284:25;;22328:1;22318:35;;22333:18;;:::i;:::-;22318:35;22374:1;22371;22367:9;22362:14;;22206:176;;;;:::o;22388:180::-;22436:77;22433:1;22426:88;22533:4;22530:1;22523:15;22557:4;22554:1;22547:15;22574:180;22622:77;22619:1;22612:88;22719:4;22716:1;22709:15;22743:4;22740:1;22733:15;22760:180;22808:77;22805:1;22798:88;22905:4;22902:1;22895:15;22929:4;22926:1;22919:15;22946:180;22994:77;22991:1;22984:88;23091:4;23088:1;23081:15;23115:4;23112:1;23105:15;23132:180;23180:77;23177:1;23170:88;23277:4;23274:1;23267:15;23301:4;23298:1;23291:15;23318:117;23427:1;23424;23417:12;23441:117;23550:1;23547;23540:12;23564:117;23673:1;23670;23663:12;23687:117;23796:1;23793;23786:12;23810:117;23919:1;23916;23909:12;23933:117;24042:1;24039;24032:12;24056:102;24097:6;24148:2;24144:7;24139:2;24132:5;24128:14;24124:28;24114:38;;24056:102;;;:::o;24164:179::-;24304:31;24300:1;24292:6;24288:14;24281:55;24164:179;:::o;24349:225::-;24489:34;24485:1;24477:6;24473:14;24466:58;24558:8;24553:2;24545:6;24541:15;24534:33;24349:225;:::o;24580:::-;24720:34;24716:1;24708:6;24704:14;24697:58;24789:8;24784:2;24776:6;24772:15;24765:33;24580:225;:::o;24811:229::-;24951:34;24947:1;24939:6;24935:14;24928:58;25020:12;25015:2;25007:6;25003:15;24996:37;24811:229;:::o;25046:182::-;25186:34;25182:1;25174:6;25170:14;25163:58;25046:182;:::o;25234:180::-;25374:32;25370:1;25362:6;25358:14;25351:56;25234:180;:::o;25420:222::-;25560:34;25556:1;25548:6;25544:14;25537:58;25629:5;25624:2;25616:6;25612:15;25605:30;25420:222;:::o;25648:172::-;25788:24;25784:1;25776:6;25772:14;25765:48;25648:172;:::o;25826:181::-;25966:33;25962:1;25954:6;25950:14;25943:57;25826:181;:::o;26013:122::-;26086:24;26104:5;26086:24;:::i;:::-;26079:5;26076:35;26066:63;;26125:1;26122;26115:12;26066:63;26013:122;:::o;26141:116::-;26211:21;26226:5;26211:21;:::i;:::-;26204:5;26201:32;26191:60;;26247:1;26244;26237:12;26191:60;26141:116;:::o;26263:120::-;26335:23;26352:5;26335:23;:::i;:::-;26328:5;26325:34;26315:62;;26373:1;26370;26363:12;26315:62;26263:120;:::o;26389:122::-;26462:24;26480:5;26462:24;:::i;:::-;26455:5;26452:35;26442:63;;26501:1;26498;26491:12;26442:63;26389:122;:::o

Swarm Source

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