ETH Price: $3,074.11 (-6.62%)
Gas: 9 Gwei

Token

SaudiPotatoz (SaudiPotatoz)
 

Overview

Max Total Supply

1,897 SaudiPotatoz

Holders

1,604

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SaudiPotatoz
0xd232aEDaad90079B65bfD929908a28EDa12321c0
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:
SaudiPotatoz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// File: contracts/SaudiPotatoz.sol


//  /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$  /$$$$$$       /$$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$  /$$$$$$$$ /$$$$$$  /$$$$$$$$
// /$$__  $$ /$$__  $$| $$  | $$| $$__  $$|_  $$_/      | $$__  $$ /$$__  $$|__  $$__//$$__  $$|__  $$__//$$__  $$|_____ $$ 
//| $$  \__/| $$  \ $$| $$  | $$| $$  \ $$  | $$        | $$  \ $$| $$  \ $$   | $$  | $$  \ $$   | $$  | $$  \ $$     /$$/ 
//|  $$$$$$ | $$$$$$$$| $$  | $$| $$  | $$  | $$        | $$$$$$$/| $$  | $$   | $$  | $$$$$$$$   | $$  | $$  | $$    /$$/  
// \____  $$| $$__  $$| $$  | $$| $$  | $$  | $$        | $$____/ | $$  | $$   | $$  | $$__  $$   | $$  | $$  | $$   /$$/   
// /$$  \ $$| $$  | $$| $$  | $$| $$  | $$  | $$        | $$      | $$  | $$   | $$  | $$  | $$   | $$  | $$  | $$  /$$/    
//|  $$$$$$/| $$  | $$|  $$$$$$/| $$$$$$$/ /$$$$$$      | $$      |  $$$$$$/   | $$  | $$  | $$   | $$  |  $$$$$$/ /$$$$$$$$
 //\______/ |__/  |__/ \______/ |_______/ |______/      |__/       \______/    |__/  |__/  |__/   |__/   \______/ |________/

// SPDX-License-Identifier: MIT
// File: contracts/SaudiPotatoz.sol

/**
 * @title Saudi Potatoz contract
 * @dev Extends ERC721A - thanks Azuki
 */

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.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 and Enumerable 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, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public 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 {}
}

contract SaudiPotatoz is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0 ether;
  uint public          maxPerTx          = 1;
  uint public          maxPerWallet      = 1;
  uint public          totalFree         = 0;
  uint public          maxSupply         = 5000;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("SaudiPotatoz", "SaudiPotatoz"){}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

  function freeMint(uint256 amt) external callerIsUser {
    require(mintEnabled, "Public sale has not begun yet");
    require(totalSupply() + amt <= totalFree, "Reached max free supply");
    require(amt <= 5, "can not mint this many free at a time");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many free per wallet!");
    _safeMint(msg.sender, amt);
    }

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    require(msg.sender == tx.origin,"Be yourself, anon.");
    require(msg.value >= amt * cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more Land...");
    require(mintEnabled, "Minting is not live yet, hold on...");
    require( amt < maxPerTx + 1, "Max per TX reached.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many mint per wallet!");

    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

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

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

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

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }


  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"freeMint","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526000600a556001600b556001600c556000600d55611388600e553480156200002b57600080fd5b506040518060400160405280600c81526020017f5361756469506f7461746f7a00000000000000000000000000000000000000008152506040518060400160405280600c81526020017f5361756469506f7461746f7a00000000000000000000000000000000000000008152508160019080519060200190620000b0929190620001c8565b508060029080519060200190620000c9929190620001c8565b505050620000ec620000e0620000fa60201b60201c565b6200010260201b60201c565b6001600881905550620002dd565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d69062000278565b90600052602060002090601f016020900481019282620001fa576000855562000246565b82601f106200021557805160ff191683800117855562000246565b8280016001018555821562000246579182015b828111156200024557825182559160200191906001019062000228565b5b50905062000255919062000259565b5090565b5b80821115620002745760008160009055506001016200025a565b5090565b600060028204905060018216806200029157607f821691505b60208210811415620002a857620002a7620002ae565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6153a980620002ed6000396000f3fe6080604052600436106102465760003560e01c80637c928fe911610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610857578063dc33e68114610882578063e268e4d3146108bf578063e985e9c5146108e8578063f2fde38b14610925578063f968adbe1461094e57610246565b8063b88d4fde14610772578063c6f6f2161461079b578063c87b56dd146107c4578063d123973014610801578063d5abeb011461082c57610246565b80639231ab2a116100fd5780639231ab2a1461069a57806395d89b41146106d7578063a035b1fe14610702578063a0712d681461072d578063a22cb4651461074957610246565b80637c928fe9146105dd5780637d55094d146106065780638da5cb5b1461061d5780638db89f071461064857806391b7f5ed1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138df565b610979565b60405161027f91906140a2565b60405180910390f35b34801561029457600080fd5b5061029d610ac3565b6040516102aa91906140bd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613986565b610b55565b6040516102e7919061403b565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061389f565b610bda565b005b34801561032557600080fd5b5061032e610cf3565b60405161033b919061459a565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613986565b610cfc565b005b34801561037957600080fd5b50610394600480360381019061038f9190613789565b610d82565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613986565b610d92565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061389f565b610e70565b6040516103f3919061459a565b60405180910390f35b34801561040857600080fd5b50610411611062565b60405161041e919061459a565b60405180910390f35b34801561043357600080fd5b5061043c611068565b005b34801561044a57600080fd5b5061046560048036038101906104609190613789565b6111e9565b005b34801561047357600080fd5b5061047c611209565b604051610489919061459a565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613986565b61120f565b6040516104c6919061459a565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613939565b611262565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613986565b6112f4565b005b34801561052d57600080fd5b5061054860048036038101906105439190613986565b61137a565b604051610555919061403b565b60405180910390f35b34801561056a57600080fd5b50610573611390565b60405161058091906140bd565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061371c565b61141e565b6040516105bd919061459a565b60405180910390f35b3480156105d257600080fd5b506105db611507565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613986565b61158f565b005b34801561061257600080fd5b5061061b61174c565b005b34801561062957600080fd5b506106326117f4565b60405161063f919061403b565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613986565b61181e565b005b34801561067d57600080fd5b5061069860048036038101906106939190613986565b611909565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613986565b61198f565b6040516106ce919061457f565b60405180910390f35b3480156106e357600080fd5b506106ec6119a7565b6040516106f991906140bd565b60405180910390f35b34801561070e57600080fd5b50610717611a39565b604051610724919061459a565b60405180910390f35b61074760048036038101906107429190613986565b611a3f565b005b34801561075557600080fd5b50610770600480360381019061076b919061385f565b611c69565b005b34801561077e57600080fd5b50610799600480360381019061079491906137dc565b611dea565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613986565b611e46565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190613986565b611ecc565b6040516107f891906140bd565b60405180910390f35b34801561080d57600080fd5b50610816611f74565b60405161082391906140a2565b60405180910390f35b34801561083857600080fd5b50610841611f87565b60405161084e919061459a565b60405180910390f35b34801561086357600080fd5b5061086c611f8d565b604051610879919061459a565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a4919061371c565b611f93565b6040516108b6919061459a565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613986565b611fa5565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613749565b61202b565b60405161091c91906140a2565b60405180910390f35b34801561093157600080fd5b5061094c6004803603810190610947919061371c565b6120bf565b005b34801561095a57600080fd5b506109636121b7565b604051610970919061459a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abc5750610abb826121bd565b5b9050919050565b606060018054610ad290614838565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614838565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b6082612227565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061453f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be58261137a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d9061441f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c75612234565b73ffffffffffffffffffffffffffffffffffffffff161480610ca45750610ca381610c9e612234565b61202b565b5b610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda9061427f565b60405180910390fd5b610cee83838361223c565b505050565b60008054905090565b610d04612234565b73ffffffffffffffffffffffffffffffffffffffff16610d226117f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f9061433f565b60405180910390fd5b80600e8190555050565b610d8d8383836122ee565b505050565b610d9a612234565b73ffffffffffffffffffffffffffffffffffffffff16610db86117f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e059061433f565b60405180910390fd5b60026008541415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906144ff565b60405180910390fd5b6002600881905550610e658161282e565b600160088190555050565b6000610e7b8361141e565b8210610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906140df565b60405180910390fd5b6000610ec6610cf3565b905060008060005b83811015611020576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611012578684141561100957819550505050505061105c565b83806001019450505b508080600101915050610ece565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906144df565b60405180910390fd5b92915050565b600d5481565b611070612234565b73ffffffffffffffffffffffffffffffffffffffff1661108e6117f4565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061433f565b60405180910390fd5b6002600854141561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906144ff565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161115890614026565b60006040518083038185875af1925050503d8060008114611195576040519150601f19603f3d011682016040523d82523d6000602084013e61119a565b606091505b50509050806111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061443f565b60405180910390fd5b506001600881905550565b61120483838360405180602001604052806000815250611dea565b505050565b600c5481565b6000611219610cf3565b821061125a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112519061419f565b60405180910390fd5b819050919050565b61126a612234565b73ffffffffffffffffffffffffffffffffffffffff166112886117f4565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061433f565b60405180910390fd5b8181600991906112ef929190613510565b505050565b6112fc612234565b73ffffffffffffffffffffffffffffffffffffffff1661131a6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113679061433f565b60405180910390fd5b80600d8190555050565b600061138582612a60565b600001519050919050565b6009805461139d90614838565b80601f01602080910402602001604051908101604052809291908181526020018280546113c990614838565b80156114165780601f106113eb57610100808354040283529160200191611416565b820191906000526020600020905b8154815290600101906020018083116113f957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611486906142df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61150f612234565b73ffffffffffffffffffffffffffffffffffffffff1661152d6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a9061433f565b60405180910390fd5b61158d6000612bfa565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061423f565b60405180910390fd5b601060009054906101000a900460ff1661164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906140ff565b60405180910390fd5b600d5481611658610cf3565b6116629190614659565b11156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906143bf565b60405180910390fd5b60058111156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9061455f565b60405180910390fd5b600c54816116f433611f93565b6116fe9190614659565b111561173f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117369061417f565b60405180910390fd5b6117493382612cc0565b50565b611754612234565b73ffffffffffffffffffffffffffffffffffffffff166117726117f4565b73ffffffffffffffffffffffffffffffffffffffff16146117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061433f565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611826612234565b73ffffffffffffffffffffffffffffffffffffffff166118446117f4565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118919061433f565b60405180910390fd5b6001600e546118a99190614659565b816118b2610cf3565b6118bc9190614659565b106118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f39061425f565b60405180910390fd5b6119063382612cc0565b50565b611911612234565b73ffffffffffffffffffffffffffffffffffffffff1661192f6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061433f565b60405180910390fd5b80600a8190555050565b611997613596565b6119a082612a60565b9050919050565b6060600280546119b690614838565b80601f01602080910402602001604051908101604052809291908181526020018280546119e290614838565b8015611a2f5780601f10611a0457610100808354040283529160200191611a2f565b820191906000526020600020905b815481529060010190602001808311611a1257829003601f168201915b5050505050905090565b600a5481565b6000600a5490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906141ff565b60405180910390fd5b8082611ac091906146e0565b341015611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906143ff565b60405180910390fd5b6001600e54611b119190614659565b82611b1a610cf3565b611b249190614659565b10611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906142ff565b60405180910390fd5b601060009054906101000a900460ff16611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906143df565b60405180910390fd5b6001600b54611bc29190614659565b8210611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906144bf565b60405180910390fd5b600c5482611c1033611f93565b611c1a9190614659565b1115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906142bf565b60405180910390fd5b611c653383612cc0565b5050565b611c71612234565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061437f565b60405180910390fd5b8060066000611cec612234565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d99612234565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dde91906140a2565b60405180910390a35050565b611df58484846122ee565b611e0184848484612cde565b611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061445f565b60405180910390fd5b50505050565b611e4e612234565b73ffffffffffffffffffffffffffffffffffffffff16611e6c6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb99061433f565b60405180910390fd5b80600b8190555050565b6060611ed782612227565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d9061435f565b60405180910390fd5b6000611f20612e75565b9050600081511415611f415760405180602001604052806000815250611f6c565b80611f4b84612f07565b604051602001611f5c929190614002565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611f9e82613068565b9050919050565b611fad612234565b73ffffffffffffffffffffffffffffffffffffffff16611fcb6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614612021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120189061433f565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c7612234565b73ffffffffffffffffffffffffffffffffffffffff166120e56117f4565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121329061433f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a29061411f565b60405180910390fd5b6121b481612bfa565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122f982612a60565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612320612234565b73ffffffffffffffffffffffffffffffffffffffff16148061237c5750612345612234565b73ffffffffffffffffffffffffffffffffffffffff1661236484610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239857506123978260000151612392612234565b61202b565b5b9050806123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061439f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461244c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124439061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b3906141bf565b60405180910390fd5b6124c98585856001613151565b6124d9600084846000015161223c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127be5761271d81612227565b156127bd5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128278585856001613157565b5050505050565b6000811415612872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128699061429f565b60405180910390fd5b6000805414156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae9061415f565b60405180910390fd5b6000600f5490506000548110612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f99061421f565b60405180910390fd5b600060018383010390506000546001820111156129225760016000540390505b60008290505b818111612a5057600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a435760006129a582612a60565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612928565b5060018101600f81905550505050565b612a68613596565b612a7182612227565b612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa79061413f565b60405180910390fd5b60008290505b60008110612bb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612baa578092505050612bf5565b50808060019003915050612ab6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec9061451f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cda82826040518060200160405280600081525061315d565b5050565b6000612cff8473ffffffffffffffffffffffffffffffffffffffff1661316f565b15612e68578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d28612234565b8786866040518563ffffffff1660e01b8152600401612d4a9493929190614056565b602060405180830381600087803b158015612d6457600080fd5b505af1925050508015612d9557506040513d601f19601f82011682018060405250810190612d92919061390c565b60015b612e18573d8060008114612dc5576040519150601f19603f3d011682016040523d82523d6000602084013e612dca565b606091505b50600081511415612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e079061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6d565b600190505b949350505050565b606060098054612e8490614838565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb090614838565b8015612efd5780601f10612ed257610100808354040283529160200191612efd565b820191906000526020600020905b815481529060010190602001808311612ee057829003601f168201915b5050505050905090565b60606000821415612f4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613063565b600082905060005b60008214612f81578080612f6a9061489b565b915050600a82612f7a91906146af565b9150612f57565b60008167ffffffffffffffff811115612f9d57612f9c6149d1565b5b6040519080825280601f01601f191660200182016040528015612fcf5781602001600182028036833780820191505090505b5090505b6000851461305c57600182612fe8919061473a565b9150600a85612ff791906148e4565b60306130039190614659565b60f81b818381518110613019576130186149a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561305591906146af565b9450612fd3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d0906141df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61316a8383836001613192565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff9061447f565b60405180910390fd5b600084141561324c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132439061449f565b60405180910390fd5b6132596000868387613151565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156134f357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156134de5761349e6000888488612cde565b6134dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d49061445f565b60405180910390fd5b5b81806001019250508080600101915050613427565b5080600081905550506135096000868387613157565b5050505050565b82805461351c90614838565b90600052602060002090601f01602090048101928261353e5760008555613585565b82601f1061355757803560ff1916838001178555613585565b82800160010185558215613585579182015b82811115613584578235825591602001919060010190613569565b5b50905061359291906135d0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135e95760008160009055506001016135d1565b5090565b60006136006135fb846145da565b6145b5565b90508281526020810184848401111561361c5761361b614a0f565b5b6136278482856147f6565b509392505050565b60008135905061363e81615317565b92915050565b6000813590506136538161532e565b92915050565b60008135905061366881615345565b92915050565b60008151905061367d81615345565b92915050565b600082601f83011261369857613697614a05565b5b81356136a88482602086016135ed565b91505092915050565b60008083601f8401126136c7576136c6614a05565b5b8235905067ffffffffffffffff8111156136e4576136e3614a00565b5b602083019150836001820283011115613700576136ff614a0a565b5b9250929050565b6000813590506137168161535c565b92915050565b60006020828403121561373257613731614a19565b5b60006137408482850161362f565b91505092915050565b600080604083850312156137605761375f614a19565b5b600061376e8582860161362f565b925050602061377f8582860161362f565b9150509250929050565b6000806000606084860312156137a2576137a1614a19565b5b60006137b08682870161362f565b93505060206137c18682870161362f565b92505060406137d286828701613707565b9150509250925092565b600080600080608085870312156137f6576137f5614a19565b5b60006138048782880161362f565b94505060206138158782880161362f565b935050604061382687828801613707565b925050606085013567ffffffffffffffff81111561384757613846614a14565b5b61385387828801613683565b91505092959194509250565b6000806040838503121561387657613875614a19565b5b60006138848582860161362f565b925050602061389585828601613644565b9150509250929050565b600080604083850312156138b6576138b5614a19565b5b60006138c48582860161362f565b92505060206138d585828601613707565b9150509250929050565b6000602082840312156138f5576138f4614a19565b5b600061390384828501613659565b91505092915050565b60006020828403121561392257613921614a19565b5b60006139308482850161366e565b91505092915050565b600080602083850312156139505761394f614a19565b5b600083013567ffffffffffffffff81111561396e5761396d614a14565b5b61397a858286016136b1565b92509250509250929050565b60006020828403121561399c5761399b614a19565b5b60006139aa84828501613707565b91505092915050565b6139bc8161476e565b82525050565b6139cb8161476e565b82525050565b6139da81614780565b82525050565b60006139eb8261460b565b6139f58185614621565b9350613a05818560208601614805565b613a0e81614a1e565b840191505092915050565b6000613a2482614616565b613a2e818561463d565b9350613a3e818560208601614805565b613a4781614a1e565b840191505092915050565b6000613a5d82614616565b613a67818561464e565b9350613a77818560208601614805565b80840191505092915050565b6000613a9060228361463d565b9150613a9b82614a2f565b604082019050919050565b6000613ab3601d8361463d565b9150613abe82614a7e565b602082019050919050565b6000613ad660268361463d565b9150613ae182614aa7565b604082019050919050565b6000613af9602a8361463d565b9150613b0482614af6565b604082019050919050565b6000613b1c60148361463d565b9150613b2782614b45565b602082019050919050565b6000613b3f60198361463d565b9150613b4a82614b6e565b602082019050919050565b6000613b6260238361463d565b9150613b6d82614b97565b604082019050919050565b6000613b8560258361463d565b9150613b9082614be6565b604082019050919050565b6000613ba860318361463d565b9150613bb382614c35565b604082019050919050565b6000613bcb60128361463d565b9150613bd682614c84565b602082019050919050565b6000613bee601c8361463d565b9150613bf982614cad565b602082019050919050565b6000613c11601e8361463d565b9150613c1c82614cd6565b602082019050919050565b6000613c3460098361463d565b9150613c3f82614cff565b602082019050919050565b6000613c5760398361463d565b9150613c6282614d28565b604082019050919050565b6000613c7a60188361463d565b9150613c8582614d77565b602082019050919050565b6000613c9d60198361463d565b9150613ca882614da0565b602082019050919050565b6000613cc0602b8361463d565b9150613ccb82614dc9565b604082019050919050565b6000613ce3600f8361463d565b9150613cee82614e18565b602082019050919050565b6000613d0660268361463d565b9150613d1182614e41565b604082019050919050565b6000613d2960208361463d565b9150613d3482614e90565b602082019050919050565b6000613d4c602f8361463d565b9150613d5782614eb9565b604082019050919050565b6000613d6f601a8361463d565b9150613d7a82614f08565b602082019050919050565b6000613d9260328361463d565b9150613d9d82614f31565b604082019050919050565b6000613db560178361463d565b9150613dc082614f80565b602082019050919050565b6000613dd860238361463d565b9150613de382614fa9565b604082019050919050565b6000613dfb601d8361463d565b9150613e0682614ff8565b602082019050919050565b6000613e1e60228361463d565b9150613e2982615021565b604082019050919050565b6000613e41600083614632565b9150613e4c82615070565b600082019050919050565b6000613e6460108361463d565b9150613e6f82615073565b602082019050919050565b6000613e8760338361463d565b9150613e928261509c565b604082019050919050565b6000613eaa60218361463d565b9150613eb5826150eb565b604082019050919050565b6000613ecd60288361463d565b9150613ed88261513a565b604082019050919050565b6000613ef060138361463d565b9150613efb82615189565b602082019050919050565b6000613f13602e8361463d565b9150613f1e826151b2565b604082019050919050565b6000613f36601f8361463d565b9150613f4182615201565b602082019050919050565b6000613f59602f8361463d565b9150613f648261522a565b604082019050919050565b6000613f7c602d8361463d565b9150613f8782615279565b604082019050919050565b6000613f9f60258361463d565b9150613faa826152c8565b604082019050919050565b604082016000820151613fcb60008501826139b3565b506020820151613fde6020850182613ff3565b50505050565b613fed816147d8565b82525050565b613ffc816147e2565b82525050565b600061400e8285613a52565b915061401a8284613a52565b91508190509392505050565b600061403182613e34565b9150819050919050565b600060208201905061405060008301846139c2565b92915050565b600060808201905061406b60008301876139c2565b61407860208301866139c2565b6140856040830185613fe4565b818103606083015261409781846139e0565b905095945050505050565b60006020820190506140b760008301846139d1565b92915050565b600060208201905081810360008301526140d78184613a19565b905092915050565b600060208201905081810360008301526140f881613a83565b9050919050565b6000602082019050818103600083015261411881613aa6565b9050919050565b6000602082019050818103600083015261413881613ac9565b9050919050565b6000602082019050818103600083015261415881613aec565b9050919050565b6000602082019050818103600083015261417881613b0f565b9050919050565b6000602082019050818103600083015261419881613b32565b9050919050565b600060208201905081810360008301526141b881613b55565b9050919050565b600060208201905081810360008301526141d881613b78565b9050919050565b600060208201905081810360008301526141f881613b9b565b9050919050565b6000602082019050818103600083015261421881613bbe565b9050919050565b6000602082019050818103600083015261423881613be1565b9050919050565b6000602082019050818103600083015261425881613c04565b9050919050565b6000602082019050818103600083015261427881613c27565b9050919050565b6000602082019050818103600083015261429881613c4a565b9050919050565b600060208201905081810360008301526142b881613c6d565b9050919050565b600060208201905081810360008301526142d881613c90565b9050919050565b600060208201905081810360008301526142f881613cb3565b9050919050565b6000602082019050818103600083015261431881613cd6565b9050919050565b6000602082019050818103600083015261433881613cf9565b9050919050565b6000602082019050818103600083015261435881613d1c565b9050919050565b6000602082019050818103600083015261437881613d3f565b9050919050565b6000602082019050818103600083015261439881613d62565b9050919050565b600060208201905081810360008301526143b881613d85565b9050919050565b600060208201905081810360008301526143d881613da8565b9050919050565b600060208201905081810360008301526143f881613dcb565b9050919050565b6000602082019050818103600083015261441881613dee565b9050919050565b6000602082019050818103600083015261443881613e11565b9050919050565b6000602082019050818103600083015261445881613e57565b9050919050565b6000602082019050818103600083015261447881613e7a565b9050919050565b6000602082019050818103600083015261449881613e9d565b9050919050565b600060208201905081810360008301526144b881613ec0565b9050919050565b600060208201905081810360008301526144d881613ee3565b9050919050565b600060208201905081810360008301526144f881613f06565b9050919050565b6000602082019050818103600083015261451881613f29565b9050919050565b6000602082019050818103600083015261453881613f4c565b9050919050565b6000602082019050818103600083015261455881613f6f565b9050919050565b6000602082019050818103600083015261457881613f92565b9050919050565b60006040820190506145946000830184613fb5565b92915050565b60006020820190506145af6000830184613fe4565b92915050565b60006145bf6145d0565b90506145cb828261486a565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f5576145f46149d1565b5b6145fe82614a1e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614664826147d8565b915061466f836147d8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146a4576146a3614915565b5b828201905092915050565b60006146ba826147d8565b91506146c5836147d8565b9250826146d5576146d4614944565b5b828204905092915050565b60006146eb826147d8565b91506146f6836147d8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561472f5761472e614915565b5b828202905092915050565b6000614745826147d8565b9150614750836147d8565b92508282101561476357614762614915565b5b828203905092915050565b6000614779826147b8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614823578082015181840152602081019050614808565b83811115614832576000848401525b50505050565b6000600282049050600182168061485057607f821691505b6020821081141561486457614863614973565b5b50919050565b61487382614a1e565b810181811067ffffffffffffffff82111715614892576148916149d1565b5b80604052505050565b60006148a6826147d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d9576148d8614915565b5b600182019050919050565b60006148ef826147d8565b91506148fa836147d8565b92508261490a57614909614944565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e792066726565207065722077616c6c65742100000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f426520796f757273656c662c20616e6f6e2e0000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f546f6f206d616e79206d696e74207065722077616c6c65742100000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204c616e642e2e2e0000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656163686564206d6178206672656520737570706c79000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e2e2e0000000000000000000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e792066726565206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b6153208161476e565b811461532b57600080fd5b50565b61533781614780565b811461534257600080fd5b50565b61534e8161478c565b811461535957600080fd5b50565b615365816147d8565b811461537057600080fd5b5056fea2646970667358221220aa9f074cc35e46d3897df1aa20dbc374d2a983e8a1bef43ee686144a581e096864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637c928fe911610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610857578063dc33e68114610882578063e268e4d3146108bf578063e985e9c5146108e8578063f2fde38b14610925578063f968adbe1461094e57610246565b8063b88d4fde14610772578063c6f6f2161461079b578063c87b56dd146107c4578063d123973014610801578063d5abeb011461082c57610246565b80639231ab2a116100fd5780639231ab2a1461069a57806395d89b41146106d7578063a035b1fe14610702578063a0712d681461072d578063a22cb4651461074957610246565b80637c928fe9146105dd5780637d55094d146106065780638da5cb5b1461061d5780638db89f071461064857806391b7f5ed1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138df565b610979565b60405161027f91906140a2565b60405180910390f35b34801561029457600080fd5b5061029d610ac3565b6040516102aa91906140bd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613986565b610b55565b6040516102e7919061403b565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061389f565b610bda565b005b34801561032557600080fd5b5061032e610cf3565b60405161033b919061459a565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613986565b610cfc565b005b34801561037957600080fd5b50610394600480360381019061038f9190613789565b610d82565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613986565b610d92565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061389f565b610e70565b6040516103f3919061459a565b60405180910390f35b34801561040857600080fd5b50610411611062565b60405161041e919061459a565b60405180910390f35b34801561043357600080fd5b5061043c611068565b005b34801561044a57600080fd5b5061046560048036038101906104609190613789565b6111e9565b005b34801561047357600080fd5b5061047c611209565b604051610489919061459a565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613986565b61120f565b6040516104c6919061459a565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613939565b611262565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613986565b6112f4565b005b34801561052d57600080fd5b5061054860048036038101906105439190613986565b61137a565b604051610555919061403b565b60405180910390f35b34801561056a57600080fd5b50610573611390565b60405161058091906140bd565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061371c565b61141e565b6040516105bd919061459a565b60405180910390f35b3480156105d257600080fd5b506105db611507565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613986565b61158f565b005b34801561061257600080fd5b5061061b61174c565b005b34801561062957600080fd5b506106326117f4565b60405161063f919061403b565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613986565b61181e565b005b34801561067d57600080fd5b5061069860048036038101906106939190613986565b611909565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613986565b61198f565b6040516106ce919061457f565b60405180910390f35b3480156106e357600080fd5b506106ec6119a7565b6040516106f991906140bd565b60405180910390f35b34801561070e57600080fd5b50610717611a39565b604051610724919061459a565b60405180910390f35b61074760048036038101906107429190613986565b611a3f565b005b34801561075557600080fd5b50610770600480360381019061076b919061385f565b611c69565b005b34801561077e57600080fd5b50610799600480360381019061079491906137dc565b611dea565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613986565b611e46565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190613986565b611ecc565b6040516107f891906140bd565b60405180910390f35b34801561080d57600080fd5b50610816611f74565b60405161082391906140a2565b60405180910390f35b34801561083857600080fd5b50610841611f87565b60405161084e919061459a565b60405180910390f35b34801561086357600080fd5b5061086c611f8d565b604051610879919061459a565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a4919061371c565b611f93565b6040516108b6919061459a565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613986565b611fa5565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613749565b61202b565b60405161091c91906140a2565b60405180910390f35b34801561093157600080fd5b5061094c6004803603810190610947919061371c565b6120bf565b005b34801561095a57600080fd5b506109636121b7565b604051610970919061459a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abc5750610abb826121bd565b5b9050919050565b606060018054610ad290614838565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614838565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b6082612227565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061453f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be58261137a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d9061441f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c75612234565b73ffffffffffffffffffffffffffffffffffffffff161480610ca45750610ca381610c9e612234565b61202b565b5b610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda9061427f565b60405180910390fd5b610cee83838361223c565b505050565b60008054905090565b610d04612234565b73ffffffffffffffffffffffffffffffffffffffff16610d226117f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f9061433f565b60405180910390fd5b80600e8190555050565b610d8d8383836122ee565b505050565b610d9a612234565b73ffffffffffffffffffffffffffffffffffffffff16610db86117f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e059061433f565b60405180910390fd5b60026008541415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906144ff565b60405180910390fd5b6002600881905550610e658161282e565b600160088190555050565b6000610e7b8361141e565b8210610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906140df565b60405180910390fd5b6000610ec6610cf3565b905060008060005b83811015611020576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611012578684141561100957819550505050505061105c565b83806001019450505b508080600101915050610ece565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611053906144df565b60405180910390fd5b92915050565b600d5481565b611070612234565b73ffffffffffffffffffffffffffffffffffffffff1661108e6117f4565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061433f565b60405180910390fd5b6002600854141561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906144ff565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161115890614026565b60006040518083038185875af1925050503d8060008114611195576040519150601f19603f3d011682016040523d82523d6000602084013e61119a565b606091505b50509050806111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061443f565b60405180910390fd5b506001600881905550565b61120483838360405180602001604052806000815250611dea565b505050565b600c5481565b6000611219610cf3565b821061125a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112519061419f565b60405180910390fd5b819050919050565b61126a612234565b73ffffffffffffffffffffffffffffffffffffffff166112886117f4565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061433f565b60405180910390fd5b8181600991906112ef929190613510565b505050565b6112fc612234565b73ffffffffffffffffffffffffffffffffffffffff1661131a6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113679061433f565b60405180910390fd5b80600d8190555050565b600061138582612a60565b600001519050919050565b6009805461139d90614838565b80601f01602080910402602001604051908101604052809291908181526020018280546113c990614838565b80156114165780601f106113eb57610100808354040283529160200191611416565b820191906000526020600020905b8154815290600101906020018083116113f957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611486906142df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61150f612234565b73ffffffffffffffffffffffffffffffffffffffff1661152d6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a9061433f565b60405180910390fd5b61158d6000612bfa565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061423f565b60405180910390fd5b601060009054906101000a900460ff1661164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906140ff565b60405180910390fd5b600d5481611658610cf3565b6116629190614659565b11156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906143bf565b60405180910390fd5b60058111156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9061455f565b60405180910390fd5b600c54816116f433611f93565b6116fe9190614659565b111561173f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117369061417f565b60405180910390fd5b6117493382612cc0565b50565b611754612234565b73ffffffffffffffffffffffffffffffffffffffff166117726117f4565b73ffffffffffffffffffffffffffffffffffffffff16146117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061433f565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611826612234565b73ffffffffffffffffffffffffffffffffffffffff166118446117f4565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118919061433f565b60405180910390fd5b6001600e546118a99190614659565b816118b2610cf3565b6118bc9190614659565b106118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f39061425f565b60405180910390fd5b6119063382612cc0565b50565b611911612234565b73ffffffffffffffffffffffffffffffffffffffff1661192f6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061433f565b60405180910390fd5b80600a8190555050565b611997613596565b6119a082612a60565b9050919050565b6060600280546119b690614838565b80601f01602080910402602001604051908101604052809291908181526020018280546119e290614838565b8015611a2f5780601f10611a0457610100808354040283529160200191611a2f565b820191906000526020600020905b815481529060010190602001808311611a1257829003601f168201915b5050505050905090565b600a5481565b6000600a5490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906141ff565b60405180910390fd5b8082611ac091906146e0565b341015611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906143ff565b60405180910390fd5b6001600e54611b119190614659565b82611b1a610cf3565b611b249190614659565b10611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906142ff565b60405180910390fd5b601060009054906101000a900460ff16611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906143df565b60405180910390fd5b6001600b54611bc29190614659565b8210611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906144bf565b60405180910390fd5b600c5482611c1033611f93565b611c1a9190614659565b1115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906142bf565b60405180910390fd5b611c653383612cc0565b5050565b611c71612234565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061437f565b60405180910390fd5b8060066000611cec612234565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d99612234565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dde91906140a2565b60405180910390a35050565b611df58484846122ee565b611e0184848484612cde565b611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061445f565b60405180910390fd5b50505050565b611e4e612234565b73ffffffffffffffffffffffffffffffffffffffff16611e6c6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb99061433f565b60405180910390fd5b80600b8190555050565b6060611ed782612227565b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d9061435f565b60405180910390fd5b6000611f20612e75565b9050600081511415611f415760405180602001604052806000815250611f6c565b80611f4b84612f07565b604051602001611f5c929190614002565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611f9e82613068565b9050919050565b611fad612234565b73ffffffffffffffffffffffffffffffffffffffff16611fcb6117f4565b73ffffffffffffffffffffffffffffffffffffffff1614612021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120189061433f565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c7612234565b73ffffffffffffffffffffffffffffffffffffffff166120e56117f4565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121329061433f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a29061411f565b60405180910390fd5b6121b481612bfa565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122f982612a60565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612320612234565b73ffffffffffffffffffffffffffffffffffffffff16148061237c5750612345612234565b73ffffffffffffffffffffffffffffffffffffffff1661236484610b55565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239857506123978260000151612392612234565b61202b565b5b9050806123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061439f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461244c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124439061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b3906141bf565b60405180910390fd5b6124c98585856001613151565b6124d9600084846000015161223c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127be5761271d81612227565b156127bd5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128278585856001613157565b5050505050565b6000811415612872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128699061429f565b60405180910390fd5b6000805414156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae9061415f565b60405180910390fd5b6000600f5490506000548110612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f99061421f565b60405180910390fd5b600060018383010390506000546001820111156129225760016000540390505b60008290505b818111612a5057600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a435760006129a582612a60565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612928565b5060018101600f81905550505050565b612a68613596565b612a7182612227565b612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa79061413f565b60405180910390fd5b60008290505b60008110612bb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612baa578092505050612bf5565b50808060019003915050612ab6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec9061451f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cda82826040518060200160405280600081525061315d565b5050565b6000612cff8473ffffffffffffffffffffffffffffffffffffffff1661316f565b15612e68578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d28612234565b8786866040518563ffffffff1660e01b8152600401612d4a9493929190614056565b602060405180830381600087803b158015612d6457600080fd5b505af1925050508015612d9557506040513d601f19601f82011682018060405250810190612d92919061390c565b60015b612e18573d8060008114612dc5576040519150601f19603f3d011682016040523d82523d6000602084013e612dca565b606091505b50600081511415612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e079061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6d565b600190505b949350505050565b606060098054612e8490614838565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb090614838565b8015612efd5780601f10612ed257610100808354040283529160200191612efd565b820191906000526020600020905b815481529060010190602001808311612ee057829003601f168201915b5050505050905090565b60606000821415612f4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613063565b600082905060005b60008214612f81578080612f6a9061489b565b915050600a82612f7a91906146af565b9150612f57565b60008167ffffffffffffffff811115612f9d57612f9c6149d1565b5b6040519080825280601f01601f191660200182016040528015612fcf5781602001600182028036833780820191505090505b5090505b6000851461305c57600182612fe8919061473a565b9150600a85612ff791906148e4565b60306130039190614659565b60f81b818381518110613019576130186149a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561305591906146af565b9450612fd3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d0906141df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61316a8383836001613192565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff9061447f565b60405180910390fd5b600084141561324c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132439061449f565b60405180910390fd5b6132596000868387613151565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156134f357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156134de5761349e6000888488612cde565b6134dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d49061445f565b60405180910390fd5b5b81806001019250508080600101915050613427565b5080600081905550506135096000868387613157565b5050505050565b82805461351c90614838565b90600052602060002090601f01602090048101928261353e5760008555613585565b82601f1061355757803560ff1916838001178555613585565b82800160010185558215613585579182015b82811115613584578235825591602001919060010190613569565b5b50905061359291906135d0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135e95760008160009055506001016135d1565b5090565b60006136006135fb846145da565b6145b5565b90508281526020810184848401111561361c5761361b614a0f565b5b6136278482856147f6565b509392505050565b60008135905061363e81615317565b92915050565b6000813590506136538161532e565b92915050565b60008135905061366881615345565b92915050565b60008151905061367d81615345565b92915050565b600082601f83011261369857613697614a05565b5b81356136a88482602086016135ed565b91505092915050565b60008083601f8401126136c7576136c6614a05565b5b8235905067ffffffffffffffff8111156136e4576136e3614a00565b5b602083019150836001820283011115613700576136ff614a0a565b5b9250929050565b6000813590506137168161535c565b92915050565b60006020828403121561373257613731614a19565b5b60006137408482850161362f565b91505092915050565b600080604083850312156137605761375f614a19565b5b600061376e8582860161362f565b925050602061377f8582860161362f565b9150509250929050565b6000806000606084860312156137a2576137a1614a19565b5b60006137b08682870161362f565b93505060206137c18682870161362f565b92505060406137d286828701613707565b9150509250925092565b600080600080608085870312156137f6576137f5614a19565b5b60006138048782880161362f565b94505060206138158782880161362f565b935050604061382687828801613707565b925050606085013567ffffffffffffffff81111561384757613846614a14565b5b61385387828801613683565b91505092959194509250565b6000806040838503121561387657613875614a19565b5b60006138848582860161362f565b925050602061389585828601613644565b9150509250929050565b600080604083850312156138b6576138b5614a19565b5b60006138c48582860161362f565b92505060206138d585828601613707565b9150509250929050565b6000602082840312156138f5576138f4614a19565b5b600061390384828501613659565b91505092915050565b60006020828403121561392257613921614a19565b5b60006139308482850161366e565b91505092915050565b600080602083850312156139505761394f614a19565b5b600083013567ffffffffffffffff81111561396e5761396d614a14565b5b61397a858286016136b1565b92509250509250929050565b60006020828403121561399c5761399b614a19565b5b60006139aa84828501613707565b91505092915050565b6139bc8161476e565b82525050565b6139cb8161476e565b82525050565b6139da81614780565b82525050565b60006139eb8261460b565b6139f58185614621565b9350613a05818560208601614805565b613a0e81614a1e565b840191505092915050565b6000613a2482614616565b613a2e818561463d565b9350613a3e818560208601614805565b613a4781614a1e565b840191505092915050565b6000613a5d82614616565b613a67818561464e565b9350613a77818560208601614805565b80840191505092915050565b6000613a9060228361463d565b9150613a9b82614a2f565b604082019050919050565b6000613ab3601d8361463d565b9150613abe82614a7e565b602082019050919050565b6000613ad660268361463d565b9150613ae182614aa7565b604082019050919050565b6000613af9602a8361463d565b9150613b0482614af6565b604082019050919050565b6000613b1c60148361463d565b9150613b2782614b45565b602082019050919050565b6000613b3f60198361463d565b9150613b4a82614b6e565b602082019050919050565b6000613b6260238361463d565b9150613b6d82614b97565b604082019050919050565b6000613b8560258361463d565b9150613b9082614be6565b604082019050919050565b6000613ba860318361463d565b9150613bb382614c35565b604082019050919050565b6000613bcb60128361463d565b9150613bd682614c84565b602082019050919050565b6000613bee601c8361463d565b9150613bf982614cad565b602082019050919050565b6000613c11601e8361463d565b9150613c1c82614cd6565b602082019050919050565b6000613c3460098361463d565b9150613c3f82614cff565b602082019050919050565b6000613c5760398361463d565b9150613c6282614d28565b604082019050919050565b6000613c7a60188361463d565b9150613c8582614d77565b602082019050919050565b6000613c9d60198361463d565b9150613ca882614da0565b602082019050919050565b6000613cc0602b8361463d565b9150613ccb82614dc9565b604082019050919050565b6000613ce3600f8361463d565b9150613cee82614e18565b602082019050919050565b6000613d0660268361463d565b9150613d1182614e41565b604082019050919050565b6000613d2960208361463d565b9150613d3482614e90565b602082019050919050565b6000613d4c602f8361463d565b9150613d5782614eb9565b604082019050919050565b6000613d6f601a8361463d565b9150613d7a82614f08565b602082019050919050565b6000613d9260328361463d565b9150613d9d82614f31565b604082019050919050565b6000613db560178361463d565b9150613dc082614f80565b602082019050919050565b6000613dd860238361463d565b9150613de382614fa9565b604082019050919050565b6000613dfb601d8361463d565b9150613e0682614ff8565b602082019050919050565b6000613e1e60228361463d565b9150613e2982615021565b604082019050919050565b6000613e41600083614632565b9150613e4c82615070565b600082019050919050565b6000613e6460108361463d565b9150613e6f82615073565b602082019050919050565b6000613e8760338361463d565b9150613e928261509c565b604082019050919050565b6000613eaa60218361463d565b9150613eb5826150eb565b604082019050919050565b6000613ecd60288361463d565b9150613ed88261513a565b604082019050919050565b6000613ef060138361463d565b9150613efb82615189565b602082019050919050565b6000613f13602e8361463d565b9150613f1e826151b2565b604082019050919050565b6000613f36601f8361463d565b9150613f4182615201565b602082019050919050565b6000613f59602f8361463d565b9150613f648261522a565b604082019050919050565b6000613f7c602d8361463d565b9150613f8782615279565b604082019050919050565b6000613f9f60258361463d565b9150613faa826152c8565b604082019050919050565b604082016000820151613fcb60008501826139b3565b506020820151613fde6020850182613ff3565b50505050565b613fed816147d8565b82525050565b613ffc816147e2565b82525050565b600061400e8285613a52565b915061401a8284613a52565b91508190509392505050565b600061403182613e34565b9150819050919050565b600060208201905061405060008301846139c2565b92915050565b600060808201905061406b60008301876139c2565b61407860208301866139c2565b6140856040830185613fe4565b818103606083015261409781846139e0565b905095945050505050565b60006020820190506140b760008301846139d1565b92915050565b600060208201905081810360008301526140d78184613a19565b905092915050565b600060208201905081810360008301526140f881613a83565b9050919050565b6000602082019050818103600083015261411881613aa6565b9050919050565b6000602082019050818103600083015261413881613ac9565b9050919050565b6000602082019050818103600083015261415881613aec565b9050919050565b6000602082019050818103600083015261417881613b0f565b9050919050565b6000602082019050818103600083015261419881613b32565b9050919050565b600060208201905081810360008301526141b881613b55565b9050919050565b600060208201905081810360008301526141d881613b78565b9050919050565b600060208201905081810360008301526141f881613b9b565b9050919050565b6000602082019050818103600083015261421881613bbe565b9050919050565b6000602082019050818103600083015261423881613be1565b9050919050565b6000602082019050818103600083015261425881613c04565b9050919050565b6000602082019050818103600083015261427881613c27565b9050919050565b6000602082019050818103600083015261429881613c4a565b9050919050565b600060208201905081810360008301526142b881613c6d565b9050919050565b600060208201905081810360008301526142d881613c90565b9050919050565b600060208201905081810360008301526142f881613cb3565b9050919050565b6000602082019050818103600083015261431881613cd6565b9050919050565b6000602082019050818103600083015261433881613cf9565b9050919050565b6000602082019050818103600083015261435881613d1c565b9050919050565b6000602082019050818103600083015261437881613d3f565b9050919050565b6000602082019050818103600083015261439881613d62565b9050919050565b600060208201905081810360008301526143b881613d85565b9050919050565b600060208201905081810360008301526143d881613da8565b9050919050565b600060208201905081810360008301526143f881613dcb565b9050919050565b6000602082019050818103600083015261441881613dee565b9050919050565b6000602082019050818103600083015261443881613e11565b9050919050565b6000602082019050818103600083015261445881613e57565b9050919050565b6000602082019050818103600083015261447881613e7a565b9050919050565b6000602082019050818103600083015261449881613e9d565b9050919050565b600060208201905081810360008301526144b881613ec0565b9050919050565b600060208201905081810360008301526144d881613ee3565b9050919050565b600060208201905081810360008301526144f881613f06565b9050919050565b6000602082019050818103600083015261451881613f29565b9050919050565b6000602082019050818103600083015261453881613f4c565b9050919050565b6000602082019050818103600083015261455881613f6f565b9050919050565b6000602082019050818103600083015261457881613f92565b9050919050565b60006040820190506145946000830184613fb5565b92915050565b60006020820190506145af6000830184613fe4565b92915050565b60006145bf6145d0565b90506145cb828261486a565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f5576145f46149d1565b5b6145fe82614a1e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614664826147d8565b915061466f836147d8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146a4576146a3614915565b5b828201905092915050565b60006146ba826147d8565b91506146c5836147d8565b9250826146d5576146d4614944565b5b828204905092915050565b60006146eb826147d8565b91506146f6836147d8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561472f5761472e614915565b5b828202905092915050565b6000614745826147d8565b9150614750836147d8565b92508282101561476357614762614915565b5b828203905092915050565b6000614779826147b8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614823578082015181840152602081019050614808565b83811115614832576000848401525b50505050565b6000600282049050600182168061485057607f821691505b6020821081141561486457614863614973565b5b50919050565b61487382614a1e565b810181811067ffffffffffffffff82111715614892576148916149d1565b5b80604052505050565b60006148a6826147d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d9576148d8614915565b5b600182019050919050565b60006148ef826147d8565b91506148fa836147d8565b92508261490a57614909614944565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e792066726565207065722077616c6c65742100000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f426520796f757273656c662c20616e6f6e2e0000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f546f6f206d616e79206d696e74207065722077616c6c65742100000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204c616e642e2e2e0000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656163686564206d6178206672656520737570706c79000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e2e2e0000000000000000000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e792066726565206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b6153208161476e565b811461532b57600080fd5b50565b61533781614780565b811461534257600080fd5b50565b61534e8161478c565b811461535957600080fd5b50565b615365816147d8565b811461537057600080fd5b5056fea2646970667358221220aa9f074cc35e46d3897df1aa20dbc374d2a983e8a1bef43ee686144a581e096864736f6c63430008070033

Deployed Bytecode Sourcemap

51325:4318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38185:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40071:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41633:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41154:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36442:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53752:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42509:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54146:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37106:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51571:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53964:176;;;;;;;;;;;;;:::i;:::-;;42750:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51524:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36619:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53242:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53432:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39880:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51391:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38621:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11577:103;;;;;;;;;;;;;:::i;:::-;;51947:384;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53038:85;;;;;;;;;;;;;:::i;:::-;;10926:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52869:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53344:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54270:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40240:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51424:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52337:526;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41919:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43006:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53536:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40415:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51718:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51618:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51668;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53129:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53636:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42278:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11835:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51477:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38185:372;38287:4;38339:25;38324:40;;;:11;:40;;;;:105;;;;38396:33;38381:48;;;:11;:48;;;;38324:105;:172;;;;38461:35;38446:50;;;:11;:50;;;;38324:172;:225;;;;38513:36;38537:11;38513:23;:36::i;:::-;38324:225;38304:245;;38185:372;;;:::o;40071:100::-;40125:13;40158:5;40151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40071:100;:::o;41633:214::-;41701:7;41729:16;41737:7;41729;:16::i;:::-;41721:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41815:15;:24;41831:7;41815:24;;;;;;;;;;;;;;;;;;;;;41808:31;;41633:214;;;:::o;41154:413::-;41227:13;41243:24;41259:7;41243:15;:24::i;:::-;41227:40;;41292:5;41286:11;;:2;:11;;;;41278:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41387:5;41371:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41396:37;41413:5;41420:12;:10;:12::i;:::-;41396:16;:37::i;:::-;41371:62;41349:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41531:28;41540:2;41544:7;41553:5;41531:8;:28::i;:::-;41216:351;41154:413;;:::o;36442:100::-;36495:7;36522:12;;36515:19;;36442:100;:::o;53752:98::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53834:10:::1;53822:9;:22;;;;53752:98:::0;:::o;42509:170::-;42643:28;42653:4;42659:2;42663:7;42643:9;:28::i;:::-;42509:170;;;:::o;54146:118::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1:::1;6498:7;;:19;;6490:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1;6631:7;:18;;;;54230:28:::2;54249:8;54230:18;:28::i;:::-;5856:1:::1;6810:7;:22;;;;54146:118:::0;:::o;37106:1007::-;37195:7;37231:16;37241:5;37231:9;:16::i;:::-;37223:5;:24;37215:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37297:22;37322:13;:11;:13::i;:::-;37297:38;;37346:19;37376:25;37565:9;37560:466;37580:14;37576:1;:18;37560:466;;;37620:31;37654:11;:14;37666:1;37654:14;;;;;;;;;;;37620:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37717:1;37691:28;;:9;:14;;;:28;;;37687:111;;37764:9;:14;;;37744:34;;37687:111;37841:5;37820:26;;:17;:26;;;37816:195;;;37890:5;37875:11;:20;37871:85;;;37931:1;37924:8;;;;;;;;;37871:85;37978:13;;;;;;;37816:195;37601:425;37596:3;;;;;;;37560:466;;;;38049:56;;;;;;;;;;:::i;:::-;;;;;;;;37106:1007;;;;;:::o;51571:42::-;;;;:::o;53964:176::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1:::1;6498:7;;:19;;6490:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1;6631:7;:18;;;;54024:12:::2;54042:10;:15;;54065:21;54042:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54023:68;;;54106:7;54098:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;54016:124;5856:1:::1;6810:7;:22;;;;53964:176::o:0;42750:185::-;42888:39;42905:4;42911:2;42915:7;42888:39;;;;;;;;;;;;:16;:39::i;:::-;42750:185;;;:::o;51524:42::-;;;;:::o;36619:187::-;36686:7;36722:13;:11;:13::i;:::-;36714:5;:21;36706:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;36793:5;36786:12;;36619:187;;;:::o;53242:96::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53324:8:::1;;53314:7;:18;;;;;;;:::i;:::-;;53242:96:::0;;:::o;53432:98::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53514:10:::1;53502:9;:22;;;;53432:98:::0;:::o;39880:124::-;39944:7;39971:20;39983:7;39971:11;:20::i;:::-;:25;;;39964:32;;39880:124;;;:::o;51391:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38621:221::-;38685:7;38730:1;38713:19;;:5;:19;;;;38705:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38806:12;:19;38819:5;38806:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;38798:36;;38791:43;;38621:221;;;:::o;11577:103::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11642:30:::1;11669:1;11642:18;:30::i;:::-;11577:103::o:0;51947:384::-;51876:10;51863:23;;:9;:23;;;51855:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52015:11:::1;;;;;;;;;;;52007:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52098:9;;52091:3;52075:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;52067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52157:1;52150:3;:8;;52142:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52249:12;;52242:3;52215:24;52228:10;52215:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;52207:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52297:26;52307:10;52319:3;52297:9;:26::i;:::-;51947:384:::0;:::o;53038:85::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53106:11:::1;;;;;;;;;;;53105:12;53091:11;;:26;;;;;;;;;;;;;;;;;;53038:85::o:0;10926:87::-;10972:7;10999:6;;;;;;;;;;;10992:13;;10926:87;:::o;52869:163::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52977:1:::1;52965:9;;:13;;;;:::i;:::-;52959:3;52943:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;52935:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53000:26;53010:10;53022:3;53000:9;:26::i;:::-;52869:163:::0;:::o;53344:82::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53414:6:::1;53406:5;:14;;;;53344:82:::0;:::o;54270:132::-;54336:21;;:::i;:::-;54376:20;54388:7;54376:11;:20::i;:::-;54369:27;;54270:132;;;:::o;40240:104::-;40296:13;40329:7;40322:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40240:104;:::o;51424:48::-;;;;:::o;52337:526::-;52391:9;52403:5;;52391:17;;52437:9;52423:23;;:10;:23;;;52415:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52502:4;52496:3;:10;;;;:::i;:::-;52483:9;:23;;52475:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52588:1;52576:9;;:13;;;;:::i;:::-;52570:3;52554:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;52546:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52623:11;;;;;;;;;;;52615:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52707:1;52696:8;;:12;;;;:::i;:::-;52690:3;:18;52681:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;52781:12;;52774:3;52747:24;52760:10;52747:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;52739:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52831:26;52841:10;52853:3;52831:9;:26::i;:::-;52384:479;52337:526;:::o;41919:288::-;42026:12;:10;:12::i;:::-;42014:24;;:8;:24;;;;42006:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42127:8;42082:18;:32;42101:12;:10;:12::i;:::-;42082:32;;;;;;;;;;;;;;;:42;42115:8;42082:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42180:8;42151:48;;42166:12;:10;:12::i;:::-;42151:48;;;42190:8;42151:48;;;;;;:::i;:::-;;;;;;;;41919:288;;:::o;43006:355::-;43165:28;43175:4;43181:2;43185:7;43165:9;:28::i;:::-;43226:48;43249:4;43255:2;43259:7;43268:5;43226:22;:48::i;:::-;43204:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;43006:355;;;;:::o;53536:94::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53615:9:::1;53604:8;:20;;;;53536:94:::0;:::o;40415:335::-;40488:13;40522:16;40530:7;40522;:16::i;:::-;40514:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40603:21;40627:10;:8;:10::i;:::-;40603:34;;40680:1;40661:7;40655:21;:26;;:87;;;;;;;;;;;;;;;;;40708:7;40717:18;:7;:16;:18::i;:::-;40691:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40655:87;40648:94;;;40415:335;;;:::o;51718:32::-;;;;;;;;;;;;;:::o;51618:45::-;;;;:::o;51668:::-;;;;:::o;53129:107::-;53187:7;53210:20;53224:5;53210:13;:20::i;:::-;53203:27;;53129:107;;;:::o;53636:110::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53727:13:::1;53712:12;:28;;;;53636:110:::0;:::o;42278:164::-;42375:4;42399:18;:25;42418:5;42399:25;;;;;;;;;;;;;;;:35;42425:8;42399:35;;;;;;;;;;;;;;;;;;;;;;;;;42392:42;;42278:164;;;;:::o;11835:201::-;11157:12;:10;:12::i;:::-;11146:23;;:7;:5;:7::i;:::-;:23;;;11138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11944:1:::1;11924:22;;:8;:22;;;;11916:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12000:28;12019:8;12000:18;:28::i;:::-;11835:201:::0;:::o;51477:42::-;;;;:::o;27705:157::-;27790:4;27829:25;27814:40;;;:11;:40;;;;27807:47;;27705:157;;;:::o;43616:111::-;43673:4;43707:12;;43697:7;:22;43690:29;;43616:111;;;:::o;9650:98::-;9703:7;9730:10;9723:17;;9650:98;:::o;48536:196::-;48678:2;48651:15;:24;48667:7;48651:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48716:7;48712:2;48696:28;;48705:5;48696:28;;;;;;;;;;;;48536:196;;;:::o;46416:2002::-;46531:35;46569:20;46581:7;46569:11;:20::i;:::-;46531:58;;46602:22;46644:13;:18;;;46628:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;46703:12;:10;:12::i;:::-;46679:36;;:20;46691:7;46679:11;:20::i;:::-;:36;;;46628:87;:154;;;;46732:50;46749:13;:18;;;46769:12;:10;:12::i;:::-;46732:16;:50::i;:::-;46628:154;46602:181;;46804:17;46796:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;46919:4;46897:26;;:13;:18;;;:26;;;46889:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46999:1;46985:16;;:2;:16;;;;46977:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47056:43;47078:4;47084:2;47088:7;47097:1;47056:21;:43::i;:::-;47164:49;47181:1;47185:7;47194:13;:18;;;47164:8;:49::i;:::-;47539:1;47509:12;:18;47522:4;47509:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47583:1;47555:12;:16;47568:2;47555:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47629:2;47601:11;:20;47613:7;47601:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;47691:15;47646:11;:20;47658:7;47646:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47959:19;47991:1;47981:7;:11;47959:33;;48052:1;48011:43;;:11;:24;48023:11;48011:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;48007:295;;;48079:20;48087:11;48079:7;:20::i;:::-;48075:212;;;48156:13;:18;;;48124:11;:24;48136:11;48124:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;48239:13;:28;;;48197:11;:24;48209:11;48197:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;48075:212;48007:295;47484:829;48349:7;48345:2;48330:27;;48339:4;48330:27;;;;;;;;;;;;48368:42;48389:4;48395:2;48399:7;48408:1;48368:20;:42::i;:::-;46520:1898;;46416:2002;;;:::o;54510:1130::-;54594:1;54582:8;:13;;54574:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54657:1;54641:12;;:17;;54633:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54692:33;54728:24;;54692:60;;54797:12;;54769:25;:40;54761:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54980:16;55038:1;55027:8;54999:25;:36;:40;54980:59;;55132:12;;55128:1;55117:8;:12;:27;55113:91;;;55189:1;55174:12;;:16;55163:27;;55113:91;55223:9;55235:25;55223:37;;55218:354;55267:8;55262:1;:13;55218:354;;55334:1;55303:33;;:11;:14;55315:1;55303:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;55299:260;;;55359:31;55393:14;55405:1;55393:11;:14::i;:::-;55359:48;;55450:9;:14;;;55428:11;:14;55440:1;55428:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;55517:9;:24;;;55485:11;:14;55497:1;55485:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;55338:221;55299:260;55277:3;;;;;;;55218:354;;;;55624:1;55613:8;:12;55586:24;:39;;;;54957:678;54565:1075;54510:1130;:::o;39281:537::-;39342:21;;:::i;:::-;39384:16;39392:7;39384;:16::i;:::-;39376:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39490:12;39505:7;39490:22;;39485:245;39522:1;39514:4;:9;39485:245;;39552:31;39586:11;:17;39598:4;39586:17;;;;;;;;;;;39552:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39652:1;39626:28;;:9;:14;;;:28;;;39622:93;;39686:9;39679:16;;;;;;39622:93;39533:197;39525:6;;;;;;;;39485:245;;;;39753:57;;;;;;;;;;:::i;:::-;;;;;;;;39281:537;;;;:::o;12196:191::-;12270:16;12289:6;;;;;;;;;;;12270:25;;12315:8;12306:6;;:17;;;;;;;;;;;;;;;;;;12370:8;12339:40;;12360:8;12339:40;;;;;;;;;;;;12259:128;12196:191;:::o;43735:104::-;43804:27;43814:2;43818:8;43804:27;;;;;;;;;;;;:9;:27::i;:::-;43735:104;;:::o;49297:804::-;49452:4;49473:15;:2;:13;;;:15::i;:::-;49469:625;;;49525:2;49509:36;;;49546:12;:10;:12::i;:::-;49560:4;49566:7;49575:5;49509:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49505:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49772:1;49755:6;:13;:18;49751:273;;;49798:61;;;;;;;;;;:::i;:::-;;;;;;;;49751:273;49974:6;49968:13;49959:6;49955:2;49951:15;49944:38;49505:534;49642:45;;;49632:55;;;:6;:55;;;;49625:62;;;;;49469:625;50078:4;50071:11;;49297:804;;;;;;;:::o;53856:102::-;53916:13;53945:7;53938:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53856:102;:::o;7212:723::-;7268:13;7498:1;7489:5;:10;7485:53;;;7516:10;;;;;;;;;;;;;;;;;;;;;7485:53;7548:12;7563:5;7548:20;;7579:14;7604:78;7619:1;7611:4;:9;7604:78;;7637:8;;;;;:::i;:::-;;;;7668:2;7660:10;;;;;:::i;:::-;;;7604:78;;;7692:19;7724:6;7714:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7692:39;;7742:154;7758:1;7749:5;:10;7742:154;;7786:1;7776:11;;;;;:::i;:::-;;;7853:2;7845:5;:10;;;;:::i;:::-;7832:2;:24;;;;:::i;:::-;7819:39;;7802:6;7809;7802:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7882:2;7873:11;;;;;:::i;:::-;;;7742:154;;;7920:6;7906:21;;;;;7212:723;;;;:::o;38850:229::-;38911:7;38956:1;38939:19;;:5;:19;;;;38931:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39038:12;:19;39051:5;39038:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;39030:41;;39023:48;;38850:229;;;:::o;50589:159::-;;;;;:::o;51160:158::-;;;;;:::o;44202:163::-;44325:32;44331:2;44335:8;44345:5;44352:4;44325:5;:32::i;:::-;44202:163;;;:::o;13627:326::-;13687:4;13944:1;13922:7;:19;;;:23;13915:30;;13627:326;;;:::o;44624:1538::-;44763:20;44786:12;;44763:35;;44831:1;44817:16;;:2;:16;;;;44809:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44902:1;44890:8;:13;;44882:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44961:61;44991:1;44995:2;44999:12;45013:8;44961:21;:61::i;:::-;45336:8;45300:12;:16;45313:2;45300:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45401:8;45360:12;:16;45373:2;45360:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45460:2;45427:11;:25;45439:12;45427:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45527:15;45477:11;:25;45489:12;45477:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45560:20;45583:12;45560:35;;45617:9;45612:415;45632:8;45628:1;:12;45612:415;;;45696:12;45692:2;45671:38;;45688:1;45671:38;;;;;;;;;;;;45732:4;45728:249;;;45795:59;45826:1;45830:2;45834:12;45848:5;45795:22;:59::i;:::-;45761:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;45728:249;45997:14;;;;;;;45642:3;;;;;;;45612:415;;;;46058:12;46043;:27;;;;45275:807;46094:60;46123:1;46127:2;46131:12;46145:8;46094:20;:60::i;:::-;44752:1410;44624:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:365::-;13051:3;13072:66;13136:1;13131:3;13072:66;:::i;:::-;13065:73;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12909:365;;;:::o;13280:366::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13652:366;;;:::o;14024:::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14024:366;;;:::o;14396:::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:::-;16770:3;16791:67;16855:2;16850:3;16791:67;:::i;:::-;16784:74;;16867:93;16956:3;16867:93;:::i;:::-;16985:2;16980:3;16976:12;16969:19;;16628:366;;;:::o;17000:::-;17142:3;17163:67;17227:2;17222:3;17163:67;:::i;:::-;17156:74;;17239:93;17328:3;17239:93;:::i;:::-;17357:2;17352:3;17348:12;17341:19;;17000:366;;;:::o;17372:::-;17514:3;17535:67;17599:2;17594:3;17535:67;:::i;:::-;17528:74;;17611:93;17700:3;17611:93;:::i;:::-;17729:2;17724:3;17720:12;17713:19;;17372:366;;;:::o;17744:::-;17886:3;17907:67;17971:2;17966:3;17907:67;:::i;:::-;17900:74;;17983:93;18072:3;17983:93;:::i;:::-;18101:2;18096:3;18092:12;18085:19;;17744:366;;;:::o;18116:::-;18258:3;18279:67;18343:2;18338:3;18279:67;:::i;:::-;18272:74;;18355:93;18444:3;18355:93;:::i;:::-;18473:2;18468:3;18464:12;18457:19;;18116:366;;;:::o;18488:398::-;18647:3;18668:83;18749:1;18744:3;18668:83;:::i;:::-;18661:90;;18760:93;18849:3;18760:93;:::i;:::-;18878:1;18873:3;18869:11;18862:18;;18488:398;;;:::o;18892:366::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20380:::-;20522:3;20543:67;20607:2;20602:3;20543:67;:::i;:::-;20536:74;;20619:93;20708:3;20619:93;:::i;:::-;20737:2;20732:3;20728:12;20721:19;;20380:366;;;:::o;20752:::-;20894:3;20915:67;20979:2;20974:3;20915:67;:::i;:::-;20908:74;;20991:93;21080:3;20991:93;:::i;:::-;21109:2;21104:3;21100:12;21093:19;;20752:366;;;:::o;21124:::-;21266:3;21287:67;21351:2;21346:3;21287:67;:::i;:::-;21280:74;;21363:93;21452:3;21363:93;:::i;:::-;21481:2;21476:3;21472:12;21465:19;;21124:366;;;:::o;21496:::-;21638:3;21659:67;21723:2;21718:3;21659:67;:::i;:::-;21652:74;;21735:93;21824:3;21735:93;:::i;:::-;21853:2;21848:3;21844:12;21837:19;;21496:366;;;:::o;21868:::-;22010:3;22031:67;22095:2;22090:3;22031:67;:::i;:::-;22024:74;;22107:93;22196:3;22107:93;:::i;:::-;22225:2;22220:3;22216:12;22209:19;;21868:366;;;:::o;22240:::-;22382:3;22403:67;22467:2;22462:3;22403:67;:::i;:::-;22396:74;;22479:93;22568:3;22479:93;:::i;:::-;22597:2;22592:3;22588:12;22581:19;;22240:366;;;:::o;22682:529::-;22843:4;22838:3;22834:14;22930:4;22923:5;22919:16;22913:23;22949:63;23006:4;23001:3;22997:14;22983:12;22949:63;:::i;:::-;22858:164;23114:4;23107:5;23103:16;23097:23;23133:61;23188:4;23183:3;23179:14;23165:12;23133:61;:::i;:::-;23032:172;22812:399;22682:529;;:::o;23217:118::-;23304:24;23322:5;23304:24;:::i;:::-;23299:3;23292:37;23217:118;;:::o;23341:105::-;23416:23;23433:5;23416:23;:::i;:::-;23411:3;23404:36;23341:105;;:::o;23452:435::-;23632:3;23654:95;23745:3;23736:6;23654:95;:::i;:::-;23647:102;;23766:95;23857:3;23848:6;23766:95;:::i;:::-;23759:102;;23878:3;23871:10;;23452:435;;;;;:::o;23893:379::-;24077:3;24099:147;24242:3;24099:147;:::i;:::-;24092:154;;24263:3;24256:10;;23893:379;;;:::o;24278:222::-;24371:4;24409:2;24398:9;24394:18;24386:26;;24422:71;24490:1;24479:9;24475:17;24466:6;24422:71;:::i;:::-;24278:222;;;;:::o;24506:640::-;24701:4;24739:3;24728:9;24724:19;24716:27;;24753:71;24821:1;24810:9;24806:17;24797:6;24753:71;:::i;:::-;24834:72;24902:2;24891:9;24887:18;24878:6;24834:72;:::i;:::-;24916;24984:2;24973:9;24969:18;24960:6;24916:72;:::i;:::-;25035:9;25029:4;25025:20;25020:2;25009:9;25005:18;24998:48;25063:76;25134:4;25125:6;25063:76;:::i;:::-;25055:84;;24506:640;;;;;;;:::o;25152:210::-;25239:4;25277:2;25266:9;25262:18;25254:26;;25290:65;25352:1;25341:9;25337:17;25328:6;25290:65;:::i;:::-;25152:210;;;;:::o;25368:313::-;25481:4;25519:2;25508:9;25504:18;25496:26;;25568:9;25562:4;25558:20;25554:1;25543:9;25539:17;25532:47;25596:78;25669:4;25660:6;25596:78;:::i;:::-;25588:86;;25368:313;;;;:::o;25687:419::-;25853:4;25891:2;25880:9;25876:18;25868:26;;25940:9;25934:4;25930:20;25926:1;25915:9;25911:17;25904:47;25968:131;26094:4;25968:131;:::i;:::-;25960:139;;25687:419;;;:::o;26112:::-;26278:4;26316:2;26305:9;26301:18;26293:26;;26365:9;26359:4;26355:20;26351:1;26340:9;26336:17;26329:47;26393:131;26519:4;26393:131;:::i;:::-;26385:139;;26112:419;;;:::o;26537:::-;26703:4;26741:2;26730:9;26726:18;26718:26;;26790:9;26784:4;26780:20;26776:1;26765:9;26761:17;26754:47;26818:131;26944:4;26818:131;:::i;:::-;26810:139;;26537:419;;;:::o;26962:::-;27128:4;27166:2;27155:9;27151:18;27143:26;;27215:9;27209:4;27205:20;27201:1;27190:9;27186:17;27179:47;27243:131;27369:4;27243:131;:::i;:::-;27235:139;;26962:419;;;:::o;27387:::-;27553:4;27591:2;27580:9;27576:18;27568:26;;27640:9;27634:4;27630:20;27626:1;27615:9;27611:17;27604:47;27668:131;27794:4;27668:131;:::i;:::-;27660:139;;27387:419;;;:::o;27812:::-;27978:4;28016:2;28005:9;28001:18;27993:26;;28065:9;28059:4;28055:20;28051:1;28040:9;28036:17;28029:47;28093:131;28219:4;28093:131;:::i;:::-;28085:139;;27812:419;;;:::o;28237:::-;28403:4;28441:2;28430:9;28426:18;28418:26;;28490:9;28484:4;28480:20;28476:1;28465:9;28461:17;28454:47;28518:131;28644:4;28518:131;:::i;:::-;28510:139;;28237:419;;;:::o;28662:::-;28828:4;28866:2;28855:9;28851:18;28843:26;;28915:9;28909:4;28905:20;28901:1;28890:9;28886:17;28879:47;28943:131;29069:4;28943:131;:::i;:::-;28935:139;;28662:419;;;:::o;29087:::-;29253:4;29291:2;29280:9;29276:18;29268:26;;29340:9;29334:4;29330:20;29326:1;29315:9;29311:17;29304:47;29368:131;29494:4;29368:131;:::i;:::-;29360:139;;29087:419;;;:::o;29512:::-;29678:4;29716:2;29705:9;29701:18;29693:26;;29765:9;29759:4;29755:20;29751:1;29740:9;29736:17;29729:47;29793:131;29919:4;29793:131;:::i;:::-;29785:139;;29512:419;;;:::o;29937:::-;30103:4;30141:2;30130:9;30126:18;30118:26;;30190:9;30184:4;30180:20;30176:1;30165:9;30161:17;30154:47;30218:131;30344:4;30218:131;:::i;:::-;30210:139;;29937:419;;;:::o;30362:::-;30528:4;30566:2;30555:9;30551:18;30543:26;;30615:9;30609:4;30605:20;30601:1;30590:9;30586:17;30579:47;30643:131;30769:4;30643:131;:::i;:::-;30635:139;;30362:419;;;:::o;30787:::-;30953:4;30991:2;30980:9;30976:18;30968:26;;31040:9;31034:4;31030:20;31026:1;31015:9;31011:17;31004:47;31068:131;31194:4;31068:131;:::i;:::-;31060:139;;30787:419;;;:::o;31212:::-;31378:4;31416:2;31405:9;31401:18;31393:26;;31465:9;31459:4;31455:20;31451:1;31440:9;31436:17;31429:47;31493:131;31619:4;31493:131;:::i;:::-;31485:139;;31212:419;;;:::o;31637:::-;31803:4;31841:2;31830:9;31826:18;31818:26;;31890:9;31884:4;31880:20;31876:1;31865:9;31861:17;31854:47;31918:131;32044:4;31918:131;:::i;:::-;31910:139;;31637:419;;;:::o;32062:::-;32228:4;32266:2;32255:9;32251:18;32243:26;;32315:9;32309:4;32305:20;32301:1;32290:9;32286:17;32279:47;32343:131;32469:4;32343:131;:::i;:::-;32335:139;;32062:419;;;:::o;32487:::-;32653:4;32691:2;32680:9;32676:18;32668:26;;32740:9;32734:4;32730:20;32726:1;32715:9;32711:17;32704:47;32768:131;32894:4;32768:131;:::i;:::-;32760:139;;32487:419;;;:::o;32912:::-;33078:4;33116:2;33105:9;33101:18;33093:26;;33165:9;33159:4;33155:20;33151:1;33140:9;33136:17;33129:47;33193:131;33319:4;33193:131;:::i;:::-;33185:139;;32912:419;;;:::o;33337:::-;33503:4;33541:2;33530:9;33526:18;33518:26;;33590:9;33584:4;33580:20;33576:1;33565:9;33561:17;33554:47;33618:131;33744:4;33618:131;:::i;:::-;33610:139;;33337:419;;;:::o;33762:::-;33928:4;33966:2;33955:9;33951:18;33943:26;;34015:9;34009:4;34005:20;34001:1;33990:9;33986:17;33979:47;34043:131;34169:4;34043:131;:::i;:::-;34035:139;;33762:419;;;:::o;34187:::-;34353:4;34391:2;34380:9;34376:18;34368:26;;34440:9;34434:4;34430:20;34426:1;34415:9;34411:17;34404:47;34468:131;34594:4;34468:131;:::i;:::-;34460:139;;34187:419;;;:::o;34612:::-;34778:4;34816:2;34805:9;34801:18;34793:26;;34865:9;34859:4;34855:20;34851:1;34840:9;34836:17;34829:47;34893:131;35019:4;34893:131;:::i;:::-;34885:139;;34612:419;;;:::o;35037:::-;35203:4;35241:2;35230:9;35226:18;35218:26;;35290:9;35284:4;35280:20;35276:1;35265:9;35261:17;35254:47;35318:131;35444:4;35318:131;:::i;:::-;35310:139;;35037:419;;;:::o;35462:::-;35628:4;35666:2;35655:9;35651:18;35643:26;;35715:9;35709:4;35705:20;35701:1;35690:9;35686:17;35679:47;35743:131;35869:4;35743:131;:::i;:::-;35735:139;;35462:419;;;:::o;35887:::-;36053:4;36091:2;36080:9;36076:18;36068:26;;36140:9;36134:4;36130:20;36126:1;36115:9;36111:17;36104:47;36168:131;36294:4;36168:131;:::i;:::-;36160:139;;35887:419;;;:::o;36312:::-;36478:4;36516:2;36505:9;36501:18;36493:26;;36565:9;36559:4;36555:20;36551:1;36540:9;36536:17;36529:47;36593:131;36719:4;36593:131;:::i;:::-;36585:139;;36312:419;;;:::o;36737:::-;36903:4;36941:2;36930:9;36926:18;36918:26;;36990:9;36984:4;36980:20;36976:1;36965:9;36961:17;36954:47;37018:131;37144:4;37018:131;:::i;:::-;37010:139;;36737:419;;;:::o;37162:::-;37328:4;37366:2;37355:9;37351:18;37343:26;;37415:9;37409:4;37405:20;37401:1;37390:9;37386:17;37379:47;37443:131;37569:4;37443:131;:::i;:::-;37435:139;;37162:419;;;:::o;37587:::-;37753:4;37791:2;37780:9;37776:18;37768:26;;37840:9;37834:4;37830:20;37826:1;37815:9;37811:17;37804:47;37868:131;37994:4;37868:131;:::i;:::-;37860:139;;37587:419;;;:::o;38012:::-;38178:4;38216:2;38205:9;38201:18;38193:26;;38265:9;38259:4;38255:20;38251:1;38240:9;38236:17;38229:47;38293:131;38419:4;38293:131;:::i;:::-;38285:139;;38012:419;;;:::o;38437:::-;38603:4;38641:2;38630:9;38626:18;38618:26;;38690:9;38684:4;38680:20;38676:1;38665:9;38661:17;38654:47;38718:131;38844:4;38718:131;:::i;:::-;38710:139;;38437:419;;;:::o;38862:::-;39028:4;39066:2;39055:9;39051:18;39043:26;;39115:9;39109:4;39105:20;39101:1;39090:9;39086:17;39079:47;39143:131;39269:4;39143:131;:::i;:::-;39135:139;;38862:419;;;:::o;39287:::-;39453:4;39491:2;39480:9;39476:18;39468:26;;39540:9;39534:4;39530:20;39526:1;39515:9;39511:17;39504:47;39568:131;39694:4;39568:131;:::i;:::-;39560:139;;39287:419;;;:::o;39712:::-;39878:4;39916:2;39905:9;39901:18;39893:26;;39965:9;39959:4;39955:20;39951:1;39940:9;39936:17;39929:47;39993:131;40119:4;39993:131;:::i;:::-;39985:139;;39712:419;;;:::o;40137:::-;40303:4;40341:2;40330:9;40326:18;40318:26;;40390:9;40384:4;40380:20;40376:1;40365:9;40361:17;40354:47;40418:131;40544:4;40418:131;:::i;:::-;40410:139;;40137:419;;;:::o;40562:::-;40728:4;40766:2;40755:9;40751:18;40743:26;;40815:9;40809:4;40805:20;40801:1;40790:9;40786:17;40779:47;40843:131;40969:4;40843:131;:::i;:::-;40835:139;;40562:419;;;:::o;40987:::-;41153:4;41191:2;41180:9;41176:18;41168:26;;41240:9;41234:4;41230:20;41226:1;41215:9;41211:17;41204:47;41268:131;41394:4;41268:131;:::i;:::-;41260:139;;40987:419;;;:::o;41412:350::-;41569:4;41607:2;41596:9;41592:18;41584:26;;41620:135;41752:1;41741:9;41737:17;41728:6;41620:135;:::i;:::-;41412:350;;;;:::o;41768:222::-;41861:4;41899:2;41888:9;41884:18;41876:26;;41912:71;41980:1;41969:9;41965:17;41956:6;41912:71;:::i;:::-;41768:222;;;;:::o;41996:129::-;42030:6;42057:20;;:::i;:::-;42047:30;;42086:33;42114:4;42106:6;42086:33;:::i;:::-;41996:129;;;:::o;42131:75::-;42164:6;42197:2;42191:9;42181:19;;42131:75;:::o;42212:307::-;42273:4;42363:18;42355:6;42352:30;42349:56;;;42385:18;;:::i;:::-;42349:56;42423:29;42445:6;42423:29;:::i;:::-;42415:37;;42507:4;42501;42497:15;42489:23;;42212:307;;;:::o;42525:98::-;42576:6;42610:5;42604:12;42594:22;;42525:98;;;:::o;42629:99::-;42681:6;42715:5;42709:12;42699:22;;42629:99;;;:::o;42734:168::-;42817:11;42851:6;42846:3;42839:19;42891:4;42886:3;42882:14;42867:29;;42734:168;;;;:::o;42908:147::-;43009:11;43046:3;43031:18;;42908:147;;;;:::o;43061:169::-;43145:11;43179:6;43174:3;43167:19;43219:4;43214:3;43210:14;43195:29;;43061:169;;;;:::o;43236:148::-;43338:11;43375:3;43360:18;;43236:148;;;;:::o;43390:305::-;43430:3;43449:20;43467:1;43449:20;:::i;:::-;43444:25;;43483:20;43501:1;43483:20;:::i;:::-;43478:25;;43637:1;43569:66;43565:74;43562:1;43559:81;43556:107;;;43643:18;;:::i;:::-;43556:107;43687:1;43684;43680:9;43673:16;;43390:305;;;;:::o;43701:185::-;43741:1;43758:20;43776:1;43758:20;:::i;:::-;43753:25;;43792:20;43810:1;43792:20;:::i;:::-;43787:25;;43831:1;43821:35;;43836:18;;:::i;:::-;43821:35;43878:1;43875;43871:9;43866:14;;43701:185;;;;:::o;43892:348::-;43932:7;43955:20;43973:1;43955:20;:::i;:::-;43950:25;;43989:20;44007:1;43989:20;:::i;:::-;43984:25;;44177:1;44109:66;44105:74;44102:1;44099:81;44094:1;44087:9;44080:17;44076:105;44073:131;;;44184:18;;:::i;:::-;44073:131;44232:1;44229;44225:9;44214:20;;43892:348;;;;:::o;44246:191::-;44286:4;44306:20;44324:1;44306:20;:::i;:::-;44301:25;;44340:20;44358:1;44340:20;:::i;:::-;44335:25;;44379:1;44376;44373:8;44370:34;;;44384:18;;:::i;:::-;44370:34;44429:1;44426;44422:9;44414:17;;44246:191;;;;:::o;44443:96::-;44480:7;44509:24;44527:5;44509:24;:::i;:::-;44498:35;;44443:96;;;:::o;44545:90::-;44579:7;44622:5;44615:13;44608:21;44597:32;;44545:90;;;:::o;44641:149::-;44677:7;44717:66;44710:5;44706:78;44695:89;;44641:149;;;:::o;44796:126::-;44833:7;44873:42;44866:5;44862:54;44851:65;;44796:126;;;:::o;44928:77::-;44965:7;44994:5;44983:16;;44928:77;;;:::o;45011:101::-;45047:7;45087:18;45080:5;45076:30;45065:41;;45011:101;;;:::o;45118:154::-;45202:6;45197:3;45192;45179:30;45264:1;45255:6;45250:3;45246:16;45239:27;45118:154;;;:::o;45278:307::-;45346:1;45356:113;45370:6;45367:1;45364:13;45356:113;;;45455:1;45450:3;45446:11;45440:18;45436:1;45431:3;45427:11;45420:39;45392:2;45389:1;45385:10;45380:15;;45356:113;;;45487:6;45484:1;45481:13;45478:101;;;45567:1;45558:6;45553:3;45549:16;45542:27;45478:101;45327:258;45278:307;;;:::o;45591:320::-;45635:6;45672:1;45666:4;45662:12;45652:22;;45719:1;45713:4;45709:12;45740:18;45730:81;;45796:4;45788:6;45784:17;45774:27;;45730:81;45858:2;45850:6;45847:14;45827:18;45824:38;45821:84;;;45877:18;;:::i;:::-;45821:84;45642:269;45591:320;;;:::o;45917:281::-;46000:27;46022:4;46000:27;:::i;:::-;45992:6;45988:40;46130:6;46118:10;46115:22;46094:18;46082:10;46079:34;46076:62;46073:88;;;46141:18;;:::i;:::-;46073:88;46181:10;46177:2;46170:22;45960:238;45917:281;;:::o;46204:233::-;46243:3;46266:24;46284:5;46266:24;:::i;:::-;46257:33;;46312:66;46305:5;46302:77;46299:103;;;46382:18;;:::i;:::-;46299:103;46429:1;46422:5;46418:13;46411:20;;46204:233;;;:::o;46443:176::-;46475:1;46492:20;46510:1;46492:20;:::i;:::-;46487:25;;46526:20;46544:1;46526:20;:::i;:::-;46521:25;;46565:1;46555:35;;46570:18;;:::i;:::-;46555:35;46611:1;46608;46604:9;46599:14;;46443:176;;;;:::o;46625:180::-;46673:77;46670:1;46663:88;46770:4;46767:1;46760:15;46794:4;46791:1;46784:15;46811:180;46859:77;46856:1;46849:88;46956:4;46953:1;46946:15;46980:4;46977:1;46970:15;46997:180;47045:77;47042:1;47035:88;47142:4;47139:1;47132:15;47166:4;47163:1;47156:15;47183:180;47231:77;47228:1;47221:88;47328:4;47325:1;47318:15;47352:4;47349:1;47342:15;47369:180;47417:77;47414:1;47407:88;47514:4;47511:1;47504:15;47538:4;47535:1;47528:15;47555:117;47664:1;47661;47654:12;47678:117;47787:1;47784;47777:12;47801:117;47910:1;47907;47900:12;47924:117;48033:1;48030;48023:12;48047:117;48156:1;48153;48146:12;48170:117;48279:1;48276;48269:12;48293:102;48334:6;48385:2;48381:7;48376:2;48369:5;48365:14;48361:28;48351:38;;48293:102;;;:::o;48401:221::-;48541:34;48537:1;48529:6;48525:14;48518:58;48610:4;48605:2;48597:6;48593:15;48586:29;48401:221;:::o;48628:179::-;48768:31;48764:1;48756:6;48752:14;48745:55;48628:179;:::o;48813:225::-;48953:34;48949:1;48941:6;48937:14;48930:58;49022:8;49017:2;49009:6;49005:15;48998:33;48813:225;:::o;49044:229::-;49184:34;49180:1;49172:6;49168:14;49161:58;49253:12;49248:2;49240:6;49236:15;49229:37;49044:229;:::o;49279:170::-;49419:22;49415:1;49407:6;49403:14;49396:46;49279:170;:::o;49455:175::-;49595:27;49591:1;49583:6;49579:14;49572:51;49455:175;:::o;49636:222::-;49776:34;49772:1;49764:6;49760:14;49753:58;49845:5;49840:2;49832:6;49828:15;49821:30;49636:222;:::o;49864:224::-;50004:34;50000:1;49992:6;49988:14;49981:58;50073:7;50068:2;50060:6;50056:15;50049:32;49864:224;:::o;50094:236::-;50234:34;50230:1;50222:6;50218:14;50211:58;50303:19;50298:2;50290:6;50286:15;50279:44;50094:236;:::o;50336:168::-;50476:20;50472:1;50464:6;50460:14;50453:44;50336:168;:::o;50510:178::-;50650:30;50646:1;50638:6;50634:14;50627:54;50510:178;:::o;50694:180::-;50834:32;50830:1;50822:6;50818:14;50811:56;50694:180;:::o;50880:159::-;51020:11;51016:1;51008:6;51004:14;50997:35;50880:159;:::o;51045:244::-;51185:34;51181:1;51173:6;51169:14;51162:58;51254:27;51249:2;51241:6;51237:15;51230:52;51045:244;:::o;51295:174::-;51435:26;51431:1;51423:6;51419:14;51412:50;51295:174;:::o;51475:175::-;51615:27;51611:1;51603:6;51599:14;51592:51;51475:175;:::o;51656:230::-;51796:34;51792:1;51784:6;51780:14;51773:58;51865:13;51860:2;51852:6;51848:15;51841:38;51656:230;:::o;51892:165::-;52032:17;52028:1;52020:6;52016:14;52009:41;51892:165;:::o;52063:225::-;52203:34;52199:1;52191:6;52187:14;52180:58;52272:8;52267:2;52259:6;52255:15;52248:33;52063:225;:::o;52294:182::-;52434:34;52430:1;52422:6;52418:14;52411:58;52294:182;:::o;52482:234::-;52622:34;52618:1;52610:6;52606:14;52599:58;52691:17;52686:2;52678:6;52674:15;52667:42;52482:234;:::o;52722:176::-;52862:28;52858:1;52850:6;52846:14;52839:52;52722:176;:::o;52904:237::-;53044:34;53040:1;53032:6;53028:14;53021:58;53113:20;53108:2;53100:6;53096:15;53089:45;52904:237;:::o;53147:173::-;53287:25;53283:1;53275:6;53271:14;53264:49;53147:173;:::o;53326:222::-;53466:34;53462:1;53454:6;53450:14;53443:58;53535:5;53530:2;53522:6;53518:15;53511:30;53326:222;:::o;53554:179::-;53694:31;53690:1;53682:6;53678:14;53671:55;53554:179;:::o;53739:221::-;53879:34;53875:1;53867:6;53863:14;53856:58;53948:4;53943:2;53935:6;53931:15;53924:29;53739:221;:::o;53966:114::-;;:::o;54086:166::-;54226:18;54222:1;54214:6;54210:14;54203:42;54086:166;:::o;54258:238::-;54398:34;54394:1;54386:6;54382:14;54375:58;54467:21;54462:2;54454:6;54450:15;54443:46;54258:238;:::o;54502:220::-;54642:34;54638:1;54630:6;54626:14;54619:58;54711:3;54706:2;54698:6;54694:15;54687:28;54502:220;:::o;54728:227::-;54868:34;54864:1;54856:6;54852:14;54845:58;54937:10;54932:2;54924:6;54920:15;54913:35;54728:227;:::o;54961:169::-;55101:21;55097:1;55089:6;55085:14;55078:45;54961:169;:::o;55136:233::-;55276:34;55272:1;55264:6;55260:14;55253:58;55345:16;55340:2;55332:6;55328:15;55321:41;55136:233;:::o;55375:181::-;55515:33;55511:1;55503:6;55499:14;55492:57;55375:181;:::o;55562:234::-;55702:34;55698:1;55690:6;55686:14;55679:58;55771:17;55766:2;55758:6;55754:15;55747:42;55562:234;:::o;55802:232::-;55942:34;55938:1;55930:6;55926:14;55919:58;56011:15;56006:2;55998:6;55994:15;55987:40;55802:232;:::o;56040:224::-;56180:34;56176:1;56168:6;56164:14;56157:58;56249:7;56244:2;56236:6;56232:15;56225:32;56040:224;:::o;56270:122::-;56343:24;56361:5;56343:24;:::i;:::-;56336:5;56333:35;56323:63;;56382:1;56379;56372:12;56323:63;56270:122;:::o;56398:116::-;56468:21;56483:5;56468:21;:::i;:::-;56461:5;56458:32;56448:60;;56504:1;56501;56494:12;56448:60;56398:116;:::o;56520:120::-;56592:23;56609:5;56592:23;:::i;:::-;56585:5;56582:34;56572:62;;56630:1;56627;56620:12;56572:62;56520:120;:::o;56646:122::-;56719:24;56737:5;56719:24;:::i;:::-;56712:5;56709:35;56699:63;;56758:1;56755;56748:12;56699:63;56646:122;:::o

Swarm Source

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