ETH Price: $2,972.36 (+3.75%)
Gas: 1 Gwei

Token

LionBob (LIONS)
 

Overview

Max Total Supply

555 LIONS

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
alphagang.eth
Balance
5 LIONS
0xdb502a93b67356c7c08ba77386f1b89886dd8338
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:
LionBob

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/LionBob.sol

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

//LionBob
// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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



/**
 * @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 onlyOnwer() {
        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 onlyOnwer {
        _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 onlyOnwer {
        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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

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


// File @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


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



/**
 * @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/introspection/[email protected]


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

/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0xF528E3C3B439D385b958741753A9cA518E952257;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}
 /*
 * 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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 {}
}



contract LionBob is ERC721A, Owneable {

    string public baseURI = "";
    string public contractURI = "ipfs://";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 1;
    uint256 public constant FREE_MAX_SUPPLY = 100;
    uint256 public constant MAX_PER_TX = 2;
    uint256 public MAX_SUPPLY = 555;
    uint256 public price = 0.01 ether;

    bool public paused = true;

    constructor() ERC721A("LionBob", "LIONS") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function config() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f528e3c3b439d385b958741753a9ca518e952257600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a908051906020019062000080929190620002b8565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000ce929190620002b8565b5061022b600c55662386f26fc10000600d556001600e60006101000a81548160ff0219169083151502179055503480156200010857600080fd5b506040518060400160405280600781526020017f4c696f6e426f62000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c494f4e5300000000000000000000000000000000000000000000000000000081525081600290805190602001906200018d929190620002b8565b508060039080519060200190620001a6929190620002b8565b50620001b7620001e560201b60201c565b6000819055505050620001df620001d3620001ea60201b60201c565b620001f260201b60201c565b620003cd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c69062000397565b90600052602060002090601f016020900481019282620002ea576000855562000336565b82601f106200030557805160ff191683800117855562000336565b8280016001018555821562000336579182015b828111156200033557825182559160200191906001019062000318565b5b50905062000345919062000349565b5090565b5b80821115620003645760008160009055506001016200034a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b057607f821691505b60208210811415620003c757620003c662000368565b5b50919050565b6140a080620003dd6000396000f3fe6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613020565b6107f5565b60405161023d9190613068565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130af565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613175565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131cd565b610a61565b6040516102ce919061323b565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613282565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132d1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132ec565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132d1565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132ec565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132d1565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613474565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b6040516104359190613068565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131cd565b610ed9565b604051610472919061323b565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613175565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134bd565b610f7d565b6040516104da91906132d1565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132d1565b60405180910390f35b34801561054857600080fd5b506105516111c9565b60405161055e919061323b565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131cd565b6111f3565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613474565b6112d8565b005b3480156105c557600080fd5b506105ce6113cd565b6040516105db9190613175565b60405180910390f35b3480156105f057600080fd5b506105f961145f565b60405161060691906132d1565b60405180910390f35b610629600480360381019061062491906131cd565b611465565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ea565b611707565b005b34801561066057600080fd5b5061067b600480360381019061067691906135cb565b61187f565b005b34801561068957600080fd5b506106926118fb565b60405161069f9190613175565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131cd565b611934565b6040516106dc9190613175565b60405180910390f35b3480156106f157600080fd5b506106fa611a13565b604051610707919061323b565b60405180910390f35b34801561071c57600080fd5b50610725611a2b565b6040516107329190613175565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d919061364e565b611ab9565b60405161076f9190613068565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131cd565b611bad565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134bd565b611c92565b005b3480156107d657600080fd5b506107df611d8a565b6040516107ec91906132d1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d8f565b5b9050919050565b6108df611df9565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136da565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613729565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613729565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611e01565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611df9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611df9565b611ab9565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e4f565b505050565b6000610bf2611f01565b6001546000540303905090565b610c0a838383611f06565b505050565b600c5481565b610c1d611df9565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111c9565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136da565b60405180910390fd5b60004790506000610cff611df9565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d229061378c565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137ed565b60405180910390fd5b5050565b610dc78383836040518060200160405280600081525061187f565b505050565b600181565b610dd9611df9565b73ffffffffffffffffffffffffffffffffffffffff16610df76111c9565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136da565b60405180910390fd5b80600a9080519060200190610ec2929190612ece565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123f7565b600001519050919050565b600a8054610efc90613729565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890613729565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611df9565b73ffffffffffffffffffffffffffffffffffffffff166110736111c9565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136da565b60405180910390fd5b6110d36000612686565b565b6110dd611df9565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136da565b60405180910390fd5b6111c26111bb611df9565b600161274c565b565b606481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fb611df9565b73ffffffffffffffffffffffffffffffffffffffff166112196111c9565b73ffffffffffffffffffffffffffffffffffffffff16148061128f575061123e611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906136da565b60405180910390fd5b80600d8190555050565b6112e0611df9565b73ffffffffffffffffffffffffffffffffffffffff166112fe6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806113745750611323611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906136da565b60405180910390fd5b80600b90805190602001906113c9929190612ece565b5050565b6060600380546113dc90613729565b80601f016020809104026020016040519081016040528092919081815260200182805461140890613729565b80156114555780601f1061142a57610100808354040283529160200191611455565b820191906000526020600020905b81548152906001019060200180831161143857829003601f168201915b5050505050905090565b600d5481565b600061146f611df9565b9050600e60009054906101000a900460ff16156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613859565b60405180910390fd5b816114ca610be8565b6114d491906138a8565b600c541015611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061394a565b60405180910390fd5b6000821161155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906139b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613a22565b60405180910390fd5b816002101561160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613a8e565b60405180910390fd5b611615610be8565b606410611665578160011015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613afa565b60405180910390fd5b6116f9565b81600210156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613a8e565b60405180910390fd5b34600d54836116b89190613b1a565b146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613bc0565b60405180910390fd5b5b611703818361274c565b5050565b61170f611df9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611774576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611781611df9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182e611df9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118739190613068565b60405180910390a35050565b61188a848484611f06565b6118a98373ffffffffffffffffffffffffffffffffffffffff1661276a565b80156118be57506118bc8484848461278d565b155b156118f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193f82611e01565b61197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613c2c565b60405180910390fd5b6000600a805461198d90613729565b9050116119a95760405180602001604052806000815250611a0c565b600a6119b4836128ed565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fc93929190613d1c565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3890613729565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6490613729565b8015611ab15780601f10611a8657610100808354040283529160200191611ab1565b820191906000526020600020905b815481529060010190602001808311611a9457829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b23919061323b565b60206040518083038186803b158015611b3b57600080fd5b505afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190613d8b565b73ffffffffffffffffffffffffffffffffffffffff161415611b99576001915050611ba7565b611ba38484612a4e565b9150505b92915050565b611bb5611df9565b73ffffffffffffffffffffffffffffffffffffffff16611bd36111c9565b73ffffffffffffffffffffffffffffffffffffffff161480611c495750611bf8611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906136da565b60405180910390fd5b80600c8190555050565b611c9a611df9565b73ffffffffffffffffffffffffffffffffffffffff16611cb86111c9565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d05906136da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613e2a565b60405180910390fd5b611d8781612686565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611e0c611f01565b11158015611e1b575060005482105b8015611e48575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f11826123f7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f38611df9565b73ffffffffffffffffffffffffffffffffffffffff161480611f6b5750611f6a8260000151611f65611df9565b611ab9565b5b80611fb05750611f79611df9565b73ffffffffffffffffffffffffffffffffffffffff16611f9884610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fe9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612052576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120b9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c68585856001612ae2565b6120d66000848460000151611e4f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612387576000548110156123865782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f08585856001612ae8565b5050505050565b6123ff612f54565b60008290508061240d611f01565b1115801561241c575060005481105b1561264f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612531578092505050612681565b5b60011561264c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612647578092505050612681565b612532565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612766828260405180602001604052806000815250612aee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b3611df9565b8786866040518563ffffffff1660e01b81526004016127d59493929190613e9f565b602060405180830381600087803b1580156127ef57600080fd5b505af192505050801561282057506040513d601f19601f8201168201806040525081019061281d9190613f00565b60015b61289a573d8060008114612850576040519150601f19603f3d011682016040523d82523d6000602084013e612855565b606091505b50600081511415612892576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612935576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a49565b600082905060005b6000821461296757808061295090613f2d565b915050600a826129609190613fa5565b915061293d565b60008167ffffffffffffffff81111561298357612982613349565b5b6040519080825280601f01601f1916602001820160405280156129b55781602001600182028036833780820191505090505b5090505b60008514612a42576001826129ce9190613fd6565b9150600a856129dd919061400a565b60306129e991906138a8565b60f81b8183815181106129ff576129fe61403b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3b9190613fa5565b94506129b9565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612afb8383836001612b00565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ba8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb56000868387612ae2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d7f5750612d7e8773ffffffffffffffffffffffffffffffffffffffff1661276a565b5b15612e45575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df4600088848060010195508861278d565b612e2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d85578260005414612e4057600080fd5b612eb1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e46575b816000819055505050612ec76000868387612ae8565b5050505050565b828054612eda90613729565b90600052602060002090601f016020900481019282612efc5760008555612f43565b82601f10612f1557805160ff1916838001178555612f43565b82800160010185558215612f43579182015b82811115612f42578251825591602001919060010190612f27565b5b509050612f509190612f97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fb0576000816000905550600101612f98565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ffd81612fc8565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60006020828403121561303657613035612fbe565b5b60006130448482850161300b565b91505092915050565b60008115159050919050565b6130628161304d565b82525050565b600060208201905061307d6000830184613059565b92915050565b61308c8161304d565b811461309757600080fd5b50565b6000813590506130a981613083565b92915050565b6000602082840312156130c5576130c4612fbe565b5b60006130d38482850161309a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131165780820151818401526020810190506130fb565b83811115613125576000848401525b50505050565b6000601f19601f8301169050919050565b6000613147826130dc565b61315181856130e7565b93506131618185602086016130f8565b61316a8161312b565b840191505092915050565b6000602082019050818103600083015261318f818461313c565b905092915050565b6000819050919050565b6131aa81613197565b81146131b557600080fd5b50565b6000813590506131c7816131a1565b92915050565b6000602082840312156131e3576131e2612fbe565b5b60006131f1848285016131b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613225826131fa565b9050919050565b6132358161321a565b82525050565b6000602082019050613250600083018461322c565b92915050565b61325f8161321a565b811461326a57600080fd5b50565b60008135905061327c81613256565b92915050565b6000806040838503121561329957613298612fbe565b5b60006132a78582860161326d565b92505060206132b8858286016131b8565b9150509250929050565b6132cb81613197565b82525050565b60006020820190506132e660008301846132c2565b92915050565b60008060006060848603121561330557613304612fbe565b5b60006133138682870161326d565b93505060206133248682870161326d565b9250506040613335868287016131b8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133818261312b565b810181811067ffffffffffffffff821117156133a05761339f613349565b5b80604052505050565b60006133b3612fb4565b90506133bf8282613378565b919050565b600067ffffffffffffffff8211156133df576133de613349565b5b6133e88261312b565b9050602081019050919050565b82818337600083830152505050565b6000613417613412846133c4565b6133a9565b90508281526020810184848401111561343357613432613344565b5b61343e8482856133f5565b509392505050565b600082601f83011261345b5761345a61333f565b5b813561346b848260208601613404565b91505092915050565b60006020828403121561348a57613489612fbe565b5b600082013567ffffffffffffffff8111156134a8576134a7612fc3565b5b6134b484828501613446565b91505092915050565b6000602082840312156134d3576134d2612fbe565b5b60006134e18482850161326d565b91505092915050565b6000806040838503121561350157613500612fbe565b5b600061350f8582860161326d565b92505060206135208582860161309a565b9150509250929050565b600067ffffffffffffffff82111561354557613544613349565b5b61354e8261312b565b9050602081019050919050565b600061356e6135698461352a565b6133a9565b90508281526020810184848401111561358a57613589613344565b5b6135958482856133f5565b509392505050565b600082601f8301126135b2576135b161333f565b5b81356135c284826020860161355b565b91505092915050565b600080600080608085870312156135e5576135e4612fbe565b5b60006135f38782880161326d565b94505060206136048782880161326d565b9350506040613615878288016131b8565b925050606085013567ffffffffffffffff81111561363657613635612fc3565b5b6136428782880161359d565b91505092959194509250565b6000806040838503121561366557613664612fbe565b5b60006136738582860161326d565b92505060206136848582860161326d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c46020836130e7565b91506136cf8261368e565b602082019050919050565b600060208201905081810360008301526136f3816136b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374157607f821691505b60208210811415613755576137546136fa565b5b50919050565b600081905092915050565b50565b600061377660008361375b565b915061378182613766565b600082019050919050565b600061379782613769565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137d7600e836130e7565b91506137e2826137a1565b602082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138436006836130e7565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b382613197565b91506138be83613197565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f3576138f2613879565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139346012836130e7565b915061393f826138fe565b602082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006139a0600a836130e7565b91506139ab8261396a565b602082019050919050565b600060208201905081810360008301526139cf81613993565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613a0c600c836130e7565b9150613a17826139d6565b602082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a786016836130e7565b9150613a8382613a42565b602082019050919050565b60006020820190508181036000830152613aa781613a6b565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ae46016836130e7565b9150613aef82613aae565b602082019050919050565b60006020820190508181036000830152613b1381613ad7565b9050919050565b6000613b2582613197565b9150613b3083613197565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b6957613b68613879565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613baa6016836130e7565b9150613bb582613b74565b602082019050919050565b60006020820190508181036000830152613bd981613b9d565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c166015836130e7565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c7981613729565b613c838186613c4c565b94506001821660008114613c9e5760018114613caf57613ce2565b60ff19831686528186019350613ce2565b613cb885613c57565b60005b83811015613cda57815481890152600182019150602081019050613cbb565b838801955050505b50505092915050565b6000613cf6826130dc565b613d008185613c4c565b9350613d108185602086016130f8565b80840191505092915050565b6000613d288286613c6c565b9150613d348285613ceb565b9150613d408284613ceb565b9150819050949350505050565b6000613d588261321a565b9050919050565b613d6881613d4d565b8114613d7357600080fd5b50565b600081519050613d8581613d5f565b92915050565b600060208284031215613da157613da0612fbe565b5b6000613daf84828501613d76565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e146026836130e7565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e7182613e4a565b613e7b8185613e55565b9350613e8b8185602086016130f8565b613e948161312b565b840191505092915050565b6000608082019050613eb4600083018761322c565b613ec1602083018661322c565b613ece60408301856132c2565b8181036060830152613ee08184613e66565b905095945050505050565b600081519050613efa81612ff4565b92915050565b600060208284031215613f1657613f15612fbe565b5b6000613f2484828501613eeb565b91505092915050565b6000613f3882613197565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6b57613f6a613879565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb082613197565b9150613fbb83613197565b925082613fcb57613fca613f76565b5b828204905092915050565b6000613fe182613197565b9150613fec83613197565b925082821015613fff57613ffe613879565b5b828203905092915050565b600061401582613197565b915061402083613197565b9250826140305761402f613f76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122047d142146896446d01a8c3547891381391c923f97ed6c9c3a73543a02a7181fe64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613020565b6107f5565b60405161023d9190613068565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130af565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613175565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131cd565b610a61565b6040516102ce919061323b565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613282565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132d1565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132ec565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132d1565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132ec565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132d1565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613474565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b6040516104359190613068565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131cd565b610ed9565b604051610472919061323b565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613175565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134bd565b610f7d565b6040516104da91906132d1565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132d1565b60405180910390f35b34801561054857600080fd5b506105516111c9565b60405161055e919061323b565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131cd565b6111f3565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613474565b6112d8565b005b3480156105c557600080fd5b506105ce6113cd565b6040516105db9190613175565b60405180910390f35b3480156105f057600080fd5b506105f961145f565b60405161060691906132d1565b60405180910390f35b610629600480360381019061062491906131cd565b611465565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ea565b611707565b005b34801561066057600080fd5b5061067b600480360381019061067691906135cb565b61187f565b005b34801561068957600080fd5b506106926118fb565b60405161069f9190613175565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131cd565b611934565b6040516106dc9190613175565b60405180910390f35b3480156106f157600080fd5b506106fa611a13565b604051610707919061323b565b60405180910390f35b34801561071c57600080fd5b50610725611a2b565b6040516107329190613175565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d919061364e565b611ab9565b60405161076f9190613068565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131cd565b611bad565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134bd565b611c92565b005b3480156107d657600080fd5b506107df611d8a565b6040516107ec91906132d1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d8f565b5b9050919050565b6108df611df9565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136da565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613729565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613729565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611e01565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611df9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611df9565b611ab9565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e4f565b505050565b6000610bf2611f01565b6001546000540303905090565b610c0a838383611f06565b505050565b600c5481565b610c1d611df9565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111c9565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136da565b60405180910390fd5b60004790506000610cff611df9565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d229061378c565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137ed565b60405180910390fd5b5050565b610dc78383836040518060200160405280600081525061187f565b505050565b600181565b610dd9611df9565b73ffffffffffffffffffffffffffffffffffffffff16610df76111c9565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136da565b60405180910390fd5b80600a9080519060200190610ec2929190612ece565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123f7565b600001519050919050565b600a8054610efc90613729565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890613729565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611df9565b73ffffffffffffffffffffffffffffffffffffffff166110736111c9565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136da565b60405180910390fd5b6110d36000612686565b565b6110dd611df9565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136da565b60405180910390fd5b6111c26111bb611df9565b600161274c565b565b606481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fb611df9565b73ffffffffffffffffffffffffffffffffffffffff166112196111c9565b73ffffffffffffffffffffffffffffffffffffffff16148061128f575061123e611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906136da565b60405180910390fd5b80600d8190555050565b6112e0611df9565b73ffffffffffffffffffffffffffffffffffffffff166112fe6111c9565b73ffffffffffffffffffffffffffffffffffffffff1614806113745750611323611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906136da565b60405180910390fd5b80600b90805190602001906113c9929190612ece565b5050565b6060600380546113dc90613729565b80601f016020809104026020016040519081016040528092919081815260200182805461140890613729565b80156114555780601f1061142a57610100808354040283529160200191611455565b820191906000526020600020905b81548152906001019060200180831161143857829003601f168201915b5050505050905090565b600d5481565b600061146f611df9565b9050600e60009054906101000a900460ff16156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613859565b60405180910390fd5b816114ca610be8565b6114d491906138a8565b600c541015611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061394a565b60405180910390fd5b6000821161155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906139b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613a22565b60405180910390fd5b816002101561160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613a8e565b60405180910390fd5b611615610be8565b606410611665578160011015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613afa565b60405180910390fd5b6116f9565b81600210156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613a8e565b60405180910390fd5b34600d54836116b89190613b1a565b146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613bc0565b60405180910390fd5b5b611703818361274c565b5050565b61170f611df9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611774576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611781611df9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182e611df9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118739190613068565b60405180910390a35050565b61188a848484611f06565b6118a98373ffffffffffffffffffffffffffffffffffffffff1661276a565b80156118be57506118bc8484848461278d565b155b156118f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193f82611e01565b61197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613c2c565b60405180910390fd5b6000600a805461198d90613729565b9050116119a95760405180602001604052806000815250611a0c565b600a6119b4836128ed565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fc93929190613d1c565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3890613729565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6490613729565b8015611ab15780601f10611a8657610100808354040283529160200191611ab1565b820191906000526020600020905b815481529060010190602001808311611a9457829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b23919061323b565b60206040518083038186803b158015611b3b57600080fd5b505afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190613d8b565b73ffffffffffffffffffffffffffffffffffffffff161415611b99576001915050611ba7565b611ba38484612a4e565b9150505b92915050565b611bb5611df9565b73ffffffffffffffffffffffffffffffffffffffff16611bd36111c9565b73ffffffffffffffffffffffffffffffffffffffff161480611c495750611bf8611df9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906136da565b60405180910390fd5b80600c8190555050565b611c9a611df9565b73ffffffffffffffffffffffffffffffffffffffff16611cb86111c9565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d05906136da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613e2a565b60405180910390fd5b611d8781612686565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611e0c611f01565b11158015611e1b575060005482105b8015611e48575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f11826123f7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f38611df9565b73ffffffffffffffffffffffffffffffffffffffff161480611f6b5750611f6a8260000151611f65611df9565b611ab9565b5b80611fb05750611f79611df9565b73ffffffffffffffffffffffffffffffffffffffff16611f9884610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fe9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612052576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120b9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c68585856001612ae2565b6120d66000848460000151611e4f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612387576000548110156123865782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f08585856001612ae8565b5050505050565b6123ff612f54565b60008290508061240d611f01565b1115801561241c575060005481105b1561264f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612531578092505050612681565b5b60011561264c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612647578092505050612681565b612532565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612766828260405180602001604052806000815250612aee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b3611df9565b8786866040518563ffffffff1660e01b81526004016127d59493929190613e9f565b602060405180830381600087803b1580156127ef57600080fd5b505af192505050801561282057506040513d601f19601f8201168201806040525081019061281d9190613f00565b60015b61289a573d8060008114612850576040519150601f19603f3d011682016040523d82523d6000602084013e612855565b606091505b50600081511415612892576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612935576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a49565b600082905060005b6000821461296757808061295090613f2d565b915050600a826129609190613fa5565b915061293d565b60008167ffffffffffffffff81111561298357612982613349565b5b6040519080825280601f01601f1916602001820160405280156129b55781602001600182028036833780820191505090505b5090505b60008514612a42576001826129ce9190613fd6565b9150600a856129dd919061400a565b60306129e991906138a8565b60f81b8183815181106129ff576129fe61403b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3b9190613fa5565b94506129b9565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612afb8383836001612b00565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ba8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb56000868387612ae2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d7f5750612d7e8773ffffffffffffffffffffffffffffffffffffffff1661276a565b5b15612e45575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df4600088848060010195508861278d565b612e2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d85578260005414612e4057600080fd5b612eb1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e46575b816000819055505050612ec76000868387612ae8565b5050505050565b828054612eda90613729565b90600052602060002090601f016020900481019282612efc5760008555612f43565b82601f10612f1557805160ff1916838001178555612f43565b82800160010185558215612f43579182015b82811115612f42578251825591602001919060010190612f27565b5b509050612f509190612f97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fb0576000816000905550600101612f98565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ffd81612fc8565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60006020828403121561303657613035612fbe565b5b60006130448482850161300b565b91505092915050565b60008115159050919050565b6130628161304d565b82525050565b600060208201905061307d6000830184613059565b92915050565b61308c8161304d565b811461309757600080fd5b50565b6000813590506130a981613083565b92915050565b6000602082840312156130c5576130c4612fbe565b5b60006130d38482850161309a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131165780820151818401526020810190506130fb565b83811115613125576000848401525b50505050565b6000601f19601f8301169050919050565b6000613147826130dc565b61315181856130e7565b93506131618185602086016130f8565b61316a8161312b565b840191505092915050565b6000602082019050818103600083015261318f818461313c565b905092915050565b6000819050919050565b6131aa81613197565b81146131b557600080fd5b50565b6000813590506131c7816131a1565b92915050565b6000602082840312156131e3576131e2612fbe565b5b60006131f1848285016131b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613225826131fa565b9050919050565b6132358161321a565b82525050565b6000602082019050613250600083018461322c565b92915050565b61325f8161321a565b811461326a57600080fd5b50565b60008135905061327c81613256565b92915050565b6000806040838503121561329957613298612fbe565b5b60006132a78582860161326d565b92505060206132b8858286016131b8565b9150509250929050565b6132cb81613197565b82525050565b60006020820190506132e660008301846132c2565b92915050565b60008060006060848603121561330557613304612fbe565b5b60006133138682870161326d565b93505060206133248682870161326d565b9250506040613335868287016131b8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133818261312b565b810181811067ffffffffffffffff821117156133a05761339f613349565b5b80604052505050565b60006133b3612fb4565b90506133bf8282613378565b919050565b600067ffffffffffffffff8211156133df576133de613349565b5b6133e88261312b565b9050602081019050919050565b82818337600083830152505050565b6000613417613412846133c4565b6133a9565b90508281526020810184848401111561343357613432613344565b5b61343e8482856133f5565b509392505050565b600082601f83011261345b5761345a61333f565b5b813561346b848260208601613404565b91505092915050565b60006020828403121561348a57613489612fbe565b5b600082013567ffffffffffffffff8111156134a8576134a7612fc3565b5b6134b484828501613446565b91505092915050565b6000602082840312156134d3576134d2612fbe565b5b60006134e18482850161326d565b91505092915050565b6000806040838503121561350157613500612fbe565b5b600061350f8582860161326d565b92505060206135208582860161309a565b9150509250929050565b600067ffffffffffffffff82111561354557613544613349565b5b61354e8261312b565b9050602081019050919050565b600061356e6135698461352a565b6133a9565b90508281526020810184848401111561358a57613589613344565b5b6135958482856133f5565b509392505050565b600082601f8301126135b2576135b161333f565b5b81356135c284826020860161355b565b91505092915050565b600080600080608085870312156135e5576135e4612fbe565b5b60006135f38782880161326d565b94505060206136048782880161326d565b9350506040613615878288016131b8565b925050606085013567ffffffffffffffff81111561363657613635612fc3565b5b6136428782880161359d565b91505092959194509250565b6000806040838503121561366557613664612fbe565b5b60006136738582860161326d565b92505060206136848582860161326d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c46020836130e7565b91506136cf8261368e565b602082019050919050565b600060208201905081810360008301526136f3816136b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374157607f821691505b60208210811415613755576137546136fa565b5b50919050565b600081905092915050565b50565b600061377660008361375b565b915061378182613766565b600082019050919050565b600061379782613769565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137d7600e836130e7565b91506137e2826137a1565b602082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138436006836130e7565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b382613197565b91506138be83613197565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f3576138f2613879565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139346012836130e7565b915061393f826138fe565b602082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006139a0600a836130e7565b91506139ab8261396a565b602082019050919050565b600060208201905081810360008301526139cf81613993565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613a0c600c836130e7565b9150613a17826139d6565b602082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a786016836130e7565b9150613a8382613a42565b602082019050919050565b60006020820190508181036000830152613aa781613a6b565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ae46016836130e7565b9150613aef82613aae565b602082019050919050565b60006020820190508181036000830152613b1381613ad7565b9050919050565b6000613b2582613197565b9150613b3083613197565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b6957613b68613879565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613baa6016836130e7565b9150613bb582613b74565b602082019050919050565b60006020820190508181036000830152613bd981613b9d565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c166015836130e7565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c7981613729565b613c838186613c4c565b94506001821660008114613c9e5760018114613caf57613ce2565b60ff19831686528186019350613ce2565b613cb885613c57565b60005b83811015613cda57815481890152600182019150602081019050613cbb565b838801955050505b50505092915050565b6000613cf6826130dc565b613d008185613c4c565b9350613d108185602086016130f8565b80840191505092915050565b6000613d288286613c6c565b9150613d348285613ceb565b9150613d408284613ceb565b9150819050949350505050565b6000613d588261321a565b9050919050565b613d6881613d4d565b8114613d7357600080fd5b50565b600081519050613d8581613d5f565b92915050565b600060208284031215613da157613da0612fbe565b5b6000613daf84828501613d76565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e146026836130e7565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e7182613e4a565b613e7b8185613e55565b9350613e8b8185602086016130f8565b613e948161312b565b840191505092915050565b6000608082019050613eb4600083018761322c565b613ec1602083018661322c565b613ece60408301856132c2565b8181036060830152613ee08184613e66565b905095945050505050565b600081519050613efa81612ff4565b92915050565b600060208284031215613f1657613f15612fbe565b5b6000613f2484828501613eeb565b91505092915050565b6000613f3882613197565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6b57613f6a613879565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb082613197565b9150613fbb83613197565b925082613fcb57613fca613f76565b5b828204905092915050565b6000613fe182613197565b9150613fec83613197565b925082821015613fff57613ffe613879565b5b828203905092915050565b600061401582613197565b915061402083613197565b9250826140305761402f613f76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122047d142146896446d01a8c3547891381391c923f97ed6c9c3a73543a02a7181fe64736f6c63430008090033

Deployed Bytecode Sourcemap

45977:2979:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28510:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48066:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31895:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33398:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32961:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27759:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34255:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46399:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47759:209;;;;;;;;;;;;;:::i;:::-;;34496:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46252:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48155:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31704:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46024:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28879:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:103;;;;;;;;;;;;;:::i;:::-;;47976:82;;;;;;;;;;;;;:::i;:::-;;46302:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2058:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48387:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48263:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32064:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46437:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46565:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33674:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34752:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46101:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48591:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46154:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46057:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47306:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48483:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2967:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46354:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28510:305;28612:4;28664:25;28649:40;;;:11;:40;;;;:105;;;;28721:33;28706:48;;;:11;:48;;;;28649:105;:158;;;;28771:36;28795:11;28771:23;:36::i;:::-;28649:158;28629:178;;28510:305;;;:::o;48066:81::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48133:6:::1;48124;;:15;;;;;;;;;;;;;;;;;;48066:81:::0;:::o;31895:100::-;31949:13;31982:5;31975:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31895:100;:::o;33398:204::-;33466:7;33491:16;33499:7;33491;:16::i;:::-;33486:64;;33516:34;;;;;;;;;;;;;;33486:64;33570:15;:24;33586:7;33570:24;;;;;;;;;;;;;;;;;;;;;33563:31;;33398:204;;;:::o;32961:371::-;33034:13;33050:24;33066:7;33050:15;:24::i;:::-;33034:40;;33095:5;33089:11;;:2;:11;;;33085:48;;;33109:24;;;;;;;;;;;;;;33085:48;33166:5;33150:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33176:37;33193:5;33200:12;:10;:12::i;:::-;33176:16;:37::i;:::-;33175:38;33150:63;33146:138;;;33237:35;;;;;;;;;;;;;;33146:138;33296:28;33305:2;33309:7;33318:5;33296:8;:28::i;:::-;33023:309;32961:371;;:::o;27759:303::-;27803:7;28028:15;:13;:15::i;:::-;28013:12;;27997:13;;:28;:46;27990:53;;27759:303;:::o;34255:170::-;34389:28;34399:4;34405:2;34409:7;34389:9;:28::i;:::-;34255:170;;;:::o;46399:31::-;;;;:::o;47759:209::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47809:15:::1;47827:21;47809:39;;47860:12;47878;:10;:12::i;:::-;:17;;47903:7;47878:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47859:56;;;47934:7;47926:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47798:170;;47759:209::o:0;34496:185::-;34634:39;34651:4;34657:2;34661:7;34634:39;;;;;;;;;;;;:16;:39::i;:::-;34496:185;;;:::o;46252:43::-;46294:1;46252:43;:::o;48155:100::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48239:8:::1;48229:7;:18;;;;;;;;;;;;:::i;:::-;;48155:100:::0;:::o;46479:25::-;;;;;;;;;;;;;:::o;31704:124::-;31768:7;31795:20;31807:7;31795:11;:20::i;:::-;:25;;;31788:32;;31704:124;;;:::o;46024:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28879:206::-;28943:7;28984:1;28967:19;;:5;:19;;;28963:60;;;28995:28;;;;;;;;;;;;;;28963:60;29049:12;:19;29062:5;29049:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29041:36;;29034:43;;28879:206;;;:::o;2709:103::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2774:30:::1;2801:1;2774:18;:30::i;:::-;2709:103::o:0;47976:82::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48024:26:::1;48034:12;:10;:12::i;:::-;48048:1;48024:9;:26::i;:::-;47976:82::o:0;46302:45::-;46344:3;46302:45;:::o;2058:87::-;2104:7;2131:6;;;;;;;;;;;2124:13;;2058:87;:::o;48387:88::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48459:8:::1;48451:5;:16;;;;48387:88:::0;:::o;48263:116::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48359:12:::1;48345:11;:26;;;;;;;;;;;;:::i;:::-;;48263:116:::0;:::o;32064:104::-;32120:13;32153:7;32146:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32064:104;:::o;46437:33::-;;;;:::o;46565:733::-;46624:15;46642:12;:10;:12::i;:::-;46624:30;;46674:6;;;;;;;;;;;46673:7;46665:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46740:7;46724:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46710:10;;:37;;46702:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46799:1;46789:7;:11;46781:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46847:7;46834:20;;:9;:20;;;46826:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46904:7;46391:1;46890:21;;46882:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46980:13;:11;:13::i;:::-;46344:3;46961:32;46958:291;;47036:7;46294:1;47017:26;;47009:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46958:291;;;47124:7;46391:1;47110:21;;47102:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47201:9;47192:5;;47182:7;:15;;;;:::i;:::-;:28;47174:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46958:291;47263:27;47273:7;47282;47263:9;:27::i;:::-;46613:685;46565:733;:::o;33674:279::-;33777:12;:10;:12::i;:::-;33765:24;;:8;:24;;;33761:54;;;33798:17;;;;;;;;;;;;;;33761:54;33873:8;33828:18;:32;33847:12;:10;:12::i;:::-;33828:32;;;;;;;;;;;;;;;:42;33861:8;33828:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33926:8;33897:48;;33912:12;:10;:12::i;:::-;33897:48;;;33936:8;33897:48;;;;;;:::i;:::-;;;;;;;;33674:279;;:::o;34752:369::-;34919:28;34929:4;34935:2;34939:7;34919:9;:28::i;:::-;34962:15;:2;:13;;;:15::i;:::-;:76;;;;;34982:56;35013:4;35019:2;35023:7;35032:5;34982:30;:56::i;:::-;34981:57;34962:76;34958:156;;;35062:40;;;;;;;;;;;;;;34958:156;34752:369;;;;:::o;46101:46::-;;;;;;;;;;;;;;;;;;;:::o;48591:362::-;48657:13;48691:17;48699:8;48691:7;:17::i;:::-;48683:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48776:1;48758:7;48752:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48834:7;48858:26;48875:8;48858:16;:26::i;:::-;48901:13;;;;;;;;;;;;;;;;;48801:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48752:193;48745:200;;48591:362;;;:::o;46154:89::-;46201:42;46154:89;:::o;46057:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47306:445::-;47431:4;47516:27;46201:42;47516:65;;47637:8;47596:49;;47604:13;:21;;;47626:5;47604:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47596:49;;;47592:93;;;47669:4;47662:11;;;;;47592:93;47704:39;47727:5;47734:8;47704:22;:39::i;:::-;47697:46;;;47306:445;;;;;:::o;48483:100::-;24991:12;:10;:12::i;:::-;24980:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25017:12;:10;:12::i;:::-;25007:22;;:6;;;;;;;;;;;:22;;;24980:49;24972:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48566:9:::1;48553:10;:22;;;;48483:100:::0;:::o;2967:201::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3076:1:::1;3056:22;;:8;:22;;;;3048:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3132:28;3151:8;3132:18;:28::i;:::-;2967:201:::0;:::o;46354:38::-;46391:1;46354:38;:::o;23612:157::-;23697:4;23736:25;23721:40;;;:11;:40;;;;23714:47;;23612:157;;;:::o;799:98::-;852:7;879:10;872:17;;799:98;:::o;35376:187::-;35433:4;35476:7;35457:15;:13;:15::i;:::-;:26;;:53;;;;;35497:13;;35487:7;:23;35457:53;:98;;;;;35528:11;:20;35540:7;35528:20;;;;;;;;;;;:27;;;;;;;;;;;;35527:28;35457:98;35450:105;;35376:187;;;:::o;42987:196::-;43129:2;43102:15;:24;43118:7;43102:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43167:7;43163:2;43147:28;;43156:5;43147:28;;;;;;;;;;;;42987:196;;;:::o;27483:92::-;27539:7;27483:92;:::o;38489:2112::-;38604:35;38642:20;38654:7;38642:11;:20::i;:::-;38604:58;;38675:22;38717:13;:18;;;38701:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38752:50;38769:13;:18;;;38789:12;:10;:12::i;:::-;38752:16;:50::i;:::-;38701:101;:154;;;;38843:12;:10;:12::i;:::-;38819:36;;:20;38831:7;38819:11;:20::i;:::-;:36;;;38701:154;38675:181;;38874:17;38869:66;;38900:35;;;;;;;;;;;;;;38869:66;38972:4;38950:26;;:13;:18;;;:26;;;38946:67;;38985:28;;;;;;;;;;;;;;38946:67;39042:1;39028:16;;:2;:16;;;39024:52;;;39053:23;;;;;;;;;;;;;;39024:52;39089:43;39111:4;39117:2;39121:7;39130:1;39089:21;:43::i;:::-;39197:49;39214:1;39218:7;39227:13;:18;;;39197:8;:49::i;:::-;39572:1;39542:12;:18;39555:4;39542:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39616:1;39588:12;:16;39601:2;39588:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39662:2;39634:11;:20;39646:7;39634:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39724:15;39679:11;:20;39691:7;39679:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39992:19;40024:1;40014:7;:11;39992:33;;40085:1;40044:43;;:11;:24;40056:11;40044:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40040:445;;;40269:13;;40255:11;:27;40251:219;;;40339:13;:18;;;40307:11;:24;40319:11;40307:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40422:13;:28;;;40380:11;:24;40392:11;40380:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40251:219;40040:445;39517:979;40532:7;40528:2;40513:27;;40522:4;40513:27;;;;;;;;;;;;40551:42;40572:4;40578:2;40582:7;40591:1;40551:20;:42::i;:::-;38593:2008;;38489:2112;;;:::o;30534:1108::-;30595:21;;:::i;:::-;30629:12;30644:7;30629:22;;30712:4;30693:15;:13;:15::i;:::-;:23;;:47;;;;;30727:13;;30720:4;:20;30693:47;30689:886;;;30761:31;30795:11;:17;30807:4;30795:17;;;;;;;;;;;30761:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30836:9;:16;;;30831:729;;30907:1;30881:28;;:9;:14;;;:28;;;30877:101;;30945:9;30938:16;;;;;;30877:101;31280:261;31287:4;31280:261;;;31320:6;;;;;;;;31365:11;:17;31377:4;31365:17;;;;;;;;;;;31353:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31439:1;31413:28;;:9;:14;;;:28;;;31409:109;;31481:9;31474:16;;;;;;31409:109;31280:261;;;30831:729;30742:833;30689:886;31603:31;;;;;;;;;;;;;;30534:1108;;;;:::o;3328:191::-;3402:16;3421:6;;;;;;;;;;;3402:25;;3447:8;3438:6;;:17;;;;;;;;;;;;;;;;;;3502:8;3471:40;;3492:8;3471:40;;;;;;;;;;;;3391:128;3328:191;:::o;35571:104::-;35640:27;35650:2;35654:8;35640:27;;;;;;;;;;;;:9;:27::i;:::-;35571:104;;:::o;13389:326::-;13449:4;13706:1;13684:7;:19;;;:23;13677:30;;13389:326;;;:::o;43675:667::-;43838:4;43875:2;43859:36;;;43896:12;:10;:12::i;:::-;43910:4;43916:7;43925:5;43859:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43855:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44110:1;44093:6;:13;:18;44089:235;;;44139:40;;;;;;;;;;;;;;44089:235;44282:6;44276:13;44267:6;44263:2;44259:15;44252:38;43855:480;43988:45;;;43978:55;;;:6;:55;;;;43971:62;;;43675:667;;;;;;:::o;21009:723::-;21065:13;21295:1;21286:5;:10;21282:53;;;21313:10;;;;;;;;;;;;;;;;;;;;;21282:53;21345:12;21360:5;21345:20;;21376:14;21401:78;21416:1;21408:4;:9;21401:78;;21434:8;;;;;:::i;:::-;;;;21465:2;21457:10;;;;;:::i;:::-;;;21401:78;;;21489:19;21521:6;21511:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21489:39;;21539:154;21555:1;21546:5;:10;21539:154;;21583:1;21573:11;;;;;:::i;:::-;;;21650:2;21642:5;:10;;;;:::i;:::-;21629:2;:24;;;;:::i;:::-;21616:39;;21599:6;21606;21599:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21679:2;21670:11;;;;;:::i;:::-;;;21539:154;;;21717:6;21703:21;;;;;21009:723;;;;:::o;34024:164::-;34121:4;34145:18;:25;34164:5;34145:25;;;;;;;;;;;;;;;:35;34171:8;34145:35;;;;;;;;;;;;;;;;;;;;;;;;;34138:42;;34024:164;;;;:::o;44990:159::-;;;;;:::o;45808:158::-;;;;;:::o;36038:163::-;36161:32;36167:2;36171:8;36181:5;36188:4;36161:5;:32::i;:::-;36038:163;;;:::o;36460:1775::-;36599:20;36622:13;;36599:36;;36664:1;36650:16;;:2;:16;;;36646:48;;;36675:19;;;;;;;;;;;;;;36646:48;36721:1;36709:8;:13;36705:44;;;36731:18;;;;;;;;;;;;;;36705:44;36762:61;36792:1;36796:2;36800:12;36814:8;36762:21;:61::i;:::-;37135:8;37100:12;:16;37113:2;37100:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37199:8;37159:12;:16;37172:2;37159:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37258:2;37225:11;:25;37237:12;37225:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37325:15;37275:11;:25;37287:12;37275:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37358:20;37381:12;37358:35;;37408:11;37437:8;37422:12;:23;37408:37;;37466:4;:23;;;;;37474:15;:2;:13;;;:15::i;:::-;37466:23;37462:641;;;37510:314;37566:12;37562:2;37541:38;;37558:1;37541:38;;;;;;;;;;;;37607:69;37646:1;37650:2;37654:14;;;;;;37670:5;37607:30;:69::i;:::-;37602:174;;37712:40;;;;;;;;;;;;;;37602:174;37819:3;37803:12;:19;;37510:314;;37905:12;37888:13;;:29;37884:43;;37919:8;;;37884:43;37462:641;;;37968:120;38024:14;;;;;;38020:2;37999:40;;38016:1;37999:40;;;;;;;;;;;;38083:3;38067:12;:19;;37968:120;;37462:641;38133:12;38117:13;:28;;;;37075:1082;;38167:60;38196:1;38200:2;38204:12;38218:8;38167:20;:60::i;:::-;36588:1647;36460:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:156::-;16116:8;16112:1;16104:6;16100:14;16093:32;15976:156;:::o;16138:365::-;16280:3;16301:66;16365:1;16360:3;16301:66;:::i;:::-;16294:73;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16138:365;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:180::-;16982:77;16979:1;16972:88;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17120:305;17160:3;17179:20;17197:1;17179:20;:::i;:::-;17174:25;;17213:20;17231:1;17213:20;:::i;:::-;17208:25;;17367:1;17299:66;17295:74;17292:1;17289:81;17286:107;;;17373:18;;:::i;:::-;17286:107;17417:1;17414;17410:9;17403:16;;17120:305;;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:172::-;20470:24;20466:1;20458:6;20454:14;20447:48;20330:172;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:172::-;21445:24;21441:1;21433:6;21429:14;21422:48;21305:172;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:348::-;22320:7;22343:20;22361:1;22343:20;:::i;:::-;22338:25;;22377:20;22395:1;22377:20;:::i;:::-;22372:25;;22565:1;22497:66;22493:74;22490:1;22487:81;22482:1;22475:9;22468:17;22464:105;22461:131;;;22572:18;;:::i;:::-;22461:131;22620:1;22617;22613:9;22602:20;;22280:348;;;;:::o;22634:172::-;22774:24;22770:1;22762:6;22758:14;22751:48;22634:172;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:171::-;23749:23;23745:1;23737:6;23733:14;23726:47;23609:171;:::o;23786:366::-;23928:3;23949:67;24013:2;24008:3;23949:67;:::i;:::-;23942:74;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23786:366;;;:::o;24158:419::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:148::-;24685:11;24722:3;24707:18;;24583:148;;;;:::o;24737:141::-;24786:4;24809:3;24801:11;;24832:3;24829:1;24822:14;24866:4;24863:1;24853:18;24845:26;;24737:141;;;:::o;24908:845::-;25011:3;25048:5;25042:12;25077:36;25103:9;25077:36;:::i;:::-;25129:89;25211:6;25206:3;25129:89;:::i;:::-;25122:96;;25249:1;25238:9;25234:17;25265:1;25260:137;;;;25411:1;25406:341;;;;25227:520;;25260:137;25344:4;25340:9;25329;25325:25;25320:3;25313:38;25380:6;25375:3;25371:16;25364:23;;25260:137;;25406:341;25473:38;25505:5;25473:38;:::i;:::-;25533:1;25547:154;25561:6;25558:1;25555:13;25547:154;;;25635:7;25629:14;25625:1;25620:3;25616:11;25609:35;25685:1;25676:7;25672:15;25661:26;;25583:4;25580:1;25576:12;25571:17;;25547:154;;;25730:6;25725:3;25721:16;25714:23;;25413:334;;25227:520;;25015:738;;24908:845;;;;:::o;25759:377::-;25865:3;25893:39;25926:5;25893:39;:::i;:::-;25948:89;26030:6;26025:3;25948:89;:::i;:::-;25941:96;;26046:52;26091:6;26086:3;26079:4;26072:5;26068:16;26046:52;:::i;:::-;26123:6;26118:3;26114:16;26107:23;;25869:267;25759:377;;;;:::o;26142:589::-;26367:3;26389:92;26477:3;26468:6;26389:92;:::i;:::-;26382:99;;26498:95;26589:3;26580:6;26498:95;:::i;:::-;26491:102;;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:3;26715:10;;26142:589;;;;;;:::o;26737:125::-;26803:7;26832:24;26850:5;26832:24;:::i;:::-;26821:35;;26737:125;;;:::o;26868:180::-;26970:53;27017:5;26970:53;:::i;:::-;26963:5;26960:64;26950:92;;27038:1;27035;27028:12;26950:92;26868:180;:::o;27054:201::-;27140:5;27171:6;27165:13;27156:22;;27187:62;27243:5;27187:62;:::i;:::-;27054:201;;;;:::o;27261:409::-;27360:6;27409:2;27397:9;27388:7;27384:23;27380:32;27377:119;;;27415:79;;:::i;:::-;27377:119;27535:1;27560:93;27645:7;27636:6;27625:9;27621:22;27560:93;:::i;:::-;27550:103;;27506:157;27261:409;;;;:::o;27676:225::-;27816:34;27812:1;27804:6;27800:14;27793:58;27885:8;27880:2;27872:6;27868:15;27861:33;27676:225;:::o;27907:366::-;28049:3;28070:67;28134:2;28129:3;28070:67;:::i;:::-;28063:74;;28146:93;28235:3;28146:93;:::i;:::-;28264:2;28259:3;28255:12;28248:19;;27907:366;;;:::o;28279:419::-;28445:4;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28279:419;;;:::o;28704:98::-;28755:6;28789:5;28783:12;28773:22;;28704:98;;;:::o;28808:168::-;28891:11;28925:6;28920:3;28913:19;28965:4;28960:3;28956:14;28941:29;;28808:168;;;;:::o;28982:360::-;29068:3;29096:38;29128:5;29096:38;:::i;:::-;29150:70;29213:6;29208:3;29150:70;:::i;:::-;29143:77;;29229:52;29274:6;29269:3;29262:4;29255:5;29251:16;29229:52;:::i;:::-;29306:29;29328:6;29306:29;:::i;:::-;29301:3;29297:39;29290:46;;29072:270;28982:360;;;;:::o;29348:640::-;29543:4;29581:3;29570:9;29566:19;29558:27;;29595:71;29663:1;29652:9;29648:17;29639:6;29595:71;:::i;:::-;29676:72;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29758;29826:2;29815:9;29811:18;29802:6;29758:72;:::i;:::-;29877:9;29871:4;29867:20;29862:2;29851:9;29847:18;29840:48;29905:76;29976:4;29967:6;29905:76;:::i;:::-;29897:84;;29348:640;;;;;;;:::o;29994:141::-;30050:5;30081:6;30075:13;30066:22;;30097:32;30123:5;30097:32;:::i;:::-;29994:141;;;;:::o;30141:349::-;30210:6;30259:2;30247:9;30238:7;30234:23;30230:32;30227:119;;;30265:79;;:::i;:::-;30227:119;30385:1;30410:63;30465:7;30456:6;30445:9;30441:22;30410:63;:::i;:::-;30400:73;;30356:127;30141:349;;;;:::o;30496:233::-;30535:3;30558:24;30576:5;30558:24;:::i;:::-;30549:33;;30604:66;30597:5;30594:77;30591:103;;;30674:18;;:::i;:::-;30591:103;30721:1;30714:5;30710:13;30703:20;;30496:233;;;:::o;30735:180::-;30783:77;30780:1;30773:88;30880:4;30877:1;30870:15;30904:4;30901:1;30894:15;30921:185;30961:1;30978:20;30996:1;30978:20;:::i;:::-;30973:25;;31012:20;31030:1;31012:20;:::i;:::-;31007:25;;31051:1;31041:35;;31056:18;;:::i;:::-;31041:35;31098:1;31095;31091:9;31086:14;;30921:185;;;;:::o;31112:191::-;31152:4;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31245:1;31242;31239:8;31236:34;;;31250:18;;:::i;:::-;31236:34;31295:1;31292;31288:9;31280:17;;31112:191;;;;:::o;31309:176::-;31341:1;31358:20;31376:1;31358:20;:::i;:::-;31353:25;;31392:20;31410:1;31392:20;:::i;:::-;31387:25;;31431:1;31421:35;;31436:18;;:::i;:::-;31421:35;31477:1;31474;31470:9;31465:14;;31309:176;;;;:::o;31491:180::-;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15

Swarm Source

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