ETH Price: $3,004.83 (+4.30%)
Gas: 2 Gwei

Token

Enlightened Apez Saturn Club (EASC)
 

Overview

Max Total Supply

1,701 EASC

Holders

537

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
metamommie.eth
Balance
1 EASC
0x3f910d480f37c761dceb3eb6b194d18180cc587a
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:
EnlightenedApezSaturnClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-13
*/

// File: StonedApez.sol


pragma solidity ^0.8.6;

abstract contract StonedApez {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
    function balanceOf(address account)
        public
        view
        virtual
        returns (uint256);
}
// File: @openzeppelin/contracts/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 make 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



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



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/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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



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



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



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



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 tokenId);

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: easc.sol


pragma solidity ^0.8.6;








contract EnlightenedApezSaturnClub is Ownable, ReentrancyGuard, ERC721Enumerable {
    uint256 private MAX_TOKENS = 6969;
    uint256 private l1Price = 0.12 ether;
    uint256 private l2Price = 0.12 ether;
    string private baseURI;
    StonedApez private immutable sa;

    address public _t1 = 0x828eC8B5C7AA64cfE7aA3E703B6c68C1c617E305;
    address public _t2 = 0xBDc01fB114d93380e960a97aBBaC9133017De5C2;
    address public _t3 = 0xcE899baf2beC0a66222Dc7389614E711E9858580;
    address public _t4 = 0x9CED6C82326c7Dbc222dd17B6573E69cfE3983f2;
    address public _t5 = 0xD95D5BD8B4d75590a06dc0701dfb7848C99062bD;
    address public _t6 = 0x6b3ba9F0475C646FDaF2Bc207C285a485B88A747;

    bool public active;
    bool public openForAll;


    uint256 public l1Index = 0;
    uint256 public l2Index = 6969;

    event MintL1(uint256 indexed stonedApeId, uint256 indexed l1Id);
    event MintL2(uint256 indexed stonedApeId, uint256 indexed l2Id);

    mapping(uint256 => uint256) public mutatedL1s;

    mapping(uint256 => uint256) public mutatedL2s;

    modifier whenSaleActive() {
        require(active, "Sale is not active");
        _;
    }

    modifier whenOpenForAll() {
        require(openForAll, "Not open for all");
        _;
    }

    constructor (
        address saAddress
    ) ERC721("Enlightened Apez Saturn Club", "EASC"){
        sa = StonedApez(saAddress);
    }

    function startSale() external onlyOwner {
        require(!active, "Sale has started");
        active = true;
    }

    function pauseSale() external onlyOwner whenSaleActive {
        active = false;
    }

    function makeOpenForAll() external onlyOwner {
        require(!openForAll, "Open for all");
        openForAll = true;
    }

    function pauseOpenForAll() external onlyOwner whenOpenForAll {
        openForAll = false;
    }


    function withdraw() external onlyOwner payable {
        uint256 _p1 = address(this).balance * 1/10;
        uint256 _p2 = address(this).balance * 8/100;
        uint256 _p3 = address(this).balance * 27/100;
        uint256 _p4 = address(this).balance * 30/100;
        uint256 _p5 = address(this).balance * 15/100;
        uint256 _p6 = address(this).balance * 1/10;
        
        Address.sendValue(payable(_t1), _p1);
        Address.sendValue(payable(_t2), _p2);
        Address.sendValue(payable(_t3), _p3);
        Address.sendValue(payable(_t4), _p4);
        Address.sendValue(payable(_t5), _p5);
        Address.sendValue(payable(_t6), _p6);
    }

    function _apeMutatedForL1(uint256 stonedApezId) internal view virtual returns (bool) {
        return mutatedL1s[stonedApezId] != 0;
    }

    function _apeMutatedForL2(uint256 stonedApezId) internal view virtual returns (bool) {
        return mutatedL2s[stonedApezId] != 0;
    }

    function mintL1() external payable whenOpenForAll nonReentrant {
        require(msg.value >= l1Price, "Not enough ETH");
        require(l1Index < MAX_TOKENS, "L1s over");
        _safeMint(msg.sender, l1Index);
        l1Index = l1Index + 1;
    }

    function mintL2() external payable whenOpenForAll nonReentrant {
        require(msg.value >= l2Price, "Not enough ETH");
        require(l2Index < 6969 + MAX_TOKENS, "L2s over");
        _safeMint(msg.sender, l2Index);
        l2Index += 1;
    }

    function mintL1FromSA(uint256 stonedApezId) external payable whenSaleActive nonReentrant {
        require(sa.ownerOf(stonedApezId) == msg.sender, "Not your ape");
        require(!_apeMutatedForL1(stonedApezId), "Ape mutated already");
        mutatedL1s[stonedApezId] = l1Index + 1;
        _safeMint(msg.sender, l1Index);
        emit MintL1(stonedApezId, l1Index);
        l1Index += 1;
    }

    function mintL2FromSA(uint256 stonedApezId) external payable whenSaleActive nonReentrant {
        require(sa.ownerOf(stonedApezId) == msg.sender, "Not your ape");
        require(!_apeMutatedForL2(stonedApezId), "Ape mutated already");
        mutatedL2s[stonedApezId] = l2Index + 1;
        // Get list of all L2 tokens for the sender and check if mint is possible
        uint256 balance = balanceOf(msg.sender);
        uint256 stonedApezBalance = sa.balanceOf(msg.sender);
        uint256 l2Tokens = 0;
        for (uint256 i = 0; i < balance;  i++) {
            // Check if the token is an L2 token
            if (tokenOfOwnerByIndex(msg.sender,i) > 6968) {
                l2Tokens++;
            }
        }
        
        if (uint256(stonedApezBalance)/uint256(6) <= l2Tokens){
            // You need to pay the price.
            require(msg.value >= l2Price, "Not enough ETH");
        }
        _safeMint(msg.sender, l2Index);
        emit MintL2(stonedApezId, l2Index);
        l2Index += 1;
    }

    function isMinted(uint256 tokenId) external view returns (bool) {
        require(
            tokenId < MAX_TOKENS,
            "tokenId outside collection bounds"
        );
        return _exists(tokenId);
    }

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

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

    function toggleSaleActive() external onlyOwner {
        active = !active;
    }

    function setL1Price(uint256 price) external onlyOwner {
        l1Price = price;
    }

    function setL2Price(uint256 price) external onlyOwner {
        l2Price = price;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"saAddress","type":"address"}],"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":"uint256","name":"stonedApeId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"l1Id","type":"uint256"}],"name":"MintL1","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"stonedApeId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"l2Id","type":"uint256"}],"name":"MintL2","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"makeOpenForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintL1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stonedApezId","type":"uint256"}],"name":"mintL1FromSA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintL2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stonedApezId","type":"uint256"}],"name":"mintL2FromSA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mutatedL1s","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mutatedL2s","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseOpenForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setL1Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setL2Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleActive","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":"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":"payable","type":"function"}]

60a0604052611b39600c556701aa535d3d0c0000600d556701aa535d3d0c0000600e5573828ec8b5c7aa64cfe7aa3e703b6c68c1c617e305601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bdc01fb114d93380e960a97abbac9133017de5c2601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ce899baf2bec0a66222dc7389614e711e9858580601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739ced6c82326c7dbc222dd17b6573e69cfe3983f2601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d95d5bd8b4d75590a06dc0701dfb7848c99062bd601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736b3ba9f0475c646fdaf2bc207c285a485b88a747601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601655611b396017553480156200023857600080fd5b5060405162005b5c38038062005b5c83398181016040528101906200025e919062000546565b6040518060400160405280601c81526020017f456e6c69676874656e6564204170657a2053617475726e20436c7562000000008152506040518060400160405280600481526020017f4541534300000000000000000000000000000000000000000000000000000000815250620002ea620002de6200036060201b60201c565b6200036860201b60201c565b600180819055508160029080519060200190620003099291906200042c565b508060039080519060200190620003229291906200042c565b5050508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505050620005dd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200043a90620005a7565b90600052602060002090601f0160209004810192826200045e5760008555620004aa565b82601f106200047957805160ff1916838001178555620004aa565b82800160010185558215620004aa579182015b82811115620004a95782518255916020019190600101906200048c565b5b509050620004b99190620004bd565b5090565b5b80821115620004d8576000816000905550600101620004be565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200050e82620004e1565b9050919050565b620005208162000501565b81146200052c57600080fd5b50565b600081519050620005408162000515565b92915050565b6000602082840312156200055f576200055e620004dc565b5b60006200056f848285016200052f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c057607f821691505b60208210811415620005d757620005d662000578565b5b50919050565b6080516155556200060760003960008181611ca60152818161247401526125f101526155556000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063afc91613116100c1578063dc0d621c1161007a578063dc0d621c146108d2578063de969319146108e9578063e985e9c514610914578063f281811414610951578063f2fde38b1461097c578063f4258632146109a557610272565b8063afc91613146107d6578063b66a0e5d14610801578063b88d4fde14610818578063c87b56dd14610841578063c9dc5bc61461087e578063d558006f146108a957610272565b80638b8fcdd4116101135780638b8fcdd4146106e55780638da5cb5b1461071057806395d89b411461073b578063a22cb46514610766578063a2fe9c9b1461078f578063ad2181b9146107ba57610272565b80636352211e1461061f57806370a082311461065c578063715018a6146106995780637343ab99146106b05780637e0620f9146106ba57610272565b806333c41a90116101e85780634f6ccce7116101ac5780634f6ccce71461054457806355367ba91461058157806355f804b314610598578063581dadb4146105c157806362b2b9c3146105ea578063632e9381146105f457610272565b806333c41a901461046c57806337692475146104a95780633ccfd60b146104e65780634007ab46146104f057806342842e0e1461051b57610272565b80630c40a2561161023a5780630c40a2561461037057806318160ddd146103ad57806323b872dd146103d85780632f745c59146104015780632f9bec8f1461043e5780633100a5351461045557610272565b806301ffc9a71461027757806302fb0c5e146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ab1565b6109c1565b6040516102ab9190613af9565b60405180910390f35b3480156102c057600080fd5b506102c9610a3b565b6040516102d69190613af9565b60405180910390f35b3480156102eb57600080fd5b506102f4610a4e565b6040516103019190613bad565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613c05565b610ae0565b60405161033e9190613c73565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613cba565b610b65565b005b34801561037c57600080fd5b5061039760048036038101906103929190613c05565b610c7d565b6040516103a49190613d09565b60405180910390f35b3480156103b957600080fd5b506103c2610c95565b6040516103cf9190613d09565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613d24565b610ca2565b005b34801561040d57600080fd5b5061042860048036038101906104239190613cba565b610d02565b6040516104359190613d09565b60405180910390f35b34801561044a57600080fd5b50610453610da7565b005b34801561046157600080fd5b5061046a610e8d565b005b34801561047857600080fd5b50610493600480360381019061048e9190613c05565b610f35565b6040516104a09190613af9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613c05565b610f8b565b6040516104dd9190613d09565b60405180910390f35b6104ee610fa3565b005b3480156104fc57600080fd5b506105056111dd565b6040516105129190613c73565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613d24565b611203565b005b34801561055057600080fd5b5061056b60048036038101906105669190613c05565b611223565b6040516105789190613d09565b60405180910390f35b34801561058d57600080fd5b50610596611294565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613eac565b61137c565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190613c05565b611412565b005b6105f2611498565b005b34801561060057600080fd5b506106096115e8565b6040516106169190613d09565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613c05565b6115ee565b6040516106539190613c73565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613ef5565b6116a0565b6040516106909190613d09565b60405180910390f35b3480156106a557600080fd5b506106ae611758565b005b6106b86117e0565b005b3480156106c657600080fd5b506106cf611942565b6040516106dc9190613c73565b60405180910390f35b3480156106f157600080fd5b506106fa611968565b6040516107079190613c73565b60405180910390f35b34801561071c57600080fd5b5061072561198e565b6040516107329190613c73565b60405180910390f35b34801561074757600080fd5b506107506119b7565b60405161075d9190613bad565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613f4e565b611a49565b005b34801561079b57600080fd5b506107a4611bca565b6040516107b19190613c73565b60405180910390f35b6107d460048036038101906107cf9190613c05565b611bf0565b005b3480156107e257600080fd5b506107eb611e72565b6040516107f89190613c73565b60405180910390f35b34801561080d57600080fd5b50610816611e98565b005b34801561082457600080fd5b5061083f600480360381019061083a919061402f565b611f81565b005b34801561084d57600080fd5b5061086860048036038101906108639190613c05565b611fe3565b6040516108759190613bad565b60405180910390f35b34801561088a57600080fd5b5061089361208a565b6040516108a09190613af9565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613c05565b61209b565b005b3480156108de57600080fd5b506108e7612121565b005b3480156108f557600080fd5b506108fe612206565b60405161090b9190613c73565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906140b2565b61222c565b6040516109489190613af9565b60405180910390f35b34801561095d57600080fd5b506109666122c0565b6040516109739190613d09565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613ef5565b6122c6565b005b6109bf60048036038101906109ba9190613c05565b6123be565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a345750610a3382612798565b5b9050919050565b601560149054906101000a900460ff1681565b606060028054610a5d90614121565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8990614121565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b6000610aeb8261287a565b610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906141c5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b70826115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890614257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c006128e6565b73ffffffffffffffffffffffffffffffffffffffff161480610c2f5750610c2e81610c296128e6565b61222c565b5b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906142e9565b60405180910390fd5b610c7883836128ee565b505050565b60196020528060005260406000206000915090505481565b6000600a80549050905090565b610cb3610cad6128e6565b826129a7565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061437b565b60405180910390fd5b610cfd838383612a85565b505050565b6000610d0d836116a0565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061440d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610daf6128e6565b73ffffffffffffffffffffffffffffffffffffffff16610dcd61198e565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90614479565b60405180910390fd5b60158054906101000a900460ff1615610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e68906144e5565b60405180910390fd5b60016015806101000a81548160ff021916908315150217905550565b610e956128e6565b73ffffffffffffffffffffffffffffffffffffffff16610eb361198e565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090614479565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff021916908315150217905550565b6000600c548210610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290614577565b60405180910390fd5b610f848261287a565b9050919050565b60186020528060005260406000206000915090505481565b610fab6128e6565b73ffffffffffffffffffffffffffffffffffffffff16610fc961198e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614479565b60405180910390fd5b6000600a60014761103091906145c6565b61103a919061464f565b90506000606460084761104d91906145c6565b611057919061464f565b905060006064601b4761106a91906145c6565b611074919061464f565b905060006064601e4761108791906145c6565b611091919061464f565b905060006064600f476110a491906145c6565b6110ae919061464f565b90506000600a6001476110c191906145c6565b6110cb919061464f565b90506110f9601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687612ce1565b611125601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686612ce1565b611151601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ce1565b61117d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ce1565b6111a9601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612ce1565b6111d5601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612ce1565b505050505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61121e83838360405180602001604052806000815250611f81565b505050565b600061122d610c95565b821061126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906146f2565b60405180910390fd5b600a828154811061128257611281614712565b5b90600052602060002001549050919050565b61129c6128e6565b73ffffffffffffffffffffffffffffffffffffffff166112ba61198e565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614479565b60405180910390fd5b601560149054906101000a900460ff1661135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061478d565b60405180910390fd5b6000601560146101000a81548160ff021916908315150217905550565b6113846128e6565b73ffffffffffffffffffffffffffffffffffffffff166113a261198e565b73ffffffffffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614479565b60405180910390fd5b80600f908051906020019061140e9291906139a2565b5050565b61141a6128e6565b73ffffffffffffffffffffffffffffffffffffffff1661143861198e565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614479565b60405180910390fd5b80600d8190555050565b60158054906101000a900460ff166114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906147f9565b60405180910390fd5b6002600154141561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290614865565b60405180910390fd5b6002600181905550600d54341015611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f906148d1565b60405180910390fd5b600c54601654106115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061493d565b60405180910390fd5b6115ca33601654612dd5565b60016016546115d9919061495d565b60168190555060018081905550565b60165481565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90614a25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614ab7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117606128e6565b73ffffffffffffffffffffffffffffffffffffffff1661177e61198e565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90614479565b60405180910390fd5b6117de6000612df3565b565b60158054906101000a900460ff1661182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906147f9565b60405180910390fd5b60026001541415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90614865565b60405180910390fd5b6002600181905550600e543410156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906148d1565b60405180910390fd5b600c54611b396118d0919061495d565b60175410611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614b23565b60405180910390fd5b61191f33601754612dd5565b600160176000828254611932919061495d565b9250508190555060018081905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119c690614121565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290614121565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a516128e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614b8f565b60405180910390fd5b8060076000611acc6128e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b796128e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bbe9190613af9565b60405180910390a35050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601560149054906101000a900460ff16611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c369061478d565b60405180910390fd5b60026001541415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614865565b60405180910390fd5b60026001819055503373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611cfd9190613d09565b60206040518083038186803b158015611d1557600080fd5b505afa158015611d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4d9190614bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90614c3d565b60405180910390fd5b611dac81612eb7565b15611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614ca9565b60405180910390fd5b6001601654611dfb919061495d565b6018600083815260200190815260200160002081905550611e1e33601654612dd5565b601654817f478c4a5a943330205080172743cf9dd8e11bf1262ff4ab987e27f0d04086bfc760405160405180910390a3600160166000828254611e61919061495d565b925050819055506001808190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ea06128e6565b73ffffffffffffffffffffffffffffffffffffffff16611ebe61198e565b73ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614479565b60405180910390fd5b601560149054906101000a900460ff1615611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90614d15565b60405180910390fd5b6001601560146101000a81548160ff021916908315150217905550565b611f92611f8c6128e6565b836129a7565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc89061437b565b60405180910390fd5b611fdd84848484612ed7565b50505050565b6060611fee8261287a565b61202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614da7565b60405180910390fd5b6000612037612f33565b905060008151116120575760405180602001604052806000815250612082565b8061206184612fc5565b604051602001612072929190614e03565b6040516020818303038152906040525b915050919050565b60158054906101000a900460ff1681565b6120a36128e6565b73ffffffffffffffffffffffffffffffffffffffff166120c161198e565b73ffffffffffffffffffffffffffffffffffffffff1614612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90614479565b60405180910390fd5b80600e8190555050565b6121296128e6565b73ffffffffffffffffffffffffffffffffffffffff1661214761198e565b73ffffffffffffffffffffffffffffffffffffffff161461219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614479565b60405180910390fd5b60158054906101000a900460ff166121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e1906147f9565b60405180910390fd5b60006015806101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60175481565b6122ce6128e6565b73ffffffffffffffffffffffffffffffffffffffff166122ec61198e565b73ffffffffffffffffffffffffffffffffffffffff1614612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614479565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614e99565b60405180910390fd5b6123bb81612df3565b50565b601560149054906101000a900460ff1661240d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124049061478d565b60405180910390fd5b60026001541415612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90614865565b60405180910390fd5b60026001819055503373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016124cb9190613d09565b60206040518083038186803b1580156124e357600080fd5b505afa1580156124f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251b9190614bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890614c3d565b60405180910390fd5b61257a81613126565b156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614ca9565b60405180910390fd5b60016017546125c9919061495d565b601960008381526020019081526020016000208190555060006125eb336116a0565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016126489190613c73565b60206040518083038186803b15801561266057600080fd5b505afa158015612674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126989190614ece565b90506000805b838110156126db57611b386126b33383610d02565b11156126c85781806126c490614efb565b9250505b80806126d390614efb565b91505061269e565b50806006836126ea919061464f565b1161273557600e54341015612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906148d1565b60405180910390fd5b5b61274133601754612dd5565b601754847f2e19979313690d2e56250fbec4d36322c0f7985509ec14737d98c96a9bdcf82860405160405180910390a3600160176000828254612784919061495d565b925050819055505050506001808190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612873575061287282613146565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612961836115ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129b28261287a565b6129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890614fb6565b60405180910390fd5b60006129fc836115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a6b57508373ffffffffffffffffffffffffffffffffffffffff16612a5384610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a7c5750612a7b818561222c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aa5826115ee565b73ffffffffffffffffffffffffffffffffffffffff1614612afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af290615048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b62906150da565b60405180910390fd5b612b768383836131b0565b612b816000826128ee565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bd191906150fa565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c28919061495d565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b9061517a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d4a906151cb565b60006040518083038185875af1925050503d8060008114612d87576040519150601f19603f3d011682016040523d82523d6000602084013e612d8c565b606091505b5050905080612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc790615252565b60405180910390fd5b505050565b612def8282604051806020016040528060008152506132c4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080601860008481526020019081526020016000205414159050919050565b612ee2848484612a85565b612eee8484848461331f565b612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906152e4565b60405180910390fd5b50505050565b6060600f8054612f4290614121565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6e90614121565b8015612fbb5780601f10612f9057610100808354040283529160200191612fbb565b820191906000526020600020905b815481529060010190602001808311612f9e57829003601f168201915b5050505050905090565b6060600082141561300d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613121565b600082905060005b6000821461303f57808061302890614efb565b915050600a82613038919061464f565b9150613015565b60008167ffffffffffffffff81111561305b5761305a613d81565b5b6040519080825280601f01601f19166020018201604052801561308d5781602001600182028036833780820191505090505b5090505b6000851461311a576001826130a691906150fa565b9150600a856130b59190615304565b60306130c1919061495d565b60f81b8183815181106130d7576130d6614712565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613113919061464f565b9450613091565b8093505050505b919050565b600080601960008481526020019081526020016000205414159050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131bb8383836134b6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fe576131f9816134bb565b61323d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323c5761323b8382613504565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132805761327b81613671565b6132bf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132be576132bd8282613742565b5b5b505050565b6132ce83836137c1565b6132db600084848461331f565b61331a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613311906152e4565b60405180910390fd5b505050565b60006133408473ffffffffffffffffffffffffffffffffffffffff1661398f565b156134a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133696128e6565b8786866040518563ffffffff1660e01b815260040161338b949392919061538a565b602060405180830381600087803b1580156133a557600080fd5b505af19250505080156133d657506040513d601f19601f820116820180604052508101906133d391906153eb565b60015b613459573d8060008114613406576040519150601f19603f3d011682016040523d82523d6000602084013e61340b565b606091505b50600081511415613451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613448906152e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134ae565b600190505b949350505050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613511846116a0565b61351b91906150fa565b9050600060096000848152602001908152602001600020549050818114613600576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061368591906150fa565b90506000600b60008481526020019081526020016000205490506000600a83815481106136b5576136b4614712565b5b9060005260206000200154905080600a83815481106136d7576136d6614712565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061372657613725615418565b5b6001900381819060005260206000200160009055905550505050565b600061374d836116a0565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890615493565b60405180910390fd5b61383a8161287a565b1561387a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613871906154ff565b60405180910390fd5b613886600083836131b0565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138d6919061495d565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546139ae90614121565b90600052602060002090601f0160209004810192826139d05760008555613a17565b82601f106139e957805160ff1916838001178555613a17565b82800160010185558215613a17579182015b82811115613a165782518255916020019190600101906139fb565b5b509050613a249190613a28565b5090565b5b80821115613a41576000816000905550600101613a29565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a8e81613a59565b8114613a9957600080fd5b50565b600081359050613aab81613a85565b92915050565b600060208284031215613ac757613ac6613a4f565b5b6000613ad584828501613a9c565b91505092915050565b60008115159050919050565b613af381613ade565b82525050565b6000602082019050613b0e6000830184613aea565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b4e578082015181840152602081019050613b33565b83811115613b5d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b7f82613b14565b613b898185613b1f565b9350613b99818560208601613b30565b613ba281613b63565b840191505092915050565b60006020820190508181036000830152613bc78184613b74565b905092915050565b6000819050919050565b613be281613bcf565b8114613bed57600080fd5b50565b600081359050613bff81613bd9565b92915050565b600060208284031215613c1b57613c1a613a4f565b5b6000613c2984828501613bf0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5d82613c32565b9050919050565b613c6d81613c52565b82525050565b6000602082019050613c886000830184613c64565b92915050565b613c9781613c52565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613a4f565b5b6000613cdf85828601613ca5565b9250506020613cf085828601613bf0565b9150509250929050565b613d0381613bcf565b82525050565b6000602082019050613d1e6000830184613cfa565b92915050565b600080600060608486031215613d3d57613d3c613a4f565b5b6000613d4b86828701613ca5565b9350506020613d5c86828701613ca5565b9250506040613d6d86828701613bf0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613db982613b63565b810181811067ffffffffffffffff82111715613dd857613dd7613d81565b5b80604052505050565b6000613deb613a45565b9050613df78282613db0565b919050565b600067ffffffffffffffff821115613e1757613e16613d81565b5b613e2082613b63565b9050602081019050919050565b82818337600083830152505050565b6000613e4f613e4a84613dfc565b613de1565b905082815260208101848484011115613e6b57613e6a613d7c565b5b613e76848285613e2d565b509392505050565b600082601f830112613e9357613e92613d77565b5b8135613ea3848260208601613e3c565b91505092915050565b600060208284031215613ec257613ec1613a4f565b5b600082013567ffffffffffffffff811115613ee057613edf613a54565b5b613eec84828501613e7e565b91505092915050565b600060208284031215613f0b57613f0a613a4f565b5b6000613f1984828501613ca5565b91505092915050565b613f2b81613ade565b8114613f3657600080fd5b50565b600081359050613f4881613f22565b92915050565b60008060408385031215613f6557613f64613a4f565b5b6000613f7385828601613ca5565b9250506020613f8485828601613f39565b9150509250929050565b600067ffffffffffffffff821115613fa957613fa8613d81565b5b613fb282613b63565b9050602081019050919050565b6000613fd2613fcd84613f8e565b613de1565b905082815260208101848484011115613fee57613fed613d7c565b5b613ff9848285613e2d565b509392505050565b600082601f83011261401657614015613d77565b5b8135614026848260208601613fbf565b91505092915050565b6000806000806080858703121561404957614048613a4f565b5b600061405787828801613ca5565b945050602061406887828801613ca5565b935050604061407987828801613bf0565b925050606085013567ffffffffffffffff81111561409a57614099613a54565b5b6140a687828801614001565b91505092959194509250565b600080604083850312156140c9576140c8613a4f565b5b60006140d785828601613ca5565b92505060206140e885828601613ca5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413957607f821691505b6020821081141561414d5761414c6140f2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141af602c83613b1f565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614241602183613b1f565b915061424c826141e5565b604082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142d3603883613b1f565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614365603183613b1f565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006143f7602b83613b1f565b91506144028261439b565b604082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614463602083613b1f565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b7f4f70656e20666f7220616c6c0000000000000000000000000000000000000000600082015250565b60006144cf600c83613b1f565b91506144da82614499565b602082019050919050565b600060208201905081810360008301526144fe816144c2565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614561602183613b1f565b915061456c82614505565b604082019050919050565b6000602082019050818103600083015261459081614554565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145d182613bcf565b91506145dc83613bcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561461557614614614597565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061465a82613bcf565b915061466583613bcf565b92508261467557614674614620565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146dc602c83613b1f565b91506146e782614680565b604082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614777601283613b1f565b915061478282614741565b602082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b7f4e6f74206f70656e20666f7220616c6c00000000000000000000000000000000600082015250565b60006147e3601083613b1f565b91506147ee826147ad565b602082019050919050565b60006020820190508181036000830152614812816147d6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061484f601f83613b1f565b915061485a82614819565b602082019050919050565b6000602082019050818103600083015261487e81614842565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006148bb600e83613b1f565b91506148c682614885565b602082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f4c3173206f766572000000000000000000000000000000000000000000000000600082015250565b6000614927600883613b1f565b9150614932826148f1565b602082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b600061496882613bcf565b915061497383613bcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a8576149a7614597565b5b828201905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a0f602983613b1f565b9150614a1a826149b3565b604082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614aa1602a83613b1f565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f4c3273206f766572000000000000000000000000000000000000000000000000600082015250565b6000614b0d600883613b1f565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b79601983613b1f565b9150614b8482614b43565b602082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b600081519050614bbe81613c8e565b92915050565b600060208284031215614bda57614bd9613a4f565b5b6000614be884828501614baf565b91505092915050565b7f4e6f7420796f7572206170650000000000000000000000000000000000000000600082015250565b6000614c27600c83613b1f565b9150614c3282614bf1565b602082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f417065206d75746174656420616c726561647900000000000000000000000000600082015250565b6000614c93601383613b1f565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f53616c6520686173207374617274656400000000000000000000000000000000600082015250565b6000614cff601083613b1f565b9150614d0a82614cc9565b602082019050919050565b60006020820190508181036000830152614d2e81614cf2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d91602f83613b1f565b9150614d9c82614d35565b604082019050919050565b60006020820190508181036000830152614dc081614d84565b9050919050565b600081905092915050565b6000614ddd82613b14565b614de78185614dc7565b9350614df7818560208601613b30565b80840191505092915050565b6000614e0f8285614dd2565b9150614e1b8284614dd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e83602683613b1f565b9150614e8e82614e27565b604082019050919050565b60006020820190508181036000830152614eb281614e76565b9050919050565b600081519050614ec881613bd9565b92915050565b600060208284031215614ee457614ee3613a4f565b5b6000614ef284828501614eb9565b91505092915050565b6000614f0682613bcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3957614f38614597565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614fa0602c83613b1f565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615032602983613b1f565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150c4602483613b1f565b91506150cf82615068565b604082019050919050565b600060208201905081810360008301526150f3816150b7565b9050919050565b600061510582613bcf565b915061511083613bcf565b92508282101561512357615122614597565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615164601d83613b1f565b915061516f8261512e565b602082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b600081905092915050565b50565b60006151b560008361519a565b91506151c0826151a5565b600082019050919050565b60006151d6826151a8565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061523c603a83613b1f565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152ce603283613b1f565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b600061530f82613bcf565b915061531a83613bcf565b92508261532a57615329614620565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061535c82615335565b6153668185615340565b9350615376818560208601613b30565b61537f81613b63565b840191505092915050565b600060808201905061539f6000830187613c64565b6153ac6020830186613c64565b6153b96040830185613cfa565b81810360608301526153cb8184615351565b905095945050505050565b6000815190506153e581613a85565b92915050565b60006020828403121561540157615400613a4f565b5b600061540f848285016153d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061547d602083613b1f565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006154e9601c83613b1f565b91506154f4826154b3565b602082019050919050565b60006020820190508181036000830152615518816154dc565b905091905056fea26469706673582212205d82963ab318236b000032da9f2e82978c4a8fbf0835793099c32e0ffc2621d864736f6c634300080900330000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d55

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063afc91613116100c1578063dc0d621c1161007a578063dc0d621c146108d2578063de969319146108e9578063e985e9c514610914578063f281811414610951578063f2fde38b1461097c578063f4258632146109a557610272565b8063afc91613146107d6578063b66a0e5d14610801578063b88d4fde14610818578063c87b56dd14610841578063c9dc5bc61461087e578063d558006f146108a957610272565b80638b8fcdd4116101135780638b8fcdd4146106e55780638da5cb5b1461071057806395d89b411461073b578063a22cb46514610766578063a2fe9c9b1461078f578063ad2181b9146107ba57610272565b80636352211e1461061f57806370a082311461065c578063715018a6146106995780637343ab99146106b05780637e0620f9146106ba57610272565b806333c41a90116101e85780634f6ccce7116101ac5780634f6ccce71461054457806355367ba91461058157806355f804b314610598578063581dadb4146105c157806362b2b9c3146105ea578063632e9381146105f457610272565b806333c41a901461046c57806337692475146104a95780633ccfd60b146104e65780634007ab46146104f057806342842e0e1461051b57610272565b80630c40a2561161023a5780630c40a2561461037057806318160ddd146103ad57806323b872dd146103d85780632f745c59146104015780632f9bec8f1461043e5780633100a5351461045557610272565b806301ffc9a71461027757806302fb0c5e146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ab1565b6109c1565b6040516102ab9190613af9565b60405180910390f35b3480156102c057600080fd5b506102c9610a3b565b6040516102d69190613af9565b60405180910390f35b3480156102eb57600080fd5b506102f4610a4e565b6040516103019190613bad565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613c05565b610ae0565b60405161033e9190613c73565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613cba565b610b65565b005b34801561037c57600080fd5b5061039760048036038101906103929190613c05565b610c7d565b6040516103a49190613d09565b60405180910390f35b3480156103b957600080fd5b506103c2610c95565b6040516103cf9190613d09565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613d24565b610ca2565b005b34801561040d57600080fd5b5061042860048036038101906104239190613cba565b610d02565b6040516104359190613d09565b60405180910390f35b34801561044a57600080fd5b50610453610da7565b005b34801561046157600080fd5b5061046a610e8d565b005b34801561047857600080fd5b50610493600480360381019061048e9190613c05565b610f35565b6040516104a09190613af9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613c05565b610f8b565b6040516104dd9190613d09565b60405180910390f35b6104ee610fa3565b005b3480156104fc57600080fd5b506105056111dd565b6040516105129190613c73565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613d24565b611203565b005b34801561055057600080fd5b5061056b60048036038101906105669190613c05565b611223565b6040516105789190613d09565b60405180910390f35b34801561058d57600080fd5b50610596611294565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613eac565b61137c565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190613c05565b611412565b005b6105f2611498565b005b34801561060057600080fd5b506106096115e8565b6040516106169190613d09565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613c05565b6115ee565b6040516106539190613c73565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613ef5565b6116a0565b6040516106909190613d09565b60405180910390f35b3480156106a557600080fd5b506106ae611758565b005b6106b86117e0565b005b3480156106c657600080fd5b506106cf611942565b6040516106dc9190613c73565b60405180910390f35b3480156106f157600080fd5b506106fa611968565b6040516107079190613c73565b60405180910390f35b34801561071c57600080fd5b5061072561198e565b6040516107329190613c73565b60405180910390f35b34801561074757600080fd5b506107506119b7565b60405161075d9190613bad565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613f4e565b611a49565b005b34801561079b57600080fd5b506107a4611bca565b6040516107b19190613c73565b60405180910390f35b6107d460048036038101906107cf9190613c05565b611bf0565b005b3480156107e257600080fd5b506107eb611e72565b6040516107f89190613c73565b60405180910390f35b34801561080d57600080fd5b50610816611e98565b005b34801561082457600080fd5b5061083f600480360381019061083a919061402f565b611f81565b005b34801561084d57600080fd5b5061086860048036038101906108639190613c05565b611fe3565b6040516108759190613bad565b60405180910390f35b34801561088a57600080fd5b5061089361208a565b6040516108a09190613af9565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613c05565b61209b565b005b3480156108de57600080fd5b506108e7612121565b005b3480156108f557600080fd5b506108fe612206565b60405161090b9190613c73565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906140b2565b61222c565b6040516109489190613af9565b60405180910390f35b34801561095d57600080fd5b506109666122c0565b6040516109739190613d09565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613ef5565b6122c6565b005b6109bf60048036038101906109ba9190613c05565b6123be565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a345750610a3382612798565b5b9050919050565b601560149054906101000a900460ff1681565b606060028054610a5d90614121565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8990614121565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b6000610aeb8261287a565b610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906141c5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b70826115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890614257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c006128e6565b73ffffffffffffffffffffffffffffffffffffffff161480610c2f5750610c2e81610c296128e6565b61222c565b5b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906142e9565b60405180910390fd5b610c7883836128ee565b505050565b60196020528060005260406000206000915090505481565b6000600a80549050905090565b610cb3610cad6128e6565b826129a7565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061437b565b60405180910390fd5b610cfd838383612a85565b505050565b6000610d0d836116a0565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061440d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610daf6128e6565b73ffffffffffffffffffffffffffffffffffffffff16610dcd61198e565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90614479565b60405180910390fd5b60158054906101000a900460ff1615610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e68906144e5565b60405180910390fd5b60016015806101000a81548160ff021916908315150217905550565b610e956128e6565b73ffffffffffffffffffffffffffffffffffffffff16610eb361198e565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090614479565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff021916908315150217905550565b6000600c548210610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290614577565b60405180910390fd5b610f848261287a565b9050919050565b60186020528060005260406000206000915090505481565b610fab6128e6565b73ffffffffffffffffffffffffffffffffffffffff16610fc961198e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614479565b60405180910390fd5b6000600a60014761103091906145c6565b61103a919061464f565b90506000606460084761104d91906145c6565b611057919061464f565b905060006064601b4761106a91906145c6565b611074919061464f565b905060006064601e4761108791906145c6565b611091919061464f565b905060006064600f476110a491906145c6565b6110ae919061464f565b90506000600a6001476110c191906145c6565b6110cb919061464f565b90506110f9601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687612ce1565b611125601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686612ce1565b611151601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ce1565b61117d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612ce1565b6111a9601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612ce1565b6111d5601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612ce1565b505050505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61121e83838360405180602001604052806000815250611f81565b505050565b600061122d610c95565b821061126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906146f2565b60405180910390fd5b600a828154811061128257611281614712565b5b90600052602060002001549050919050565b61129c6128e6565b73ffffffffffffffffffffffffffffffffffffffff166112ba61198e565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614479565b60405180910390fd5b601560149054906101000a900460ff1661135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061478d565b60405180910390fd5b6000601560146101000a81548160ff021916908315150217905550565b6113846128e6565b73ffffffffffffffffffffffffffffffffffffffff166113a261198e565b73ffffffffffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614479565b60405180910390fd5b80600f908051906020019061140e9291906139a2565b5050565b61141a6128e6565b73ffffffffffffffffffffffffffffffffffffffff1661143861198e565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614479565b60405180910390fd5b80600d8190555050565b60158054906101000a900460ff166114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906147f9565b60405180910390fd5b6002600154141561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290614865565b60405180910390fd5b6002600181905550600d54341015611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f906148d1565b60405180910390fd5b600c54601654106115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061493d565b60405180910390fd5b6115ca33601654612dd5565b60016016546115d9919061495d565b60168190555060018081905550565b60165481565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90614a25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614ab7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117606128e6565b73ffffffffffffffffffffffffffffffffffffffff1661177e61198e565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90614479565b60405180910390fd5b6117de6000612df3565b565b60158054906101000a900460ff1661182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906147f9565b60405180910390fd5b60026001541415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90614865565b60405180910390fd5b6002600181905550600e543410156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906148d1565b60405180910390fd5b600c54611b396118d0919061495d565b60175410611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614b23565b60405180910390fd5b61191f33601754612dd5565b600160176000828254611932919061495d565b9250508190555060018081905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119c690614121565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290614121565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a516128e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614b8f565b60405180910390fd5b8060076000611acc6128e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b796128e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bbe9190613af9565b60405180910390a35050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601560149054906101000a900460ff16611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c369061478d565b60405180910390fd5b60026001541415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614865565b60405180910390fd5b60026001819055503373ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d5573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611cfd9190613d09565b60206040518083038186803b158015611d1557600080fd5b505afa158015611d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4d9190614bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90614c3d565b60405180910390fd5b611dac81612eb7565b15611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614ca9565b60405180910390fd5b6001601654611dfb919061495d565b6018600083815260200190815260200160002081905550611e1e33601654612dd5565b601654817f478c4a5a943330205080172743cf9dd8e11bf1262ff4ab987e27f0d04086bfc760405160405180910390a3600160166000828254611e61919061495d565b925050819055506001808190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ea06128e6565b73ffffffffffffffffffffffffffffffffffffffff16611ebe61198e565b73ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614479565b60405180910390fd5b601560149054906101000a900460ff1615611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90614d15565b60405180910390fd5b6001601560146101000a81548160ff021916908315150217905550565b611f92611f8c6128e6565b836129a7565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc89061437b565b60405180910390fd5b611fdd84848484612ed7565b50505050565b6060611fee8261287a565b61202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614da7565b60405180910390fd5b6000612037612f33565b905060008151116120575760405180602001604052806000815250612082565b8061206184612fc5565b604051602001612072929190614e03565b6040516020818303038152906040525b915050919050565b60158054906101000a900460ff1681565b6120a36128e6565b73ffffffffffffffffffffffffffffffffffffffff166120c161198e565b73ffffffffffffffffffffffffffffffffffffffff1614612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90614479565b60405180910390fd5b80600e8190555050565b6121296128e6565b73ffffffffffffffffffffffffffffffffffffffff1661214761198e565b73ffffffffffffffffffffffffffffffffffffffff161461219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614479565b60405180910390fd5b60158054906101000a900460ff166121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e1906147f9565b60405180910390fd5b60006015806101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60175481565b6122ce6128e6565b73ffffffffffffffffffffffffffffffffffffffff166122ec61198e565b73ffffffffffffffffffffffffffffffffffffffff1614612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614479565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614e99565b60405180910390fd5b6123bb81612df3565b50565b601560149054906101000a900460ff1661240d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124049061478d565b60405180910390fd5b60026001541415612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90614865565b60405180910390fd5b60026001819055503373ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d5573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016124cb9190613d09565b60206040518083038186803b1580156124e357600080fd5b505afa1580156124f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251b9190614bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890614c3d565b60405180910390fd5b61257a81613126565b156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614ca9565b60405180910390fd5b60016017546125c9919061495d565b601960008381526020019081526020016000208190555060006125eb336116a0565b905060007f0000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d5573ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016126489190613c73565b60206040518083038186803b15801561266057600080fd5b505afa158015612674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126989190614ece565b90506000805b838110156126db57611b386126b33383610d02565b11156126c85781806126c490614efb565b9250505b80806126d390614efb565b91505061269e565b50806006836126ea919061464f565b1161273557600e54341015612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906148d1565b60405180910390fd5b5b61274133601754612dd5565b601754847f2e19979313690d2e56250fbec4d36322c0f7985509ec14737d98c96a9bdcf82860405160405180910390a3600160176000828254612784919061495d565b925050819055505050506001808190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612873575061287282613146565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612961836115ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129b28261287a565b6129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890614fb6565b60405180910390fd5b60006129fc836115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a6b57508373ffffffffffffffffffffffffffffffffffffffff16612a5384610ae0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a7c5750612a7b818561222c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aa5826115ee565b73ffffffffffffffffffffffffffffffffffffffff1614612afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af290615048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b62906150da565b60405180910390fd5b612b768383836131b0565b612b816000826128ee565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bd191906150fa565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c28919061495d565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b9061517a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d4a906151cb565b60006040518083038185875af1925050503d8060008114612d87576040519150601f19603f3d011682016040523d82523d6000602084013e612d8c565b606091505b5050905080612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc790615252565b60405180910390fd5b505050565b612def8282604051806020016040528060008152506132c4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080601860008481526020019081526020016000205414159050919050565b612ee2848484612a85565b612eee8484848461331f565b612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906152e4565b60405180910390fd5b50505050565b6060600f8054612f4290614121565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6e90614121565b8015612fbb5780601f10612f9057610100808354040283529160200191612fbb565b820191906000526020600020905b815481529060010190602001808311612f9e57829003601f168201915b5050505050905090565b6060600082141561300d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613121565b600082905060005b6000821461303f57808061302890614efb565b915050600a82613038919061464f565b9150613015565b60008167ffffffffffffffff81111561305b5761305a613d81565b5b6040519080825280601f01601f19166020018201604052801561308d5781602001600182028036833780820191505090505b5090505b6000851461311a576001826130a691906150fa565b9150600a856130b59190615304565b60306130c1919061495d565b60f81b8183815181106130d7576130d6614712565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613113919061464f565b9450613091565b8093505050505b919050565b600080601960008481526020019081526020016000205414159050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131bb8383836134b6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fe576131f9816134bb565b61323d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323c5761323b8382613504565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132805761327b81613671565b6132bf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132be576132bd8282613742565b5b5b505050565b6132ce83836137c1565b6132db600084848461331f565b61331a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613311906152e4565b60405180910390fd5b505050565b60006133408473ffffffffffffffffffffffffffffffffffffffff1661398f565b156134a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133696128e6565b8786866040518563ffffffff1660e01b815260040161338b949392919061538a565b602060405180830381600087803b1580156133a557600080fd5b505af19250505080156133d657506040513d601f19601f820116820180604052508101906133d391906153eb565b60015b613459573d8060008114613406576040519150601f19603f3d011682016040523d82523d6000602084013e61340b565b606091505b50600081511415613451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613448906152e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134ae565b600190505b949350505050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613511846116a0565b61351b91906150fa565b9050600060096000848152602001908152602001600020549050818114613600576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061368591906150fa565b90506000600b60008481526020019081526020016000205490506000600a83815481106136b5576136b4614712565b5b9060005260206000200154905080600a83815481106136d7576136d6614712565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061372657613725615418565b5b6001900381819060005260206000200160009055905550505050565b600061374d836116a0565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890615493565b60405180910390fd5b61383a8161287a565b1561387a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613871906154ff565b60405180910390fd5b613886600083836131b0565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138d6919061495d565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546139ae90614121565b90600052602060002090601f0160209004810192826139d05760008555613a17565b82601f106139e957805160ff1916838001178555613a17565b82800160010185558215613a17579182015b82811115613a165782518255916020019190600101906139fb565b5b509050613a249190613a28565b5090565b5b80821115613a41576000816000905550600101613a29565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a8e81613a59565b8114613a9957600080fd5b50565b600081359050613aab81613a85565b92915050565b600060208284031215613ac757613ac6613a4f565b5b6000613ad584828501613a9c565b91505092915050565b60008115159050919050565b613af381613ade565b82525050565b6000602082019050613b0e6000830184613aea565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b4e578082015181840152602081019050613b33565b83811115613b5d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b7f82613b14565b613b898185613b1f565b9350613b99818560208601613b30565b613ba281613b63565b840191505092915050565b60006020820190508181036000830152613bc78184613b74565b905092915050565b6000819050919050565b613be281613bcf565b8114613bed57600080fd5b50565b600081359050613bff81613bd9565b92915050565b600060208284031215613c1b57613c1a613a4f565b5b6000613c2984828501613bf0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5d82613c32565b9050919050565b613c6d81613c52565b82525050565b6000602082019050613c886000830184613c64565b92915050565b613c9781613c52565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613a4f565b5b6000613cdf85828601613ca5565b9250506020613cf085828601613bf0565b9150509250929050565b613d0381613bcf565b82525050565b6000602082019050613d1e6000830184613cfa565b92915050565b600080600060608486031215613d3d57613d3c613a4f565b5b6000613d4b86828701613ca5565b9350506020613d5c86828701613ca5565b9250506040613d6d86828701613bf0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613db982613b63565b810181811067ffffffffffffffff82111715613dd857613dd7613d81565b5b80604052505050565b6000613deb613a45565b9050613df78282613db0565b919050565b600067ffffffffffffffff821115613e1757613e16613d81565b5b613e2082613b63565b9050602081019050919050565b82818337600083830152505050565b6000613e4f613e4a84613dfc565b613de1565b905082815260208101848484011115613e6b57613e6a613d7c565b5b613e76848285613e2d565b509392505050565b600082601f830112613e9357613e92613d77565b5b8135613ea3848260208601613e3c565b91505092915050565b600060208284031215613ec257613ec1613a4f565b5b600082013567ffffffffffffffff811115613ee057613edf613a54565b5b613eec84828501613e7e565b91505092915050565b600060208284031215613f0b57613f0a613a4f565b5b6000613f1984828501613ca5565b91505092915050565b613f2b81613ade565b8114613f3657600080fd5b50565b600081359050613f4881613f22565b92915050565b60008060408385031215613f6557613f64613a4f565b5b6000613f7385828601613ca5565b9250506020613f8485828601613f39565b9150509250929050565b600067ffffffffffffffff821115613fa957613fa8613d81565b5b613fb282613b63565b9050602081019050919050565b6000613fd2613fcd84613f8e565b613de1565b905082815260208101848484011115613fee57613fed613d7c565b5b613ff9848285613e2d565b509392505050565b600082601f83011261401657614015613d77565b5b8135614026848260208601613fbf565b91505092915050565b6000806000806080858703121561404957614048613a4f565b5b600061405787828801613ca5565b945050602061406887828801613ca5565b935050604061407987828801613bf0565b925050606085013567ffffffffffffffff81111561409a57614099613a54565b5b6140a687828801614001565b91505092959194509250565b600080604083850312156140c9576140c8613a4f565b5b60006140d785828601613ca5565b92505060206140e885828601613ca5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413957607f821691505b6020821081141561414d5761414c6140f2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141af602c83613b1f565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614241602183613b1f565b915061424c826141e5565b604082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142d3603883613b1f565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614365603183613b1f565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006143f7602b83613b1f565b91506144028261439b565b604082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614463602083613b1f565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b7f4f70656e20666f7220616c6c0000000000000000000000000000000000000000600082015250565b60006144cf600c83613b1f565b91506144da82614499565b602082019050919050565b600060208201905081810360008301526144fe816144c2565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614561602183613b1f565b915061456c82614505565b604082019050919050565b6000602082019050818103600083015261459081614554565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145d182613bcf565b91506145dc83613bcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561461557614614614597565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061465a82613bcf565b915061466583613bcf565b92508261467557614674614620565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146dc602c83613b1f565b91506146e782614680565b604082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614777601283613b1f565b915061478282614741565b602082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b7f4e6f74206f70656e20666f7220616c6c00000000000000000000000000000000600082015250565b60006147e3601083613b1f565b91506147ee826147ad565b602082019050919050565b60006020820190508181036000830152614812816147d6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061484f601f83613b1f565b915061485a82614819565b602082019050919050565b6000602082019050818103600083015261487e81614842565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006148bb600e83613b1f565b91506148c682614885565b602082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f4c3173206f766572000000000000000000000000000000000000000000000000600082015250565b6000614927600883613b1f565b9150614932826148f1565b602082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b600061496882613bcf565b915061497383613bcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a8576149a7614597565b5b828201905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a0f602983613b1f565b9150614a1a826149b3565b604082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614aa1602a83613b1f565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f4c3273206f766572000000000000000000000000000000000000000000000000600082015250565b6000614b0d600883613b1f565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b79601983613b1f565b9150614b8482614b43565b602082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b600081519050614bbe81613c8e565b92915050565b600060208284031215614bda57614bd9613a4f565b5b6000614be884828501614baf565b91505092915050565b7f4e6f7420796f7572206170650000000000000000000000000000000000000000600082015250565b6000614c27600c83613b1f565b9150614c3282614bf1565b602082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f417065206d75746174656420616c726561647900000000000000000000000000600082015250565b6000614c93601383613b1f565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f53616c6520686173207374617274656400000000000000000000000000000000600082015250565b6000614cff601083613b1f565b9150614d0a82614cc9565b602082019050919050565b60006020820190508181036000830152614d2e81614cf2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d91602f83613b1f565b9150614d9c82614d35565b604082019050919050565b60006020820190508181036000830152614dc081614d84565b9050919050565b600081905092915050565b6000614ddd82613b14565b614de78185614dc7565b9350614df7818560208601613b30565b80840191505092915050565b6000614e0f8285614dd2565b9150614e1b8284614dd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e83602683613b1f565b9150614e8e82614e27565b604082019050919050565b60006020820190508181036000830152614eb281614e76565b9050919050565b600081519050614ec881613bd9565b92915050565b600060208284031215614ee457614ee3613a4f565b5b6000614ef284828501614eb9565b91505092915050565b6000614f0682613bcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3957614f38614597565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614fa0602c83613b1f565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615032602983613b1f565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150c4602483613b1f565b91506150cf82615068565b604082019050919050565b600060208201905081810360008301526150f3816150b7565b9050919050565b600061510582613bcf565b915061511083613bcf565b92508282101561512357615122614597565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615164601d83613b1f565b915061516f8261512e565b602082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b600081905092915050565b50565b60006151b560008361519a565b91506151c0826151a5565b600082019050919050565b60006151d6826151a8565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061523c603a83613b1f565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152ce603283613b1f565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b600061530f82613bcf565b915061531a83613bcf565b92508261532a57615329614620565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061535c82615335565b6153668185615340565b9350615376818560208601613b30565b61537f81613b63565b840191505092915050565b600060808201905061539f6000830187613c64565b6153ac6020830186613c64565b6153b96040830185613cfa565b81810360608301526153cb8184615351565b905095945050505050565b6000815190506153e581613a85565b92915050565b60006020828403121561540157615400613a4f565b5b600061540f848285016153d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061547d602083613b1f565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006154e9601c83613b1f565b91506154f4826154b3565b602082019050919050565b60006020820190508181036000830152615518816154dc565b905091905056fea26469706673582212205d82963ab318236b000032da9f2e82978c4a8fbf0835793099c32e0ffc2621d864736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d55

-----Decoded View---------------
Arg [0] : saAddress (address): 0x6dFCB04b7d2aB2069d9ba81aC643556429EB2d55

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006dfcb04b7d2ab2069d9ba81ac643556429eb2d55


Deployed Bytecode Sourcemap

48416:5569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42204:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49121:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30096:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31655:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31178:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49446:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42844:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32545:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42512:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50076:128;;;;;;;;;;;;;:::i;:::-;;53708:82;;;;;;;;;;;;;:::i;:::-;;53274:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49392:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50320:672;;;:::i;:::-;;49049:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32955:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43034:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49980:88;;;;;;;;;;;;;:::i;:::-;;53610:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53798:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51296:254;;;:::i;:::-;;49179:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29790:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29520:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9795:94;;;;;;;;;;;;;:::i;:::-;;51558:252;;;:::i;:::-;;48979:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48699;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9144:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30265:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31948:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48839:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51818:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48909:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49853:119;;;;;;;;;;;;;:::i;:::-;;33211:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30440:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49146:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53894:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50212:98;;;;;;;;;;;;;:::i;:::-;;48769:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32314:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49212:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52229:1037;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42204:224;42306:4;42345:35;42330:50;;;:11;:50;;;;:90;;;;42384:36;42408:11;42384:23;:36::i;:::-;42330:90;42323:97;;42204:224;;;:::o;49121:18::-;;;;;;;;;;;;;:::o;30096:100::-;30150:13;30183:5;30176:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30096:100;:::o;31655:221::-;31731:7;31759:16;31767:7;31759;:16::i;:::-;31751:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31844:15;:24;31860:7;31844:24;;;;;;;;;;;;;;;;;;;;;31837:31;;31655:221;;;:::o;31178:411::-;31259:13;31275:23;31290:7;31275:14;:23::i;:::-;31259:39;;31323:5;31317:11;;:2;:11;;;;31309:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31417:5;31401:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31426:37;31443:5;31450:12;:10;:12::i;:::-;31426:16;:37::i;:::-;31401:62;31379:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31560:21;31569:2;31573:7;31560:8;:21::i;:::-;31248:341;31178:411;;:::o;49446:45::-;;;;;;;;;;;;;;;;;:::o;42844:113::-;42905:7;42932:10;:17;;;;42925:24;;42844:113;:::o;32545:339::-;32740:41;32759:12;:10;:12::i;:::-;32773:7;32740:18;:41::i;:::-;32732:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32848:28;32858:4;32864:2;32868:7;32848:9;:28::i;:::-;32545:339;;;:::o;42512:256::-;42609:7;42645:23;42662:5;42645:16;:23::i;:::-;42637:5;:31;42629:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42734:12;:19;42747:5;42734:19;;;;;;;;;;;;;;;:26;42754:5;42734:26;;;;;;;;;;;;42727:33;;42512:256;;;;:::o;50076:128::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50141:10:::1;::::0;::::1;;;;;;;;50140:11;50132:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50192:4;50179:10;::::0;:17:::1;;;;;;;;;;;;;;;;;;50076:128::o:0;53708:82::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53776:6:::1;;;;;;;;;;;53775:7;53766:6;;:16;;;;;;;;;;;;;;;;;;53708:82::o:0;53274:220::-;53332:4;53381:10;;53371:7;:20;53349:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;53470:16;53478:7;53470;:16::i;:::-;53463:23;;53274:220;;;:::o;49392:45::-;;;;;;;;;;;;;;;;;:::o;50320:672::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50378:11:::1;50418:2;50416:1;50392:21;:25;;;;:::i;:::-;:28;;;;:::i;:::-;50378:42;;50431:11;50471:3;50469:1;50445:21;:25;;;;:::i;:::-;:29;;;;:::i;:::-;50431:43;;50485:11;50526:3;50523:2;50499:21;:26;;;;:::i;:::-;:30;;;;:::i;:::-;50485:44;;50540:11;50581:3;50578:2;50554:21;:26;;;;:::i;:::-;:30;;;;:::i;:::-;50540:44;;50595:11;50636:3;50633:2;50609:21;:26;;;;:::i;:::-;:30;;;;:::i;:::-;50595:44;;50650:11;50690:2;50688:1;50664:21;:25;;;;:::i;:::-;:28;;;;:::i;:::-;50650:42;;50713:36;50739:3;;;;;;;;;;;50745;50713:17;:36::i;:::-;50760;50786:3;;;;;;;;;;;50792;50760:17;:36::i;:::-;50807;50833:3;;;;;;;;;;;50839;50807:17;:36::i;:::-;50854;50880:3;;;;;;;;;;;50886;50854:17;:36::i;:::-;50901;50927:3;;;;;;;;;;;50933;50901:17;:36::i;:::-;50948;50974:3;;;;;;;;;;;50980;50948:17;:36::i;:::-;50367:625;;;;;;50320:672::o:0;49049:63::-;;;;;;;;;;;;;:::o;32955:185::-;33093:39;33110:4;33116:2;33120:7;33093:39;;;;;;;;;;;;:16;:39::i;:::-;32955:185;;;:::o;43034:233::-;43109:7;43145:30;:28;:30::i;:::-;43137:5;:38;43129:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43242:10;43253:5;43242:17;;;;;;;;:::i;:::-;;;;;;;;;;43235:24;;43034:233;;;:::o;49980:88::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49545:6:::1;;;;;;;;;;;49537:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;50055:5:::2;50046:6;;:14;;;;;;;;;;;;;;;;;;49980:88::o:0;53610:90::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53689:3:::1;53679:7;:13;;;;;;;;;;;;:::i;:::-;;53610:90:::0;:::o;53798:88::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53873:5:::1;53863:7;:15;;;;53798:88:::0;:::o;51296:254::-;49647:10;;;;;;;;;;49639:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1:::1;2628:7;;:19;;2620:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1;2761:7;:18;;;;51391:7:::2;;51378:9;:20;;51370:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51446:10;;51436:7;;:20;51428:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;51480:30;51490:10;51502:7;;51480:9;:30::i;:::-;51541:1;51531:7;;:11;;;;:::i;:::-;51521:7;:21;;;;1988:1:::1;2940:7:::0;:22:::1;;;;51296:254::o:0;49179:26::-;;;;:::o;29790:239::-;29862:7;29882:13;29898:7;:16;29906:7;29898:16;;;;;;;;;;;;;;;;;;;;;29882:32;;29950:1;29933:19;;:5;:19;;;;29925:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30016:5;30009:12;;;29790:239;;;:::o;29520:208::-;29592:7;29637:1;29620:19;;:5;:19;;;;29612:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29704:9;:16;29714:5;29704:16;;;;;;;;;;;;;;;;29697:23;;29520:208;;;:::o;9795:94::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9860:21:::1;9878:1;9860:9;:21::i;:::-;9795:94::o:0;51558:252::-;49647:10;;;;;;;;;;49639:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1:::1;2628:7;;:19;;2620:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1;2761:7;:18;;;;51653:7:::2;;51640:9;:20;;51632:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51715:10;;51708:4;:17;;;;:::i;:::-;51698:7;;:27;51690:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51749:30;51759:10;51771:7;;51749:9;:30::i;:::-;51801:1;51790:7;;:12;;;;;;;:::i;:::-;;;;;;;;1988:1:::1;2940:7:::0;:22:::1;;;;51558:252::o:0;48979:63::-;;;;;;;;;;;;;:::o;48699:::-;;;;;;;;;;;;;:::o;9144:87::-;9190:7;9217:6;;;;;;;;;;;9210:13;;9144:87;:::o;30265:104::-;30321:13;30354:7;30347:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30265:104;:::o;31948:295::-;32063:12;:10;:12::i;:::-;32051:24;;:8;:24;;;;32043:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32163:8;32118:18;:32;32137:12;:10;:12::i;:::-;32118:32;;;;;;;;;;;;;;;:42;32151:8;32118:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32216:8;32187:48;;32202:12;:10;:12::i;:::-;32187:48;;;32226:8;32187:48;;;;;;:::i;:::-;;;;;;;;31948:295;;:::o;48839:63::-;;;;;;;;;;;;;:::o;51818:403::-;49545:6;;;;;;;;;;;49537:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1:::1;2628:7;;:19;;2620:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1;2761:7;:18;;;;51954:10:::2;51926:38;;:2;:10;;;51937:12;51926:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;51918:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52001:30;52018:12;52001:16;:30::i;:::-;52000:31;51992:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52103:1;52093:7;;:11;;;;:::i;:::-;52066:10;:24;52077:12;52066:24;;;;;;;;;;;:38;;;;52115:30;52125:10;52137:7;;52115:9;:30::i;:::-;52182:7;;52168:12;52161:29;;;;;;;;;;52212:1;52201:7;;:12;;;;;;;:::i;:::-;;;;;;;;1988:1:::1;2940:7:::0;:22:::1;;;;51818:403:::0;:::o;48909:63::-;;;;;;;;;;;;;:::o;49853:119::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49913:6:::1;;;;;;;;;;;49912:7;49904:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;49960:4;49951:6;;:13;;;;;;;;;;;;;;;;;;49853:119::o:0;33211:328::-;33386:41;33405:12;:10;:12::i;:::-;33419:7;33386:18;:41::i;:::-;33378:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33492:39;33506:4;33512:2;33516:7;33525:5;33492:13;:39::i;:::-;33211:328;;;;:::o;30440:334::-;30513:13;30547:16;30555:7;30547;:16::i;:::-;30539:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30628:21;30652:10;:8;:10::i;:::-;30628:34;;30704:1;30686:7;30680:21;:25;:86;;;;;;;;;;;;;;;;;30732:7;30741:18;:7;:16;:18::i;:::-;30715:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30680:86;30673:93;;;30440:334;;;:::o;49146:22::-;;;;;;;;;;;;:::o;53894:88::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53969:5:::1;53959:7;:15;;;;53894:88:::0;:::o;50212:98::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49647:10:::1;::::0;::::1;;;;;;;;49639:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;50297:5:::2;50284:10;::::0;:18:::2;;;;;;;;;;;;;;;;;;50212:98::o:0;48769:63::-;;;;;;;;;;;;;:::o;32314:164::-;32411:4;32435:18;:25;32454:5;32435:25;;;;;;;;;;;;;;;:35;32461:8;32435:35;;;;;;;;;;;;;;;;;;;;;;;;;32428:42;;32314:164;;;;:::o;49212:29::-;;;;:::o;10044:192::-;9375:12;:10;:12::i;:::-;9364:23;;:7;:5;:7::i;:::-;:23;;;9356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10153:1:::1;10133:22;;:8;:22;;;;10125:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10209:19;10219:8;10209:9;:19::i;:::-;10044:192:::0;:::o;52229:1037::-;49545:6;;;;;;;;;;;49537:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1:::1;2628:7;;:19;;2620:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2032:1;2761:7;:18;;;;52365:10:::2;52337:38;;:2;:10;;;52348:12;52337:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;52329:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52412:30;52429:12;52412:16;:30::i;:::-;52411:31;52403:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52514:1;52504:7;;:11;;;;:::i;:::-;52477:10;:24;52488:12;52477:24;;;;;;;;;;;:38;;;;52609:15;52627:21;52637:10;52627:9;:21::i;:::-;52609:39;;52659:25;52687:2;:12;;;52700:10;52687:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52659:52;;52722:16;52758:9:::0;52753:206:::2;52777:7;52773:1;:11;52753:206;;;52897:4;52861:33;52881:10;52892:1;52861:19;:33::i;:::-;:40;52857:91;;;52922:10;;;;;:::i;:::-;;;;52857:91;52787:3;;;;;:::i;:::-;;;;52753:206;;;;53024:8;53018:1;52991:17;52983:37;;;;:::i;:::-;:49;52979:171;;53112:7;;53099:9;:20;;53091:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52979:171;53160:30;53170:10;53182:7;;53160:9;:30::i;:::-;53227:7;;53213:12;53206:29;;;;;;;;;;53257:1;53246:7;;:12;;;;;;;:::i;:::-;;;;;;;;52318:948;;;1988:1:::1;2940:7:::0;:22:::1;;;;52229:1037:::0;:::o;29151:305::-;29253:4;29305:25;29290:40;;;:11;:40;;;;:105;;;;29362:33;29347:48;;;:11;:48;;;;29290:105;:158;;;;29412:36;29436:11;29412:23;:36::i;:::-;29290:158;29270:178;;29151:305;;;:::o;35049:127::-;35114:4;35166:1;35138:30;;:7;:16;35146:7;35138:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35131:37;;35049:127;;;:::o;5672:98::-;5725:7;5752:10;5745:17;;5672:98;:::o;39031:174::-;39133:2;39106:15;:24;39122:7;39106:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39189:7;39185:2;39151:46;;39160:23;39175:7;39160:14;:23::i;:::-;39151:46;;;;;;;;;;;;39031:174;;:::o;35343:348::-;35436:4;35461:16;35469:7;35461;:16::i;:::-;35453:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35537:13;35553:23;35568:7;35553:14;:23::i;:::-;35537:39;;35606:5;35595:16;;:7;:16;;;:51;;;;35639:7;35615:31;;:20;35627:7;35615:11;:20::i;:::-;:31;;;35595:51;:87;;;;35650:32;35667:5;35674:7;35650:16;:32::i;:::-;35595:87;35587:96;;;35343:348;;;;:::o;38335:578::-;38494:4;38467:31;;:23;38482:7;38467:14;:23::i;:::-;:31;;;38459:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38577:1;38563:16;;:2;:16;;;;38555:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38633:39;38654:4;38660:2;38664:7;38633:20;:39::i;:::-;38737:29;38754:1;38758:7;38737:8;:29::i;:::-;38798:1;38779:9;:15;38789:4;38779:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38827:1;38810:9;:13;38820:2;38810:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38858:2;38839:7;:16;38847:7;38839:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38897:7;38893:2;38878:27;;38887:4;38878:27;;;;;;;;;;;;38335:578;;;:::o;12512:317::-;12627:6;12602:21;:31;;12594:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:12;12699:9;:14;;12721:6;12699:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12680:52;;;12751:7;12743:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12583:246;12512:317;;:::o;36033:110::-;36109:26;36119:2;36123:7;36109:26;;;;;;;;;;;;:9;:26::i;:::-;36033:110;;:::o;10244:173::-;10300:16;10319:6;;;;;;;;;;;10300:25;;10345:8;10336:6;;:17;;;;;;;;;;;;;;;;;;10400:8;10369:40;;10390:8;10369:40;;;;;;;;;;;;10289:128;10244:173;:::o;51000:140::-;51079:4;51131:1;51103:10;:24;51114:12;51103:24;;;;;;;;;;;;:29;;51096:36;;51000:140;;;:::o;34421:315::-;34578:28;34588:4;34594:2;34598:7;34578:9;:28::i;:::-;34625:48;34648:4;34654:2;34658:7;34667:5;34625:22;:48::i;:::-;34617:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;34421:315;;;;:::o;53502:100::-;53554:13;53587:7;53580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53502:100;:::o;3288:723::-;3344:13;3574:1;3565:5;:10;3561:53;;;3592:10;;;;;;;;;;;;;;;;;;;;;3561:53;3624:12;3639:5;3624:20;;3655:14;3680:78;3695:1;3687:4;:9;3680:78;;3713:8;;;;;:::i;:::-;;;;3744:2;3736:10;;;;;:::i;:::-;;;3680:78;;;3768:19;3800:6;3790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3768:39;;3818:154;3834:1;3825:5;:10;3818:154;;3862:1;3852:11;;;;;:::i;:::-;;;3929:2;3921:5;:10;;;;:::i;:::-;3908:2;:24;;;;:::i;:::-;3895:39;;3878:6;3885;3878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3958:2;3949:11;;;;;:::i;:::-;;;3818:154;;;3996:6;3982:21;;;;;3288:723;;;;:::o;51148:140::-;51227:4;51279:1;51251:10;:24;51262:12;51251:24;;;;;;;;;;;;:29;;51244:36;;51148:140;;;:::o;21130:157::-;21215:4;21254:25;21239:40;;;:11;:40;;;;21232:47;;21130:157;;;:::o;43880:589::-;44024:45;44051:4;44057:2;44061:7;44024:26;:45::i;:::-;44102:1;44086:18;;:4;:18;;;44082:187;;;44121:40;44153:7;44121:31;:40::i;:::-;44082:187;;;44191:2;44183:10;;:4;:10;;;44179:90;;44210:47;44243:4;44249:7;44210:32;:47::i;:::-;44179:90;44082:187;44297:1;44283:16;;:2;:16;;;44279:183;;;44316:45;44353:7;44316:36;:45::i;:::-;44279:183;;;44389:4;44383:10;;:2;:10;;;44379:83;;44410:40;44438:2;44442:7;44410:27;:40::i;:::-;44379:83;44279:183;43880:589;;;:::o;36370:321::-;36500:18;36506:2;36510:7;36500:5;:18::i;:::-;36551:54;36582:1;36586:2;36590:7;36599:5;36551:22;:54::i;:::-;36529:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;36370:321;;;:::o;39770:799::-;39925:4;39946:15;:2;:13;;;:15::i;:::-;39942:620;;;39998:2;39982:36;;;40019:12;:10;:12::i;:::-;40033:4;40039:7;40048:5;39982:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39978:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40241:1;40224:6;:13;:18;40220:272;;;40267:60;;;;;;;;;;:::i;:::-;;;;;;;;40220:272;40442:6;40436:13;40427:6;40423:2;40419:15;40412:38;39978:529;40115:41;;;40105:51;;;:6;:51;;;;40098:58;;;;;39942:620;40546:4;40539:11;;39770:799;;;;;;;:::o;41141:126::-;;;;:::o;45192:164::-;45296:10;:17;;;;45269:15;:24;45285:7;45269:24;;;;;;;;;;;:44;;;;45324:10;45340:7;45324:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45192:164;:::o;45983:988::-;46249:22;46299:1;46274:22;46291:4;46274:16;:22::i;:::-;:26;;;;:::i;:::-;46249:51;;46311:18;46332:17;:26;46350:7;46332:26;;;;;;;;;;;;46311:47;;46479:14;46465:10;:28;46461:328;;46510:19;46532:12;:18;46545:4;46532:18;;;;;;;;;;;;;;;:34;46551:14;46532:34;;;;;;;;;;;;46510:56;;46616:11;46583:12;:18;46596:4;46583:18;;;;;;;;;;;;;;;:30;46602:10;46583:30;;;;;;;;;;;:44;;;;46733:10;46700:17;:30;46718:11;46700:30;;;;;;;;;;;:43;;;;46495:294;46461:328;46885:17;:26;46903:7;46885:26;;;;;;;;;;;46878:33;;;46929:12;:18;46942:4;46929:18;;;;;;;;;;;;;;;:34;46948:14;46929:34;;;;;;;;;;;46922:41;;;46064:907;;45983:988;;:::o;47266:1079::-;47519:22;47564:1;47544:10;:17;;;;:21;;;;:::i;:::-;47519:46;;47576:18;47597:15;:24;47613:7;47597:24;;;;;;;;;;;;47576:45;;47948:19;47970:10;47981:14;47970:26;;;;;;;;:::i;:::-;;;;;;;;;;47948:48;;48034:11;48009:10;48020;48009:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48145:10;48114:15;:28;48130:11;48114:28;;;;;;;;;;;:41;;;;48286:15;:24;48302:7;48286:24;;;;;;;;;;;48279:31;;;48321:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47337:1008;;;47266:1079;:::o;44770:221::-;44855:14;44872:20;44889:2;44872:16;:20::i;:::-;44855:37;;44930:7;44903:12;:16;44916:2;44903:16;;;;;;;;;;;;;;;:24;44920:6;44903:24;;;;;;;;;;;:34;;;;44977:6;44948:17;:26;44966:7;44948:26;;;;;;;;;;;:35;;;;44844:147;44770:221;;:::o;37027:382::-;37121:1;37107:16;;:2;:16;;;;37099:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37180:16;37188:7;37180;:16::i;:::-;37179:17;37171:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37242:45;37271:1;37275:2;37279:7;37242:20;:45::i;:::-;37317:1;37300:9;:13;37310:2;37300:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37348:2;37329:7;:16;37337:7;37329:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37393:7;37389:2;37368:33;;37385:1;37368:33;;;;;;;;;;;;37027:382;;:::o;11190:387::-;11250:4;11458:12;11525:7;11513:20;11505:28;;11568:1;11561:4;:8;11554:15;;;11190:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;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:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:230::-;16915:34;16911:1;16903:6;16899:14;16892:58;16984:13;16979:2;16971:6;16967:15;16960:38;16775:230;:::o;17011:366::-;17153:3;17174:67;17238:2;17233:3;17174:67;:::i;:::-;17167:74;;17250:93;17339:3;17250:93;:::i;:::-;17368:2;17363:3;17359:12;17352:19;;17011:366;;;:::o;17383:419::-;17549:4;17587:2;17576:9;17572:18;17564:26;;17636:9;17630:4;17626:20;17622:1;17611:9;17607:17;17600:47;17664:131;17790:4;17664:131;:::i;:::-;17656:139;;17383:419;;;:::o;17808:182::-;17948:34;17944:1;17936:6;17932:14;17925:58;17808:182;:::o;17996:366::-;18138:3;18159:67;18223:2;18218:3;18159:67;:::i;:::-;18152:74;;18235:93;18324:3;18235:93;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;17996:366;;;:::o;18368:419::-;18534:4;18572:2;18561:9;18557:18;18549:26;;18621:9;18615:4;18611:20;18607:1;18596:9;18592:17;18585:47;18649:131;18775:4;18649:131;:::i;:::-;18641:139;;18368:419;;;:::o;18793:162::-;18933:14;18929:1;18921:6;18917:14;18910:38;18793:162;:::o;18961:366::-;19103:3;19124:67;19188:2;19183:3;19124:67;:::i;:::-;19117:74;;19200:93;19289:3;19200:93;:::i;:::-;19318:2;19313:3;19309:12;19302:19;;18961:366;;;:::o;19333:419::-;19499:4;19537:2;19526:9;19522:18;19514:26;;19586:9;19580:4;19576:20;19572:1;19561:9;19557:17;19550:47;19614:131;19740:4;19614:131;:::i;:::-;19606:139;;19333:419;;;:::o;19758:220::-;19898:34;19894:1;19886:6;19882:14;19875:58;19967:3;19962:2;19954:6;19950:15;19943:28;19758:220;:::o;19984:366::-;20126:3;20147:67;20211:2;20206:3;20147:67;:::i;:::-;20140:74;;20223:93;20312:3;20223:93;:::i;:::-;20341:2;20336:3;20332:12;20325:19;;19984:366;;;:::o;20356:419::-;20522:4;20560:2;20549:9;20545:18;20537:26;;20609:9;20603:4;20599:20;20595:1;20584:9;20580:17;20573:47;20637:131;20763:4;20637:131;:::i;:::-;20629:139;;20356:419;;;:::o;20781:180::-;20829:77;20826:1;20819:88;20926:4;20923:1;20916:15;20950:4;20947:1;20940:15;20967:348;21007:7;21030:20;21048:1;21030:20;:::i;:::-;21025:25;;21064:20;21082:1;21064:20;:::i;:::-;21059:25;;21252:1;21184:66;21180:74;21177:1;21174:81;21169:1;21162:9;21155:17;21151:105;21148:131;;;21259:18;;:::i;:::-;21148:131;21307:1;21304;21300:9;21289:20;;20967:348;;;;:::o;21321:180::-;21369:77;21366:1;21359:88;21466:4;21463:1;21456:15;21490:4;21487:1;21480:15;21507:185;21547:1;21564:20;21582:1;21564:20;:::i;:::-;21559:25;;21598:20;21616:1;21598:20;:::i;:::-;21593:25;;21637:1;21627:35;;21642:18;;:::i;:::-;21627:35;21684:1;21681;21677:9;21672:14;;21507:185;;;;:::o;21698:231::-;21838:34;21834:1;21826:6;21822:14;21815:58;21907:14;21902:2;21894:6;21890:15;21883:39;21698:231;:::o;21935:366::-;22077:3;22098:67;22162:2;22157:3;22098:67;:::i;:::-;22091:74;;22174:93;22263:3;22174:93;:::i;:::-;22292:2;22287:3;22283:12;22276:19;;21935:366;;;:::o;22307:419::-;22473:4;22511:2;22500:9;22496:18;22488:26;;22560:9;22554:4;22550:20;22546:1;22535:9;22531:17;22524:47;22588:131;22714:4;22588:131;:::i;:::-;22580:139;;22307:419;;;:::o;22732:180::-;22780:77;22777:1;22770:88;22877:4;22874:1;22867:15;22901:4;22898:1;22891:15;22918:168;23058:20;23054:1;23046:6;23042:14;23035:44;22918:168;:::o;23092:366::-;23234:3;23255:67;23319:2;23314:3;23255:67;:::i;:::-;23248:74;;23331:93;23420:3;23331:93;:::i;:::-;23449:2;23444:3;23440:12;23433:19;;23092:366;;;:::o;23464:419::-;23630:4;23668:2;23657:9;23653:18;23645:26;;23717:9;23711:4;23707:20;23703:1;23692:9;23688:17;23681:47;23745:131;23871:4;23745:131;:::i;:::-;23737:139;;23464:419;;;:::o;23889:166::-;24029:18;24025:1;24017:6;24013:14;24006:42;23889:166;:::o;24061:366::-;24203:3;24224:67;24288:2;24283:3;24224:67;:::i;:::-;24217:74;;24300:93;24389:3;24300:93;:::i;:::-;24418:2;24413:3;24409:12;24402:19;;24061:366;;;:::o;24433:419::-;24599:4;24637:2;24626:9;24622:18;24614:26;;24686:9;24680:4;24676:20;24672:1;24661:9;24657:17;24650:47;24714:131;24840:4;24714:131;:::i;:::-;24706:139;;24433:419;;;:::o;24858:181::-;24998:33;24994:1;24986:6;24982:14;24975:57;24858:181;:::o;25045:366::-;25187:3;25208:67;25272:2;25267:3;25208:67;:::i;:::-;25201:74;;25284:93;25373:3;25284:93;:::i;:::-;25402:2;25397:3;25393:12;25386:19;;25045:366;;;:::o;25417:419::-;25583:4;25621:2;25610:9;25606:18;25598:26;;25670:9;25664:4;25660:20;25656:1;25645:9;25641:17;25634:47;25698:131;25824:4;25698:131;:::i;:::-;25690:139;;25417:419;;;:::o;25842:164::-;25982:16;25978:1;25970:6;25966:14;25959:40;25842:164;:::o;26012:366::-;26154:3;26175:67;26239:2;26234:3;26175:67;:::i;:::-;26168:74;;26251:93;26340:3;26251:93;:::i;:::-;26369:2;26364:3;26360:12;26353:19;;26012:366;;;:::o;26384:419::-;26550:4;26588:2;26577:9;26573:18;26565:26;;26637:9;26631:4;26627:20;26623:1;26612:9;26608:17;26601:47;26665:131;26791:4;26665:131;:::i;:::-;26657:139;;26384:419;;;:::o;26809:158::-;26949:10;26945:1;26937:6;26933:14;26926:34;26809:158;:::o;26973:365::-;27115:3;27136:66;27200:1;27195:3;27136:66;:::i;:::-;27129:73;;27211:93;27300:3;27211:93;:::i;:::-;27329:2;27324:3;27320:12;27313:19;;26973:365;;;:::o;27344:419::-;27510:4;27548:2;27537:9;27533:18;27525:26;;27597:9;27591:4;27587:20;27583:1;27572:9;27568:17;27561:47;27625:131;27751:4;27625:131;:::i;:::-;27617:139;;27344:419;;;:::o;27769:305::-;27809:3;27828:20;27846:1;27828:20;:::i;:::-;27823:25;;27862:20;27880:1;27862:20;:::i;:::-;27857:25;;28016:1;27948:66;27944:74;27941:1;27938:81;27935:107;;;28022:18;;:::i;:::-;27935:107;28066:1;28063;28059:9;28052:16;;27769:305;;;;:::o;28080:228::-;28220:34;28216:1;28208:6;28204:14;28197:58;28289:11;28284:2;28276:6;28272:15;28265:36;28080:228;:::o;28314:366::-;28456:3;28477:67;28541:2;28536:3;28477:67;:::i;:::-;28470:74;;28553:93;28642:3;28553:93;:::i;:::-;28671:2;28666:3;28662:12;28655:19;;28314:366;;;:::o;28686:419::-;28852:4;28890:2;28879:9;28875:18;28867:26;;28939:9;28933:4;28929:20;28925:1;28914:9;28910:17;28903:47;28967:131;29093:4;28967:131;:::i;:::-;28959:139;;28686:419;;;:::o;29111:229::-;29251:34;29247:1;29239:6;29235:14;29228:58;29320:12;29315:2;29307:6;29303:15;29296:37;29111:229;:::o;29346:366::-;29488:3;29509:67;29573:2;29568:3;29509:67;:::i;:::-;29502:74;;29585:93;29674:3;29585:93;:::i;:::-;29703:2;29698:3;29694:12;29687:19;;29346:366;;;:::o;29718:419::-;29884:4;29922:2;29911:9;29907:18;29899:26;;29971:9;29965:4;29961:20;29957:1;29946:9;29942:17;29935:47;29999:131;30125:4;29999:131;:::i;:::-;29991:139;;29718:419;;;:::o;30143:158::-;30283:10;30279:1;30271:6;30267:14;30260:34;30143:158;:::o;30307:365::-;30449:3;30470:66;30534:1;30529:3;30470:66;:::i;:::-;30463:73;;30545:93;30634:3;30545:93;:::i;:::-;30663:2;30658:3;30654:12;30647:19;;30307:365;;;:::o;30678:419::-;30844:4;30882:2;30871:9;30867:18;30859:26;;30931:9;30925:4;30921:20;30917:1;30906:9;30902:17;30895:47;30959:131;31085:4;30959:131;:::i;:::-;30951:139;;30678:419;;;:::o;31103:175::-;31243:27;31239:1;31231:6;31227:14;31220:51;31103:175;:::o;31284:366::-;31426:3;31447:67;31511:2;31506:3;31447:67;:::i;:::-;31440:74;;31523:93;31612:3;31523:93;:::i;:::-;31641:2;31636:3;31632:12;31625:19;;31284:366;;;:::o;31656:419::-;31822:4;31860:2;31849:9;31845:18;31837:26;;31909:9;31903:4;31899:20;31895:1;31884:9;31880:17;31873:47;31937:131;32063:4;31937:131;:::i;:::-;31929:139;;31656:419;;;:::o;32081:143::-;32138:5;32169:6;32163:13;32154:22;;32185:33;32212:5;32185:33;:::i;:::-;32081:143;;;;:::o;32230:351::-;32300:6;32349:2;32337:9;32328:7;32324:23;32320:32;32317:119;;;32355:79;;:::i;:::-;32317:119;32475:1;32500:64;32556:7;32547:6;32536:9;32532:22;32500:64;:::i;:::-;32490:74;;32446:128;32230:351;;;;:::o;32587:162::-;32727:14;32723:1;32715:6;32711:14;32704:38;32587:162;:::o;32755:366::-;32897:3;32918:67;32982:2;32977:3;32918:67;:::i;:::-;32911:74;;32994:93;33083:3;32994:93;:::i;:::-;33112:2;33107:3;33103:12;33096:19;;32755:366;;;:::o;33127:419::-;33293:4;33331:2;33320:9;33316:18;33308:26;;33380:9;33374:4;33370:20;33366:1;33355:9;33351:17;33344:47;33408:131;33534:4;33408:131;:::i;:::-;33400:139;;33127:419;;;:::o;33552:169::-;33692:21;33688:1;33680:6;33676:14;33669:45;33552:169;:::o;33727:366::-;33869:3;33890:67;33954:2;33949:3;33890:67;:::i;:::-;33883:74;;33966:93;34055:3;33966:93;:::i;:::-;34084:2;34079:3;34075:12;34068:19;;33727:366;;;:::o;34099:419::-;34265:4;34303:2;34292:9;34288:18;34280:26;;34352:9;34346:4;34342:20;34338:1;34327:9;34323:17;34316:47;34380:131;34506:4;34380:131;:::i;:::-;34372:139;;34099:419;;;:::o;34524:166::-;34664:18;34660:1;34652:6;34648:14;34641:42;34524:166;:::o;34696:366::-;34838:3;34859:67;34923:2;34918:3;34859:67;:::i;:::-;34852:74;;34935:93;35024:3;34935:93;:::i;:::-;35053:2;35048:3;35044:12;35037:19;;34696:366;;;:::o;35068:419::-;35234:4;35272:2;35261:9;35257:18;35249:26;;35321:9;35315:4;35311:20;35307:1;35296:9;35292:17;35285:47;35349:131;35475:4;35349:131;:::i;:::-;35341:139;;35068:419;;;:::o;35493:234::-;35633:34;35629:1;35621:6;35617:14;35610:58;35702:17;35697:2;35689:6;35685:15;35678:42;35493:234;:::o;35733:366::-;35875:3;35896:67;35960:2;35955:3;35896:67;:::i;:::-;35889:74;;35972:93;36061:3;35972:93;:::i;:::-;36090:2;36085:3;36081:12;36074:19;;35733:366;;;:::o;36105:419::-;36271:4;36309:2;36298:9;36294:18;36286:26;;36358:9;36352:4;36348:20;36344:1;36333:9;36329:17;36322:47;36386:131;36512:4;36386:131;:::i;:::-;36378:139;;36105:419;;;:::o;36530:148::-;36632:11;36669:3;36654:18;;36530:148;;;;:::o;36684:377::-;36790:3;36818:39;36851:5;36818:39;:::i;:::-;36873:89;36955:6;36950:3;36873:89;:::i;:::-;36866:96;;36971:52;37016:6;37011:3;37004:4;36997:5;36993:16;36971:52;:::i;:::-;37048:6;37043:3;37039:16;37032:23;;36794:267;36684:377;;;;:::o;37067:435::-;37247:3;37269:95;37360:3;37351:6;37269:95;:::i;:::-;37262:102;;37381:95;37472:3;37463:6;37381:95;:::i;:::-;37374:102;;37493:3;37486:10;;37067:435;;;;;:::o;37508:225::-;37648:34;37644:1;37636:6;37632:14;37625:58;37717:8;37712:2;37704:6;37700:15;37693:33;37508:225;:::o;37739:366::-;37881:3;37902:67;37966:2;37961:3;37902:67;:::i;:::-;37895:74;;37978:93;38067:3;37978:93;:::i;:::-;38096:2;38091:3;38087:12;38080:19;;37739:366;;;:::o;38111:419::-;38277:4;38315:2;38304:9;38300:18;38292:26;;38364:9;38358:4;38354:20;38350:1;38339:9;38335:17;38328:47;38392:131;38518:4;38392:131;:::i;:::-;38384:139;;38111:419;;;:::o;38536:143::-;38593:5;38624:6;38618:13;38609:22;;38640:33;38667:5;38640:33;:::i;:::-;38536:143;;;;:::o;38685:351::-;38755:6;38804:2;38792:9;38783:7;38779:23;38775:32;38772:119;;;38810:79;;:::i;:::-;38772:119;38930:1;38955:64;39011:7;39002:6;38991:9;38987:22;38955:64;:::i;:::-;38945:74;;38901:128;38685:351;;;;:::o;39042:233::-;39081:3;39104:24;39122:5;39104:24;:::i;:::-;39095:33;;39150:66;39143:5;39140:77;39137:103;;;39220:18;;:::i;:::-;39137:103;39267:1;39260:5;39256:13;39249:20;;39042:233;;;:::o;39281:231::-;39421:34;39417:1;39409:6;39405:14;39398:58;39490:14;39485:2;39477:6;39473:15;39466:39;39281:231;:::o;39518:366::-;39660:3;39681:67;39745:2;39740:3;39681:67;:::i;:::-;39674:74;;39757:93;39846:3;39757:93;:::i;:::-;39875:2;39870:3;39866:12;39859:19;;39518:366;;;:::o;39890:419::-;40056:4;40094:2;40083:9;40079:18;40071:26;;40143:9;40137:4;40133:20;40129:1;40118:9;40114:17;40107:47;40171:131;40297:4;40171:131;:::i;:::-;40163:139;;39890:419;;;:::o;40315:228::-;40455:34;40451:1;40443:6;40439:14;40432:58;40524:11;40519:2;40511:6;40507:15;40500:36;40315:228;:::o;40549:366::-;40691:3;40712:67;40776:2;40771:3;40712:67;:::i;:::-;40705:74;;40788:93;40877:3;40788:93;:::i;:::-;40906:2;40901:3;40897:12;40890:19;;40549:366;;;:::o;40921:419::-;41087:4;41125:2;41114:9;41110:18;41102:26;;41174:9;41168:4;41164:20;41160:1;41149:9;41145:17;41138:47;41202:131;41328:4;41202:131;:::i;:::-;41194:139;;40921:419;;;:::o;41346:223::-;41486:34;41482:1;41474:6;41470:14;41463:58;41555:6;41550:2;41542:6;41538:15;41531:31;41346:223;:::o;41575:366::-;41717:3;41738:67;41802:2;41797:3;41738:67;:::i;:::-;41731:74;;41814:93;41903:3;41814:93;:::i;:::-;41932:2;41927:3;41923:12;41916:19;;41575:366;;;:::o;41947:419::-;42113:4;42151:2;42140:9;42136:18;42128:26;;42200:9;42194:4;42190:20;42186:1;42175:9;42171:17;42164:47;42228:131;42354:4;42228:131;:::i;:::-;42220:139;;41947:419;;;:::o;42372:191::-;42412:4;42432:20;42450:1;42432:20;:::i;:::-;42427:25;;42466:20;42484:1;42466:20;:::i;:::-;42461:25;;42505:1;42502;42499:8;42496:34;;;42510:18;;:::i;:::-;42496:34;42555:1;42552;42548:9;42540:17;;42372:191;;;;:::o;42569:179::-;42709:31;42705:1;42697:6;42693:14;42686:55;42569:179;:::o;42754:366::-;42896:3;42917:67;42981:2;42976:3;42917:67;:::i;:::-;42910:74;;42993:93;43082:3;42993:93;:::i;:::-;43111:2;43106:3;43102:12;43095:19;;42754:366;;;:::o;43126:419::-;43292:4;43330:2;43319:9;43315:18;43307:26;;43379:9;43373:4;43369:20;43365:1;43354:9;43350:17;43343:47;43407:131;43533:4;43407:131;:::i;:::-;43399:139;;43126:419;;;:::o;43551:147::-;43652:11;43689:3;43674:18;;43551:147;;;;:::o;43704:114::-;;:::o;43824:398::-;43983:3;44004:83;44085:1;44080:3;44004:83;:::i;:::-;43997:90;;44096:93;44185:3;44096:93;:::i;:::-;44214:1;44209:3;44205:11;44198:18;;43824:398;;;:::o;44228:379::-;44412:3;44434:147;44577:3;44434:147;:::i;:::-;44427:154;;44598:3;44591:10;;44228:379;;;:::o;44613:245::-;44753:34;44749:1;44741:6;44737:14;44730:58;44822:28;44817:2;44809:6;44805:15;44798:53;44613:245;:::o;44864:366::-;45006:3;45027:67;45091:2;45086:3;45027:67;:::i;:::-;45020:74;;45103:93;45192:3;45103:93;:::i;:::-;45221:2;45216:3;45212:12;45205:19;;44864:366;;;:::o;45236:419::-;45402:4;45440:2;45429:9;45425:18;45417:26;;45489:9;45483:4;45479:20;45475:1;45464:9;45460:17;45453:47;45517:131;45643:4;45517:131;:::i;:::-;45509:139;;45236:419;;;:::o;45661:237::-;45801:34;45797:1;45789:6;45785:14;45778:58;45870:20;45865:2;45857:6;45853:15;45846:45;45661:237;:::o;45904:366::-;46046:3;46067:67;46131:2;46126:3;46067:67;:::i;:::-;46060:74;;46143:93;46232:3;46143:93;:::i;:::-;46261:2;46256:3;46252:12;46245:19;;45904:366;;;:::o;46276:419::-;46442:4;46480:2;46469:9;46465:18;46457:26;;46529:9;46523:4;46519:20;46515:1;46504:9;46500:17;46493:47;46557:131;46683:4;46557:131;:::i;:::-;46549:139;;46276:419;;;:::o;46701:176::-;46733:1;46750:20;46768:1;46750:20;:::i;:::-;46745:25;;46784:20;46802:1;46784:20;:::i;:::-;46779:25;;46823:1;46813:35;;46828:18;;:::i;:::-;46813:35;46869:1;46866;46862:9;46857:14;;46701:176;;;;:::o;46883:98::-;46934:6;46968:5;46962:12;46952:22;;46883:98;;;:::o;46987:168::-;47070:11;47104:6;47099:3;47092:19;47144:4;47139:3;47135:14;47120:29;;46987:168;;;;:::o;47161:360::-;47247:3;47275:38;47307:5;47275:38;:::i;:::-;47329:70;47392:6;47387:3;47329:70;:::i;:::-;47322:77;;47408:52;47453:6;47448:3;47441:4;47434:5;47430:16;47408:52;:::i;:::-;47485:29;47507:6;47485:29;:::i;:::-;47480:3;47476:39;47469:46;;47251:270;47161:360;;;;:::o;47527:640::-;47722:4;47760:3;47749:9;47745:19;47737:27;;47774:71;47842:1;47831:9;47827:17;47818:6;47774:71;:::i;:::-;47855:72;47923:2;47912:9;47908:18;47899:6;47855:72;:::i;:::-;47937;48005:2;47994:9;47990:18;47981:6;47937:72;:::i;:::-;48056:9;48050:4;48046:20;48041:2;48030:9;48026:18;48019:48;48084:76;48155:4;48146:6;48084:76;:::i;:::-;48076:84;;47527:640;;;;;;;:::o;48173:141::-;48229:5;48260:6;48254:13;48245:22;;48276:32;48302:5;48276:32;:::i;:::-;48173:141;;;;:::o;48320:349::-;48389:6;48438:2;48426:9;48417:7;48413:23;48409:32;48406:119;;;48444:79;;:::i;:::-;48406:119;48564:1;48589:63;48644:7;48635:6;48624:9;48620:22;48589:63;:::i;:::-;48579:73;;48535:127;48320:349;;;;:::o;48675:180::-;48723:77;48720:1;48713:88;48820:4;48817:1;48810:15;48844:4;48841:1;48834:15;48861:182;49001:34;48997:1;48989:6;48985:14;48978:58;48861:182;:::o;49049:366::-;49191:3;49212:67;49276:2;49271:3;49212:67;:::i;:::-;49205:74;;49288:93;49377:3;49288:93;:::i;:::-;49406:2;49401:3;49397:12;49390:19;;49049:366;;;:::o;49421:419::-;49587:4;49625:2;49614:9;49610:18;49602:26;;49674:9;49668:4;49664:20;49660:1;49649:9;49645:17;49638:47;49702:131;49828:4;49702:131;:::i;:::-;49694:139;;49421:419;;;:::o;49846:178::-;49986:30;49982:1;49974:6;49970:14;49963:54;49846:178;:::o;50030:366::-;50172:3;50193:67;50257:2;50252:3;50193:67;:::i;:::-;50186:74;;50269:93;50358:3;50269:93;:::i;:::-;50387:2;50382:3;50378:12;50371:19;;50030:366;;;:::o;50402:419::-;50568:4;50606:2;50595:9;50591:18;50583:26;;50655:9;50649:4;50645:20;50641:1;50630:9;50626:17;50619:47;50683:131;50809:4;50683:131;:::i;:::-;50675:139;;50402:419;;;:::o

Swarm Source

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