ETH Price: $3,063.66 (-6.94%)
Gas: 8 Gwei

Token

project555 (PRJ555)
 

Overview

Max Total Supply

555 PRJ555

Holders

555

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PRJ555
0x3522edca8eca9cb5629fb42833cdc5b3129c94e6
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:
project555

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-18
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.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)

pragma solidity ^0.8.0;

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

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

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


// File @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)

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;
/**
 * @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 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

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

    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

        for (uint256 i; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            if (safe) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.0;
contract project555 is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
   
    bool private _isActive = true;

    uint256 public constant MAX_SUPPLY = 555;

    uint256 public maxCountPerAccount = 1; 
    
    uint256 public price = 5550000000000000 wei;

    string private _tokenBaseURI = "ipfs://QmewDzovc4bX3d29f3mTwab97Z94rHJnmAjEB3ff7qJ1gT/";

    mapping(address => uint256) public minted;

    modifier onlyActive() {
        require(_isActive && totalSupply() < MAX_SUPPLY, 'not active');
        _;
    }

    constructor() ERC721A("project555", "PRJ555") {
    }

    function mint(uint256 numberOfTokens) external payable onlyActive nonReentrant() {
        require(numberOfTokens > 0, "zero count");
        require(numberOfTokens*price <= msg.value, "insufficient funds");
        require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
        require(numberOfTokens.add(minted[msg.sender]) <= maxCountPerAccount, "already max minted");
        
        minted[msg.sender] = minted[msg.sender].add(numberOfTokens);

        _safeMint(msg.sender, numberOfTokens);
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function donate() external payable {
        /// thank you
    }

    
    /////////////////////////////////////////////////////////////
    //////////////////   Admin Functions ////////////////////////
    /////////////////////////////////////////////////////////////
    function startSale() external onlyOwner {
        _isActive = true;
    }

    function endSale() external onlyOwner {
        _isActive = false;
    }

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

    function setMaxMintPerAddr(uint256 _count) external onlyOwner {
        maxCountPerAccount = _count;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"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":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCountPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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"},{"stateMutability":"payable","type":"receive"}]

60806040526001600960006101000a81548160ff0219169083151502179055506001600a556613b7b21280e000600b55604051806060016040528060368152602001620043c160369139600c90805190602001906200006092919062000209565b503480156200006e57600080fd5b506040518060400160405280600a81526020017f70726f6a656374353535000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50524a3535350000000000000000000000000000000000000000000000000000815250620000fb620000ef6200013d60201b60201c565b6200014560201b60201c565b81600290805190602001906200011392919062000209565b5080600390805190602001906200012c92919062000209565b50505060016008819055506200031e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002b9565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e8620002ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614093806200032e6000396000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105f0578063e985e9c51461062d578063ed88c68e1461066a578063f2fde38b14610674576101cd565b8063a22cb4651461055c578063b0d1643d14610585578063b66a0e5d146105b0578063b88d4fde146105c7576101cd565b806391b7f5ed116100d157806391b7f5ed146104c157806395d89b41146104ea578063a035b1fe14610515578063a0712d6814610540576101cd565b8063715018a6146104565780638da5cb5b1461046d5780638ef79e9114610498576101cd565b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461039c57806342842e0e146103b35780636352211e146103dc57806370a0823114610419576101cd565b806323b872dd1461033157806332cb6b0c1461035a578063380d831b14610385576101cd565b8063095ea7b3116101a0578063095ea7b3146102775780631300c014146102a057806318160ddd146102c95780631e7269c5146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c5c565b61069d565b6040516102069190613207565b60405180910390f35b34801561021b57600080fd5b5061022461077f565b6040516102319190613222565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612cff565b610811565b60405161026e91906131a0565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612c1c565b610896565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612cff565b6109af565b005b3480156102d557600080fd5b506102de610a35565b6040516102eb9190613544565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612a99565b610a3f565b6040516103289190613544565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612b06565b610a57565b005b34801561036657600080fd5b5061036f610a67565b60405161037c9190613544565b60405180910390f35b34801561039157600080fd5b5061039a610a6d565b005b3480156103a857600080fd5b506103b1610b06565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612b06565b610bf1565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612cff565b610c11565b60405161041091906131a0565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612a99565b610c27565b60405161044d9190613544565b60405180910390f35b34801561046257600080fd5b5061046b610d10565b005b34801561047957600080fd5b50610482610d98565b60405161048f91906131a0565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612cb6565b610dc1565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612cff565b610e57565b005b3480156104f657600080fd5b506104ff610edd565b60405161050c9190613222565b60405180910390f35b34801561052157600080fd5b5061052a610f6f565b6040516105379190613544565b60405180910390f35b61055a60048036038101906105559190612cff565b610f75565b005b34801561056857600080fd5b50610583600480360381019061057e9190612bdc565b611257565b005b34801561059157600080fd5b5061059a6113d8565b6040516105a79190613544565b60405180910390f35b3480156105bc57600080fd5b506105c56113de565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612b59565b611477565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612cff565b6114d3565b6040516106249190613222565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612ac6565b6114e5565b6040516106619190613207565b60405180910390f35b610672611579565b005b34801561068057600080fd5b5061069b60048036038101906106969190612a99565b61157b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610778575061077782611673565b5b9050919050565b60606002805461078e906137ff565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906137ff565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b600061081c826116dd565b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613524565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a182610c11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990613424565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109316116eb565b73ffffffffffffffffffffffffffffffffffffffff161480610960575061095f8161095a6116eb565b6114e5565b5b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613344565b60405180910390fd5b6109aa8383836116f3565b505050565b6109b76116eb565b73ffffffffffffffffffffffffffffffffffffffff166109d5610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906133a4565b60405180910390fd5b80600a8190555050565b6000600154905090565b600d6020528060005260406000206000915090505481565b610a628383836117a5565b505050565b61022b81565b610a756116eb565b73ffffffffffffffffffffffffffffffffffffffff16610a93610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906133a4565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b610b0e6116eb565b73ffffffffffffffffffffffffffffffffffffffff16610b2c610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906133a4565b60405180910390fd5b60026008541415610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf906134e4565b60405180910390fd5b60026008819055506000479050610be6610be0610d98565b82611ce5565b506001600881905550565b610c0c83838360405180602001604052806000815250611477565b505050565b6000610c1c82611dd9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613364565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610d186116eb565b73ffffffffffffffffffffffffffffffffffffffff16610d36610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906133a4565b60405180910390fd5b610d966000611f73565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dc96116eb565b73ffffffffffffffffffffffffffffffffffffffff16610de7610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906133a4565b60405180910390fd5b80600c9080519060200190610e53929190612873565b5050565b610e5f6116eb565b73ffffffffffffffffffffffffffffffffffffffff16610e7d610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906133a4565b60405180910390fd5b80600b8190555050565b606060038054610eec906137ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f18906137ff565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b5050505050905090565b600b5481565b600960009054906101000a900460ff168015610f99575061022b610f97610a35565b105b610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613284565b60405180910390fd5b6002600854141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906134e4565b60405180910390fd5b600260088190555060008111611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090613484565b60405180910390fd5b34600b548261107891906136bb565b11156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613444565b60405180910390fd5b6110d56110c4610a35565b61022b61203790919063ffffffff16565b811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613324565b60405180910390fd5b600a5461116c600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361204d90919063ffffffff16565b11156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906132c4565b60405180910390fd5b6111ff81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461204d90919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061124c3382612063565b600160088190555050565b61125f6116eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c4906133e4565b60405180910390fd5b80600760006112da6116eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113876116eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113cc9190613207565b60405180910390a35050565b600a5481565b6113e66116eb565b73ffffffffffffffffffffffffffffffffffffffff16611404610d98565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906133a4565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b6114828484846117a5565b61148e84848484612081565b6114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613464565b60405180910390fd5b50505050565b60606114de82612218565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b565b6115836116eb565b73ffffffffffffffffffffffffffffffffffffffff166115a1610d98565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613244565b60405180910390fd5b61167081611f73565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117b082611dd9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117d76116eb565b73ffffffffffffffffffffffffffffffffffffffff16148061183357506117fc6116eb565b73ffffffffffffffffffffffffffffffffffffffff1661181b84610811565b73ffffffffffffffffffffffffffffffffffffffff16145b8061184f575061184e82600001516118496116eb565b6114e5565b5b905080611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613404565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613384565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906132a4565b60405180910390fd5b61198085858560016122c0565b61199060008484600001516116f3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c7557611bd4816116dd565b15611c745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cde85858560016122c6565b5050505050565b80471015611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613304565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d4e9061318b565b60006040518083038185875af1925050503d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b5050905080611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906132e4565b60405180910390fd5b505050565b611de16128f9565b611dea826116dd565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613264565b60405180910390fd5b60008290505b60008110611f32576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f23578092505050611f6e565b50808060019003915050611e2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6590613504565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120459190613715565b905092915050565b6000818361205b9190613634565b905092915050565b61207d8282604051806020016040528060008152506122cc565b5050565b60006120a28473ffffffffffffffffffffffffffffffffffffffff166122de565b1561220b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cb6116eb565b8786866040518563ffffffff1660e01b81526004016120ed94939291906131bb565b602060405180830381600087803b15801561210757600080fd5b505af192505050801561213857506040513d601f19601f820116820180604052508101906121359190612c89565b60015b6121bb573d8060008114612168576040519150601f19603f3d011682016040523d82523d6000602084013e61216d565b606091505b506000815114156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90613464565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612210565b600190505b949350505050565b6060612223826116dd565b612262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612259906133c4565b60405180910390fd5b600061226c612301565b905060008151141561228d57604051806020016040528060008152506122b8565b8061229784612393565b6040516020016122a8929190613167565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6122d983838360016124f4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600c8054612310906137ff565b80601f016020809104026020016040519081016040528092919081815260200182805461233c906137ff565b80156123895780601f1061235e57610100808354040283529160200191612389565b820191906000526020600020905b81548152906001019060200180831161236c57829003601f168201915b5050505050905090565b606060008214156123db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ef565b600082905060005b6000821461240d5780806123f690613862565b915050600a82612406919061368a565b91506123e3565b60008167ffffffffffffffff81111561242957612428613998565b5b6040519080825280601f01601f19166020018201604052801561245b5781602001600182028036833780820191505090505b5090505b600085146124e8576001826124749190613715565b9150600a8561248391906138ab565b603061248f9190613634565b60f81b8183815181106124a5576124a4613969565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124e1919061368a565b945061245f565b8093505050505b919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906134a4565b60405180910390fd5b60008414156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a6906134c4565b60405180910390fd5b6125bc60008683876122c0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561285657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612841576128016000888488612081565b612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790613464565b60405180910390fd5b5b8180600101925050808060010191505061278a565b50806001819055505061286c60008683876122c6565b5050505050565b82805461287f906137ff565b90600052602060002090601f0160209004810192826128a157600085556128e8565b82601f106128ba57805160ff19168380011785556128e8565b828001600101855582156128e8579182015b828111156128e75782518255916020019190600101906128cc565b5b5090506128f59190612933565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561294c576000816000905550600101612934565b5090565b600061296361295e84613584565b61355f565b90508281526020810184848401111561297f5761297e6139cc565b5b61298a8482856137bd565b509392505050565b60006129a56129a0846135b5565b61355f565b9050828152602081018484840111156129c1576129c06139cc565b5b6129cc8482856137bd565b509392505050565b6000813590506129e381614001565b92915050565b6000813590506129f881614018565b92915050565b600081359050612a0d8161402f565b92915050565b600081519050612a228161402f565b92915050565b600082601f830112612a3d57612a3c6139c7565b5b8135612a4d848260208601612950565b91505092915050565b600082601f830112612a6b57612a6a6139c7565b5b8135612a7b848260208601612992565b91505092915050565b600081359050612a9381614046565b92915050565b600060208284031215612aaf57612aae6139d6565b5b6000612abd848285016129d4565b91505092915050565b60008060408385031215612add57612adc6139d6565b5b6000612aeb858286016129d4565b9250506020612afc858286016129d4565b9150509250929050565b600080600060608486031215612b1f57612b1e6139d6565b5b6000612b2d868287016129d4565b9350506020612b3e868287016129d4565b9250506040612b4f86828701612a84565b9150509250925092565b60008060008060808587031215612b7357612b726139d6565b5b6000612b81878288016129d4565b9450506020612b92878288016129d4565b9350506040612ba387828801612a84565b925050606085013567ffffffffffffffff811115612bc457612bc36139d1565b5b612bd087828801612a28565b91505092959194509250565b60008060408385031215612bf357612bf26139d6565b5b6000612c01858286016129d4565b9250506020612c12858286016129e9565b9150509250929050565b60008060408385031215612c3357612c326139d6565b5b6000612c41858286016129d4565b9250506020612c5285828601612a84565b9150509250929050565b600060208284031215612c7257612c716139d6565b5b6000612c80848285016129fe565b91505092915050565b600060208284031215612c9f57612c9e6139d6565b5b6000612cad84828501612a13565b91505092915050565b600060208284031215612ccc57612ccb6139d6565b5b600082013567ffffffffffffffff811115612cea57612ce96139d1565b5b612cf684828501612a56565b91505092915050565b600060208284031215612d1557612d146139d6565b5b6000612d2384828501612a84565b91505092915050565b612d3581613749565b82525050565b612d448161375b565b82525050565b6000612d55826135e6565b612d5f81856135fc565b9350612d6f8185602086016137cc565b612d78816139db565b840191505092915050565b6000612d8e826135f1565b612d988185613618565b9350612da88185602086016137cc565b612db1816139db565b840191505092915050565b6000612dc7826135f1565b612dd18185613629565b9350612de18185602086016137cc565b80840191505092915050565b6000612dfa602683613618565b9150612e05826139ec565b604082019050919050565b6000612e1d602a83613618565b9150612e2882613a3b565b604082019050919050565b6000612e40600a83613618565b9150612e4b82613a8a565b602082019050919050565b6000612e63602583613618565b9150612e6e82613ab3565b604082019050919050565b6000612e86601283613618565b9150612e9182613b02565b602082019050919050565b6000612ea9603a83613618565b9150612eb482613b2b565b604082019050919050565b6000612ecc601d83613618565b9150612ed782613b7a565b602082019050919050565b6000612eef600f83613618565b9150612efa82613ba3565b602082019050919050565b6000612f12603983613618565b9150612f1d82613bcc565b604082019050919050565b6000612f35602b83613618565b9150612f4082613c1b565b604082019050919050565b6000612f58602683613618565b9150612f6382613c6a565b604082019050919050565b6000612f7b602083613618565b9150612f8682613cb9565b602082019050919050565b6000612f9e602f83613618565b9150612fa982613ce2565b604082019050919050565b6000612fc1601a83613618565b9150612fcc82613d31565b602082019050919050565b6000612fe4603283613618565b9150612fef82613d5a565b604082019050919050565b6000613007602283613618565b915061301282613da9565b604082019050919050565b600061302a60008361360d565b915061303582613df8565b600082019050919050565b600061304d601283613618565b915061305882613dfb565b602082019050919050565b6000613070603383613618565b915061307b82613e24565b604082019050919050565b6000613093600a83613618565b915061309e82613e73565b602082019050919050565b60006130b6602183613618565b91506130c182613e9c565b604082019050919050565b60006130d9602883613618565b91506130e482613eeb565b604082019050919050565b60006130fc601f83613618565b915061310782613f3a565b602082019050919050565b600061311f602f83613618565b915061312a82613f63565b604082019050919050565b6000613142602d83613618565b915061314d82613fb2565b604082019050919050565b613161816137b3565b82525050565b60006131738285612dbc565b915061317f8284612dbc565b91508190509392505050565b60006131968261301d565b9150819050919050565b60006020820190506131b56000830184612d2c565b92915050565b60006080820190506131d06000830187612d2c565b6131dd6020830186612d2c565b6131ea6040830185613158565b81810360608301526131fc8184612d4a565b905095945050505050565b600060208201905061321c6000830184612d3b565b92915050565b6000602082019050818103600083015261323c8184612d83565b905092915050565b6000602082019050818103600083015261325d81612ded565b9050919050565b6000602082019050818103600083015261327d81612e10565b9050919050565b6000602082019050818103600083015261329d81612e33565b9050919050565b600060208201905081810360008301526132bd81612e56565b9050919050565b600060208201905081810360008301526132dd81612e79565b9050919050565b600060208201905081810360008301526132fd81612e9c565b9050919050565b6000602082019050818103600083015261331d81612ebf565b9050919050565b6000602082019050818103600083015261333d81612ee2565b9050919050565b6000602082019050818103600083015261335d81612f05565b9050919050565b6000602082019050818103600083015261337d81612f28565b9050919050565b6000602082019050818103600083015261339d81612f4b565b9050919050565b600060208201905081810360008301526133bd81612f6e565b9050919050565b600060208201905081810360008301526133dd81612f91565b9050919050565b600060208201905081810360008301526133fd81612fb4565b9050919050565b6000602082019050818103600083015261341d81612fd7565b9050919050565b6000602082019050818103600083015261343d81612ffa565b9050919050565b6000602082019050818103600083015261345d81613040565b9050919050565b6000602082019050818103600083015261347d81613063565b9050919050565b6000602082019050818103600083015261349d81613086565b9050919050565b600060208201905081810360008301526134bd816130a9565b9050919050565b600060208201905081810360008301526134dd816130cc565b9050919050565b600060208201905081810360008301526134fd816130ef565b9050919050565b6000602082019050818103600083015261351d81613112565b9050919050565b6000602082019050818103600083015261353d81613135565b9050919050565b60006020820190506135596000830184613158565b92915050565b600061356961357a565b90506135758282613831565b919050565b6000604051905090565b600067ffffffffffffffff82111561359f5761359e613998565b5b6135a8826139db565b9050602081019050919050565b600067ffffffffffffffff8211156135d0576135cf613998565b5b6135d9826139db565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363f826137b3565b915061364a836137b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367f5761367e6138dc565b5b828201905092915050565b6000613695826137b3565b91506136a0836137b3565b9250826136b0576136af61390b565b5b828204905092915050565b60006136c6826137b3565b91506136d1836137b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370a576137096138dc565b5b828202905092915050565b6000613720826137b3565b915061372b836137b3565b92508282101561373e5761373d6138dc565b5b828203905092915050565b600061375482613793565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ea5780820151818401526020810190506137cf565b838111156137f9576000848401525b50505050565b6000600282049050600182168061381757607f821691505b6020821081141561382b5761382a61393a565b5b50919050565b61383a826139db565b810181811067ffffffffffffffff8211171561385957613858613998565b5b80604052505050565b600061386d826137b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a05761389f6138dc565b5b600182019050919050565b60006138b6826137b3565b91506138c1836137b3565b9250826138d1576138d061390b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f742061637469766500000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f616c7265616479206d6178206d696e7465640000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f6e6f7420656e6f756768206e6674730000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f7a65726f20636f756e7400000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61400a81613749565b811461401557600080fd5b50565b6140218161375b565b811461402c57600080fd5b50565b61403881613767565b811461404357600080fd5b50565b61404f816137b3565b811461405a57600080fd5b5056fea2646970667358221220e1d748f5a6ab564bba37352381f7f07929ce73d8278b525c7dd7a4a96db4c2ef64736f6c63430008070033697066733a2f2f516d6577447a6f76633462583364323966336d5477616239375a393472484a6e6d416a454233666637714a3167542f

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105f0578063e985e9c51461062d578063ed88c68e1461066a578063f2fde38b14610674576101cd565b8063a22cb4651461055c578063b0d1643d14610585578063b66a0e5d146105b0578063b88d4fde146105c7576101cd565b806391b7f5ed116100d157806391b7f5ed146104c157806395d89b41146104ea578063a035b1fe14610515578063a0712d6814610540576101cd565b8063715018a6146104565780638da5cb5b1461046d5780638ef79e9114610498576101cd565b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461039c57806342842e0e146103b35780636352211e146103dc57806370a0823114610419576101cd565b806323b872dd1461033157806332cb6b0c1461035a578063380d831b14610385576101cd565b8063095ea7b3116101a0578063095ea7b3146102775780631300c014146102a057806318160ddd146102c95780631e7269c5146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c5c565b61069d565b6040516102069190613207565b60405180910390f35b34801561021b57600080fd5b5061022461077f565b6040516102319190613222565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612cff565b610811565b60405161026e91906131a0565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612c1c565b610896565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612cff565b6109af565b005b3480156102d557600080fd5b506102de610a35565b6040516102eb9190613544565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612a99565b610a3f565b6040516103289190613544565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612b06565b610a57565b005b34801561036657600080fd5b5061036f610a67565b60405161037c9190613544565b60405180910390f35b34801561039157600080fd5b5061039a610a6d565b005b3480156103a857600080fd5b506103b1610b06565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612b06565b610bf1565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612cff565b610c11565b60405161041091906131a0565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612a99565b610c27565b60405161044d9190613544565b60405180910390f35b34801561046257600080fd5b5061046b610d10565b005b34801561047957600080fd5b50610482610d98565b60405161048f91906131a0565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612cb6565b610dc1565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612cff565b610e57565b005b3480156104f657600080fd5b506104ff610edd565b60405161050c9190613222565b60405180910390f35b34801561052157600080fd5b5061052a610f6f565b6040516105379190613544565b60405180910390f35b61055a60048036038101906105559190612cff565b610f75565b005b34801561056857600080fd5b50610583600480360381019061057e9190612bdc565b611257565b005b34801561059157600080fd5b5061059a6113d8565b6040516105a79190613544565b60405180910390f35b3480156105bc57600080fd5b506105c56113de565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612b59565b611477565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612cff565b6114d3565b6040516106249190613222565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612ac6565b6114e5565b6040516106619190613207565b60405180910390f35b610672611579565b005b34801561068057600080fd5b5061069b60048036038101906106969190612a99565b61157b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610778575061077782611673565b5b9050919050565b60606002805461078e906137ff565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906137ff565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b600061081c826116dd565b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613524565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a182610c11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990613424565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109316116eb565b73ffffffffffffffffffffffffffffffffffffffff161480610960575061095f8161095a6116eb565b6114e5565b5b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613344565b60405180910390fd5b6109aa8383836116f3565b505050565b6109b76116eb565b73ffffffffffffffffffffffffffffffffffffffff166109d5610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906133a4565b60405180910390fd5b80600a8190555050565b6000600154905090565b600d6020528060005260406000206000915090505481565b610a628383836117a5565b505050565b61022b81565b610a756116eb565b73ffffffffffffffffffffffffffffffffffffffff16610a93610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906133a4565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b610b0e6116eb565b73ffffffffffffffffffffffffffffffffffffffff16610b2c610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906133a4565b60405180910390fd5b60026008541415610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf906134e4565b60405180910390fd5b60026008819055506000479050610be6610be0610d98565b82611ce5565b506001600881905550565b610c0c83838360405180602001604052806000815250611477565b505050565b6000610c1c82611dd9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613364565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610d186116eb565b73ffffffffffffffffffffffffffffffffffffffff16610d36610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906133a4565b60405180910390fd5b610d966000611f73565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dc96116eb565b73ffffffffffffffffffffffffffffffffffffffff16610de7610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906133a4565b60405180910390fd5b80600c9080519060200190610e53929190612873565b5050565b610e5f6116eb565b73ffffffffffffffffffffffffffffffffffffffff16610e7d610d98565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906133a4565b60405180910390fd5b80600b8190555050565b606060038054610eec906137ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f18906137ff565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b5050505050905090565b600b5481565b600960009054906101000a900460ff168015610f99575061022b610f97610a35565b105b610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613284565b60405180910390fd5b6002600854141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906134e4565b60405180910390fd5b600260088190555060008111611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090613484565b60405180910390fd5b34600b548261107891906136bb565b11156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613444565b60405180910390fd5b6110d56110c4610a35565b61022b61203790919063ffffffff16565b811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613324565b60405180910390fd5b600a5461116c600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361204d90919063ffffffff16565b11156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906132c4565b60405180910390fd5b6111ff81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461204d90919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061124c3382612063565b600160088190555050565b61125f6116eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c4906133e4565b60405180910390fd5b80600760006112da6116eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113876116eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113cc9190613207565b60405180910390a35050565b600a5481565b6113e66116eb565b73ffffffffffffffffffffffffffffffffffffffff16611404610d98565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906133a4565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b6114828484846117a5565b61148e84848484612081565b6114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613464565b60405180910390fd5b50505050565b60606114de82612218565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b565b6115836116eb565b73ffffffffffffffffffffffffffffffffffffffff166115a1610d98565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613244565b60405180910390fd5b61167081611f73565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117b082611dd9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117d76116eb565b73ffffffffffffffffffffffffffffffffffffffff16148061183357506117fc6116eb565b73ffffffffffffffffffffffffffffffffffffffff1661181b84610811565b73ffffffffffffffffffffffffffffffffffffffff16145b8061184f575061184e82600001516118496116eb565b6114e5565b5b905080611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613404565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613384565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906132a4565b60405180910390fd5b61198085858560016122c0565b61199060008484600001516116f3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c7557611bd4816116dd565b15611c745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cde85858560016122c6565b5050505050565b80471015611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613304565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d4e9061318b565b60006040518083038185875af1925050503d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b5050905080611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906132e4565b60405180910390fd5b505050565b611de16128f9565b611dea826116dd565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613264565b60405180910390fd5b60008290505b60008110611f32576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f23578092505050611f6e565b50808060019003915050611e2f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6590613504565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120459190613715565b905092915050565b6000818361205b9190613634565b905092915050565b61207d8282604051806020016040528060008152506122cc565b5050565b60006120a28473ffffffffffffffffffffffffffffffffffffffff166122de565b1561220b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cb6116eb565b8786866040518563ffffffff1660e01b81526004016120ed94939291906131bb565b602060405180830381600087803b15801561210757600080fd5b505af192505050801561213857506040513d601f19601f820116820180604052508101906121359190612c89565b60015b6121bb573d8060008114612168576040519150601f19603f3d011682016040523d82523d6000602084013e61216d565b606091505b506000815114156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90613464565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612210565b600190505b949350505050565b6060612223826116dd565b612262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612259906133c4565b60405180910390fd5b600061226c612301565b905060008151141561228d57604051806020016040528060008152506122b8565b8061229784612393565b6040516020016122a8929190613167565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b6122d983838360016124f4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600c8054612310906137ff565b80601f016020809104026020016040519081016040528092919081815260200182805461233c906137ff565b80156123895780601f1061235e57610100808354040283529160200191612389565b820191906000526020600020905b81548152906001019060200180831161236c57829003601f168201915b5050505050905090565b606060008214156123db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ef565b600082905060005b6000821461240d5780806123f690613862565b915050600a82612406919061368a565b91506123e3565b60008167ffffffffffffffff81111561242957612428613998565b5b6040519080825280601f01601f19166020018201604052801561245b5781602001600182028036833780820191505090505b5090505b600085146124e8576001826124749190613715565b9150600a8561248391906138ab565b603061248f9190613634565b60f81b8183815181106124a5576124a4613969565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124e1919061368a565b945061245f565b8093505050505b919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906134a4565b60405180910390fd5b60008414156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a6906134c4565b60405180910390fd5b6125bc60008683876122c0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561285657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612841576128016000888488612081565b612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790613464565b60405180910390fd5b5b8180600101925050808060010191505061278a565b50806001819055505061286c60008683876122c6565b5050505050565b82805461287f906137ff565b90600052602060002090601f0160209004810192826128a157600085556128e8565b82601f106128ba57805160ff19168380011785556128e8565b828001600101855582156128e8579182015b828111156128e75782518255916020019190600101906128cc565b5b5090506128f59190612933565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561294c576000816000905550600101612934565b5090565b600061296361295e84613584565b61355f565b90508281526020810184848401111561297f5761297e6139cc565b5b61298a8482856137bd565b509392505050565b60006129a56129a0846135b5565b61355f565b9050828152602081018484840111156129c1576129c06139cc565b5b6129cc8482856137bd565b509392505050565b6000813590506129e381614001565b92915050565b6000813590506129f881614018565b92915050565b600081359050612a0d8161402f565b92915050565b600081519050612a228161402f565b92915050565b600082601f830112612a3d57612a3c6139c7565b5b8135612a4d848260208601612950565b91505092915050565b600082601f830112612a6b57612a6a6139c7565b5b8135612a7b848260208601612992565b91505092915050565b600081359050612a9381614046565b92915050565b600060208284031215612aaf57612aae6139d6565b5b6000612abd848285016129d4565b91505092915050565b60008060408385031215612add57612adc6139d6565b5b6000612aeb858286016129d4565b9250506020612afc858286016129d4565b9150509250929050565b600080600060608486031215612b1f57612b1e6139d6565b5b6000612b2d868287016129d4565b9350506020612b3e868287016129d4565b9250506040612b4f86828701612a84565b9150509250925092565b60008060008060808587031215612b7357612b726139d6565b5b6000612b81878288016129d4565b9450506020612b92878288016129d4565b9350506040612ba387828801612a84565b925050606085013567ffffffffffffffff811115612bc457612bc36139d1565b5b612bd087828801612a28565b91505092959194509250565b60008060408385031215612bf357612bf26139d6565b5b6000612c01858286016129d4565b9250506020612c12858286016129e9565b9150509250929050565b60008060408385031215612c3357612c326139d6565b5b6000612c41858286016129d4565b9250506020612c5285828601612a84565b9150509250929050565b600060208284031215612c7257612c716139d6565b5b6000612c80848285016129fe565b91505092915050565b600060208284031215612c9f57612c9e6139d6565b5b6000612cad84828501612a13565b91505092915050565b600060208284031215612ccc57612ccb6139d6565b5b600082013567ffffffffffffffff811115612cea57612ce96139d1565b5b612cf684828501612a56565b91505092915050565b600060208284031215612d1557612d146139d6565b5b6000612d2384828501612a84565b91505092915050565b612d3581613749565b82525050565b612d448161375b565b82525050565b6000612d55826135e6565b612d5f81856135fc565b9350612d6f8185602086016137cc565b612d78816139db565b840191505092915050565b6000612d8e826135f1565b612d988185613618565b9350612da88185602086016137cc565b612db1816139db565b840191505092915050565b6000612dc7826135f1565b612dd18185613629565b9350612de18185602086016137cc565b80840191505092915050565b6000612dfa602683613618565b9150612e05826139ec565b604082019050919050565b6000612e1d602a83613618565b9150612e2882613a3b565b604082019050919050565b6000612e40600a83613618565b9150612e4b82613a8a565b602082019050919050565b6000612e63602583613618565b9150612e6e82613ab3565b604082019050919050565b6000612e86601283613618565b9150612e9182613b02565b602082019050919050565b6000612ea9603a83613618565b9150612eb482613b2b565b604082019050919050565b6000612ecc601d83613618565b9150612ed782613b7a565b602082019050919050565b6000612eef600f83613618565b9150612efa82613ba3565b602082019050919050565b6000612f12603983613618565b9150612f1d82613bcc565b604082019050919050565b6000612f35602b83613618565b9150612f4082613c1b565b604082019050919050565b6000612f58602683613618565b9150612f6382613c6a565b604082019050919050565b6000612f7b602083613618565b9150612f8682613cb9565b602082019050919050565b6000612f9e602f83613618565b9150612fa982613ce2565b604082019050919050565b6000612fc1601a83613618565b9150612fcc82613d31565b602082019050919050565b6000612fe4603283613618565b9150612fef82613d5a565b604082019050919050565b6000613007602283613618565b915061301282613da9565b604082019050919050565b600061302a60008361360d565b915061303582613df8565b600082019050919050565b600061304d601283613618565b915061305882613dfb565b602082019050919050565b6000613070603383613618565b915061307b82613e24565b604082019050919050565b6000613093600a83613618565b915061309e82613e73565b602082019050919050565b60006130b6602183613618565b91506130c182613e9c565b604082019050919050565b60006130d9602883613618565b91506130e482613eeb565b604082019050919050565b60006130fc601f83613618565b915061310782613f3a565b602082019050919050565b600061311f602f83613618565b915061312a82613f63565b604082019050919050565b6000613142602d83613618565b915061314d82613fb2565b604082019050919050565b613161816137b3565b82525050565b60006131738285612dbc565b915061317f8284612dbc565b91508190509392505050565b60006131968261301d565b9150819050919050565b60006020820190506131b56000830184612d2c565b92915050565b60006080820190506131d06000830187612d2c565b6131dd6020830186612d2c565b6131ea6040830185613158565b81810360608301526131fc8184612d4a565b905095945050505050565b600060208201905061321c6000830184612d3b565b92915050565b6000602082019050818103600083015261323c8184612d83565b905092915050565b6000602082019050818103600083015261325d81612ded565b9050919050565b6000602082019050818103600083015261327d81612e10565b9050919050565b6000602082019050818103600083015261329d81612e33565b9050919050565b600060208201905081810360008301526132bd81612e56565b9050919050565b600060208201905081810360008301526132dd81612e79565b9050919050565b600060208201905081810360008301526132fd81612e9c565b9050919050565b6000602082019050818103600083015261331d81612ebf565b9050919050565b6000602082019050818103600083015261333d81612ee2565b9050919050565b6000602082019050818103600083015261335d81612f05565b9050919050565b6000602082019050818103600083015261337d81612f28565b9050919050565b6000602082019050818103600083015261339d81612f4b565b9050919050565b600060208201905081810360008301526133bd81612f6e565b9050919050565b600060208201905081810360008301526133dd81612f91565b9050919050565b600060208201905081810360008301526133fd81612fb4565b9050919050565b6000602082019050818103600083015261341d81612fd7565b9050919050565b6000602082019050818103600083015261343d81612ffa565b9050919050565b6000602082019050818103600083015261345d81613040565b9050919050565b6000602082019050818103600083015261347d81613063565b9050919050565b6000602082019050818103600083015261349d81613086565b9050919050565b600060208201905081810360008301526134bd816130a9565b9050919050565b600060208201905081810360008301526134dd816130cc565b9050919050565b600060208201905081810360008301526134fd816130ef565b9050919050565b6000602082019050818103600083015261351d81613112565b9050919050565b6000602082019050818103600083015261353d81613135565b9050919050565b60006020820190506135596000830184613158565b92915050565b600061356961357a565b90506135758282613831565b919050565b6000604051905090565b600067ffffffffffffffff82111561359f5761359e613998565b5b6135a8826139db565b9050602081019050919050565b600067ffffffffffffffff8211156135d0576135cf613998565b5b6135d9826139db565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363f826137b3565b915061364a836137b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367f5761367e6138dc565b5b828201905092915050565b6000613695826137b3565b91506136a0836137b3565b9250826136b0576136af61390b565b5b828204905092915050565b60006136c6826137b3565b91506136d1836137b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370a576137096138dc565b5b828202905092915050565b6000613720826137b3565b915061372b836137b3565b92508282101561373e5761373d6138dc565b5b828203905092915050565b600061375482613793565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ea5780820151818401526020810190506137cf565b838111156137f9576000848401525b50505050565b6000600282049050600182168061381757607f821691505b6020821081141561382b5761382a61393a565b5b50919050565b61383a826139db565b810181811067ffffffffffffffff8211171561385957613858613998565b5b80604052505050565b600061386d826137b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a05761389f6138dc565b5b600182019050919050565b60006138b6826137b3565b91506138c1836137b3565b9250826138d1576138d061390b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f742061637469766500000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f616c7265616479206d6178206d696e7465640000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f6e6f7420656e6f756768206e6674730000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f7a65726f20636f756e7400000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61400a81613749565b811461401557600080fd5b50565b6140218161375b565b811461402c57600080fd5b50565b61403881613767565b811461404357600080fd5b50565b61404f816137b3565b811461405a57600080fd5b5056fea2646970667358221220e1d748f5a6ab564bba37352381f7f07929ce73d8278b525c7dd7a4a96db4c2ef64736f6c63430008070033

Deployed Bytecode Sourcemap

47344:2400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34446:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37783:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37304:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49314:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34283:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47732:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38659:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47484:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49138:74;;;;;;;;;;;;;:::i;:::-;;49539:165;;;;;;;;;;;;;:::i;:::-;;38892:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36030:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34803:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2589:103;;;;;;;;;;;;;:::i;:::-;;1938:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49430:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49220:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36390:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47584:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47967:534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38069:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47533:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49055:75;;;;;;;;;;;;;:::i;:::-;;39140:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48623:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38428:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48774:66;;;:::i;:::-;;2847:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34446:293;34548:4;34596:25;34581:40;;;:11;:40;;;;:101;;;;34649:33;34634:48;;;:11;:48;;;;34581:101;:150;;;;34695:36;34719:11;34695:23;:36::i;:::-;34581:150;34565:166;;34446:293;;;:::o;36221:100::-;36275:13;36308:5;36301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36221:100;:::o;37783:214::-;37851:7;37879:16;37887:7;37879;:16::i;:::-;37871:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37965:15;:24;37981:7;37965:24;;;;;;;;;;;;;;;;;;;;;37958:31;;37783:214;;;:::o;37304:413::-;37377:13;37393:24;37409:7;37393:15;:24::i;:::-;37377:40;;37442:5;37436:11;;:2;:11;;;;37428:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37537:5;37521:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37546:37;37563:5;37570:12;:10;:12::i;:::-;37546:16;:37::i;:::-;37521:62;37499:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37681:28;37690:2;37694:7;37703:5;37681:8;:28::i;:::-;37366:351;37304:413;;:::o;49314:108::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49408:6:::1;49387:18;:27;;;;49314:108:::0;:::o;34283:91::-;34327:7;34354:12;;34347:19;;34283:91;:::o;47732:41::-;;;;;;;;;;;;;;;;;:::o;38659:162::-;38785:28;38795:4;38801:2;38805:7;38785:9;:28::i;:::-;38659:162;;;:::o;47484:40::-;47521:3;47484:40;:::o;49138:74::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:5:::1;49187:9;;:17;;;;;;;;;;;;;;;;;;49138:74::o:0;49539:165::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18083:1:::1;18681:7;;:19;;18673:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;18083:1;18814:7;:18;;;;49602:15:::2;49620:21;49602:39;;49652:44;49678:7;:5;:7::i;:::-;49688;49652:17;:44::i;:::-;49591:113;18039:1:::1;18993:7;:22;;;;49539:165::o:0;38892:177::-;39022:39;39039:4;39045:2;39049:7;39022:39;;;;;;;;;;;;:16;:39::i;:::-;38892:177;;;:::o;36030:124::-;36094:7;36121:20;36133:7;36121:11;:20::i;:::-;:25;;;36114:32;;36030:124;;;:::o;34803:221::-;34867:7;34912:1;34895:19;;:5;:19;;;;34887:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34988:12;:19;35001:5;34988:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34980:36;;34973:43;;34803:221;;;:::o;2589:103::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;1938:87::-;1984:7;2011:6;;;;;;;;;;;2004:13;;1938:87;:::o;49430:101::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49520:3:::1;49504:13;:19;;;;;;;;;;;;:::i;:::-;;49430:101:::0;:::o;49220:86::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49292:6:::1;49284:5;:14;;;;49220:86:::0;:::o;36390:104::-;36446:13;36479:7;36472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36390:104;:::o;47584:43::-;;;;:::o;47967:534::-;47823:9;;;;;;;;;;;:39;;;;;47521:3;47836:13;:11;:13::i;:::-;:26;47823:39;47815:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;18083:1:::1;18681:7;;:19;;18673:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;18083:1;18814:7;:18;;;;48084:1:::2;48067:14;:18;48059:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48143:9;48134:5;;48119:14;:20;;;;:::i;:::-;:33;;48111:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48212:29;48227:13;:11;:13::i;:::-;47521:3;48212:14;;:29;;;;:::i;:::-;48194:14;:47;;48186:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;48322:18;;48280:38;48299:6;:18;48306:10;48299:18;;;;;;;;;;;;;;;;48280:14;:18;;:38;;;;:::i;:::-;:60;;48272:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;48405:38;48428:14;48405:6;:18;48412:10;48405:18;;;;;;;;;;;;;;;;:22;;:38;;;;:::i;:::-;48384:6;:18;48391:10;48384:18;;;;;;;;;;;;;;;:59;;;;48456:37;48466:10;48478:14;48456:9;:37::i;:::-;18039:1:::1;18993:7;:22;;;;47967:534:::0;:::o;38069:288::-;38176:12;:10;:12::i;:::-;38164:24;;:8;:24;;;;38156:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38277:8;38232:18;:32;38251:12;:10;:12::i;:::-;38232:32;;;;;;;;;;;;;;;:42;38265:8;38232:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38330:8;38301:48;;38316:12;:10;:12::i;:::-;38301:48;;;38340:8;38301:48;;;;;;:::i;:::-;;;;;;;;38069:288;;:::o;47533:37::-;;;;:::o;49055:75::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49118:4:::1;49106:9;;:16;;;;;;;;;;;;;;;;;;49055:75::o:0;39140:355::-;39299:28;39309:4;39315:2;39319:7;39299:9;:28::i;:::-;39360:48;39383:4;39389:2;39393:7;39402:5;39360:22;:48::i;:::-;39338:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;39140:355;;;;:::o;48623:143::-;48697:13;48735:23;48750:7;48735:14;:23::i;:::-;48728:30;;48623:143;;;:::o;38428:164::-;38525:4;38549:18;:25;38568:5;38549:25;;;;;;;;;;;;;;;:35;38575:8;38549:35;;;;;;;;;;;;;;;;;;;;;;;;;38542:42;;38428:164;;;;:::o;48774:66::-;:::o;2847:201::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2956:1:::1;2936:22;;:8;:22;;;;2928:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3012:28;3031:8;3012:18;:28::i;:::-;2847:201:::0;:::o;32425:157::-;32510:4;32549:25;32534:40;;;:11;:40;;;;32527:47;;32425:157;;;:::o;39750:111::-;39807:4;39841:12;;39831:7;:22;39824:29;;39750:111;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;44530:196::-;44672:2;44645:15;:24;44661:7;44645:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44710:7;44706:2;44690:28;;44699:5;44690:28;;;;;;;;;;;;44530:196;;;:::o;42478:1934::-;42593:35;42631:20;42643:7;42631:11;:20::i;:::-;42593:58;;42664:22;42706:13;:18;;;42690:34;;:12;:10;:12::i;:::-;:34;;;:83;;;;42761:12;:10;:12::i;:::-;42737:36;;:20;42749:7;42737:11;:20::i;:::-;:36;;;42690:83;:146;;;;42786:50;42803:13;:18;;;42823:12;:10;:12::i;:::-;42786:16;:50::i;:::-;42690:146;42664:173;;42858:17;42850:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42973:4;42951:26;;:13;:18;;;:26;;;42943:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43053:1;43039:16;;:2;:16;;;;43031:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43110:43;43132:4;43138:2;43142:7;43151:1;43110:21;:43::i;:::-;43218:49;43235:1;43239:7;43248:13;:18;;;43218:8;:49::i;:::-;43585:1;43555:12;:18;43568:4;43555:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43625:1;43597:12;:16;43610:2;43597:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43667:2;43639:11;:20;43651:7;43639:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;43725:15;43680:11;:20;43692:7;43680:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;43981:19;44013:1;44003:7;:11;43981:33;;44070:1;44029:43;;:11;:24;44041:11;44029:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44025:275;;;44093:20;44101:11;44093:7;:20::i;:::-;44089:200;;;44166:13;:18;;;44134:11;:24;44146:11;44134:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;44245:13;:28;;;44203:11;:24;44215:11;44203:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;44089:200;44025:275;43534:773;44343:7;44339:2;44324:27;;44333:4;44324:27;;;;;;;;;;;;44362:42;44383:4;44389:2;44393:7;44402:1;44362:20;:42::i;:::-;42582:1830;;42478:1934;;;:::o;23413:317::-;23528:6;23503:21;:31;;23495:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23582:12;23600:9;:14;;23622:6;23600:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23581:52;;;23652:7;23644:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23484:246;23413:317;;:::o;35463:505::-;35524:21;;:::i;:::-;35566:16;35574:7;35566;:16::i;:::-;35558:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35664:12;35679:7;35664:22;;35659:225;35696:1;35688:4;:9;35659:225;;35722:31;35756:11;:17;35768:4;35756:17;;;;;;;;;;;35722:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35818:1;35792:28;;:9;:14;;;:28;;;35788:85;;35848:9;35841:16;;;;;;35788:85;35707:177;35699:6;;;;;;;;35659:225;;;;35903:57;;;;;;;;;;:::i;:::-;;;;;;;;35463:505;;;;:::o;3208:191::-;3282:16;3301:6;;;;;;;;;;;3282:25;;3327:8;3318:6;;:17;;;;;;;;;;;;;;;;;;3382:8;3351:40;;3372:8;3351:40;;;;;;;;;;;;3271:128;3208:191;:::o;6671:98::-;6729:7;6760:1;6756;:5;;;;:::i;:::-;6749:12;;6671:98;;;;:::o;6290:::-;6348:7;6379:1;6375;:5;;;;:::i;:::-;6368:12;;6290:98;;;;:::o;39869:104::-;39938:27;39948:2;39952:8;39938:27;;;;;;;;;;;;:9;:27::i;:::-;39869:104;;:::o;45291:804::-;45446:4;45467:15;:2;:13;;;:15::i;:::-;45463:625;;;45519:2;45503:36;;;45540:12;:10;:12::i;:::-;45554:4;45560:7;45569:5;45503:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45499:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45766:1;45749:6;:13;:18;45745:273;;;45792:61;;;;;;;;;;:::i;:::-;;;;;;;;45745:273;45968:6;45962:13;45953:6;45949:2;45945:15;45938:38;45499:534;45636:45;;;45626:55;;;:6;:55;;;;45619:62;;;;;45463:625;46072:4;46065:11;;45291:804;;;;;;;:::o;36565:335::-;36638:13;36672:16;36680:7;36672;:16::i;:::-;36664:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36753:21;36777:10;:8;:10::i;:::-;36753:34;;36830:1;36811:7;36805:21;:26;;:87;;;;;;;;;;;;;;;;;36858:7;36867:18;:7;:16;:18::i;:::-;36841:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36805:87;36798:94;;;36565:335;;;:::o;46583:159::-;;;;;:::o;47154:158::-;;;;;:::o;40336:163::-;40459:32;40465:2;40469:8;40479:5;40486:4;40459:5;:32::i;:::-;40336:163;;;:::o;22152:326::-;22212:4;22469:1;22447:7;:19;;;:23;22440:30;;22152:326;;;:::o;48509:106::-;48561:13;48594;48587:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48509:106;:::o;29795:723::-;29851:13;30081:1;30072:5;:10;30068:53;;;30099:10;;;;;;;;;;;;;;;;;;;;;30068:53;30131:12;30146:5;30131:20;;30162:14;30187:78;30202:1;30194:4;:9;30187:78;;30220:8;;;;;:::i;:::-;;;;30251:2;30243:10;;;;;:::i;:::-;;;30187:78;;;30275:19;30307:6;30297:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30275:39;;30325:154;30341:1;30332:5;:10;30325:154;;30369:1;30359:11;;;;;:::i;:::-;;;30436:2;30428:5;:10;;;;:::i;:::-;30415:2;:24;;;;:::i;:::-;30402:39;;30385:6;30392;30385:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;30465:2;30456:11;;;;;:::i;:::-;;;30325:154;;;30503:6;30489:21;;;;;29795:723;;;;:::o;40758:1466::-;40897:20;40920:12;;40897:35;;40965:1;40951:16;;:2;:16;;;;40943:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41036:1;41024:8;:13;;41016:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41095:61;41125:1;41129:2;41133:12;41147:8;41095:21;:61::i;:::-;41462:8;41426:12;:16;41439:2;41426:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41523:8;41482:12;:16;41495:2;41482:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41578:2;41545:11;:25;41557:12;41545:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41641:15;41591:11;:25;41603:12;41591:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41670:20;41693:12;41670:35;;41723:9;41718:379;41738:8;41734:1;:12;41718:379;;;41798:12;41794:2;41773:38;;41790:1;41773:38;;;;;;;;;;;;41830:4;41826:229;;;41885:59;41916:1;41920:2;41924:12;41938:5;41885:22;:59::i;:::-;41855:184;;;;;;;;;;;;:::i;:::-;;;;;;;;;41826:229;42071:14;;;;;;;41748:3;;;;;;;41718:379;;;;42124:12;42109;:27;;;;41405:739;42156:60;42185:1;42189:2;42193:12;42207:8;42156:20;:60::i;:::-;40886:1338;40758:1466;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:398::-;14627:3;14648:83;14729:1;14724:3;14648:83;:::i;:::-;14641:90;;14740:93;14829:3;14740:93;:::i;:::-;14858:1;14853:3;14849:11;14842:18;;14468:398;;;:::o;14872:366::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:::-;15386:3;15407:67;15471:2;15466:3;15407:67;:::i;:::-;15400:74;;15483:93;15572:3;15483:93;:::i;:::-;15601:2;15596:3;15592:12;15585:19;;15244:366;;;:::o;15616:::-;15758:3;15779:67;15843:2;15838:3;15779:67;:::i;:::-;15772:74;;15855:93;15944:3;15855:93;:::i;:::-;15973:2;15968:3;15964:12;15957:19;;15616:366;;;:::o;15988:::-;16130:3;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16227:93;16316:3;16227:93;:::i;:::-;16345:2;16340:3;16336:12;16329:19;;15988:366;;;:::o;16360:::-;16502:3;16523:67;16587:2;16582:3;16523:67;:::i;:::-;16516:74;;16599:93;16688:3;16599:93;:::i;:::-;16717:2;16712:3;16708:12;16701:19;;16360:366;;;:::o;16732:::-;16874:3;16895:67;16959:2;16954:3;16895:67;:::i;:::-;16888:74;;16971:93;17060:3;16971:93;:::i;:::-;17089:2;17084:3;17080:12;17073:19;;16732:366;;;:::o;17104:::-;17246:3;17267:67;17331:2;17326:3;17267:67;:::i;:::-;17260:74;;17343:93;17432:3;17343:93;:::i;:::-;17461:2;17456:3;17452:12;17445:19;;17104:366;;;:::o;17476:::-;17618:3;17639:67;17703:2;17698:3;17639:67;:::i;:::-;17632:74;;17715:93;17804:3;17715:93;:::i;:::-;17833:2;17828:3;17824:12;17817:19;;17476:366;;;:::o;17848:118::-;17935:24;17953:5;17935:24;:::i;:::-;17930:3;17923:37;17848:118;;:::o;17972:435::-;18152:3;18174:95;18265:3;18256:6;18174:95;:::i;:::-;18167:102;;18286:95;18377:3;18368:6;18286:95;:::i;:::-;18279:102;;18398:3;18391:10;;17972:435;;;;;:::o;18413:379::-;18597:3;18619:147;18762:3;18619:147;:::i;:::-;18612:154;;18783:3;18776:10;;18413:379;;;:::o;18798:222::-;18891:4;18929:2;18918:9;18914:18;18906:26;;18942:71;19010:1;18999:9;18995:17;18986:6;18942:71;:::i;:::-;18798:222;;;;:::o;19026:640::-;19221:4;19259:3;19248:9;19244:19;19236:27;;19273:71;19341:1;19330:9;19326:17;19317:6;19273:71;:::i;:::-;19354:72;19422:2;19411:9;19407:18;19398:6;19354:72;:::i;:::-;19436;19504:2;19493:9;19489:18;19480:6;19436:72;:::i;:::-;19555:9;19549:4;19545:20;19540:2;19529:9;19525:18;19518:48;19583:76;19654:4;19645:6;19583:76;:::i;:::-;19575:84;;19026:640;;;;;;;:::o;19672:210::-;19759:4;19797:2;19786:9;19782:18;19774:26;;19810:65;19872:1;19861:9;19857:17;19848:6;19810:65;:::i;:::-;19672:210;;;;:::o;19888:313::-;20001:4;20039:2;20028:9;20024:18;20016:26;;20088:9;20082:4;20078:20;20074:1;20063:9;20059:17;20052:47;20116:78;20189:4;20180:6;20116:78;:::i;:::-;20108:86;;19888:313;;;;:::o;20207:419::-;20373:4;20411:2;20400:9;20396:18;20388:26;;20460:9;20454:4;20450:20;20446:1;20435:9;20431:17;20424:47;20488:131;20614:4;20488:131;:::i;:::-;20480:139;;20207:419;;;:::o;20632:::-;20798:4;20836:2;20825:9;20821:18;20813:26;;20885:9;20879:4;20875:20;20871:1;20860:9;20856:17;20849:47;20913:131;21039:4;20913:131;:::i;:::-;20905:139;;20632:419;;;:::o;21057:::-;21223:4;21261:2;21250:9;21246:18;21238:26;;21310:9;21304:4;21300:20;21296:1;21285:9;21281:17;21274:47;21338:131;21464:4;21338:131;:::i;:::-;21330:139;;21057:419;;;:::o;21482:::-;21648:4;21686:2;21675:9;21671:18;21663:26;;21735:9;21729:4;21725:20;21721:1;21710:9;21706:17;21699:47;21763:131;21889:4;21763:131;:::i;:::-;21755:139;;21482:419;;;:::o;21907:::-;22073:4;22111:2;22100:9;22096:18;22088:26;;22160:9;22154:4;22150:20;22146:1;22135:9;22131:17;22124:47;22188:131;22314:4;22188:131;:::i;:::-;22180:139;;21907:419;;;:::o;22332:::-;22498:4;22536:2;22525:9;22521:18;22513:26;;22585:9;22579:4;22575:20;22571:1;22560:9;22556:17;22549:47;22613:131;22739:4;22613:131;:::i;:::-;22605:139;;22332:419;;;:::o;22757:::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:::-;23348:4;23386:2;23375:9;23371:18;23363:26;;23435:9;23429:4;23425:20;23421:1;23410:9;23406:17;23399:47;23463:131;23589:4;23463:131;:::i;:::-;23455:139;;23182:419;;;:::o;23607:::-;23773:4;23811:2;23800:9;23796:18;23788:26;;23860:9;23854:4;23850:20;23846:1;23835:9;23831:17;23824:47;23888:131;24014:4;23888:131;:::i;:::-;23880:139;;23607:419;;;:::o;24032:::-;24198:4;24236:2;24225:9;24221:18;24213:26;;24285:9;24279:4;24275:20;24271:1;24260:9;24256:17;24249:47;24313:131;24439:4;24313:131;:::i;:::-;24305:139;;24032:419;;;:::o;24457:::-;24623:4;24661:2;24650:9;24646:18;24638:26;;24710:9;24704:4;24700:20;24696:1;24685:9;24681:17;24674:47;24738:131;24864:4;24738:131;:::i;:::-;24730:139;;24457:419;;;:::o;24882:::-;25048:4;25086:2;25075:9;25071:18;25063:26;;25135:9;25129:4;25125:20;25121:1;25110:9;25106:17;25099:47;25163:131;25289:4;25163:131;:::i;:::-;25155:139;;24882:419;;;:::o;25307:::-;25473:4;25511:2;25500:9;25496:18;25488:26;;25560:9;25554:4;25550:20;25546:1;25535:9;25531:17;25524:47;25588:131;25714:4;25588:131;:::i;:::-;25580:139;;25307:419;;;:::o;25732:::-;25898:4;25936:2;25925:9;25921:18;25913:26;;25985:9;25979:4;25975:20;25971:1;25960:9;25956:17;25949:47;26013:131;26139:4;26013:131;:::i;:::-;26005:139;;25732:419;;;:::o;26157:::-;26323:4;26361:2;26350:9;26346:18;26338:26;;26410:9;26404:4;26400:20;26396:1;26385:9;26381:17;26374:47;26438:131;26564:4;26438:131;:::i;:::-;26430:139;;26157:419;;;:::o;26582:::-;26748:4;26786:2;26775:9;26771:18;26763:26;;26835:9;26829:4;26825:20;26821:1;26810:9;26806:17;26799:47;26863:131;26989:4;26863:131;:::i;:::-;26855:139;;26582:419;;;:::o;27007:::-;27173:4;27211:2;27200:9;27196:18;27188:26;;27260:9;27254:4;27250:20;27246:1;27235:9;27231:17;27224:47;27288:131;27414:4;27288:131;:::i;:::-;27280:139;;27007:419;;;:::o;27432:::-;27598:4;27636:2;27625:9;27621:18;27613:26;;27685:9;27679:4;27675:20;27671:1;27660:9;27656:17;27649:47;27713:131;27839:4;27713:131;:::i;:::-;27705:139;;27432:419;;;:::o;27857:::-;28023:4;28061:2;28050:9;28046:18;28038:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28138:131;28264:4;28138:131;:::i;:::-;28130:139;;27857:419;;;:::o;28282:::-;28448:4;28486:2;28475:9;28471:18;28463:26;;28535:9;28529:4;28525:20;28521:1;28510:9;28506:17;28499:47;28563:131;28689:4;28563:131;:::i;:::-;28555:139;;28282:419;;;:::o;28707:::-;28873:4;28911:2;28900:9;28896:18;28888:26;;28960:9;28954:4;28950:20;28946:1;28935:9;28931:17;28924:47;28988:131;29114:4;28988:131;:::i;:::-;28980:139;;28707:419;;;:::o;29132:::-;29298:4;29336:2;29325:9;29321:18;29313:26;;29385:9;29379:4;29375:20;29371:1;29360:9;29356:17;29349:47;29413:131;29539:4;29413:131;:::i;:::-;29405:139;;29132:419;;;:::o;29557:::-;29723:4;29761:2;29750:9;29746:18;29738:26;;29810:9;29804:4;29800:20;29796:1;29785:9;29781:17;29774:47;29838:131;29964:4;29838:131;:::i;:::-;29830:139;;29557:419;;;:::o;29982:::-;30148:4;30186:2;30175:9;30171:18;30163:26;;30235:9;30229:4;30225:20;30221:1;30210:9;30206:17;30199:47;30263:131;30389:4;30263:131;:::i;:::-;30255:139;;29982:419;;;:::o;30407:222::-;30500:4;30538:2;30527:9;30523:18;30515:26;;30551:71;30619:1;30608:9;30604:17;30595:6;30551:71;:::i;:::-;30407:222;;;;:::o;30635:129::-;30669:6;30696:20;;:::i;:::-;30686:30;;30725:33;30753:4;30745:6;30725:33;:::i;:::-;30635:129;;;:::o;30770:75::-;30803:6;30836:2;30830:9;30820:19;;30770:75;:::o;30851:307::-;30912:4;31002:18;30994:6;30991:30;30988:56;;;31024:18;;:::i;:::-;30988:56;31062:29;31084:6;31062:29;:::i;:::-;31054:37;;31146:4;31140;31136:15;31128:23;;30851:307;;;:::o;31164:308::-;31226:4;31316:18;31308:6;31305:30;31302:56;;;31338:18;;:::i;:::-;31302:56;31376:29;31398:6;31376:29;:::i;:::-;31368:37;;31460:4;31454;31450:15;31442:23;;31164:308;;;:::o;31478:98::-;31529:6;31563:5;31557:12;31547:22;;31478:98;;;:::o;31582:99::-;31634:6;31668:5;31662:12;31652:22;;31582:99;;;:::o;31687:168::-;31770:11;31804:6;31799:3;31792:19;31844:4;31839:3;31835:14;31820:29;;31687:168;;;;:::o;31861:147::-;31962:11;31999:3;31984:18;;31861:147;;;;:::o;32014:169::-;32098:11;32132:6;32127:3;32120:19;32172:4;32167:3;32163:14;32148:29;;32014:169;;;;:::o;32189:148::-;32291:11;32328:3;32313:18;;32189:148;;;;:::o;32343:305::-;32383:3;32402:20;32420:1;32402:20;:::i;:::-;32397:25;;32436:20;32454:1;32436:20;:::i;:::-;32431:25;;32590:1;32522:66;32518:74;32515:1;32512:81;32509:107;;;32596:18;;:::i;:::-;32509:107;32640:1;32637;32633:9;32626:16;;32343:305;;;;:::o;32654:185::-;32694:1;32711:20;32729:1;32711:20;:::i;:::-;32706:25;;32745:20;32763:1;32745:20;:::i;:::-;32740:25;;32784:1;32774:35;;32789:18;;:::i;:::-;32774:35;32831:1;32828;32824:9;32819:14;;32654:185;;;;:::o;32845:348::-;32885:7;32908:20;32926:1;32908:20;:::i;:::-;32903:25;;32942:20;32960:1;32942:20;:::i;:::-;32937:25;;33130:1;33062:66;33058:74;33055:1;33052:81;33047:1;33040:9;33033:17;33029:105;33026:131;;;33137:18;;:::i;:::-;33026:131;33185:1;33182;33178:9;33167:20;;32845:348;;;;:::o;33199:191::-;33239:4;33259:20;33277:1;33259:20;:::i;:::-;33254:25;;33293:20;33311:1;33293:20;:::i;:::-;33288:25;;33332:1;33329;33326:8;33323:34;;;33337:18;;:::i;:::-;33323:34;33382:1;33379;33375:9;33367:17;;33199:191;;;;:::o;33396:96::-;33433:7;33462:24;33480:5;33462:24;:::i;:::-;33451:35;;33396:96;;;:::o;33498:90::-;33532:7;33575:5;33568:13;33561:21;33550:32;;33498:90;;;:::o;33594:149::-;33630:7;33670:66;33663:5;33659:78;33648:89;;33594:149;;;:::o;33749:126::-;33786:7;33826:42;33819:5;33815:54;33804:65;;33749:126;;;:::o;33881:77::-;33918:7;33947:5;33936:16;;33881:77;;;:::o;33964:154::-;34048:6;34043:3;34038;34025:30;34110:1;34101:6;34096:3;34092:16;34085:27;33964:154;;;:::o;34124:307::-;34192:1;34202:113;34216:6;34213:1;34210:13;34202:113;;;34301:1;34296:3;34292:11;34286:18;34282:1;34277:3;34273:11;34266:39;34238:2;34235:1;34231:10;34226:15;;34202:113;;;34333:6;34330:1;34327:13;34324:101;;;34413:1;34404:6;34399:3;34395:16;34388:27;34324:101;34173:258;34124:307;;;:::o;34437:320::-;34481:6;34518:1;34512:4;34508:12;34498:22;;34565:1;34559:4;34555:12;34586:18;34576:81;;34642:4;34634:6;34630:17;34620:27;;34576:81;34704:2;34696:6;34693:14;34673:18;34670:38;34667:84;;;34723:18;;:::i;:::-;34667:84;34488:269;34437:320;;;:::o;34763:281::-;34846:27;34868:4;34846:27;:::i;:::-;34838:6;34834:40;34976:6;34964:10;34961:22;34940:18;34928:10;34925:34;34922:62;34919:88;;;34987:18;;:::i;:::-;34919:88;35027:10;35023:2;35016:22;34806:238;34763:281;;:::o;35050:233::-;35089:3;35112:24;35130:5;35112:24;:::i;:::-;35103:33;;35158:66;35151:5;35148:77;35145:103;;;35228:18;;:::i;:::-;35145:103;35275:1;35268:5;35264:13;35257:20;;35050:233;;;:::o;35289:176::-;35321:1;35338:20;35356:1;35338:20;:::i;:::-;35333:25;;35372:20;35390:1;35372:20;:::i;:::-;35367:25;;35411:1;35401:35;;35416:18;;:::i;:::-;35401:35;35457:1;35454;35450:9;35445:14;;35289:176;;;;:::o;35471:180::-;35519:77;35516:1;35509:88;35616:4;35613:1;35606:15;35640:4;35637:1;35630:15;35657:180;35705:77;35702:1;35695:88;35802:4;35799:1;35792:15;35826:4;35823:1;35816:15;35843:180;35891:77;35888:1;35881:88;35988:4;35985:1;35978:15;36012:4;36009:1;36002:15;36029:180;36077:77;36074:1;36067:88;36174:4;36171:1;36164:15;36198:4;36195:1;36188:15;36215:180;36263:77;36260:1;36253:88;36360:4;36357:1;36350:15;36384:4;36381:1;36374:15;36401:117;36510:1;36507;36500:12;36524:117;36633:1;36630;36623:12;36647:117;36756:1;36753;36746:12;36770:117;36879:1;36876;36869:12;36893:102;36934:6;36985:2;36981:7;36976:2;36969:5;36965:14;36961:28;36951:38;;36893:102;;;:::o;37001:225::-;37141:34;37137:1;37129:6;37125:14;37118:58;37210:8;37205:2;37197:6;37193:15;37186:33;37001:225;:::o;37232:229::-;37372:34;37368:1;37360:6;37356:14;37349:58;37441:12;37436:2;37428:6;37424:15;37417:37;37232:229;:::o;37467:160::-;37607:12;37603:1;37595:6;37591:14;37584:36;37467:160;:::o;37633:224::-;37773:34;37769:1;37761:6;37757:14;37750:58;37842:7;37837:2;37829:6;37825:15;37818:32;37633:224;:::o;37863:168::-;38003:20;37999:1;37991:6;37987:14;37980:44;37863:168;:::o;38037:245::-;38177:34;38173:1;38165:6;38161:14;38154:58;38246:28;38241:2;38233:6;38229:15;38222:53;38037:245;:::o;38288:179::-;38428:31;38424:1;38416:6;38412:14;38405:55;38288:179;:::o;38473:165::-;38613:17;38609:1;38601:6;38597:14;38590:41;38473:165;:::o;38644:244::-;38784:34;38780:1;38772:6;38768:14;38761:58;38853:27;38848:2;38840:6;38836:15;38829:52;38644:244;:::o;38894:230::-;39034:34;39030:1;39022:6;39018:14;39011:58;39103:13;39098:2;39090:6;39086:15;39079:38;38894:230;:::o;39130:225::-;39270:34;39266:1;39258:6;39254:14;39247:58;39339:8;39334:2;39326:6;39322:15;39315:33;39130:225;:::o;39361:182::-;39501:34;39497:1;39489:6;39485:14;39478:58;39361:182;:::o;39549:234::-;39689:34;39685:1;39677:6;39673:14;39666:58;39758:17;39753:2;39745:6;39741:15;39734:42;39549:234;:::o;39789:176::-;39929:28;39925:1;39917:6;39913:14;39906:52;39789:176;:::o;39971:237::-;40111:34;40107:1;40099:6;40095:14;40088:58;40180:20;40175:2;40167:6;40163:15;40156:45;39971:237;:::o;40214:221::-;40354:34;40350:1;40342:6;40338:14;40331:58;40423:4;40418:2;40410:6;40406:15;40399:29;40214:221;:::o;40441:114::-;;:::o;40561:168::-;40701:20;40697:1;40689:6;40685:14;40678:44;40561:168;:::o;40735:238::-;40875:34;40871:1;40863:6;40859:14;40852:58;40944:21;40939:2;40931:6;40927:15;40920:46;40735:238;:::o;40979:160::-;41119:12;41115:1;41107:6;41103:14;41096:36;40979:160;:::o;41145:220::-;41285:34;41281:1;41273:6;41269:14;41262:58;41354:3;41349:2;41341:6;41337:15;41330:28;41145:220;:::o;41371:227::-;41511:34;41507:1;41499:6;41495:14;41488:58;41580:10;41575:2;41567:6;41563:15;41556:35;41371:227;:::o;41604:181::-;41744:33;41740:1;41732:6;41728:14;41721:57;41604:181;:::o;41791:234::-;41931:34;41927:1;41919:6;41915:14;41908:58;42000:17;41995:2;41987:6;41983:15;41976:42;41791:234;:::o;42031:232::-;42171:34;42167:1;42159:6;42155:14;42148:58;42240:15;42235:2;42227:6;42223:15;42216:40;42031:232;:::o;42269:122::-;42342:24;42360:5;42342:24;:::i;:::-;42335:5;42332:35;42322:63;;42381:1;42378;42371:12;42322:63;42269:122;:::o;42397:116::-;42467:21;42482:5;42467:21;:::i;:::-;42460:5;42457:32;42447:60;;42503:1;42500;42493:12;42447:60;42397:116;:::o;42519:120::-;42591:23;42608:5;42591:23;:::i;:::-;42584:5;42581:34;42571:62;;42629:1;42626;42619:12;42571:62;42519:120;:::o;42645:122::-;42718:24;42736:5;42718:24;:::i;:::-;42711:5;42708:35;42698:63;;42757:1;42754;42747:12;42698:63;42645:122;:::o

Swarm Source

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