ETH Price: $3,510.46 (+2.81%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

888

Holders

678

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x6cea9a8cb9cd5fa6a7c113542bb33b2ab4b4add0
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:
VIP_8SIAN_GOLD_PASS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}



// OpenZeppelin Contracts v4.4.0 (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);
    }
}



// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}



// OpenZeppelin Contracts v4.4.0 (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;
    }
}



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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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



// OpenZeppelin Contracts v4.4.0 (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);
            }
        }
    }
}



// OpenZeppelin Contracts v4.4.0 (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);
}



// OpenZeppelin Contracts v4.4.0 (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;
    }
}



// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}



// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}



// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

pragma solidity ^0.8.0;

/*

  █████╗ ███████╗██╗ █████╗ ███╗   ██╗
 ██╔══██╗██╔════╝██║██╔══██╗████╗  ██║
 ╚█████╔╝███████╗██║███████║██╔██╗ ██║
 ██╔══██╗╚════██║██║██╔══██║██║╚██╗██║
 ╚█████╔╝███████║██║██║  ██║██║ ╚████║
  ╚════╝ ╚══════╝╚═╝╚═╝  ╚═╝╚═╝  ╚═══╝
         By Devko.dev#7286                                    
*/

contract VIP_8SIAN_GOLD_PASS is ERC1155, Ownable  {
    using ECDSA for bytes32;
    using Counters for Counters.Counter;
    
    Counters.Counter public TOKENS_MINTED;
    uint256 constant MAX_TOKENS = 888;
    uint256 constant OG_PASS_ID = 0;
    uint256 constant PASS_ID = 1;
    uint256 constant TOKEN_PRICE = 0.088 ether;
    string private constant SIG_WORD = "8SIAN_PRESALE";
    address private SIGNER_ADDRESS = 0xebC4C5905E8813BB556636aDEbCbBb0822a84e14;
    mapping(address => bool) public buyersList;
    bool public presaleLive;
    bool public saleLive;

    constructor() ERC1155("https://gateway.pinata.cloud/ipfs/QmNTZ5CfcVVrNzRwar83qWq63SpTNbqgnhJwL1f5mFS5R4/{id}") {}

    function matchAddresSigner(bytes memory signature) private view returns(bool) {
         bytes32 hash = keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(msg.sender, SIG_WORD)))
          );
        return SIGNER_ADDRESS == hash.recover(signature);
    }

    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }

    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function airdropOG(address[] calldata receivers) external onlyOwner {
        require(TOKENS_MINTED.current() + receivers.length <= MAX_TOKENS, "EXCEED_MAX_TOKENS");
        for (uint256 i = 0; i < receivers.length; i++) {
            TOKENS_MINTED.increment();
            _mint(receivers[i], OG_PASS_ID, 1 ,"");
        }
    }

    function airdrop(address[] calldata receivers) external onlyOwner {
        require(TOKENS_MINTED.current() + receivers.length <= MAX_TOKENS, "EXCEED_MAX_TOKENS");
        for (uint256 i = 0; i < receivers.length; i++) {
             TOKENS_MINTED.increment();
            _mint(receivers[i], PASS_ID, 1 ,"");
        }
    }

    function presale(bytes memory signature) external payable {
        require(presaleLive, "PRESALE_IS_NOT_ACTIVE");
        require(TOKENS_MINTED.current() + 1 <= MAX_TOKENS, "EXCEED_MAX_TOKENS");
        require(TOKEN_PRICE <= msg.value, "INSUFFICIENT_ETH");
        require(matchAddresSigner(signature), "DIRECT_MINT_DISALLOWED");
        require(!buyersList[msg.sender], "ALREADY_MINTED");
        buyersList[msg.sender] = true;
        TOKENS_MINTED.increment();
        _mint(msg.sender, OG_PASS_ID, 1, "");
    }

    function buy() external payable {
        require(saleLive, "SALE_IS_NOT_ACTIVE");
        require(TOKENS_MINTED.current() + 1 <= MAX_TOKENS, "EXCEED_MAX_TOKENS");
        require(TOKEN_PRICE <= msg.value, "INSUFFICIENT_ETH");
        TOKENS_MINTED.increment();
        _mint(msg.sender, PASS_ID, 1, "");  
    }
    
    function withdraw() external {
         uint256 currentBalance = address(this).balance;
         payable(0xc640E8B617F71E32f4c664Ea30921dAbF7870144).transfer(currentBalance * 210 / 1000);
         payable(0xe72441A43Ed985a9E3D43c11a7FcE93Dd282FF03).transfer(currentBalance * 200 / 1000);
         payable(0x683E1164Cf26875710737c77fBbE9AF8abCcd0AD).transfer(currentBalance * 165 / 1000);
         payable(0xb53b491e917Eefe9c4d713870B9a08D630670245).transfer(currentBalance * 150 / 1000);
         payable(0x11111F01570EeAA3e5a2Fd51f4A2f127661B9834).transfer(currentBalance * 80 / 1000);
         payable(0xE9D0BD5520af8c9ad20e12801315117dE9958149).transfer(currentBalance * 50 / 1000);
         payable(0x9178bCf3A4C25B9A321EDFE7360fA587f7bD10fd).transfer(currentBalance * 50 / 1000);
         payable(0x15A294789F34F91b03ec8a005fd27b13005f302e).transfer(currentBalance * 50 / 1000);
         payable(0xeD9C842645D9a2Bb66d4EAC77857768071384447).transfer(currentBalance * 25 / 1000);
         payable(0xe574a394e6BB6543e7726A7925f12bec531bdc7D).transfer(currentBalance * 10 / 1000);
         payable(0xc0F030eac8b588817f8dA16b9a2CDCcc6451B25c).transfer(address(this).balance);
    }
    
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"TOKENS_MINTED","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"airdropOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyersList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":"bytes","name":"signature","type":"bytes"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273ebc4c5905e8813bb556636adebcbbb0822a84e14600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405180608001604052806055815260200162004aee605591396200009281620000b960201b60201c565b50620000b3620000a7620000d560201b60201c565b620000dd60201b60201c565b620002b8565b8060029080519060200190620000d1929190620001a3565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b19062000253565b90600052602060002090601f016020900481019282620001d5576000855562000221565b82601f10620001f057805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022057825182559160200191906001019062000203565b5b50905062000230919062000234565b5090565b5b808211156200024f57600081600090555060010162000235565b5090565b600060028204905060018216806200026c57607f821691505b6020821081141562000283576200028262000289565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61482680620002c86000396000f3fe6080604052600436106101385760003560e01c806383a9e049116100ab578063cc6c41e61161006f578063cc6c41e6146103b6578063dac515ba146103f3578063e081b7811461041c578063e985e9c514610447578063f242432a14610484578063f2fde38b146104ad5761013f565b806383a9e049146103025780638da5cb5b1461032d578063a22cb46514610358578063a6f2ae3a14610381578063b215e28c1461038b5761013f565b80632eb2c2d6116100fd5780632eb2c2d61461022e5780633ccfd60b146102575780634e1273f41461026e578063715018a6146102ab578063729ad39e146102c25780637bffb4ce146102eb5761013f565b8062fdd58e1461014457806301ffc9a714610181578063049c5c49146101be5780630e89341c146101d55780632665525f146102125761013f565b3661013f57005b600080fd5b34801561015057600080fd5b5061016b60048036038101906101669190612ff3565b6104d6565b6040516101789190613b97565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a391906130f8565b61059f565b6040516101b59190613835565b60405180910390f35b3480156101ca57600080fd5b506101d3610681565b005b3480156101e157600080fd5b506101fc60048036038101906101f7919061319b565b610729565b6040516102099190613895565b60405180910390f35b61022c60048036038101906102279190613152565b6107bd565b005b34801561023a57600080fd5b5061025560048036038101906102509190612e4d565b610a08565b005b34801561026357600080fd5b5061026c610aa9565b005b34801561027a57600080fd5b5061029560048036038101906102909190613080565b610f94565b6040516102a291906137dc565b60405180910390f35b3480156102b757600080fd5b506102c06110ad565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190613033565b611135565b005b3480156102f757600080fd5b50610300611280565b005b34801561030e57600080fd5b50610317611328565b6040516103249190613835565b60405180910390f35b34801561033957600080fd5b5061034261133b565b60405161034f91906136ff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612fb3565b611365565b005b61038961137b565b005b34801561039757600080fd5b506103a0611497565b6040516103ad9190613b97565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612de0565b6114a3565b6040516103ea9190613835565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613033565b6114c3565b005b34801561042857600080fd5b5061043161160f565b60405161043e9190613835565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612e0d565b611622565b60405161047b9190613835565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612f1c565b6116b6565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612de0565b611757565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90613977565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067a57506106798261184f565b5b9050919050565b6106896118b9565b73ffffffffffffffffffffffffffffffffffffffff166106a761133b565b73ffffffffffffffffffffffffffffffffffffffff16146106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490613ab7565b60405180910390fd5b600760019054906101000a900460ff1615600760016101000a81548160ff021916908315150217905550565b60606002805461073890613eb3565b80601f016020809104026020016040519081016040528092919081815260200182805461076490613eb3565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b50505050509050919050565b600760009054906101000a900460ff1661080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906139d7565b60405180910390fd5b610378600161081b60046118c1565b6108259190613d05565b1115610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90613a17565b60405180910390fd5b34670138a388a43c000011156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613b77565b60405180910390fd5b6108ba816118cf565b6108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090613937565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613b17565b60405180910390fd5b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109e860046119c3565b610a053360006001604051806020016040528060008152506119d9565b50565b610a106118b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5585610a506118b9565b611622565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613a57565b60405180910390fd5b610aa28585858585611b6f565b5050505050565b600047905073c640e8b617f71e32f4c664ea30921dabf787014473ffffffffffffffffffffffffffffffffffffffff166108fc6103e860d284610aec9190613d8c565b610af69190613d5b565b9081150290604051600060405180830381858888f19350505050158015610b21573d6000803e3d6000fd5b5073e72441a43ed985a9e3d43c11a7fce93dd282ff0373ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c884610b609190613d8c565b610b6a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610b95573d6000803e3d6000fd5b5073683e1164cf26875710737c77fbbe9af8abccd0ad73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860a584610bd49190613d8c565b610bde9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b5073b53b491e917eefe9c4d713870b9a08d63067024573ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684610c489190613d8c565b610c529190613d5b565b9081150290604051600060405180830381858888f19350505050158015610c7d573d6000803e3d6000fd5b507311111f01570eeaa3e5a2fd51f4a2f127661b983473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8605084610cbc9190613d8c565b610cc69190613d5b565b9081150290604051600060405180830381858888f19350505050158015610cf1573d6000803e3d6000fd5b5073e9d0bd5520af8c9ad20e12801315117de995814973ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610d309190613d8c565b610d3a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610d65573d6000803e3d6000fd5b50739178bcf3a4c25b9a321edfe7360fa587f7bd10fd73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610da49190613d8c565b610dae9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610dd9573d6000803e3d6000fd5b507315a294789f34f91b03ec8a005fd27b13005f302e73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610e189190613d8c565b610e229190613d5b565b9081150290604051600060405180830381858888f19350505050158015610e4d573d6000803e3d6000fd5b5073ed9c842645d9a2bb66d4eac7785776807138444773ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984610e8c9190613d8c565b610e969190613d5b565b9081150290604051600060405180830381858888f19350505050158015610ec1573d6000803e3d6000fd5b5073e574a394e6bb6543e7726a7925f12bec531bdc7d73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600a84610f009190613d8c565b610f0a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610f35573d6000803e3d6000fd5b5073c0f030eac8b588817f8da16b9a2cdccc6451b25c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f90573d6000803e3d6000fd5b5050565b60608151835114610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190613af7565b60405180910390fd5b6000835167ffffffffffffffff811115610ff757610ff6614078565b5b6040519080825280602002602001820160405280156110255781602001602082028036833780820191505090505b50905060005b84518110156110a25761107285828151811061104a57611049614049565b5b602002602001015185838151811061106557611064614049565b5b60200260200101516104d6565b82828151811061108557611084614049565b5b6020026020010181815250508061109b90613f16565b905061102b565b508091505092915050565b6110b56118b9565b73ffffffffffffffffffffffffffffffffffffffff166110d361133b565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613ab7565b60405180910390fd5b6111336000611e83565b565b61113d6118b9565b73ffffffffffffffffffffffffffffffffffffffff1661115b61133b565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613ab7565b60405180910390fd5b610378828290506111c260046118c1565b6111cc9190613d05565b111561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490613a17565b60405180910390fd5b60005b8282905081101561127b5761122560046119c3565b61126883838381811061123b5761123a614049565b5b90506020020160208101906112509190612de0565b600180604051806020016040528060008152506119d9565b808061127390613f16565b915050611210565b505050565b6112886118b9565b73ffffffffffffffffffffffffffffffffffffffff166112a661133b565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613ab7565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600760009054906101000a900460ff1681565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113776113706118b9565b8383611f49565b5050565b600760019054906101000a900460ff166113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613917565b60405180910390fd5b61037860016113d960046118c1565b6113e39190613d05565b1115611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613a17565b60405180910390fd5b34670138a388a43c0000111561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613b77565b60405180910390fd5b61147960046119c3565b61149533600180604051806020016040528060008152506119d9565b565b60048060000154905081565b60066020528060005260406000206000915054906101000a900460ff1681565b6114cb6118b9565b73ffffffffffffffffffffffffffffffffffffffff166114e961133b565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613ab7565b60405180910390fd5b6103788282905061155060046118c1565b61155a9190613d05565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613a17565b60405180910390fd5b60005b8282905081101561160a576115b360046119c3565b6115f78383838181106115c9576115c8614049565b5b90506020020160208101906115de9190612de0565b60006001604051806020016040528060008152506119d9565b808061160290613f16565b91505061159e565b505050565b600760019054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116be6118b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117045750611703856116fe6118b9565b611622565b5b611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a906139b7565b60405180910390fd5b61175085858585856120b6565b5050505050565b61175f6118b9565b73ffffffffffffffffffffffffffffffffffffffff1661177d61133b565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613997565b60405180910390fd5b61184c81611e83565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081600001549050919050565b600080336040518060400160405280600d81526020017f385349414e5f50524553414c450000000000000000000000000000000000000081525060405160200161191a9291906136b1565b6040516020818303038152906040528051906020012060405160200161194091906136d9565b60405160208183030381529060405280519060200120905061196b838261233890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613b57565b60405180910390fd5b6000611a536118b9565b9050611a7481600087611a658861235f565b611a6e8861235f565b876123d9565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad39190613d05565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b51929190613bb2565b60405180910390a4611b68816000878787876123e1565b5050505050565b8151835114611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613a37565b60405180910390fd5b6000611c2d6118b9565b9050611c3d8187878787876123d9565b60005b8451811015611dee576000858281518110611c5e57611c5d614049565b5b602002602001015190506000858381518110611c7d57611c7c614049565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613a97565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd39190613d05565b9250508190555050505080611de790613f16565b9050611c40565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e659291906137fe565b60405180910390a4611e7b8187878787876125c8565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90613ad7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a99190613835565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90613a37565b60405180910390fd5b60006121306118b9565b90506121508187876121418861235f565b61214a8861235f565b876123d9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613a97565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229c9190613d05565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612319929190613bb2565b60405180910390a461232f8288888888886123e1565b50505050505050565b600080600061234785856127af565b9150915061235481612832565b819250505092915050565b60606000600167ffffffffffffffff81111561237e5761237d614078565b5b6040519080825280602002602001820160405280156123ac5781602001602082028036833780820191505090505b50905082816000815181106123c4576123c3614049565b5b60200260200101818152505080915050919050565b505050505050565b6124008473ffffffffffffffffffffffffffffffffffffffff16612a07565b156125c0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612446959493929190613782565b602060405180830381600087803b15801561246057600080fd5b505af192505050801561249157506040513d601f19601f8201168201806040525081019061248e9190613125565b60015b6125375761249d6140a7565b806308c379a014156124fa57506124b26146fe565b806124bd57506124fc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f19190613895565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e906138d7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906138f7565b60405180910390fd5b505b505050505050565b6125e78473ffffffffffffffffffffffffffffffffffffffff16612a07565b156127a7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161262d95949392919061371a565b602060405180830381600087803b15801561264757600080fd5b505af192505050801561267857506040513d601f19601f820116820180604052508101906126759190613125565b60015b61271e576126846140a7565b806308c379a014156126e157506126996146fe565b806126a457506126e3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d89190613895565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612715906138d7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906138f7565b60405180910390fd5b505b505050505050565b6000806041835114156127f15760008060006020860151925060408601519150606086015160001a90506127e587828585612a1a565b9450945050505061282b565b604083511415612822576000806020850151915060408501519050612817868383612b27565b93509350505061282b565b60006002915091505b9250929050565b6000600481111561284657612845613feb565b5b81600481111561285957612858613feb565b5b141561286457612a04565b6001600481111561287857612877613feb565b5b81600481111561288b5761288a613feb565b5b14156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906138b7565b60405180910390fd5b600260048111156128e0576128df613feb565b5b8160048111156128f3576128f2613feb565b5b1415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90613957565b60405180910390fd5b6003600481111561294857612947613feb565b5b81600481111561295b5761295a613feb565b5b141561299c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612993906139f7565b60405180910390fd5b6004808111156129af576129ae613feb565b5b8160048111156129c2576129c1613feb565b5b1415612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fa90613a77565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612a55576000600391509150612b1e565b601b8560ff1614158015612a6d5750601c8560ff1614155b15612a7f576000600491509150612b1e565b600060018787878760405160008152602001604052604051612aa49493929190613850565b6020604051602081039080840390855afa158015612ac6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1557600060019250925050612b1e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612b6787828885612a1a565b935093505050935093915050565b6000612b88612b8384613c00565b613bdb565b90508083825260208201905082856020860282011115612bab57612baa6140d3565b5b60005b85811015612bdb5781612bc18882612c97565b845260208401935060208301925050600181019050612bae565b5050509392505050565b6000612bf8612bf384613c2c565b613bdb565b90508083825260208201905082856020860282011115612c1b57612c1a6140d3565b5b60005b85811015612c4b5781612c318882612dcb565b845260208401935060208301925050600181019050612c1e565b5050509392505050565b6000612c68612c6384613c58565b613bdb565b905082815260208101848484011115612c8457612c836140d8565b5b612c8f848285613e71565b509392505050565b600081359050612ca681614794565b92915050565b60008083601f840112612cc257612cc16140ce565b5b8235905067ffffffffffffffff811115612cdf57612cde6140c9565b5b602083019150836020820283011115612cfb57612cfa6140d3565b5b9250929050565b600082601f830112612d1757612d166140ce565b5b8135612d27848260208601612b75565b91505092915050565b600082601f830112612d4557612d446140ce565b5b8135612d55848260208601612be5565b91505092915050565b600081359050612d6d816147ab565b92915050565b600081359050612d82816147c2565b92915050565b600081519050612d97816147c2565b92915050565b600082601f830112612db257612db16140ce565b5b8135612dc2848260208601612c55565b91505092915050565b600081359050612dda816147d9565b92915050565b600060208284031215612df657612df56140e2565b5b6000612e0484828501612c97565b91505092915050565b60008060408385031215612e2457612e236140e2565b5b6000612e3285828601612c97565b9250506020612e4385828601612c97565b9150509250929050565b600080600080600060a08688031215612e6957612e686140e2565b5b6000612e7788828901612c97565b9550506020612e8888828901612c97565b945050604086013567ffffffffffffffff811115612ea957612ea86140dd565b5b612eb588828901612d30565b935050606086013567ffffffffffffffff811115612ed657612ed56140dd565b5b612ee288828901612d30565b925050608086013567ffffffffffffffff811115612f0357612f026140dd565b5b612f0f88828901612d9d565b9150509295509295909350565b600080600080600060a08688031215612f3857612f376140e2565b5b6000612f4688828901612c97565b9550506020612f5788828901612c97565b9450506040612f6888828901612dcb565b9350506060612f7988828901612dcb565b925050608086013567ffffffffffffffff811115612f9a57612f996140dd565b5b612fa688828901612d9d565b9150509295509295909350565b60008060408385031215612fca57612fc96140e2565b5b6000612fd885828601612c97565b9250506020612fe985828601612d5e565b9150509250929050565b6000806040838503121561300a576130096140e2565b5b600061301885828601612c97565b925050602061302985828601612dcb565b9150509250929050565b6000806020838503121561304a576130496140e2565b5b600083013567ffffffffffffffff811115613068576130676140dd565b5b61307485828601612cac565b92509250509250929050565b60008060408385031215613097576130966140e2565b5b600083013567ffffffffffffffff8111156130b5576130b46140dd565b5b6130c185828601612d02565b925050602083013567ffffffffffffffff8111156130e2576130e16140dd565b5b6130ee85828601612d30565b9150509250929050565b60006020828403121561310e5761310d6140e2565b5b600061311c84828501612d73565b91505092915050565b60006020828403121561313b5761313a6140e2565b5b600061314984828501612d88565b91505092915050565b600060208284031215613168576131676140e2565b5b600082013567ffffffffffffffff811115613186576131856140dd565b5b61319284828501612d9d565b91505092915050565b6000602082840312156131b1576131b06140e2565b5b60006131bf84828501612dcb565b91505092915050565b60006131d48383613684565b60208301905092915050565b6131e981613de6565b82525050565b6132006131fb82613de6565b613f5f565b82525050565b600061321182613c99565b61321b8185613cc7565b935061322683613c89565b8060005b8381101561325757815161323e88826131c8565b975061324983613cba565b92505060018101905061322a565b5085935050505092915050565b61326d81613df8565b82525050565b61327c81613e04565b82525050565b61329361328e82613e04565b613f71565b82525050565b60006132a482613ca4565b6132ae8185613cd8565b93506132be818560208601613e80565b6132c7816140e7565b840191505092915050565b60006132dd82613caf565b6132e78185613ce9565b93506132f7818560208601613e80565b613300816140e7565b840191505092915050565b600061331682613caf565b6133208185613cfa565b9350613330818560208601613e80565b80840191505092915050565b6000613349601883613ce9565b915061335482614112565b602082019050919050565b600061336c603483613ce9565b91506133778261413b565b604082019050919050565b600061338f602883613ce9565b915061339a8261418a565b604082019050919050565b60006133b2601283613ce9565b91506133bd826141d9565b602082019050919050565b60006133d5601683613ce9565b91506133e082614202565b602082019050919050565b60006133f8601f83613ce9565b91506134038261422b565b602082019050919050565b600061341b601c83613cfa565b915061342682614254565b601c82019050919050565b600061343e602b83613ce9565b91506134498261427d565b604082019050919050565b6000613461602683613ce9565b915061346c826142cc565b604082019050919050565b6000613484602983613ce9565b915061348f8261431b565b604082019050919050565b60006134a7601583613ce9565b91506134b28261436a565b602082019050919050565b60006134ca602283613ce9565b91506134d582614393565b604082019050919050565b60006134ed601183613ce9565b91506134f8826143e2565b602082019050919050565b6000613510602583613ce9565b915061351b8261440b565b604082019050919050565b6000613533603283613ce9565b915061353e8261445a565b604082019050919050565b6000613556602283613ce9565b9150613561826144a9565b604082019050919050565b6000613579602a83613ce9565b9150613584826144f8565b604082019050919050565b600061359c602083613ce9565b91506135a782614547565b602082019050919050565b60006135bf602983613ce9565b91506135ca82614570565b604082019050919050565b60006135e2602983613ce9565b91506135ed826145bf565b604082019050919050565b6000613605600e83613ce9565b91506136108261460e565b602082019050919050565b6000613628602883613ce9565b915061363382614637565b604082019050919050565b600061364b602183613ce9565b915061365682614686565b604082019050919050565b600061366e601083613ce9565b9150613679826146d5565b602082019050919050565b61368d81613e5a565b82525050565b61369c81613e5a565b82525050565b6136ab81613e64565b82525050565b60006136bd82856131ef565b6014820191506136cd828461330b565b91508190509392505050565b60006136e48261340e565b91506136f08284613282565b60208201915081905092915050565b600060208201905061371460008301846131e0565b92915050565b600060a08201905061372f60008301886131e0565b61373c60208301876131e0565b818103604083015261374e8186613206565b905081810360608301526137628185613206565b905081810360808301526137768184613299565b90509695505050505050565b600060a08201905061379760008301886131e0565b6137a460208301876131e0565b6137b16040830186613693565b6137be6060830185613693565b81810360808301526137d08184613299565b90509695505050505050565b600060208201905081810360008301526137f68184613206565b905092915050565b600060408201905081810360008301526138188185613206565b9050818103602083015261382c8184613206565b90509392505050565b600060208201905061384a6000830184613264565b92915050565b60006080820190506138656000830187613273565b61387260208301866136a2565b61387f6040830185613273565b61388c6060830184613273565b95945050505050565b600060208201905081810360008301526138af81846132d2565b905092915050565b600060208201905081810360008301526138d08161333c565b9050919050565b600060208201905081810360008301526138f08161335f565b9050919050565b6000602082019050818103600083015261391081613382565b9050919050565b60006020820190508181036000830152613930816133a5565b9050919050565b60006020820190508181036000830152613950816133c8565b9050919050565b60006020820190508181036000830152613970816133eb565b9050919050565b6000602082019050818103600083015261399081613431565b9050919050565b600060208201905081810360008301526139b081613454565b9050919050565b600060208201905081810360008301526139d081613477565b9050919050565b600060208201905081810360008301526139f08161349a565b9050919050565b60006020820190508181036000830152613a10816134bd565b9050919050565b60006020820190508181036000830152613a30816134e0565b9050919050565b60006020820190508181036000830152613a5081613503565b9050919050565b60006020820190508181036000830152613a7081613526565b9050919050565b60006020820190508181036000830152613a9081613549565b9050919050565b60006020820190508181036000830152613ab08161356c565b9050919050565b60006020820190508181036000830152613ad08161358f565b9050919050565b60006020820190508181036000830152613af0816135b2565b9050919050565b60006020820190508181036000830152613b10816135d5565b9050919050565b60006020820190508181036000830152613b30816135f8565b9050919050565b60006020820190508181036000830152613b508161361b565b9050919050565b60006020820190508181036000830152613b708161363e565b9050919050565b60006020820190508181036000830152613b9081613661565b9050919050565b6000602082019050613bac6000830184613693565b92915050565b6000604082019050613bc76000830185613693565b613bd46020830184613693565b9392505050565b6000613be5613bf6565b9050613bf18282613ee5565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1b57613c1a614078565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c4757613c46614078565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7357613c72614078565b5b613c7c826140e7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1082613e5a565b9150613d1b83613e5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5057613d4f613f8d565b5b828201905092915050565b6000613d6682613e5a565b9150613d7183613e5a565b925082613d8157613d80613fbc565b5b828204905092915050565b6000613d9782613e5a565b9150613da283613e5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ddb57613dda613f8d565b5b828202905092915050565b6000613df182613e3a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e9e578082015181840152602081019050613e83565b83811115613ead576000848401525b50505050565b60006002820490506001821680613ecb57607f821691505b60208210811415613edf57613ede61401a565b5b50919050565b613eee826140e7565b810181811067ffffffffffffffff82111715613f0d57613f0c614078565b5b80604052505050565b6000613f2182613e5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5457613f53613f8d565b5b600182019050919050565b6000613f6a82613f7b565b9050919050565b6000819050919050565b6000613f86826140f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140c65760046000803e6140c3600051614105565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f4449524543545f4d494e545f444953414c4c4f57454400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f50524553414c455f49535f4e4f545f4143544956450000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f4d41585f544f4b454e53000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b600060443d101561470e57614791565b614716613bf6565b60043d036004823e80513d602482011167ffffffffffffffff8211171561473e575050614791565b808201805167ffffffffffffffff81111561475c5750505050614791565b80602083010160043d038501811115614779575050505050614791565b61478882602001850186613ee5565b82955050505050505b90565b61479d81613de6565b81146147a857600080fd5b50565b6147b481613df8565b81146147bf57600080fd5b50565b6147cb81613e0e565b81146147d657600080fd5b50565b6147e281613e5a565b81146147ed57600080fd5b5056fea2646970667358221220fd154bff498586484a0b27924d0a119c7b3999340d91ed60e7cc76801872082e64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e545a354366635656724e7a52776172383371577136335370544e6271676e684a774c3166356d46533552342f7b69647d

Deployed Bytecode

0x6080604052600436106101385760003560e01c806383a9e049116100ab578063cc6c41e61161006f578063cc6c41e6146103b6578063dac515ba146103f3578063e081b7811461041c578063e985e9c514610447578063f242432a14610484578063f2fde38b146104ad5761013f565b806383a9e049146103025780638da5cb5b1461032d578063a22cb46514610358578063a6f2ae3a14610381578063b215e28c1461038b5761013f565b80632eb2c2d6116100fd5780632eb2c2d61461022e5780633ccfd60b146102575780634e1273f41461026e578063715018a6146102ab578063729ad39e146102c25780637bffb4ce146102eb5761013f565b8062fdd58e1461014457806301ffc9a714610181578063049c5c49146101be5780630e89341c146101d55780632665525f146102125761013f565b3661013f57005b600080fd5b34801561015057600080fd5b5061016b60048036038101906101669190612ff3565b6104d6565b6040516101789190613b97565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a391906130f8565b61059f565b6040516101b59190613835565b60405180910390f35b3480156101ca57600080fd5b506101d3610681565b005b3480156101e157600080fd5b506101fc60048036038101906101f7919061319b565b610729565b6040516102099190613895565b60405180910390f35b61022c60048036038101906102279190613152565b6107bd565b005b34801561023a57600080fd5b5061025560048036038101906102509190612e4d565b610a08565b005b34801561026357600080fd5b5061026c610aa9565b005b34801561027a57600080fd5b5061029560048036038101906102909190613080565b610f94565b6040516102a291906137dc565b60405180910390f35b3480156102b757600080fd5b506102c06110ad565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190613033565b611135565b005b3480156102f757600080fd5b50610300611280565b005b34801561030e57600080fd5b50610317611328565b6040516103249190613835565b60405180910390f35b34801561033957600080fd5b5061034261133b565b60405161034f91906136ff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612fb3565b611365565b005b61038961137b565b005b34801561039757600080fd5b506103a0611497565b6040516103ad9190613b97565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612de0565b6114a3565b6040516103ea9190613835565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613033565b6114c3565b005b34801561042857600080fd5b5061043161160f565b60405161043e9190613835565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612e0d565b611622565b60405161047b9190613835565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612f1c565b6116b6565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612de0565b611757565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90613977565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067a57506106798261184f565b5b9050919050565b6106896118b9565b73ffffffffffffffffffffffffffffffffffffffff166106a761133b565b73ffffffffffffffffffffffffffffffffffffffff16146106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490613ab7565b60405180910390fd5b600760019054906101000a900460ff1615600760016101000a81548160ff021916908315150217905550565b60606002805461073890613eb3565b80601f016020809104026020016040519081016040528092919081815260200182805461076490613eb3565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b50505050509050919050565b600760009054906101000a900460ff1661080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906139d7565b60405180910390fd5b610378600161081b60046118c1565b6108259190613d05565b1115610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90613a17565b60405180910390fd5b34670138a388a43c000011156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613b77565b60405180910390fd5b6108ba816118cf565b6108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090613937565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613b17565b60405180910390fd5b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109e860046119c3565b610a053360006001604051806020016040528060008152506119d9565b50565b610a106118b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5585610a506118b9565b611622565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613a57565b60405180910390fd5b610aa28585858585611b6f565b5050505050565b600047905073c640e8b617f71e32f4c664ea30921dabf787014473ffffffffffffffffffffffffffffffffffffffff166108fc6103e860d284610aec9190613d8c565b610af69190613d5b565b9081150290604051600060405180830381858888f19350505050158015610b21573d6000803e3d6000fd5b5073e72441a43ed985a9e3d43c11a7fce93dd282ff0373ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c884610b609190613d8c565b610b6a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610b95573d6000803e3d6000fd5b5073683e1164cf26875710737c77fbbe9af8abccd0ad73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860a584610bd49190613d8c565b610bde9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b5073b53b491e917eefe9c4d713870b9a08d63067024573ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684610c489190613d8c565b610c529190613d5b565b9081150290604051600060405180830381858888f19350505050158015610c7d573d6000803e3d6000fd5b507311111f01570eeaa3e5a2fd51f4a2f127661b983473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8605084610cbc9190613d8c565b610cc69190613d5b565b9081150290604051600060405180830381858888f19350505050158015610cf1573d6000803e3d6000fd5b5073e9d0bd5520af8c9ad20e12801315117de995814973ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610d309190613d8c565b610d3a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610d65573d6000803e3d6000fd5b50739178bcf3a4c25b9a321edfe7360fa587f7bd10fd73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610da49190613d8c565b610dae9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610dd9573d6000803e3d6000fd5b507315a294789f34f91b03ec8a005fd27b13005f302e73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284610e189190613d8c565b610e229190613d5b565b9081150290604051600060405180830381858888f19350505050158015610e4d573d6000803e3d6000fd5b5073ed9c842645d9a2bb66d4eac7785776807138444773ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984610e8c9190613d8c565b610e969190613d5b565b9081150290604051600060405180830381858888f19350505050158015610ec1573d6000803e3d6000fd5b5073e574a394e6bb6543e7726a7925f12bec531bdc7d73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600a84610f009190613d8c565b610f0a9190613d5b565b9081150290604051600060405180830381858888f19350505050158015610f35573d6000803e3d6000fd5b5073c0f030eac8b588817f8da16b9a2cdccc6451b25c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f90573d6000803e3d6000fd5b5050565b60608151835114610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190613af7565b60405180910390fd5b6000835167ffffffffffffffff811115610ff757610ff6614078565b5b6040519080825280602002602001820160405280156110255781602001602082028036833780820191505090505b50905060005b84518110156110a25761107285828151811061104a57611049614049565b5b602002602001015185838151811061106557611064614049565b5b60200260200101516104d6565b82828151811061108557611084614049565b5b6020026020010181815250508061109b90613f16565b905061102b565b508091505092915050565b6110b56118b9565b73ffffffffffffffffffffffffffffffffffffffff166110d361133b565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613ab7565b60405180910390fd5b6111336000611e83565b565b61113d6118b9565b73ffffffffffffffffffffffffffffffffffffffff1661115b61133b565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613ab7565b60405180910390fd5b610378828290506111c260046118c1565b6111cc9190613d05565b111561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490613a17565b60405180910390fd5b60005b8282905081101561127b5761122560046119c3565b61126883838381811061123b5761123a614049565b5b90506020020160208101906112509190612de0565b600180604051806020016040528060008152506119d9565b808061127390613f16565b915050611210565b505050565b6112886118b9565b73ffffffffffffffffffffffffffffffffffffffff166112a661133b565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613ab7565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600760009054906101000a900460ff1681565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113776113706118b9565b8383611f49565b5050565b600760019054906101000a900460ff166113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613917565b60405180910390fd5b61037860016113d960046118c1565b6113e39190613d05565b1115611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613a17565b60405180910390fd5b34670138a388a43c0000111561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613b77565b60405180910390fd5b61147960046119c3565b61149533600180604051806020016040528060008152506119d9565b565b60048060000154905081565b60066020528060005260406000206000915054906101000a900460ff1681565b6114cb6118b9565b73ffffffffffffffffffffffffffffffffffffffff166114e961133b565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613ab7565b60405180910390fd5b6103788282905061155060046118c1565b61155a9190613d05565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613a17565b60405180910390fd5b60005b8282905081101561160a576115b360046119c3565b6115f78383838181106115c9576115c8614049565b5b90506020020160208101906115de9190612de0565b60006001604051806020016040528060008152506119d9565b808061160290613f16565b91505061159e565b505050565b600760019054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116be6118b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117045750611703856116fe6118b9565b611622565b5b611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a906139b7565b60405180910390fd5b61175085858585856120b6565b5050505050565b61175f6118b9565b73ffffffffffffffffffffffffffffffffffffffff1661177d61133b565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613ab7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613997565b60405180910390fd5b61184c81611e83565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081600001549050919050565b600080336040518060400160405280600d81526020017f385349414e5f50524553414c450000000000000000000000000000000000000081525060405160200161191a9291906136b1565b6040516020818303038152906040528051906020012060405160200161194091906136d9565b60405160208183030381529060405280519060200120905061196b838261233890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613b57565b60405180910390fd5b6000611a536118b9565b9050611a7481600087611a658861235f565b611a6e8861235f565b876123d9565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad39190613d05565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b51929190613bb2565b60405180910390a4611b68816000878787876123e1565b5050505050565b8151835114611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613a37565b60405180910390fd5b6000611c2d6118b9565b9050611c3d8187878787876123d9565b60005b8451811015611dee576000858281518110611c5e57611c5d614049565b5b602002602001015190506000858381518110611c7d57611c7c614049565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613a97565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd39190613d05565b9250508190555050505080611de790613f16565b9050611c40565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e659291906137fe565b60405180910390a4611e7b8187878787876125c8565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90613ad7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a99190613835565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90613a37565b60405180910390fd5b60006121306118b9565b90506121508187876121418861235f565b61214a8861235f565b876123d9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613a97565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229c9190613d05565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612319929190613bb2565b60405180910390a461232f8288888888886123e1565b50505050505050565b600080600061234785856127af565b9150915061235481612832565b819250505092915050565b60606000600167ffffffffffffffff81111561237e5761237d614078565b5b6040519080825280602002602001820160405280156123ac5781602001602082028036833780820191505090505b50905082816000815181106123c4576123c3614049565b5b60200260200101818152505080915050919050565b505050505050565b6124008473ffffffffffffffffffffffffffffffffffffffff16612a07565b156125c0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612446959493929190613782565b602060405180830381600087803b15801561246057600080fd5b505af192505050801561249157506040513d601f19601f8201168201806040525081019061248e9190613125565b60015b6125375761249d6140a7565b806308c379a014156124fa57506124b26146fe565b806124bd57506124fc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f19190613895565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e906138d7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906138f7565b60405180910390fd5b505b505050505050565b6125e78473ffffffffffffffffffffffffffffffffffffffff16612a07565b156127a7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161262d95949392919061371a565b602060405180830381600087803b15801561264757600080fd5b505af192505050801561267857506040513d601f19601f820116820180604052508101906126759190613125565b60015b61271e576126846140a7565b806308c379a014156126e157506126996146fe565b806126a457506126e3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d89190613895565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612715906138d7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906138f7565b60405180910390fd5b505b505050505050565b6000806041835114156127f15760008060006020860151925060408601519150606086015160001a90506127e587828585612a1a565b9450945050505061282b565b604083511415612822576000806020850151915060408501519050612817868383612b27565b93509350505061282b565b60006002915091505b9250929050565b6000600481111561284657612845613feb565b5b81600481111561285957612858613feb565b5b141561286457612a04565b6001600481111561287857612877613feb565b5b81600481111561288b5761288a613feb565b5b14156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906138b7565b60405180910390fd5b600260048111156128e0576128df613feb565b5b8160048111156128f3576128f2613feb565b5b1415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90613957565b60405180910390fd5b6003600481111561294857612947613feb565b5b81600481111561295b5761295a613feb565b5b141561299c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612993906139f7565b60405180910390fd5b6004808111156129af576129ae613feb565b5b8160048111156129c2576129c1613feb565b5b1415612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fa90613a77565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612a55576000600391509150612b1e565b601b8560ff1614158015612a6d5750601c8560ff1614155b15612a7f576000600491509150612b1e565b600060018787878760405160008152602001604052604051612aa49493929190613850565b6020604051602081039080840390855afa158015612ac6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1557600060019250925050612b1e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612b6787828885612a1a565b935093505050935093915050565b6000612b88612b8384613c00565b613bdb565b90508083825260208201905082856020860282011115612bab57612baa6140d3565b5b60005b85811015612bdb5781612bc18882612c97565b845260208401935060208301925050600181019050612bae565b5050509392505050565b6000612bf8612bf384613c2c565b613bdb565b90508083825260208201905082856020860282011115612c1b57612c1a6140d3565b5b60005b85811015612c4b5781612c318882612dcb565b845260208401935060208301925050600181019050612c1e565b5050509392505050565b6000612c68612c6384613c58565b613bdb565b905082815260208101848484011115612c8457612c836140d8565b5b612c8f848285613e71565b509392505050565b600081359050612ca681614794565b92915050565b60008083601f840112612cc257612cc16140ce565b5b8235905067ffffffffffffffff811115612cdf57612cde6140c9565b5b602083019150836020820283011115612cfb57612cfa6140d3565b5b9250929050565b600082601f830112612d1757612d166140ce565b5b8135612d27848260208601612b75565b91505092915050565b600082601f830112612d4557612d446140ce565b5b8135612d55848260208601612be5565b91505092915050565b600081359050612d6d816147ab565b92915050565b600081359050612d82816147c2565b92915050565b600081519050612d97816147c2565b92915050565b600082601f830112612db257612db16140ce565b5b8135612dc2848260208601612c55565b91505092915050565b600081359050612dda816147d9565b92915050565b600060208284031215612df657612df56140e2565b5b6000612e0484828501612c97565b91505092915050565b60008060408385031215612e2457612e236140e2565b5b6000612e3285828601612c97565b9250506020612e4385828601612c97565b9150509250929050565b600080600080600060a08688031215612e6957612e686140e2565b5b6000612e7788828901612c97565b9550506020612e8888828901612c97565b945050604086013567ffffffffffffffff811115612ea957612ea86140dd565b5b612eb588828901612d30565b935050606086013567ffffffffffffffff811115612ed657612ed56140dd565b5b612ee288828901612d30565b925050608086013567ffffffffffffffff811115612f0357612f026140dd565b5b612f0f88828901612d9d565b9150509295509295909350565b600080600080600060a08688031215612f3857612f376140e2565b5b6000612f4688828901612c97565b9550506020612f5788828901612c97565b9450506040612f6888828901612dcb565b9350506060612f7988828901612dcb565b925050608086013567ffffffffffffffff811115612f9a57612f996140dd565b5b612fa688828901612d9d565b9150509295509295909350565b60008060408385031215612fca57612fc96140e2565b5b6000612fd885828601612c97565b9250506020612fe985828601612d5e565b9150509250929050565b6000806040838503121561300a576130096140e2565b5b600061301885828601612c97565b925050602061302985828601612dcb565b9150509250929050565b6000806020838503121561304a576130496140e2565b5b600083013567ffffffffffffffff811115613068576130676140dd565b5b61307485828601612cac565b92509250509250929050565b60008060408385031215613097576130966140e2565b5b600083013567ffffffffffffffff8111156130b5576130b46140dd565b5b6130c185828601612d02565b925050602083013567ffffffffffffffff8111156130e2576130e16140dd565b5b6130ee85828601612d30565b9150509250929050565b60006020828403121561310e5761310d6140e2565b5b600061311c84828501612d73565b91505092915050565b60006020828403121561313b5761313a6140e2565b5b600061314984828501612d88565b91505092915050565b600060208284031215613168576131676140e2565b5b600082013567ffffffffffffffff811115613186576131856140dd565b5b61319284828501612d9d565b91505092915050565b6000602082840312156131b1576131b06140e2565b5b60006131bf84828501612dcb565b91505092915050565b60006131d48383613684565b60208301905092915050565b6131e981613de6565b82525050565b6132006131fb82613de6565b613f5f565b82525050565b600061321182613c99565b61321b8185613cc7565b935061322683613c89565b8060005b8381101561325757815161323e88826131c8565b975061324983613cba565b92505060018101905061322a565b5085935050505092915050565b61326d81613df8565b82525050565b61327c81613e04565b82525050565b61329361328e82613e04565b613f71565b82525050565b60006132a482613ca4565b6132ae8185613cd8565b93506132be818560208601613e80565b6132c7816140e7565b840191505092915050565b60006132dd82613caf565b6132e78185613ce9565b93506132f7818560208601613e80565b613300816140e7565b840191505092915050565b600061331682613caf565b6133208185613cfa565b9350613330818560208601613e80565b80840191505092915050565b6000613349601883613ce9565b915061335482614112565b602082019050919050565b600061336c603483613ce9565b91506133778261413b565b604082019050919050565b600061338f602883613ce9565b915061339a8261418a565b604082019050919050565b60006133b2601283613ce9565b91506133bd826141d9565b602082019050919050565b60006133d5601683613ce9565b91506133e082614202565b602082019050919050565b60006133f8601f83613ce9565b91506134038261422b565b602082019050919050565b600061341b601c83613cfa565b915061342682614254565b601c82019050919050565b600061343e602b83613ce9565b91506134498261427d565b604082019050919050565b6000613461602683613ce9565b915061346c826142cc565b604082019050919050565b6000613484602983613ce9565b915061348f8261431b565b604082019050919050565b60006134a7601583613ce9565b91506134b28261436a565b602082019050919050565b60006134ca602283613ce9565b91506134d582614393565b604082019050919050565b60006134ed601183613ce9565b91506134f8826143e2565b602082019050919050565b6000613510602583613ce9565b915061351b8261440b565b604082019050919050565b6000613533603283613ce9565b915061353e8261445a565b604082019050919050565b6000613556602283613ce9565b9150613561826144a9565b604082019050919050565b6000613579602a83613ce9565b9150613584826144f8565b604082019050919050565b600061359c602083613ce9565b91506135a782614547565b602082019050919050565b60006135bf602983613ce9565b91506135ca82614570565b604082019050919050565b60006135e2602983613ce9565b91506135ed826145bf565b604082019050919050565b6000613605600e83613ce9565b91506136108261460e565b602082019050919050565b6000613628602883613ce9565b915061363382614637565b604082019050919050565b600061364b602183613ce9565b915061365682614686565b604082019050919050565b600061366e601083613ce9565b9150613679826146d5565b602082019050919050565b61368d81613e5a565b82525050565b61369c81613e5a565b82525050565b6136ab81613e64565b82525050565b60006136bd82856131ef565b6014820191506136cd828461330b565b91508190509392505050565b60006136e48261340e565b91506136f08284613282565b60208201915081905092915050565b600060208201905061371460008301846131e0565b92915050565b600060a08201905061372f60008301886131e0565b61373c60208301876131e0565b818103604083015261374e8186613206565b905081810360608301526137628185613206565b905081810360808301526137768184613299565b90509695505050505050565b600060a08201905061379760008301886131e0565b6137a460208301876131e0565b6137b16040830186613693565b6137be6060830185613693565b81810360808301526137d08184613299565b90509695505050505050565b600060208201905081810360008301526137f68184613206565b905092915050565b600060408201905081810360008301526138188185613206565b9050818103602083015261382c8184613206565b90509392505050565b600060208201905061384a6000830184613264565b92915050565b60006080820190506138656000830187613273565b61387260208301866136a2565b61387f6040830185613273565b61388c6060830184613273565b95945050505050565b600060208201905081810360008301526138af81846132d2565b905092915050565b600060208201905081810360008301526138d08161333c565b9050919050565b600060208201905081810360008301526138f08161335f565b9050919050565b6000602082019050818103600083015261391081613382565b9050919050565b60006020820190508181036000830152613930816133a5565b9050919050565b60006020820190508181036000830152613950816133c8565b9050919050565b60006020820190508181036000830152613970816133eb565b9050919050565b6000602082019050818103600083015261399081613431565b9050919050565b600060208201905081810360008301526139b081613454565b9050919050565b600060208201905081810360008301526139d081613477565b9050919050565b600060208201905081810360008301526139f08161349a565b9050919050565b60006020820190508181036000830152613a10816134bd565b9050919050565b60006020820190508181036000830152613a30816134e0565b9050919050565b60006020820190508181036000830152613a5081613503565b9050919050565b60006020820190508181036000830152613a7081613526565b9050919050565b60006020820190508181036000830152613a9081613549565b9050919050565b60006020820190508181036000830152613ab08161356c565b9050919050565b60006020820190508181036000830152613ad08161358f565b9050919050565b60006020820190508181036000830152613af0816135b2565b9050919050565b60006020820190508181036000830152613b10816135d5565b9050919050565b60006020820190508181036000830152613b30816135f8565b9050919050565b60006020820190508181036000830152613b508161361b565b9050919050565b60006020820190508181036000830152613b708161363e565b9050919050565b60006020820190508181036000830152613b9081613661565b9050919050565b6000602082019050613bac6000830184613693565b92915050565b6000604082019050613bc76000830185613693565b613bd46020830184613693565b9392505050565b6000613be5613bf6565b9050613bf18282613ee5565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1b57613c1a614078565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c4757613c46614078565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7357613c72614078565b5b613c7c826140e7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1082613e5a565b9150613d1b83613e5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5057613d4f613f8d565b5b828201905092915050565b6000613d6682613e5a565b9150613d7183613e5a565b925082613d8157613d80613fbc565b5b828204905092915050565b6000613d9782613e5a565b9150613da283613e5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ddb57613dda613f8d565b5b828202905092915050565b6000613df182613e3a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e9e578082015181840152602081019050613e83565b83811115613ead576000848401525b50505050565b60006002820490506001821680613ecb57607f821691505b60208210811415613edf57613ede61401a565b5b50919050565b613eee826140e7565b810181811067ffffffffffffffff82111715613f0d57613f0c614078565b5b80604052505050565b6000613f2182613e5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5457613f53613f8d565b5b600182019050919050565b6000613f6a82613f7b565b9050919050565b6000819050919050565b6000613f86826140f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140c65760046000803e6140c3600051614105565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f4449524543545f4d494e545f444953414c4c4f57454400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f50524553414c455f49535f4e4f545f4143544956450000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f4d41585f544f4b454e53000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b600060443d101561470e57614791565b614716613bf6565b60043d036004823e80513d602482011167ffffffffffffffff8211171561473e575050614791565b808201805167ffffffffffffffff81111561475c5750505050614791565b80602083010160043d038501811115614779575050505050614791565b61478882602001850186613ee5565b82955050505050505b90565b61479d81613de6565b81146147a857600080fd5b50565b6147b481613df8565b81146147bf57600080fd5b50565b6147cb81613e0e565b81146147d657600080fd5b50565b6147e281613e5a565b81146147ed57600080fd5b5056fea2646970667358221220fd154bff498586484a0b27924d0a119c7b3999340d91ed60e7cc76801872082e64736f6c63430008070033

Deployed Bytecode Sourcemap

49659:4023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35407:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34430:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50804:86;;;;;;;;;;;;;:::i;:::-;;35151:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51580:526;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37346:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52444:1194;;;;;;;;;;;;;:::i;:::-;;35804:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15515:103;;;;;;;;;;;;;:::i;:::-;;51241:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50701:95;;;;;;;;;;;;;:::i;:::-;;50188:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14864:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36401:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52114:318;;;:::i;:::-;;49794:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50139:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50898:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50218:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36628:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36868:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15773:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35407:231;35493:7;35540:1;35521:21;;:7;:21;;;;35513:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35608:9;:13;35618:2;35608:13;;;;;;;;;;;:22;35622:7;35608:22;;;;;;;;;;;;;;;;35601:29;;35407:231;;;;:::o;34430:310::-;34532:4;34584:26;34569:41;;;:11;:41;;;;:110;;;;34642:37;34627:52;;;:11;:52;;;;34569:110;:163;;;;34696:36;34720:11;34696:23;:36::i;:::-;34569:163;34549:183;;34430:310;;;:::o;50804:86::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50874:8:::1;;;;;;;;;;;50873:9;50862:8;;:20;;;;;;;;;;;;;;;;;;50804:86::o:0;35151:105::-;35211:13;35244:4;35237:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35151:105;;;:::o;51580:526::-;51657:11;;;;;;;;;;;51649:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49868:3;51739:1;51713:23;:13;:21;:23::i;:::-;:27;;;;:::i;:::-;:41;;51705:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51810:9;49982:11;51795:24;;51787:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51859:28;51877:9;51859:17;:28::i;:::-;51851:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51934:10;:22;51945:10;51934:22;;;;;;;;;;;;;;;;;;;;;;;;;51933:23;51925:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52011:4;51986:10;:22;51997:10;51986:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52026:25;:13;:23;:25::i;:::-;52062:36;52068:10;49908:1;52092;52062:36;;;;;;;;;;;;:5;:36::i;:::-;51580:526;:::o;37346:442::-;37587:12;:10;:12::i;:::-;37579:20;;:4;:20;;;:60;;;;37603:36;37620:4;37626:12;:10;:12::i;:::-;37603:16;:36::i;:::-;37579:60;37557:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37728:52;37751:4;37757:2;37761:3;37766:7;37775:4;37728:22;:52::i;:::-;37346:442;;;;;:::o;52444:1194::-;52485:22;52510:21;52485:46;;52551:42;52543:60;;:89;52627:4;52621:3;52604:14;:20;;;;:::i;:::-;:27;;;;:::i;:::-;52543:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52652:42;52644:60;;:89;52728:4;52722:3;52705:14;:20;;;;:::i;:::-;:27;;;;:::i;:::-;52644:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52753:42;52745:60;;:89;52829:4;52823:3;52806:14;:20;;;;:::i;:::-;:27;;;;:::i;:::-;52745:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52854:42;52846:60;;:89;52930:4;52924:3;52907:14;:20;;;;:::i;:::-;:27;;;;:::i;:::-;52846:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52955:42;52947:60;;:88;53030:4;53025:2;53008:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;52947:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53055:42;53047:60;;:88;53130:4;53125:2;53108:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;53047:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53155:42;53147:60;;:88;53230:4;53225:2;53208:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;53147:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53255:42;53247:60;;:88;53330:4;53325:2;53308:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;53247:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53355:42;53347:60;;:88;53430:4;53425:2;53408:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;53347:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53455:42;53447:60;;:88;53530:4;53525:2;53508:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;53447:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53555:42;53547:60;;:83;53608:21;53547:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52473:1165;52444:1194::o;35804:524::-;35960:16;36021:3;:10;36002:8;:15;:29;35994:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;36090:30;36137:8;:15;36123:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36090:63;;36171:9;36166:122;36190:8;:15;36186:1;:19;36166:122;;;36246:30;36256:8;36265:1;36256:11;;;;;;;;:::i;:::-;;;;;;;;36269:3;36273:1;36269:6;;;;;;;;:::i;:::-;;;;;;;;36246:9;:30::i;:::-;36227:13;36241:1;36227:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;36207:3;;;;:::i;:::-;;;36166:122;;;;36307:13;36300:20;;;35804:524;;;;:::o;15515:103::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15580:30:::1;15607:1;15580:18;:30::i;:::-;15515:103::o:0;51241:331::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49868:3:::1;51352:9;;:16;;51326:23;:13;:21;:23::i;:::-;:42;;;;:::i;:::-;:56;;51318:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;51420:9;51415:150;51439:9;;:16;;51435:1;:20;51415:150;;;51478:25;:13;:23;:25::i;:::-;51518:35;51524:9;;51534:1;51524:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49943:1;51547::::0;51518:35:::1;;;;;;;;;;;::::0;:5:::1;:35::i;:::-;51457:3;;;;;:::i;:::-;;;;51415:150;;;;51241:331:::0;;:::o;50701:95::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50777:11:::1;;;;;;;;;;;50776:12;50762:11;;:26;;;;;;;;;;;;;;;;;;50701:95::o:0;50188:23::-;;;;;;;;;;;;;:::o;14864:87::-;14910:7;14937:6;;;;;;;;;;;14930:13;;14864:87;:::o;36401:155::-;36496:52;36515:12;:10;:12::i;:::-;36529:8;36539;36496:18;:52::i;:::-;36401:155;;:::o;52114:318::-;52165:8;;;;;;;;;;;52157:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;49868:3;52241:1;52215:23;:13;:21;:23::i;:::-;:27;;;;:::i;:::-;:41;;52207:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52312:9;49982:11;52297:24;;52289:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52353:25;:13;:23;:25::i;:::-;52389:33;52395:10;49943:1;52416;52389:33;;;;;;;;;;;;:5;:33::i;:::-;52114:318::o;49794:37::-;;;;;;;;;:::o;50139:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;50898:335::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49868:3:::1;51011:9;;:16;;50985:23;:13;:21;:23::i;:::-;:42;;;;:::i;:::-;:56;;50977:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;51079:9;51074:152;51098:9;;:16;;51094:1;:20;51074:152;;;51136:25;:13;:23;:25::i;:::-;51176:38;51182:9;;51192:1;51182:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49908:1;51208;51176:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;51116:3;;;;;:::i;:::-;;;;51074:152;;;;50898:335:::0;;:::o;50218:20::-;;;;;;;;;;;;;:::o;36628:168::-;36727:4;36751:18;:27;36770:7;36751:27;;;;;;;;;;;;;;;:37;36779:8;36751:37;;;;;;;;;;;;;;;;;;;;;;;;;36744:44;;36628:168;;;;:::o;36868:401::-;37084:12;:10;:12::i;:::-;37076:20;;:4;:20;;;:60;;;;37100:36;37117:4;37123:12;:10;:12::i;:::-;37100:16;:36::i;:::-;37076:60;37054:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;37216:45;37234:4;37240:2;37244;37248:6;37256:4;37216:17;:45::i;:::-;36868:401;;;;;:::o;15773:201::-;15095:12;:10;:12::i;:::-;15084:23;;:7;:5;:7::i;:::-;:23;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15882:1:::1;15862:22;;:8;:22;;;;15854:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15938:28;15957:8;15938:18;:28::i;:::-;15773:201:::0;:::o;26080:157::-;26165:4;26204:25;26189:40;;;:11;:40;;;;26182:47;;26080:157;;;:::o;13643:98::-;13696:7;13723:10;13716:17;;13643:98;:::o;850:114::-;915:7;942;:14;;;935:21;;850:114;;;:::o;50368:325::-;50440:4;50458:12;50590:10;50602:8;;;;;;;;;;;;;;;;;50573:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50563:49;;;;;;50483:130;;;;;;;;:::i;:::-;;;;;;;;;;;;;50473:153;;;;;;50458:168;;50662:23;50675:9;50662:4;:12;;:23;;;;:::i;:::-;50644:41;;:14;;;;;;;;;;;:41;;;50637:48;;;50368:325;;;:::o;972:127::-;1079:1;1061:7;:14;;;:19;;;;;;;;;;;972:127;:::o;41822:569::-;41989:1;41975:16;;:2;:16;;;;41967:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;42042:16;42061:12;:10;:12::i;:::-;42042:31;;42086:102;42107:8;42125:1;42129:2;42133:21;42151:2;42133:17;:21::i;:::-;42156:25;42174:6;42156:17;:25::i;:::-;42183:4;42086:20;:102::i;:::-;42222:6;42201:9;:13;42211:2;42201:13;;;;;;;;;;;:17;42215:2;42201:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;42281:2;42244:52;;42277:1;42244:52;;42259:8;42244:52;;;42285:2;42289:6;42244:52;;;;;;;:::i;:::-;;;;;;;;42309:74;42340:8;42358:1;42362:2;42366;42370:6;42378:4;42309:30;:74::i;:::-;41956:435;41822:569;;;;:::o;39430:1074::-;39657:7;:14;39643:3;:10;:28;39635:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39749:1;39735:16;;:2;:16;;;;39727:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39806:16;39825:12;:10;:12::i;:::-;39806:31;;39850:60;39871:8;39881:4;39887:2;39891:3;39896:7;39905:4;39850:20;:60::i;:::-;39928:9;39923:421;39947:3;:10;39943:1;:14;39923:421;;;39979:10;39992:3;39996:1;39992:6;;;;;;;;:::i;:::-;;;;;;;;39979:19;;40013:14;40030:7;40038:1;40030:10;;;;;;;;:::i;:::-;;;;;;;;40013:27;;40057:19;40079:9;:13;40089:2;40079:13;;;;;;;;;;;:19;40093:4;40079:19;;;;;;;;;;;;;;;;40057:41;;40136:6;40121:11;:21;;40113:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40269:6;40255:11;:20;40233:9;:13;40243:2;40233:13;;;;;;;;;;;:19;40247:4;40233:19;;;;;;;;;;;;;;;:42;;;;40326:6;40305:9;:13;40315:2;40305:13;;;;;;;;;;;:17;40319:2;40305:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;39964:380;;;39959:3;;;;:::i;:::-;;;39923:421;;;;40391:2;40361:47;;40385:4;40361:47;;40375:8;40361:47;;;40395:3;40400:7;40361:47;;;;;;;:::i;:::-;;;;;;;;40421:75;40457:8;40467:4;40473:2;40477:3;40482:7;40491:4;40421:35;:75::i;:::-;39624:880;39430:1074;;;;;:::o;16134:191::-;16208:16;16227:6;;;;;;;;;;;16208:25;;16253:8;16244:6;;:17;;;;;;;;;;;;;;;;;;16308:8;16277:40;;16298:8;16277:40;;;;;;;;;;;;16197:128;16134:191;:::o;45616:331::-;45771:8;45762:17;;:5;:17;;;;45754:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45874:8;45836:18;:25;45855:5;45836:25;;;;;;;;;;;;;;;:35;45862:8;45836:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45920:8;45898:41;;45913:5;45898:41;;;45930:8;45898:41;;;;;;:::i;:::-;;;;;;;;45616:331;;;:::o;38252:820::-;38454:1;38440:16;;:2;:16;;;;38432:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38511:16;38530:12;:10;:12::i;:::-;38511:31;;38555:96;38576:8;38586:4;38592:2;38596:21;38614:2;38596:17;:21::i;:::-;38619:25;38637:6;38619:17;:25::i;:::-;38646:4;38555:20;:96::i;:::-;38664:19;38686:9;:13;38696:2;38686:13;;;;;;;;;;;:19;38700:4;38686:19;;;;;;;;;;;;;;;;38664:41;;38739:6;38724:11;:21;;38716:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;38864:6;38850:11;:20;38828:9;:13;38838:2;38828:13;;;;;;;;;;;:19;38842:4;38828:19;;;;;;;;;;;;;;;:42;;;;38913:6;38892:9;:13;38902:2;38892:13;;;;;;;;;;;:17;38906:2;38892:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;38968:2;38937:46;;38962:4;38937:46;;38952:8;38937:46;;;38972:2;38976:6;38937:46;;;;;;;:::i;:::-;;;;;;;;38996:68;39027:8;39037:4;39043:2;39047;39051:6;39059:4;38996:30;:68::i;:::-;38421:651;;38252:820;;;;;:::o;7852:231::-;7930:7;7951:17;7970:18;7992:27;8003:4;8009:9;7992:10;:27::i;:::-;7950:69;;;;8030:18;8042:5;8030:11;:18::i;:::-;8066:9;8059:16;;;;7852:231;;;;:::o;48705:198::-;48771:16;48800:22;48839:1;48825:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48800:41;;48863:7;48852:5;48858:1;48852:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;48890:5;48883:12;;;48705:198;;;:::o;46903:221::-;;;;;;;:::o;47132:744::-;47347:15;:2;:13;;;:15::i;:::-;47343:526;;;47400:2;47383:38;;;47422:8;47432:4;47438:2;47442:6;47450:4;47383:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47379:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;47731:6;47724:14;;;;;;;;;;;:::i;:::-;;;;;;;;47379:479;;;47780:62;;;;;;;;;;:::i;:::-;;;;;;;;47379:479;47517:43;;;47505:55;;;:8;:55;;;;47501:154;;47585:50;;;;;;;;;;:::i;:::-;;;;;;;;47501:154;47456:214;47343:526;47132:744;;;;;;:::o;47884:813::-;48124:15;:2;:13;;;:15::i;:::-;48120:570;;;48177:2;48160:43;;;48204:8;48214:4;48220:3;48225:7;48234:4;48160:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48156:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;48552:6;48545:14;;;;;;;;;;;:::i;:::-;;;;;;;;48156:523;;;48601:62;;;;;;;;;;:::i;:::-;;;;;;;;48156:523;48333:48;;;48321:60;;;:8;:60;;;;48317:159;;48406:50;;;;;;;;;;:::i;:::-;;;;;;;;48317:159;48240:251;48120:570;47884:813;;;;;;:::o;5742:1308::-;5823:7;5832:12;6077:2;6057:9;:16;:22;6053:990;;;6096:9;6120;6144:7;6353:4;6342:9;6338:20;6332:27;6327:32;;6403:4;6392:9;6388:20;6382:27;6377:32;;6461:4;6450:9;6446:20;6440:27;6437:1;6432:36;6427:41;;6504:25;6515:4;6521:1;6524;6527;6504:10;:25::i;:::-;6497:32;;;;;;;;;6053:990;6571:2;6551:9;:16;:22;6547:496;;;6590:9;6614:10;6826:4;6815:9;6811:20;6805:27;6800:32;;6877:4;6866:9;6862:20;6856:27;6850:33;;6919:23;6930:4;6936:1;6939:2;6919:10;:23::i;:::-;6912:30;;;;;;;;6547:496;6991:1;6995:35;6975:56;;;;5742:1308;;;;;;:::o;4013:643::-;4091:20;4082:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;4078:571;;;4128:7;;4078:571;4189:29;4180:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;4176:473;;;4235:34;;;;;;;;;;:::i;:::-;;;;;;;;4176:473;4300:35;4291:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;4287:362;;;4352:41;;;;;;;;;;:::i;:::-;;;;;;;;4287:362;4424:30;4415:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;4411:238;;;4471:44;;;;;;;;;;:::i;:::-;;;;;;;;4411:238;4546:30;4537:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;4533:116;;;4593:44;;;;;;;;;;:::i;:::-;;;;;;;;4533:116;4013:643;;:::o;17100:387::-;17160:4;17368:12;17435:7;17423:20;17415:28;;17478:1;17471:4;:8;17464:15;;;17100:387;;;:::o;9351:1632::-;9482:7;9491:12;10416:66;10411:1;10403:10;;:79;10399:163;;;10515:1;10519:30;10499:51;;;;;;10399:163;10581:2;10576:1;:7;;;;:18;;;;;10592:2;10587:1;:7;;;;10576:18;10572:102;;;10627:1;10631:30;10611:51;;;;;;10572:102;10771:14;10788:24;10798:4;10804:1;10807;10810;10788:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10771:41;;10845:1;10827:20;;:6;:20;;;10823:103;;;10880:1;10884:29;10864:50;;;;;;;10823:103;10946:6;10954:20;10938:37;;;;;9351:1632;;;;;;;;:::o;8346:391::-;8460:7;8469:12;8494:9;8514:7;8569:66;8565:2;8561:75;8556:80;;8673:2;8668;8663:3;8659:12;8655:21;8650:26;;8704:25;8715:4;8721:1;8724;8727;8704:10;:25::i;:::-;8697:32;;;;;;8346:391;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:568::-;2148:8;2158:6;2208:3;2201:4;2193:6;2189:17;2185:27;2175:122;;2216:79;;:::i;:::-;2175:122;2329:6;2316:20;2306:30;;2359:18;2351:6;2348:30;2345:117;;;2381:79;;:::i;:::-;2345:117;2495:4;2487:6;2483:17;2471:29;;2549:3;2541:4;2533:6;2529:17;2519:8;2515:32;2512:41;2509:128;;;2556:79;;:::i;:::-;2509:128;2075:568;;;;;:::o;2666:370::-;2737:5;2786:3;2779:4;2771:6;2767:17;2763:27;2753:122;;2794:79;;:::i;:::-;2753:122;2911:6;2898:20;2936:94;3026:3;3018:6;3011:4;3003:6;2999:17;2936:94;:::i;:::-;2927:103;;2743:293;2666:370;;;;:::o;3059:::-;3130:5;3179:3;3172:4;3164:6;3160:17;3156:27;3146:122;;3187:79;;:::i;:::-;3146:122;3304:6;3291:20;3329:94;3419:3;3411:6;3404:4;3396:6;3392:17;3329:94;:::i;:::-;3320:103;;3136:293;3059:370;;;;:::o;3435:133::-;3478:5;3516:6;3503:20;3494:29;;3532:30;3556:5;3532:30;:::i;:::-;3435:133;;;;:::o;3574:137::-;3619:5;3657:6;3644:20;3635:29;;3673:32;3699:5;3673:32;:::i;:::-;3574:137;;;;:::o;3717:141::-;3773:5;3804:6;3798:13;3789:22;;3820:32;3846:5;3820:32;:::i;:::-;3717:141;;;;:::o;3877:338::-;3932:5;3981:3;3974:4;3966:6;3962:17;3958:27;3948:122;;3989:79;;:::i;:::-;3948:122;4106:6;4093:20;4131:78;4205:3;4197:6;4190:4;4182:6;4178:17;4131:78;:::i;:::-;4122:87;;3938:277;3877:338;;;;:::o;4221:139::-;4267:5;4305:6;4292:20;4283:29;;4321:33;4348:5;4321:33;:::i;:::-;4221:139;;;;:::o;4366:329::-;4425:6;4474:2;4462:9;4453:7;4449:23;4445:32;4442:119;;;4480:79;;:::i;:::-;4442:119;4600:1;4625:53;4670:7;4661:6;4650:9;4646:22;4625:53;:::i;:::-;4615:63;;4571:117;4366:329;;;;:::o;4701:474::-;4769:6;4777;4826:2;4814:9;4805:7;4801:23;4797:32;4794:119;;;4832:79;;:::i;:::-;4794:119;4952:1;4977:53;5022:7;5013:6;5002:9;4998:22;4977:53;:::i;:::-;4967:63;;4923:117;5079:2;5105:53;5150:7;5141:6;5130:9;5126:22;5105:53;:::i;:::-;5095:63;;5050:118;4701:474;;;;;:::o;5181:1509::-;5335:6;5343;5351;5359;5367;5416:3;5404:9;5395:7;5391:23;5387:33;5384:120;;;5423:79;;:::i;:::-;5384:120;5543:1;5568:53;5613:7;5604:6;5593:9;5589:22;5568:53;:::i;:::-;5558:63;;5514:117;5670:2;5696:53;5741:7;5732:6;5721:9;5717:22;5696:53;:::i;:::-;5686:63;;5641:118;5826:2;5815:9;5811:18;5798:32;5857:18;5849:6;5846:30;5843:117;;;5879:79;;:::i;:::-;5843:117;5984:78;6054:7;6045:6;6034:9;6030:22;5984:78;:::i;:::-;5974:88;;5769:303;6139:2;6128:9;6124:18;6111:32;6170:18;6162:6;6159:30;6156:117;;;6192:79;;:::i;:::-;6156:117;6297:78;6367:7;6358:6;6347:9;6343:22;6297:78;:::i;:::-;6287:88;;6082:303;6452:3;6441:9;6437:19;6424:33;6484:18;6476:6;6473:30;6470:117;;;6506:79;;:::i;:::-;6470:117;6611:62;6665:7;6656:6;6645:9;6641:22;6611:62;:::i;:::-;6601:72;;6395:288;5181:1509;;;;;;;;:::o;6696:1089::-;6800:6;6808;6816;6824;6832;6881:3;6869:9;6860:7;6856:23;6852:33;6849:120;;;6888:79;;:::i;:::-;6849:120;7008:1;7033:53;7078:7;7069:6;7058:9;7054:22;7033:53;:::i;:::-;7023:63;;6979:117;7135:2;7161:53;7206:7;7197:6;7186:9;7182:22;7161:53;:::i;:::-;7151:63;;7106:118;7263:2;7289:53;7334:7;7325:6;7314:9;7310:22;7289:53;:::i;:::-;7279:63;;7234:118;7391:2;7417:53;7462:7;7453:6;7442:9;7438:22;7417:53;:::i;:::-;7407:63;;7362:118;7547:3;7536:9;7532:19;7519:33;7579:18;7571:6;7568:30;7565:117;;;7601:79;;:::i;:::-;7565:117;7706:62;7760:7;7751:6;7740:9;7736:22;7706:62;:::i;:::-;7696:72;;7490:288;6696:1089;;;;;;;;:::o;7791:468::-;7856:6;7864;7913:2;7901:9;7892:7;7888:23;7884:32;7881:119;;;7919:79;;:::i;:::-;7881:119;8039:1;8064:53;8109:7;8100:6;8089:9;8085:22;8064:53;:::i;:::-;8054:63;;8010:117;8166:2;8192:50;8234:7;8225:6;8214:9;8210:22;8192:50;:::i;:::-;8182:60;;8137:115;7791:468;;;;;:::o;8265:474::-;8333:6;8341;8390:2;8378:9;8369:7;8365:23;8361:32;8358:119;;;8396:79;;:::i;:::-;8358:119;8516:1;8541:53;8586:7;8577:6;8566:9;8562:22;8541:53;:::i;:::-;8531:63;;8487:117;8643:2;8669:53;8714:7;8705:6;8694:9;8690:22;8669:53;:::i;:::-;8659:63;;8614:118;8265:474;;;;;:::o;8745:559::-;8831:6;8839;8888:2;8876:9;8867:7;8863:23;8859:32;8856:119;;;8894:79;;:::i;:::-;8856:119;9042:1;9031:9;9027:17;9014:31;9072:18;9064:6;9061:30;9058:117;;;9094:79;;:::i;:::-;9058:117;9207:80;9279:7;9270:6;9259:9;9255:22;9207:80;:::i;:::-;9189:98;;;;8985:312;8745:559;;;;;:::o;9310:894::-;9428:6;9436;9485:2;9473:9;9464:7;9460:23;9456:32;9453:119;;;9491:79;;:::i;:::-;9453:119;9639:1;9628:9;9624:17;9611:31;9669:18;9661:6;9658:30;9655:117;;;9691:79;;:::i;:::-;9655:117;9796:78;9866:7;9857:6;9846:9;9842:22;9796:78;:::i;:::-;9786:88;;9582:302;9951:2;9940:9;9936:18;9923:32;9982:18;9974:6;9971:30;9968:117;;;10004:79;;:::i;:::-;9968:117;10109:78;10179:7;10170:6;10159:9;10155:22;10109:78;:::i;:::-;10099:88;;9894:303;9310:894;;;;;:::o;10210:327::-;10268:6;10317:2;10305:9;10296:7;10292:23;10288:32;10285:119;;;10323:79;;:::i;:::-;10285:119;10443:1;10468:52;10512:7;10503:6;10492:9;10488:22;10468:52;:::i;:::-;10458:62;;10414:116;10210:327;;;;:::o;10543:349::-;10612:6;10661:2;10649:9;10640:7;10636:23;10632:32;10629:119;;;10667:79;;:::i;:::-;10629:119;10787:1;10812:63;10867:7;10858:6;10847:9;10843:22;10812:63;:::i;:::-;10802:73;;10758:127;10543:349;;;;:::o;10898:507::-;10966:6;11015:2;11003:9;10994:7;10990:23;10986:32;10983:119;;;11021:79;;:::i;:::-;10983:119;11169:1;11158:9;11154:17;11141:31;11199:18;11191:6;11188:30;11185:117;;;11221:79;;:::i;:::-;11185:117;11326:62;11380:7;11371:6;11360:9;11356:22;11326:62;:::i;:::-;11316:72;;11112:286;10898:507;;;;:::o;11411:329::-;11470:6;11519:2;11507:9;11498:7;11494:23;11490:32;11487:119;;;11525:79;;:::i;:::-;11487:119;11645:1;11670:53;11715:7;11706:6;11695:9;11691:22;11670:53;:::i;:::-;11660:63;;11616:117;11411:329;;;;:::o;11746:179::-;11815:10;11836:46;11878:3;11870:6;11836:46;:::i;:::-;11914:4;11909:3;11905:14;11891:28;;11746:179;;;;:::o;11931:118::-;12018:24;12036:5;12018:24;:::i;:::-;12013:3;12006:37;11931:118;;:::o;12055:157::-;12160:45;12180:24;12198:5;12180:24;:::i;:::-;12160:45;:::i;:::-;12155:3;12148:58;12055:157;;:::o;12248:732::-;12367:3;12396:54;12444:5;12396:54;:::i;:::-;12466:86;12545:6;12540:3;12466:86;:::i;:::-;12459:93;;12576:56;12626:5;12576:56;:::i;:::-;12655:7;12686:1;12671:284;12696:6;12693:1;12690:13;12671:284;;;12772:6;12766:13;12799:63;12858:3;12843:13;12799:63;:::i;:::-;12792:70;;12885:60;12938:6;12885:60;:::i;:::-;12875:70;;12731:224;12718:1;12715;12711:9;12706:14;;12671:284;;;12675:14;12971:3;12964:10;;12372:608;;;12248:732;;;;:::o;12986:109::-;13067:21;13082:5;13067:21;:::i;:::-;13062:3;13055:34;12986:109;;:::o;13101:118::-;13188:24;13206:5;13188:24;:::i;:::-;13183:3;13176:37;13101:118;;:::o;13225:157::-;13330:45;13350:24;13368:5;13350:24;:::i;:::-;13330:45;:::i;:::-;13325:3;13318:58;13225:157;;:::o;13388:360::-;13474:3;13502:38;13534:5;13502:38;:::i;:::-;13556:70;13619:6;13614:3;13556:70;:::i;:::-;13549:77;;13635:52;13680:6;13675:3;13668:4;13661:5;13657:16;13635:52;:::i;:::-;13712:29;13734:6;13712:29;:::i;:::-;13707:3;13703:39;13696:46;;13478:270;13388:360;;;;:::o;13754:364::-;13842:3;13870:39;13903:5;13870:39;:::i;:::-;13925:71;13989:6;13984:3;13925:71;:::i;:::-;13918:78;;14005:52;14050:6;14045:3;14038:4;14031:5;14027:16;14005:52;:::i;:::-;14082:29;14104:6;14082:29;:::i;:::-;14077:3;14073:39;14066:46;;13846:272;13754:364;;;;:::o;14124:377::-;14230:3;14258:39;14291:5;14258:39;:::i;:::-;14313:89;14395:6;14390:3;14313:89;:::i;:::-;14306:96;;14411:52;14456:6;14451:3;14444:4;14437:5;14433:16;14411:52;:::i;:::-;14488:6;14483:3;14479:16;14472:23;;14234:267;14124:377;;;;:::o;14507:366::-;14649:3;14670:67;14734:2;14729:3;14670:67;:::i;:::-;14663:74;;14746:93;14835:3;14746:93;:::i;:::-;14864:2;14859:3;14855:12;14848:19;;14507:366;;;:::o;14879:::-;15021:3;15042:67;15106:2;15101:3;15042:67;:::i;:::-;15035:74;;15118:93;15207:3;15118:93;:::i;:::-;15236:2;15231:3;15227:12;15220:19;;14879:366;;;:::o;15251:::-;15393:3;15414:67;15478:2;15473:3;15414:67;:::i;:::-;15407:74;;15490:93;15579:3;15490:93;:::i;:::-;15608:2;15603:3;15599:12;15592:19;;15251:366;;;:::o;15623:::-;15765:3;15786:67;15850:2;15845:3;15786:67;:::i;:::-;15779:74;;15862:93;15951:3;15862:93;:::i;:::-;15980:2;15975:3;15971:12;15964:19;;15623:366;;;:::o;15995:::-;16137:3;16158:67;16222:2;16217:3;16158:67;:::i;:::-;16151:74;;16234:93;16323:3;16234:93;:::i;:::-;16352:2;16347:3;16343:12;16336:19;;15995:366;;;:::o;16367:::-;16509:3;16530:67;16594:2;16589:3;16530:67;:::i;:::-;16523:74;;16606:93;16695:3;16606:93;:::i;:::-;16724:2;16719:3;16715:12;16708:19;;16367:366;;;:::o;16739:402::-;16899:3;16920:85;17002:2;16997:3;16920:85;:::i;:::-;16913:92;;17014:93;17103:3;17014:93;:::i;:::-;17132:2;17127:3;17123:12;17116:19;;16739:402;;;:::o;17147:366::-;17289:3;17310:67;17374:2;17369:3;17310:67;:::i;:::-;17303:74;;17386:93;17475:3;17386:93;:::i;:::-;17504:2;17499:3;17495:12;17488:19;;17147:366;;;:::o;17519:::-;17661:3;17682:67;17746:2;17741:3;17682:67;:::i;:::-;17675:74;;17758:93;17847:3;17758:93;:::i;:::-;17876:2;17871:3;17867:12;17860:19;;17519:366;;;:::o;17891:::-;18033:3;18054:67;18118:2;18113:3;18054:67;:::i;:::-;18047:74;;18130:93;18219:3;18130:93;:::i;:::-;18248:2;18243:3;18239:12;18232:19;;17891:366;;;:::o;18263:::-;18405:3;18426:67;18490:2;18485:3;18426:67;:::i;:::-;18419:74;;18502:93;18591:3;18502:93;:::i;:::-;18620:2;18615:3;18611:12;18604:19;;18263:366;;;:::o;18635:::-;18777:3;18798:67;18862:2;18857:3;18798:67;:::i;:::-;18791:74;;18874:93;18963:3;18874:93;:::i;:::-;18992:2;18987:3;18983:12;18976:19;;18635:366;;;:::o;19007:::-;19149:3;19170:67;19234:2;19229:3;19170:67;:::i;:::-;19163:74;;19246:93;19335:3;19246:93;:::i;:::-;19364:2;19359:3;19355:12;19348:19;;19007:366;;;:::o;19379:::-;19521:3;19542:67;19606:2;19601:3;19542:67;:::i;:::-;19535:74;;19618:93;19707:3;19618:93;:::i;:::-;19736:2;19731:3;19727:12;19720:19;;19379:366;;;:::o;19751:::-;19893:3;19914:67;19978:2;19973:3;19914:67;:::i;:::-;19907:74;;19990:93;20079:3;19990:93;:::i;:::-;20108:2;20103:3;20099:12;20092:19;;19751:366;;;:::o;20123:::-;20265:3;20286:67;20350:2;20345:3;20286:67;:::i;:::-;20279:74;;20362:93;20451:3;20362:93;:::i;:::-;20480:2;20475:3;20471:12;20464:19;;20123:366;;;:::o;20495:::-;20637:3;20658:67;20722:2;20717:3;20658:67;:::i;:::-;20651:74;;20734:93;20823:3;20734:93;:::i;:::-;20852:2;20847:3;20843:12;20836:19;;20495:366;;;:::o;20867:::-;21009:3;21030:67;21094:2;21089:3;21030:67;:::i;:::-;21023:74;;21106:93;21195:3;21106:93;:::i;:::-;21224:2;21219:3;21215:12;21208:19;;20867:366;;;:::o;21239:::-;21381:3;21402:67;21466:2;21461:3;21402:67;:::i;:::-;21395:74;;21478:93;21567:3;21478:93;:::i;:::-;21596:2;21591:3;21587:12;21580:19;;21239:366;;;:::o;21611:::-;21753:3;21774:67;21838:2;21833:3;21774:67;:::i;:::-;21767:74;;21850:93;21939:3;21850:93;:::i;:::-;21968:2;21963:3;21959:12;21952:19;;21611:366;;;:::o;21983:::-;22125:3;22146:67;22210:2;22205:3;22146:67;:::i;:::-;22139:74;;22222:93;22311:3;22222:93;:::i;:::-;22340:2;22335:3;22331:12;22324:19;;21983:366;;;:::o;22355:::-;22497:3;22518:67;22582:2;22577:3;22518:67;:::i;:::-;22511:74;;22594:93;22683:3;22594:93;:::i;:::-;22712:2;22707:3;22703:12;22696:19;;22355:366;;;:::o;22727:::-;22869:3;22890:67;22954:2;22949:3;22890:67;:::i;:::-;22883:74;;22966:93;23055:3;22966:93;:::i;:::-;23084:2;23079:3;23075:12;23068:19;;22727:366;;;:::o;23099:::-;23241:3;23262:67;23326:2;23321:3;23262:67;:::i;:::-;23255:74;;23338:93;23427:3;23338:93;:::i;:::-;23456:2;23451:3;23447:12;23440:19;;23099:366;;;:::o;23471:108::-;23548:24;23566:5;23548:24;:::i;:::-;23543:3;23536:37;23471:108;;:::o;23585:118::-;23672:24;23690:5;23672:24;:::i;:::-;23667:3;23660:37;23585:118;;:::o;23709:112::-;23792:22;23808:5;23792:22;:::i;:::-;23787:3;23780:35;23709:112;;:::o;23827:416::-;23987:3;24002:75;24073:3;24064:6;24002:75;:::i;:::-;24102:2;24097:3;24093:12;24086:19;;24122:95;24213:3;24204:6;24122:95;:::i;:::-;24115:102;;24234:3;24227:10;;23827:416;;;;;:::o;24249:522::-;24462:3;24484:148;24628:3;24484:148;:::i;:::-;24477:155;;24642:75;24713:3;24704:6;24642:75;:::i;:::-;24742:2;24737:3;24733:12;24726:19;;24762:3;24755:10;;24249:522;;;;:::o;24777:222::-;24870:4;24908:2;24897:9;24893:18;24885:26;;24921:71;24989:1;24978:9;24974:17;24965:6;24921:71;:::i;:::-;24777:222;;;;:::o;25005:1053::-;25328:4;25366:3;25355:9;25351:19;25343:27;;25380:71;25448:1;25437:9;25433:17;25424:6;25380:71;:::i;:::-;25461:72;25529:2;25518:9;25514:18;25505:6;25461:72;:::i;:::-;25580:9;25574:4;25570:20;25565:2;25554:9;25550:18;25543:48;25608:108;25711:4;25702:6;25608:108;:::i;:::-;25600:116;;25763:9;25757:4;25753:20;25748:2;25737:9;25733:18;25726:48;25791:108;25894:4;25885:6;25791:108;:::i;:::-;25783:116;;25947:9;25941:4;25937:20;25931:3;25920:9;25916:19;25909:49;25975:76;26046:4;26037:6;25975:76;:::i;:::-;25967:84;;25005:1053;;;;;;;;:::o;26064:751::-;26287:4;26325:3;26314:9;26310:19;26302:27;;26339:71;26407:1;26396:9;26392:17;26383:6;26339:71;:::i;:::-;26420:72;26488:2;26477:9;26473:18;26464:6;26420:72;:::i;:::-;26502;26570:2;26559:9;26555:18;26546:6;26502:72;:::i;:::-;26584;26652:2;26641:9;26637:18;26628:6;26584:72;:::i;:::-;26704:9;26698:4;26694:20;26688:3;26677:9;26673:19;26666:49;26732:76;26803:4;26794:6;26732:76;:::i;:::-;26724:84;;26064:751;;;;;;;;:::o;26821:373::-;26964:4;27002:2;26991:9;26987:18;26979:26;;27051:9;27045:4;27041:20;27037:1;27026:9;27022:17;27015:47;27079:108;27182:4;27173:6;27079:108;:::i;:::-;27071:116;;26821:373;;;;:::o;27200:634::-;27421:4;27459:2;27448:9;27444:18;27436:26;;27508:9;27502:4;27498:20;27494:1;27483:9;27479:17;27472:47;27536:108;27639:4;27630:6;27536:108;:::i;:::-;27528:116;;27691:9;27685:4;27681:20;27676:2;27665:9;27661:18;27654:48;27719:108;27822:4;27813:6;27719:108;:::i;:::-;27711:116;;27200:634;;;;;:::o;27840:210::-;27927:4;27965:2;27954:9;27950:18;27942:26;;27978:65;28040:1;28029:9;28025:17;28016:6;27978:65;:::i;:::-;27840:210;;;;:::o;28056:545::-;28229:4;28267:3;28256:9;28252:19;28244:27;;28281:71;28349:1;28338:9;28334:17;28325:6;28281:71;:::i;:::-;28362:68;28426:2;28415:9;28411:18;28402:6;28362:68;:::i;:::-;28440:72;28508:2;28497:9;28493:18;28484:6;28440:72;:::i;:::-;28522;28590:2;28579:9;28575:18;28566:6;28522:72;:::i;:::-;28056:545;;;;;;;:::o;28607:313::-;28720:4;28758:2;28747:9;28743:18;28735:26;;28807:9;28801:4;28797:20;28793:1;28782:9;28778:17;28771:47;28835:78;28908:4;28899:6;28835:78;:::i;:::-;28827:86;;28607:313;;;;:::o;28926:419::-;29092:4;29130:2;29119:9;29115:18;29107:26;;29179:9;29173:4;29169:20;29165:1;29154:9;29150:17;29143:47;29207:131;29333:4;29207:131;:::i;:::-;29199:139;;28926:419;;;:::o;29351:::-;29517:4;29555:2;29544:9;29540:18;29532:26;;29604:9;29598:4;29594:20;29590:1;29579:9;29575:17;29568:47;29632:131;29758:4;29632:131;:::i;:::-;29624:139;;29351:419;;;:::o;29776:::-;29942:4;29980:2;29969:9;29965:18;29957:26;;30029:9;30023:4;30019:20;30015:1;30004:9;30000:17;29993:47;30057:131;30183:4;30057:131;:::i;:::-;30049:139;;29776:419;;;:::o;30201:::-;30367:4;30405:2;30394:9;30390:18;30382:26;;30454:9;30448:4;30444:20;30440:1;30429:9;30425:17;30418:47;30482:131;30608:4;30482:131;:::i;:::-;30474:139;;30201:419;;;:::o;30626:::-;30792:4;30830:2;30819:9;30815:18;30807:26;;30879:9;30873:4;30869:20;30865:1;30854:9;30850:17;30843:47;30907:131;31033:4;30907:131;:::i;:::-;30899:139;;30626:419;;;:::o;31051:::-;31217:4;31255:2;31244:9;31240:18;31232:26;;31304:9;31298:4;31294:20;31290:1;31279:9;31275:17;31268:47;31332:131;31458:4;31332:131;:::i;:::-;31324:139;;31051:419;;;:::o;31476:::-;31642:4;31680:2;31669:9;31665:18;31657:26;;31729:9;31723:4;31719:20;31715:1;31704:9;31700:17;31693:47;31757:131;31883:4;31757:131;:::i;:::-;31749:139;;31476:419;;;:::o;31901:::-;32067:4;32105:2;32094:9;32090:18;32082:26;;32154:9;32148:4;32144:20;32140:1;32129:9;32125:17;32118:47;32182:131;32308:4;32182:131;:::i;:::-;32174:139;;31901:419;;;:::o;32326:::-;32492:4;32530:2;32519:9;32515:18;32507:26;;32579:9;32573:4;32569:20;32565:1;32554:9;32550:17;32543:47;32607:131;32733:4;32607:131;:::i;:::-;32599:139;;32326:419;;;:::o;32751:::-;32917:4;32955:2;32944:9;32940:18;32932:26;;33004:9;32998:4;32994:20;32990:1;32979:9;32975:17;32968:47;33032:131;33158:4;33032:131;:::i;:::-;33024:139;;32751:419;;;:::o;33176:::-;33342:4;33380:2;33369:9;33365:18;33357:26;;33429:9;33423:4;33419:20;33415:1;33404:9;33400:17;33393:47;33457:131;33583:4;33457:131;:::i;:::-;33449:139;;33176:419;;;:::o;33601:::-;33767:4;33805:2;33794:9;33790:18;33782:26;;33854:9;33848:4;33844:20;33840:1;33829:9;33825:17;33818:47;33882:131;34008:4;33882:131;:::i;:::-;33874:139;;33601:419;;;:::o;34026:::-;34192:4;34230:2;34219:9;34215:18;34207:26;;34279:9;34273:4;34269:20;34265:1;34254:9;34250:17;34243:47;34307:131;34433:4;34307:131;:::i;:::-;34299:139;;34026:419;;;:::o;34451:::-;34617:4;34655:2;34644:9;34640:18;34632:26;;34704:9;34698:4;34694:20;34690:1;34679:9;34675:17;34668:47;34732:131;34858:4;34732:131;:::i;:::-;34724:139;;34451:419;;;:::o;34876:::-;35042:4;35080:2;35069:9;35065:18;35057:26;;35129:9;35123:4;35119:20;35115:1;35104:9;35100:17;35093:47;35157:131;35283:4;35157:131;:::i;:::-;35149:139;;34876:419;;;:::o;35301:::-;35467:4;35505:2;35494:9;35490:18;35482:26;;35554:9;35548:4;35544:20;35540:1;35529:9;35525:17;35518:47;35582:131;35708:4;35582:131;:::i;:::-;35574:139;;35301:419;;;:::o;35726:::-;35892:4;35930:2;35919:9;35915:18;35907:26;;35979:9;35973:4;35969:20;35965:1;35954:9;35950:17;35943:47;36007:131;36133:4;36007:131;:::i;:::-;35999:139;;35726:419;;;:::o;36151:::-;36317:4;36355:2;36344:9;36340:18;36332:26;;36404:9;36398:4;36394:20;36390:1;36379:9;36375:17;36368:47;36432:131;36558:4;36432:131;:::i;:::-;36424:139;;36151:419;;;:::o;36576:::-;36742:4;36780:2;36769:9;36765:18;36757:26;;36829:9;36823:4;36819:20;36815:1;36804:9;36800:17;36793:47;36857:131;36983:4;36857:131;:::i;:::-;36849:139;;36576:419;;;:::o;37001:::-;37167:4;37205:2;37194:9;37190:18;37182:26;;37254:9;37248:4;37244:20;37240:1;37229:9;37225:17;37218:47;37282:131;37408:4;37282:131;:::i;:::-;37274:139;;37001:419;;;:::o;37426:::-;37592:4;37630:2;37619:9;37615:18;37607:26;;37679:9;37673:4;37669:20;37665:1;37654:9;37650:17;37643:47;37707:131;37833:4;37707:131;:::i;:::-;37699:139;;37426:419;;;:::o;37851:::-;38017:4;38055:2;38044:9;38040:18;38032:26;;38104:9;38098:4;38094:20;38090:1;38079:9;38075:17;38068:47;38132:131;38258:4;38132:131;:::i;:::-;38124:139;;37851:419;;;:::o;38276:::-;38442:4;38480:2;38469:9;38465:18;38457:26;;38529:9;38523:4;38519:20;38515:1;38504:9;38500:17;38493:47;38557:131;38683:4;38557:131;:::i;:::-;38549:139;;38276:419;;;:::o;38701:222::-;38794:4;38832:2;38821:9;38817:18;38809:26;;38845:71;38913:1;38902:9;38898:17;38889:6;38845:71;:::i;:::-;38701:222;;;;:::o;38929:332::-;39050:4;39088:2;39077:9;39073:18;39065:26;;39101:71;39169:1;39158:9;39154:17;39145:6;39101:71;:::i;:::-;39182:72;39250:2;39239:9;39235:18;39226:6;39182:72;:::i;:::-;38929:332;;;;;:::o;39267:129::-;39301:6;39328:20;;:::i;:::-;39318:30;;39357:33;39385:4;39377:6;39357:33;:::i;:::-;39267:129;;;:::o;39402:75::-;39435:6;39468:2;39462:9;39452:19;;39402:75;:::o;39483:311::-;39560:4;39650:18;39642:6;39639:30;39636:56;;;39672:18;;:::i;:::-;39636:56;39722:4;39714:6;39710:17;39702:25;;39782:4;39776;39772:15;39764:23;;39483:311;;;:::o;39800:::-;39877:4;39967:18;39959:6;39956:30;39953:56;;;39989:18;;:::i;:::-;39953:56;40039:4;40031:6;40027:17;40019:25;;40099:4;40093;40089:15;40081:23;;39800:311;;;:::o;40117:307::-;40178:4;40268:18;40260:6;40257:30;40254:56;;;40290:18;;:::i;:::-;40254:56;40328:29;40350:6;40328:29;:::i;:::-;40320:37;;40412:4;40406;40402:15;40394:23;;40117:307;;;:::o;40430:132::-;40497:4;40520:3;40512:11;;40550:4;40545:3;40541:14;40533:22;;40430:132;;;:::o;40568:114::-;40635:6;40669:5;40663:12;40653:22;;40568:114;;;:::o;40688:98::-;40739:6;40773:5;40767:12;40757:22;;40688:98;;;:::o;40792:99::-;40844:6;40878:5;40872:12;40862:22;;40792:99;;;:::o;40897:113::-;40967:4;40999;40994:3;40990:14;40982:22;;40897:113;;;:::o;41016:184::-;41115:11;41149:6;41144:3;41137:19;41189:4;41184:3;41180:14;41165:29;;41016:184;;;;:::o;41206:168::-;41289:11;41323:6;41318:3;41311:19;41363:4;41358:3;41354:14;41339:29;;41206:168;;;;:::o;41380:169::-;41464:11;41498:6;41493:3;41486:19;41538:4;41533:3;41529:14;41514:29;;41380:169;;;;:::o;41555:148::-;41657:11;41694:3;41679:18;;41555:148;;;;:::o;41709:305::-;41749:3;41768:20;41786:1;41768:20;:::i;:::-;41763:25;;41802:20;41820:1;41802:20;:::i;:::-;41797:25;;41956:1;41888:66;41884:74;41881:1;41878:81;41875:107;;;41962:18;;:::i;:::-;41875:107;42006:1;42003;41999:9;41992:16;;41709:305;;;;:::o;42020:185::-;42060:1;42077:20;42095:1;42077:20;:::i;:::-;42072:25;;42111:20;42129:1;42111:20;:::i;:::-;42106:25;;42150:1;42140:35;;42155:18;;:::i;:::-;42140:35;42197:1;42194;42190:9;42185:14;;42020:185;;;;:::o;42211:348::-;42251:7;42274:20;42292:1;42274:20;:::i;:::-;42269:25;;42308:20;42326:1;42308:20;:::i;:::-;42303:25;;42496:1;42428:66;42424:74;42421:1;42418:81;42413:1;42406:9;42399:17;42395:105;42392:131;;;42503:18;;:::i;:::-;42392:131;42551:1;42548;42544:9;42533:20;;42211:348;;;;:::o;42565:96::-;42602:7;42631:24;42649:5;42631:24;:::i;:::-;42620:35;;42565:96;;;:::o;42667:90::-;42701:7;42744:5;42737:13;42730:21;42719:32;;42667:90;;;:::o;42763:77::-;42800:7;42829:5;42818:16;;42763:77;;;:::o;42846:149::-;42882:7;42922:66;42915:5;42911:78;42900:89;;42846:149;;;:::o;43001:126::-;43038:7;43078:42;43071:5;43067:54;43056:65;;43001:126;;;:::o;43133:77::-;43170:7;43199:5;43188:16;;43133:77;;;:::o;43216:86::-;43251:7;43291:4;43284:5;43280:16;43269:27;;43216:86;;;:::o;43308:154::-;43392:6;43387:3;43382;43369:30;43454:1;43445:6;43440:3;43436:16;43429:27;43308:154;;;:::o;43468:307::-;43536:1;43546:113;43560:6;43557:1;43554:13;43546:113;;;43645:1;43640:3;43636:11;43630:18;43626:1;43621:3;43617:11;43610:39;43582:2;43579:1;43575:10;43570:15;;43546:113;;;43677:6;43674:1;43671:13;43668:101;;;43757:1;43748:6;43743:3;43739:16;43732:27;43668:101;43517:258;43468:307;;;:::o;43781:320::-;43825:6;43862:1;43856:4;43852:12;43842:22;;43909:1;43903:4;43899:12;43930:18;43920:81;;43986:4;43978:6;43974:17;43964:27;;43920:81;44048:2;44040:6;44037:14;44017:18;44014:38;44011:84;;;44067:18;;:::i;:::-;44011:84;43832:269;43781:320;;;:::o;44107:281::-;44190:27;44212:4;44190:27;:::i;:::-;44182:6;44178:40;44320:6;44308:10;44305:22;44284:18;44272:10;44269:34;44266:62;44263:88;;;44331:18;;:::i;:::-;44263:88;44371:10;44367:2;44360:22;44150:238;44107:281;;:::o;44394:233::-;44433:3;44456:24;44474:5;44456:24;:::i;:::-;44447:33;;44502:66;44495:5;44492:77;44489:103;;;44572:18;;:::i;:::-;44489:103;44619:1;44612:5;44608:13;44601:20;;44394:233;;;:::o;44633:100::-;44672:7;44701:26;44721:5;44701:26;:::i;:::-;44690:37;;44633:100;;;:::o;44739:79::-;44778:7;44807:5;44796:16;;44739:79;;;:::o;44824:94::-;44863:7;44892:20;44906:5;44892:20;:::i;:::-;44881:31;;44824:94;;;:::o;44924:180::-;44972:77;44969:1;44962:88;45069:4;45066:1;45059:15;45093:4;45090:1;45083:15;45110:180;45158:77;45155:1;45148:88;45255:4;45252:1;45245:15;45279:4;45276:1;45269:15;45296:180;45344:77;45341:1;45334:88;45441:4;45438:1;45431:15;45465:4;45462:1;45455:15;45482:180;45530:77;45527:1;45520:88;45627:4;45624:1;45617:15;45651:4;45648:1;45641:15;45668:180;45716:77;45713:1;45706:88;45813:4;45810:1;45803:15;45837:4;45834:1;45827:15;45854:180;45902:77;45899:1;45892:88;45999:4;45996:1;45989:15;46023:4;46020:1;46013:15;46040:183;46075:3;46113:1;46095:16;46092:23;46089:128;;;46151:1;46148;46145;46130:23;46173:34;46204:1;46198:8;46173:34;:::i;:::-;46166:41;;46089:128;46040:183;:::o;46229:117::-;46338:1;46335;46328:12;46352:117;46461:1;46458;46451:12;46475:117;46584:1;46581;46574:12;46598:117;46707:1;46704;46697:12;46721:117;46830:1;46827;46820:12;46844:117;46953:1;46950;46943:12;46967:102;47008:6;47059:2;47055:7;47050:2;47043:5;47039:14;47035:28;47025:38;;46967:102;;;:::o;47075:94::-;47108:8;47156:5;47152:2;47148:14;47127:35;;47075:94;;;:::o;47175:106::-;47219:8;47268:5;47263:3;47259:15;47238:36;;47175:106;;;:::o;47287:174::-;47427:26;47423:1;47415:6;47411:14;47404:50;47287:174;:::o;47467:239::-;47607:34;47603:1;47595:6;47591:14;47584:58;47676:22;47671:2;47663:6;47659:15;47652:47;47467:239;:::o;47712:227::-;47852:34;47848:1;47840:6;47836:14;47829:58;47921:10;47916:2;47908:6;47904:15;47897:35;47712:227;:::o;47945:168::-;48085:20;48081:1;48073:6;48069:14;48062:44;47945:168;:::o;48119:172::-;48259:24;48255:1;48247:6;48243:14;48236:48;48119:172;:::o;48297:181::-;48437:33;48433:1;48425:6;48421:14;48414:57;48297:181;:::o;48484:214::-;48624:66;48620:1;48612:6;48608:14;48601:90;48484:214;:::o;48704:230::-;48844:34;48840:1;48832:6;48828:14;48821:58;48913:13;48908:2;48900:6;48896:15;48889:38;48704:230;:::o;48940:225::-;49080:34;49076:1;49068:6;49064:14;49057:58;49149:8;49144:2;49136:6;49132:15;49125:33;48940:225;:::o;49171:228::-;49311:34;49307:1;49299:6;49295:14;49288:58;49380:11;49375:2;49367:6;49363:15;49356:36;49171:228;:::o;49405:171::-;49545:23;49541:1;49533:6;49529:14;49522:47;49405:171;:::o;49582:221::-;49722:34;49718:1;49710:6;49706:14;49699:58;49791:4;49786:2;49778:6;49774:15;49767:29;49582:221;:::o;49809:167::-;49949:19;49945:1;49937:6;49933:14;49926:43;49809:167;:::o;49982:224::-;50122:34;50118:1;50110:6;50106:14;50099:58;50191:7;50186:2;50178:6;50174:15;50167:32;49982:224;:::o;50212:237::-;50352:34;50348:1;50340:6;50336:14;50329:58;50421:20;50416:2;50408:6;50404:15;50397:45;50212:237;:::o;50455:221::-;50595:34;50591:1;50583:6;50579:14;50572:58;50664:4;50659:2;50651:6;50647:15;50640:29;50455:221;:::o;50682:229::-;50822:34;50818:1;50810:6;50806:14;50799:58;50891:12;50886:2;50878:6;50874:15;50867:37;50682:229;:::o;50917:182::-;51057:34;51053:1;51045:6;51041:14;51034:58;50917:182;:::o;51105:228::-;51245:34;51241:1;51233:6;51229:14;51222:58;51314:11;51309:2;51301:6;51297:15;51290:36;51105:228;:::o;51339:::-;51479:34;51475:1;51467:6;51463:14;51456:58;51548:11;51543:2;51535:6;51531:15;51524:36;51339:228;:::o;51573:164::-;51713:16;51709:1;51701:6;51697:14;51690:40;51573:164;:::o;51743:227::-;51883:34;51879:1;51871:6;51867:14;51860:58;51952:10;51947:2;51939:6;51935:15;51928:35;51743:227;:::o;51976:220::-;52116:34;52112:1;52104:6;52100:14;52093:58;52185:3;52180:2;52172:6;52168:15;52161:28;51976:220;:::o;52202:166::-;52342:18;52338:1;52330:6;52326:14;52319:42;52202:166;:::o;52374:711::-;52413:3;52451:4;52433:16;52430:26;52427:39;;;52459:5;;52427:39;52488:20;;:::i;:::-;52563:1;52545:16;52541:24;52538:1;52532:4;52517:49;52596:4;52590:11;52695:16;52688:4;52680:6;52676:17;52673:39;52640:18;52632:6;52629:30;52613:113;52610:146;;;52741:5;;;;52610:146;52787:6;52781:4;52777:17;52823:3;52817:10;52850:18;52842:6;52839:30;52836:43;;;52872:5;;;;;;52836:43;52920:6;52913:4;52908:3;52904:14;52900:27;52979:1;52961:16;52957:24;52951:4;52947:35;52942:3;52939:44;52936:57;;;52986:5;;;;;;;52936:57;53003;53051:6;53045:4;53041:17;53033:6;53029:30;53023:4;53003:57;:::i;:::-;53076:3;53069:10;;52417:668;;;;;52374:711;;:::o;53091:122::-;53164:24;53182:5;53164:24;:::i;:::-;53157:5;53154:35;53144:63;;53203:1;53200;53193:12;53144:63;53091:122;:::o;53219:116::-;53289:21;53304:5;53289:21;:::i;:::-;53282:5;53279:32;53269:60;;53325:1;53322;53315:12;53269:60;53219:116;:::o;53341:120::-;53413:23;53430:5;53413:23;:::i;:::-;53406:5;53403:34;53393:62;;53451:1;53448;53441:12;53393:62;53341:120;:::o;53467:122::-;53540:24;53558:5;53540:24;:::i;:::-;53533:5;53530:35;53520:63;;53579:1;53576;53569:12;53520:63;53467:122;:::o

Swarm Source

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