ETH Price: $3,266.90 (+0.74%)
Gas: 1 Gwei

Token

Century Social Club - RealVolution (CSC)
 

Overview

Max Total Supply

2,667 CSC

Holders

204

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ronnymirel.eth
Balance
1 CSC
0xdd2cd8b0ab065ce0052f629f0de4fc69a7a67532
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:
CenturySocialClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




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

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

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

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

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

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

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: client/contracts/CenturySocialClub.sol



pragma solidity 0.8.11;






contract CenturySocialClub is ERC721A, PaymentSplitter, Ownable {
    using Strings for uint256;

    // CSC - Metadata variables
    string baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    bool public revealed = false;

    // CSC - Mint variables
    uint256 public cost = 0.125 ether;
    uint256 public maxSupply;
    uint256 public supplyLimit;
    uint256 public maxPremintQuantity = 4;
    bytes32 public root;

    // CSC - Sale variables
    bool public isPremintOpened = false;
    bool public isPublicMintOpened = false;
    bool public paused = false;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxSupply,
        uint256 _supplyLimit,
        string memory _initNotRevealedUri,
        bytes32 _merkleroot,
        address[] memory _payees,
        uint256[] memory _shares
    ) ERC721A(_name, _symbol) PaymentSplitter(_payees, _shares) {
        maxSupply = _maxSupply;
        supplyLimit = _supplyLimit;
        setNotRevealedURI(_initNotRevealedUri);
        root = _merkleroot;
    }

    // CSC - UTILS

    /**
     * @notice Update mint cost amount
     *
     * @param _newCost new cost amount
     */
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /**
     * @notice Update max mint quantity allowed for premint
     *
     * @param _newMaxPremintQuantity new max premint quantity allowed
     */
    function setMaxPremintQuantity(uint256 _newMaxPremintQuantity) public onlyOwner {
        maxPremintQuantity = _newMaxPremintQuantity;
    }

    /**
     * @notice Update URI for unrevealed metadata
     *
     * @param _notRevealedURI new URI for unrevealed metadata
     */
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    /**
     * @notice Update URI for metadata
     *
     * @param _newBaseURI new URI for metadata
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @notice Update premint state
     *
     * @param _opened new premint state
     */
    function setPremintOpened(bool _opened) public onlyOwner {
        isPremintOpened = _opened;
    }

    /**
     * @notice Update mint state
     *
     * @param _opened new mint state
     */
    function setMintOpened(bool _opened) public onlyOwner {
        isPublicMintOpened = _opened;
    }

    /**
     * @notice Update limit supply
     *
     * @param _supplyLimit update limit supply
     */
    function setLimitSupply(uint256 _supplyLimit) public onlyOwner {
        supplyLimit = _supplyLimit;
    }

    /**
     * @notice Update base extension for metadata
     *
     * @param _newBaseExtension new base extension
     */
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /**
     * @notice Update merkle root
     *
     * @param _merkleroot new merkle root
     */
    function setMerkleRoot(bytes32 _merkleroot)
        public
        onlyOwner
    {
        root = _merkleroot;
    }

    /**
     * @notice Update sale state
     *
     * @param _state new sale state
     */
    function setPause(bool _state) public onlyOwner {
        paused = _state;
    }

    /**
     * @notice Returns balance of contract
     */
    function balance() public view returns(uint256) {
        return address(this).balance;
    }

    // CSC - Metadata

    /**
     * @notice Returns URI for metadata
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @notice Returns URL for metadata
     *
     * @param tokenId token id
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return bytes(notRevealedUri).length > 0
                ? string(
                    abi.encodePacked(
                        notRevealedUri,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
        }

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

    /**
     * @notice Reveal NTFs
     */
    function reveal() public onlyOwner {
        revealed = true;
    }

    /**
     * @notice Update reveal state for metadata
     *
     * @param _state reveal state
     */
    function setReveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    // CSC - Minting

    /**
     * @notice Mint NFTs for admin
     */
    function adminMint(uint256 _quantity) public onlyOwner {
        require(!paused);
        require(msg.sender == tx.origin);
        uint256 supply = totalSupply();
        require(supply + _quantity <= maxSupply);
        _mint(msg.sender, _quantity);
    }

    /**
     * @notice Mint NFTs during public sale
     *
     * @param _quantity quantity of tokens to mint
     */
    function PublicMint(uint256 _quantity) public payable {
        require(msg.sender == tx.origin);
        require(!paused);
        require(isPublicMintOpened, "Public mint is not opened");
        uint256 supply = totalSupply();
        require(supply + _quantity <= supplyLimit);
        require(supply + _quantity <= maxSupply);

        if (msg.sender != owner()) {
            require(msg.value >= cost * _quantity);
        }

        _mint(msg.sender, _quantity);
    }


    /**
     * @notice Mint NFTs if whitelisted
     *
     * @param _quantity quantity of tokens to mint
     * @param _proof merkle proof
     */
    function BrainPassMint(uint256 _quantity, bytes32[] calldata _proof) public payable {
        require(msg.sender == tx.origin);
        require(!paused, "Sale is not opened");
        require(isPremintOpened, "Premint mint is not opened");
        require(isWhiteListed(msg.sender, _proof), "Not in the whitelist");
        require(_numberMinted(msg.sender) + _quantity <= maxPremintQuantity, "You cannot mint more than 4 tokens during premint");
        uint256 supply = totalSupply();
        require(supply + _quantity <= supplyLimit, "Insufficient tokens left");
        require(supply + _quantity <= maxSupply, "Insufficient tokens left");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _quantity);
        }

        _mint(msg.sender, _quantity);
    }

    // CSC - Whitelist verification

    /**
    * @notice Return true or false if the account is whitelisted or not
    *
    * @param account The account of the user
    * @param proof The Merkle Proof
    *
    * @return true or false if the account is whitelisted or not
    **/
    function isWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
        return _verify(_leaf(account), proof);
    }

    /**
    * @notice Return the account hashed
    *
    * @param account The account to hash
    *
    * @return The account hashed
    **/
    function _leaf(address account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    /**
    * @notice Returns true if a leaf can be proved to be a part of a Merkle tree defined by root
    *
    * @param leaf The leaf
    * @param proof The Merkle Proof
    *
    * @return True if a leaf can be provded to be a part of a Merkle tree defined by root
    **/
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, root, leaf);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"},{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"BrainPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPremintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPremintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setLimitSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPremintQuantity","type":"uint256"}],"name":"setMaxPremintQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_opened","type":"bool"}],"name":"setMintOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_opened","type":"bool"}],"name":"setPremintOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601190805190602001906200005192919062000698565b506000601360006101000a81548160ff0219169083151502179055506701bc16d674ec800060145560046017556000601960006101000a81548160ff0219169083151502179055506000601960016101000a81548160ff0219169083151502179055506000601960026101000a81548160ff021916908315150217905550348015620000dc57600080fd5b506040516200600238038062006002833981810160405281019062000102919062000b71565b8181898981600290805190602001906200011e92919062000698565b5080600390805190602001906200013792919062000698565b5062000148620002a460201b60201c565b6000819055505050805182511462000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e9062000d5c565b60405180910390fd5b6000825111620001de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d59062000dce565b60405180910390fd5b60005b82518110156200024d576200023783828151811062000205576200020462000df0565b5b602002602001015183838151811062000223576200022262000df0565b5b6020026020010151620002a960201b60201c565b8080620002449062000e4e565b915050620001e1565b5050506200027062000264620004e360201b60201c565b620004eb60201b60201c565b85601581905550846016819055506200028f84620005b160201b60201c565b826018819055505050505050505050620011c1565b600090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200031c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003139062000f12565b60405180910390fd5b6000811162000362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003599062000f84565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de906200101c565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806008546200049e91906200103e565b6008819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620004d7929190620010bd565b60405180910390a15050565b600033905090565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005c1620005dd60201b60201c565b8060129080519060200190620005d992919062000698565b5050565b620005ed620004e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006136200066e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000663906200113a565b60405180910390fd5b565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006a6906200118b565b90600052602060002090601f016020900481019282620006ca576000855562000716565b82601f10620006e557805160ff191683800117855562000716565b8280016001018555821562000716579182015b8281111562000715578251825591602001919060010190620006f8565b5b50905062000725919062000729565b5090565b5b80821115620007445760008160009055506001016200072a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007b18262000766565b810181811067ffffffffffffffff82111715620007d357620007d262000777565b5b80604052505050565b6000620007e862000748565b9050620007f68282620007a6565b919050565b600067ffffffffffffffff82111562000819576200081862000777565b5b620008248262000766565b9050602081019050919050565b60005b838110156200085157808201518184015260208101905062000834565b8381111562000861576000848401525b50505050565b60006200087e6200087884620007fb565b620007dc565b9050828152602081018484840111156200089d576200089c62000761565b5b620008aa84828562000831565b509392505050565b600082601f830112620008ca57620008c96200075c565b5b8151620008dc84826020860162000867565b91505092915050565b6000819050919050565b620008fa81620008e5565b81146200090657600080fd5b50565b6000815190506200091a81620008ef565b92915050565b6000819050919050565b620009358162000920565b81146200094157600080fd5b50565b60008151905062000955816200092a565b92915050565b600067ffffffffffffffff82111562000979576200097862000777565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009bc826200098f565b9050919050565b620009ce81620009af565b8114620009da57600080fd5b50565b600081519050620009ee81620009c3565b92915050565b600062000a0b62000a05846200095b565b620007dc565b9050808382526020820190506020840283018581111562000a315762000a306200098a565b5b835b8181101562000a5e578062000a498882620009dd565b84526020840193505060208101905062000a33565b5050509392505050565b600082601f83011262000a805762000a7f6200075c565b5b815162000a92848260208601620009f4565b91505092915050565b600067ffffffffffffffff82111562000ab95762000ab862000777565b5b602082029050602081019050919050565b600062000ae162000adb8462000a9b565b620007dc565b9050808382526020820190506020840283018581111562000b075762000b066200098a565b5b835b8181101562000b34578062000b1f888262000909565b84526020840193505060208101905062000b09565b5050509392505050565b600082601f83011262000b565762000b556200075c565b5b815162000b6884826020860162000aca565b91505092915050565b600080600080600080600080610100898b03121562000b955762000b9462000752565b5b600089015167ffffffffffffffff81111562000bb65762000bb562000757565b5b62000bc48b828c01620008b2565b985050602089015167ffffffffffffffff81111562000be85762000be762000757565b5b62000bf68b828c01620008b2565b975050604062000c098b828c0162000909565b965050606062000c1c8b828c0162000909565b955050608089015167ffffffffffffffff81111562000c405762000c3f62000757565b5b62000c4e8b828c01620008b2565b94505060a062000c618b828c0162000944565b93505060c089015167ffffffffffffffff81111562000c855762000c8462000757565b5b62000c938b828c0162000a68565b92505060e089015167ffffffffffffffff81111562000cb75762000cb662000757565b5b62000cc58b828c0162000b3e565b9150509295985092959890939650565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000d4460328362000cd5565b915062000d518262000ce6565b604082019050919050565b6000602082019050818103600083015262000d778162000d35565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000db6601a8362000cd5565b915062000dc38262000d7e565b602082019050919050565b6000602082019050818103600083015262000de98162000da7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e5b82620008e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000e915762000e9062000e1f565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000efa602c8362000cd5565b915062000f078262000e9c565b604082019050919050565b6000602082019050818103600083015262000f2d8162000eeb565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000f6c601d8362000cd5565b915062000f798262000f34565b602082019050919050565b6000602082019050818103600083015262000f9f8162000f5d565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062001004602b8362000cd5565b9150620010118262000fa6565b604082019050919050565b60006020820190508181036000830152620010378162000ff5565b9050919050565b60006200104b82620008e5565b91506200105883620008e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001090576200108f62000e1f565b5b828201905092915050565b620010a681620009af565b82525050565b620010b781620008e5565b82525050565b6000604082019050620010d460008301856200109b565b620010e36020830184620010ac565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200112260208362000cd5565b91506200112f82620010ea565b602082019050919050565b60006020820190508181036000830152620011558162001113565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011a457607f821691505b60208210811415620011bb57620011ba6200115c565b5b50919050565b614e3180620011d16000396000f3fe6080604052600436106103545760003560e01c8063715018a6116101c6578063bedb86fb116100f7578063d79779b211610095578063e985e9c51161006f578063e985e9c514610c9f578063ebf0c71714610cdc578063f2c4ce1e14610d07578063f2fde38b14610d305761039b565b8063d79779b214610c0e578063da3ef23f14610c4b578063e33b7de314610c745761039b565b8063c6682862116100d1578063c668286214610b3e578063c87b56dd14610b69578063ce7c2ac214610ba6578063d5abeb0114610be35761039b565b8063bedb86fb14610aaf578063c1f2612314610ad8578063c45ac05014610b015761039b565b8063a22cb46511610164578063a774225e1161013e578063a774225e14610a07578063aba8cb3014610a30578063b69ef8a814610a5b578063b88d4fde14610a865761039b565b8063a22cb4651461098a578063a3f8eace146109b3578063a475b5dd146109f05761039b565b80638da5cb5b116101a05780638da5cb5b146108db57806395d89b41146109065780639852595c146109315780639fb17e341461096e5761039b565b8063715018a61461085e5780637cb64759146108755780638b83209b1461089e5761039b565b80632a425552116102a057806348b750441161023e5780635c975abb116102185780635c975abb1461078e5780636352211e146107b9578063636faa4f146107f657806370a08231146108215761039b565b806348b7504414610711578063518302271461073a57806355f804b3146107655761039b565b8063406072a91161027a578063406072a91461065957806342842e0e1461069657806343e6e1a1146106bf57806344a0d68a146106e85761039b565b80632a425552146105da5780633713c1a1146106055780633a98ef391461062e5761039b565b806313faede61161030d57806319d1997a116102e757806319d1997a146105345780631a460f751461055f57806323b872dd146105885780632a3f300c146105b15761039b565b806313faede6146104b557806318160ddd146104e0578063191655871461050b5761039b565b806301ffc9a7146103a057806306fdde03146103dd578063081812fc14610408578063081c8c4414610445578063095ea7b3146104705780630dc28638146104995761039b565b3661039b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610382610d59565b34604051610391929190613670565b60405180910390a1005b600080fd5b3480156103ac57600080fd5b506103c760048036038101906103c29190613705565b610d61565b6040516103d4919061374d565b60405180910390f35b3480156103e957600080fd5b506103f2610df3565b6040516103ff9190613801565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061384f565b610e85565b60405161043c919061387c565b60405180910390f35b34801561045157600080fd5b5061045a610f04565b6040516104679190613801565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906138c3565b610f92565b005b6104b360048036038101906104ae9190613968565b6110d6565b005b3480156104c157600080fd5b506104ca611360565b6040516104d791906139c8565b60405180910390f35b3480156104ec57600080fd5b506104f5611366565b60405161050291906139c8565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613a21565b61137d565b005b34801561054057600080fd5b50610549611506565b60405161055691906139c8565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061384f565b61150c565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613a4e565b61151e565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613acd565b611843565b005b3480156105e657600080fd5b506105ef611868565b6040516105fc91906139c8565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061384f565b61186e565b005b34801561063a57600080fd5b50610643611880565b60405161065091906139c8565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613b38565b61188a565b60405161068d91906139c8565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613a4e565b611911565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190613acd565b611931565b005b3480156106f457600080fd5b5061070f600480360381019061070a919061384f565b611956565b005b34801561071d57600080fd5b5061073860048036038101906107339190613b38565b611968565b005b34801561074657600080fd5b5061074f611b85565b60405161075c919061374d565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613ca8565b611b98565b005b34801561079a57600080fd5b506107a3611bba565b6040516107b0919061374d565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061384f565b611bcd565b6040516107ed919061387c565b60405180910390f35b34801561080257600080fd5b5061080b611bdf565b604051610818919061374d565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613cf1565b611bf2565b60405161085591906139c8565b60405180910390f35b34801561086a57600080fd5b50610873611cab565b005b34801561088157600080fd5b5061089c60048036038101906108979190613d54565b611cbf565b005b3480156108aa57600080fd5b506108c560048036038101906108c0919061384f565b611cd1565b6040516108d2919061387c565b60405180910390f35b3480156108e757600080fd5b506108f0611d19565b6040516108fd919061387c565b60405180910390f35b34801561091257600080fd5b5061091b611d43565b6040516109289190613801565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613cf1565b611dd5565b60405161096591906139c8565b60405180910390f35b6109886004803603810190610983919061384f565b611e1e565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613d81565b611f62565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613cf1565b6120da565b6040516109e791906139c8565b60405180910390f35b3480156109fc57600080fd5b50610a0561210d565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613acd565b612132565b005b348015610a3c57600080fd5b50610a45612157565b604051610a52919061374d565b60405180910390f35b348015610a6757600080fd5b50610a7061216a565b604051610a7d91906139c8565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190613e62565b612172565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190613acd565b6121e5565b005b348015610ae457600080fd5b50610aff6004803603810190610afa919061384f565b61220a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190613b38565b612298565b604051610b3591906139c8565b60405180910390f35b348015610b4a57600080fd5b50610b53612347565b604051610b609190613801565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b919061384f565b6123d5565b604051610b9d9190613801565b60405180910390f35b348015610bb257600080fd5b50610bcd6004803603810190610bc89190613cf1565b6124fd565b604051610bda91906139c8565b60405180910390f35b348015610bef57600080fd5b50610bf8612546565b604051610c0591906139c8565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190613ee5565b61254c565b604051610c4291906139c8565b60405180910390f35b348015610c5757600080fd5b50610c726004803603810190610c6d9190613ca8565b612595565b005b348015610c8057600080fd5b50610c896125b7565b604051610c9691906139c8565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc19190613f12565b6125c1565b604051610cd3919061374d565b60405180910390f35b348015610ce857600080fd5b50610cf1612655565b604051610cfe9190613f61565b60405180910390f35b348015610d1357600080fd5b50610d2e6004803603810190610d299190613ca8565b61265b565b005b348015610d3c57600080fd5b50610d576004803603810190610d529190613cf1565b61267d565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dbc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e0290613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90613fab565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b5050505050905090565b6000610e9082612701565b610ec6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610f1190613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3d90613fab565b8015610f8a5780601f10610f5f57610100808354040283529160200191610f8a565b820191906000526020600020905b815481529060010190602001808311610f6d57829003601f168201915b505050505081565b6000610f9d82611bcd565b90508073ffffffffffffffffffffffffffffffffffffffff16610fbe612760565b73ffffffffffffffffffffffffffffffffffffffff161461102157610fea81610fe5612760565b6125c1565b611020576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110e57600080fd5b601960029054906101000a900460ff161561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590614029565b60405180910390fd5b601960009054906101000a900460ff166111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614095565b60405180910390fd5b6111b8338383612768565b6111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90614101565b60405180910390fd5b60175483611204336127c6565b61120e9190614150565b111561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690614218565b60405180910390fd5b6000611259611366565b9050601654848261126a9190614150565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614284565b60405180910390fd5b60155484826112ba9190614150565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614284565b60405180910390fd5b611303611d19565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611350578360145461134391906142a4565b34101561134f57600080fd5b5b61135a338561281d565b50505050565b60145481565b60006113706129da565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614370565b60405180910390fd5b600061140a826120da565b90506000811415611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614402565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461149f9190614150565b9250508190555080600960008282546114b89190614150565b925050819055506114c982826129df565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516114fa929190614481565b60405180910390a15050565b60165481565b611514612ad3565b8060178190555050565b600061152982612b51565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611590576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061159c84612c1f565b915091506115b281876115ad612760565b612c46565b6115fe576115c7866115c2612760565b6125c1565b6115fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611665576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116728686866001612c8a565b801561167d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061174b85611727888887612c90565b7c020000000000000000000000000000000000000000000000000000000017612cb8565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156117d35760006001850190506000600460008381526020019081526020016000205414156117d15760005481146117d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461183b8686866001612ce3565b505050505050565b61184b612ad3565b80601360006101000a81548160ff02191690831515021790555050565b60175481565b611876612ad3565b8060168190555050565b6000600854905090565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61192c83838360405180602001604052806000815250612172565b505050565b611939612ad3565b80601960006101000a81548160ff02191690831515021790555050565b61195e612ad3565b8060148190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614370565b60405180910390fd5b60006119f68383612298565b90506000811415611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614402565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac89190614150565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1e9190614150565b92505081905550611b30838383612ce9565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611b78929190613670565b60405180910390a2505050565b601360009054906101000a900460ff1681565b611ba0612ad3565b8060109080519060200190611bb6929190613573565b5050565b601960029054906101000a900460ff1681565b6000611bd882612b51565b9050919050565b601960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611cb3612ad3565b611cbd6000612d6f565b565b611cc7612ad3565b8060188190555050565b6000600c8281548110611ce757611ce66144aa565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611d5290613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e90613fab565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e5657600080fd5b601960029054906101000a900460ff1615611e7057600080fd5b601960019054906101000a900460ff16611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614525565b60405180910390fd5b6000611ec9611366565b90506016548282611eda9190614150565b1115611ee557600080fd5b6015548282611ef49190614150565b1115611eff57600080fd5b611f07611d19565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f545781601454611f4791906142a4565b341015611f5357600080fd5b5b611f5e338361281d565b5050565b611f6a612760565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611fdc612760565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612089612760565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ce919061374d565b60405180910390a35050565b6000806120e56125b7565b476120f09190614150565b9050612105838261210086611dd5565b612e35565b915050919050565b612115612ad3565b6001601360006101000a81548160ff021916908315150217905550565b61213a612ad3565b80601960016101000a81548160ff02191690831515021790555050565b601960019054906101000a900460ff1681565b600047905090565b61217d84848461151e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121df576121a884848484612ea3565b6121de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121ed612ad3565b80601960026101000a81548160ff02191690831515021790555050565b612212612ad3565b601960029054906101000a900460ff161561222c57600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461226457600080fd5b600061226e611366565b9050601554828261227f9190614150565b111561228a57600080fd5b612294338361281d565b5050565b6000806122a48461254c565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122dd919061387c565b602060405180830381865afa1580156122fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231e919061455a565b6123289190614150565b905061233e8382612339878761188a565b612e35565b91505092915050565b6011805461235490613fab565b80601f016020809104026020016040519081016040528092919081815260200182805461238090613fab565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b505050505081565b60606123e082612701565b61241f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612416906145f9565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561249c5760006012805461244a90613fab565b9050116124665760405180602001604052806000815250612495565b601261247183612ff4565b6011604051602001612485939291906146e9565b6040516020818303038152906040525b90506124f8565b60006124a6613155565b905060008151116124c657604051806020016040528060008152506124f4565b806124d084612ff4565b60116040516020016124e49392919061471a565b6040516020818303038152906040525b9150505b919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60155481565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61259d612ad3565b80601190805190602001906125b3929190613573565b5050565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b612663612ad3565b8060129080519060200190612679929190613573565b5050565b612685612ad3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906147bd565b60405180910390fd5b6126fe81612d6f565b50565b60008161270c6129da565b1115801561271b575060005482105b8015612759575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006127bd612776856131e7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613217565b90509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600082141561285e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61286b6000848385612c8a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128e2836128d36000866000612c90565b6128dc8561322e565b17612cb8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461298357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612948565b5060008214156129bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129d56000848385612ce3565b505050565b600090565b80471015612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990614829565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a489061487a565b60006040518083038185875af1925050503d8060008114612a85576040519150601f19603f3d011682016040523d82523d6000602084013e612a8a565b606091505b5050905080612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590614901565b60405180910390fd5b505050565b612adb610d59565b73ffffffffffffffffffffffffffffffffffffffff16612af9611d19565b73ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061496d565b60405180910390fd5b565b60008082905080612b606129da565b11612be857600054811015612be75760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612be5575b6000811415612bdb576004600083600190039350838152602001908152602001600020549050612bb0565b8092505050612c1a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ca786868461323e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d6a8363a9059cbb60e01b8484604051602401612d08929190613670565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613247565b505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612e8691906142a4565b612e9091906149bc565b612e9a91906149ed565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ec9612760565b8786866040518563ffffffff1660e01b8152600401612eeb9493929190614a76565b6020604051808303816000875af1925050508015612f2757506040513d601f19601f82011682018060405250810190612f249190614ad7565b60015b612fa1573d8060008114612f57576040519150601f19603f3d011682016040523d82523d6000602084013e612f5c565b606091505b50600081511415612f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561303c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613150565b600082905060005b6000821461306e57808061305790614b04565b915050600a8261306791906149bc565b9150613044565b60008167ffffffffffffffff81111561308a57613089613b7d565b5b6040519080825280601f01601f1916602001820160405280156130bc5781602001600182028036833780820191505090505b5090505b60008514613149576001826130d591906149ed565b9150600a856130e49190614b4d565b60306130f09190614150565b60f81b818381518110613106576131056144aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561314291906149bc565b94506130c0565b8093505050505b919050565b60606010805461316490613fab565b80601f016020809104026020016040519081016040528092919081815260200182805461319090613fab565b80156131dd5780601f106131b2576101008083540402835291602001916131dd565b820191906000526020600020905b8154815290600101906020018083116131c057829003601f168201915b5050505050905090565b6000816040516020016131fa9190614bc6565b604051602081830303815290604052805190602001209050919050565b6000613226826018548561330e565b905092915050565b60006001821460e11b9050919050565b60009392505050565b60006132a9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166133259092919063ffffffff16565b905060008151111561330957808060200190518101906132c99190614bf6565b613308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ff90614c95565b60405180910390fd5b5b505050565b60008261331b858461333d565b1490509392505050565b60606133348484600085613393565b90509392505050565b60008082905060005b84518110156133885761337382868381518110613366576133656144aa565b5b60200260200101516134a7565b9150808061338090614b04565b915050613346565b508091505092915050565b6060824710156133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf90614d27565b60405180910390fd5b6133e1856134d2565b613420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341790614d93565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134499190614de4565b60006040518083038185875af1925050503d8060008114613486576040519150601f19603f3d011682016040523d82523d6000602084013e61348b565b606091505b509150915061349b8282866134f5565b92505050949350505050565b60008183106134bf576134ba828461355c565b6134ca565b6134c9838361355c565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561350557829050613555565b6000835111156135185782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354c9190613801565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b82805461357f90613fab565b90600052602060002090601f0160209004810192826135a157600085556135e8565b82601f106135ba57805160ff19168380011785556135e8565b828001600101855582156135e8579182015b828111156135e75782518255916020019190600101906135cc565b5b5090506135f591906135f9565b5090565b5b808211156136125760008160009055506001016135fa565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364182613616565b9050919050565b61365181613636565b82525050565b6000819050919050565b61366a81613657565b82525050565b60006040820190506136856000830185613648565b6136926020830184613661565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e2816136ad565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a6136a3565b5b6000613729848285016136f0565b91505092915050565b60008115159050919050565b61374781613732565b82525050565b6000602082019050613762600083018461373e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a2578082015181840152602081019050613787565b838111156137b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006137d382613768565b6137dd8185613773565b93506137ed818560208601613784565b6137f6816137b7565b840191505092915050565b6000602082019050818103600083015261381b81846137c8565b905092915050565b61382c81613657565b811461383757600080fd5b50565b60008135905061384981613823565b92915050565b600060208284031215613865576138646136a3565b5b60006138738482850161383a565b91505092915050565b60006020820190506138916000830184613648565b92915050565b6138a081613636565b81146138ab57600080fd5b50565b6000813590506138bd81613897565b92915050565b600080604083850312156138da576138d96136a3565b5b60006138e8858286016138ae565b92505060206138f98582860161383a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261392857613927613903565b5b8235905067ffffffffffffffff81111561394557613944613908565b5b6020830191508360208202830111156139615761396061390d565b5b9250929050565b600080600060408486031215613981576139806136a3565b5b600061398f8682870161383a565b935050602084013567ffffffffffffffff8111156139b0576139af6136a8565b5b6139bc86828701613912565b92509250509250925092565b60006020820190506139dd6000830184613661565b92915050565b60006139ee82613616565b9050919050565b6139fe816139e3565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b600060208284031215613a3757613a366136a3565b5b6000613a4584828501613a0c565b91505092915050565b600080600060608486031215613a6757613a666136a3565b5b6000613a75868287016138ae565b9350506020613a86868287016138ae565b9250506040613a978682870161383a565b9150509250925092565b613aaa81613732565b8114613ab557600080fd5b50565b600081359050613ac781613aa1565b92915050565b600060208284031215613ae357613ae26136a3565b5b6000613af184828501613ab8565b91505092915050565b6000613b0582613636565b9050919050565b613b1581613afa565b8114613b2057600080fd5b50565b600081359050613b3281613b0c565b92915050565b60008060408385031215613b4f57613b4e6136a3565b5b6000613b5d85828601613b23565b9250506020613b6e858286016138ae565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb5826137b7565b810181811067ffffffffffffffff82111715613bd457613bd3613b7d565b5b80604052505050565b6000613be7613699565b9050613bf38282613bac565b919050565b600067ffffffffffffffff821115613c1357613c12613b7d565b5b613c1c826137b7565b9050602081019050919050565b82818337600083830152505050565b6000613c4b613c4684613bf8565b613bdd565b905082815260208101848484011115613c6757613c66613b78565b5b613c72848285613c29565b509392505050565b600082601f830112613c8f57613c8e613903565b5b8135613c9f848260208601613c38565b91505092915050565b600060208284031215613cbe57613cbd6136a3565b5b600082013567ffffffffffffffff811115613cdc57613cdb6136a8565b5b613ce884828501613c7a565b91505092915050565b600060208284031215613d0757613d066136a3565b5b6000613d15848285016138ae565b91505092915050565b6000819050919050565b613d3181613d1e565b8114613d3c57600080fd5b50565b600081359050613d4e81613d28565b92915050565b600060208284031215613d6a57613d696136a3565b5b6000613d7884828501613d3f565b91505092915050565b60008060408385031215613d9857613d976136a3565b5b6000613da6858286016138ae565b9250506020613db785828601613ab8565b9150509250929050565b600067ffffffffffffffff821115613ddc57613ddb613b7d565b5b613de5826137b7565b9050602081019050919050565b6000613e05613e0084613dc1565b613bdd565b905082815260208101848484011115613e2157613e20613b78565b5b613e2c848285613c29565b509392505050565b600082601f830112613e4957613e48613903565b5b8135613e59848260208601613df2565b91505092915050565b60008060008060808587031215613e7c57613e7b6136a3565b5b6000613e8a878288016138ae565b9450506020613e9b878288016138ae565b9350506040613eac8782880161383a565b925050606085013567ffffffffffffffff811115613ecd57613ecc6136a8565b5b613ed987828801613e34565b91505092959194509250565b600060208284031215613efb57613efa6136a3565b5b6000613f0984828501613b23565b91505092915050565b60008060408385031215613f2957613f286136a3565b5b6000613f37858286016138ae565b9250506020613f48858286016138ae565b9150509250929050565b613f5b81613d1e565b82525050565b6000602082019050613f766000830184613f52565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc357607f821691505b60208210811415613fd757613fd6613f7c565b5b50919050565b7f53616c65206973206e6f74206f70656e65640000000000000000000000000000600082015250565b6000614013601283613773565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f5072656d696e74206d696e74206973206e6f74206f70656e6564000000000000600082015250565b600061407f601a83613773565b915061408a82614049565b602082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b60006140eb601483613773565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415b82613657565b915061416683613657565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419b5761419a614121565b5b828201905092915050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203420746f6b6560008201527f6e7320647572696e67207072656d696e74000000000000000000000000000000602082015250565b6000614202603183613773565b915061420d826141a6565b604082019050919050565b60006020820190508181036000830152614231816141f5565b9050919050565b7f496e73756666696369656e7420746f6b656e73206c6566740000000000000000600082015250565b600061426e601883613773565b915061427982614238565b602082019050919050565b6000602082019050818103600083015261429d81614261565b9050919050565b60006142af82613657565b91506142ba83613657565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f3576142f2614121565b5b828202905092915050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061435a602683613773565b9150614365826142fe565b604082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006143ec602b83613773565b91506143f782614390565b604082019050919050565b6000602082019050818103600083015261441b816143df565b9050919050565b6000819050919050565b600061444761444261443d84613616565b614422565b613616565b9050919050565b60006144598261442c565b9050919050565b600061446b8261444e565b9050919050565b61447b81614460565b82525050565b60006040820190506144966000830185614472565b6144a36020830184613661565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c6963206d696e74206973206e6f74206f70656e656400000000000000600082015250565b600061450f601983613773565b915061451a826144d9565b602082019050919050565b6000602082019050818103600083015261453e81614502565b9050919050565b60008151905061455481613823565b92915050565b6000602082840312156145705761456f6136a3565b5b600061457e84828501614545565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145e3602f83613773565b91506145ee82614587565b604082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461464681613fab565b6146508186614619565b9450600182166000811461466b576001811461467c576146af565b60ff198316865281860193506146af565b61468585614624565b60005b838110156146a757815481890152600182019150602081019050614688565b838801955050505b50505092915050565b60006146c382613768565b6146cd8185614619565b93506146dd818560208601613784565b80840191505092915050565b60006146f58286614639565b915061470182856146b8565b915061470d8284614639565b9150819050949350505050565b600061472682866146b8565b915061473282856146b8565b915061473e8284614639565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147a7602683613773565b91506147b28261474b565b604082019050919050565b600060208201905081810360008301526147d68161479a565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614813601d83613773565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b600081905092915050565b50565b6000614864600083614849565b915061486f82614854565b600082019050919050565b600061488582614857565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006148eb603a83613773565b91506148f68261488f565b604082019050919050565b6000602082019050818103600083015261491a816148de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614957602083613773565b915061496282614921565b602082019050919050565b600060208201905081810360008301526149868161494a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149c782613657565b91506149d283613657565b9250826149e2576149e161498d565b5b828204905092915050565b60006149f882613657565b9150614a0383613657565b925082821015614a1657614a15614121565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a4882614a21565b614a528185614a2c565b9350614a62818560208601613784565b614a6b816137b7565b840191505092915050565b6000608082019050614a8b6000830187613648565b614a986020830186613648565b614aa56040830185613661565b8181036060830152614ab78184614a3d565b905095945050505050565b600081519050614ad1816136d9565b92915050565b600060208284031215614aed57614aec6136a3565b5b6000614afb84828501614ac2565b91505092915050565b6000614b0f82613657565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b4257614b41614121565b5b600182019050919050565b6000614b5882613657565b9150614b6383613657565b925082614b7357614b7261498d565b5b828206905092915050565b60008160601b9050919050565b6000614b9682614b7e565b9050919050565b6000614ba882614b8b565b9050919050565b614bc0614bbb82613636565b614b9d565b82525050565b6000614bd28284614baf565b60148201915081905092915050565b600081519050614bf081613aa1565b92915050565b600060208284031215614c0c57614c0b6136a3565b5b6000614c1a84828501614be1565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c7f602a83613773565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d11602683613773565b9150614d1c82614cb5565b604082019050919050565b60006020820190508181036000830152614d4081614d04565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614d7d601d83613773565b9150614d8882614d47565b602082019050919050565b60006020820190508181036000830152614dac81614d70565b9050919050565b6000614dbe82614a21565b614dc88185614849565b9350614dd8818560208601613784565b80840191505092915050565b6000614df08284614db3565b91508190509291505056fea26469706673582212202416c1028297db91dc3f421795b408d5620d348fc715b107f716bdeda5d6929e64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000022b90000000000000000000000000000000000000000000000000000000000000a6b00000000000000000000000000000000000000000000000000000000000001a050626a6ea915f509300a64e08a7965f8edb32eda2aa1c75bf630c9660b9e7e12000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000002243656e7475727920536f6369616c20436c7562202d205265616c566f6c7574696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343534300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506f564576434251336f725a42666635693773727369714c4d6d68436448337a756b75396138425a663663472f000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000b4c50ec92364f107c9d7925ba34c8f5ffe0ab5fa00000000000000000000000050e739c5968b1bf377d6beafd0b46de906b2898a0000000000000000000000003b30ba562e6153da48f84a3c76397f23618c2e64000000000000000000000000f8b18715ba3c2fa548c46b6f918972d8ab6fdeff0000000000000000000000002cc2a0852471ea396f8986a4384b72964f69684200000000000000000000000000777c93da46efbd4b9ee2f65e5391a4b0b4a44200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106103545760003560e01c8063715018a6116101c6578063bedb86fb116100f7578063d79779b211610095578063e985e9c51161006f578063e985e9c514610c9f578063ebf0c71714610cdc578063f2c4ce1e14610d07578063f2fde38b14610d305761039b565b8063d79779b214610c0e578063da3ef23f14610c4b578063e33b7de314610c745761039b565b8063c6682862116100d1578063c668286214610b3e578063c87b56dd14610b69578063ce7c2ac214610ba6578063d5abeb0114610be35761039b565b8063bedb86fb14610aaf578063c1f2612314610ad8578063c45ac05014610b015761039b565b8063a22cb46511610164578063a774225e1161013e578063a774225e14610a07578063aba8cb3014610a30578063b69ef8a814610a5b578063b88d4fde14610a865761039b565b8063a22cb4651461098a578063a3f8eace146109b3578063a475b5dd146109f05761039b565b80638da5cb5b116101a05780638da5cb5b146108db57806395d89b41146109065780639852595c146109315780639fb17e341461096e5761039b565b8063715018a61461085e5780637cb64759146108755780638b83209b1461089e5761039b565b80632a425552116102a057806348b750441161023e5780635c975abb116102185780635c975abb1461078e5780636352211e146107b9578063636faa4f146107f657806370a08231146108215761039b565b806348b7504414610711578063518302271461073a57806355f804b3146107655761039b565b8063406072a91161027a578063406072a91461065957806342842e0e1461069657806343e6e1a1146106bf57806344a0d68a146106e85761039b565b80632a425552146105da5780633713c1a1146106055780633a98ef391461062e5761039b565b806313faede61161030d57806319d1997a116102e757806319d1997a146105345780631a460f751461055f57806323b872dd146105885780632a3f300c146105b15761039b565b806313faede6146104b557806318160ddd146104e0578063191655871461050b5761039b565b806301ffc9a7146103a057806306fdde03146103dd578063081812fc14610408578063081c8c4414610445578063095ea7b3146104705780630dc28638146104995761039b565b3661039b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610382610d59565b34604051610391929190613670565b60405180910390a1005b600080fd5b3480156103ac57600080fd5b506103c760048036038101906103c29190613705565b610d61565b6040516103d4919061374d565b60405180910390f35b3480156103e957600080fd5b506103f2610df3565b6040516103ff9190613801565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061384f565b610e85565b60405161043c919061387c565b60405180910390f35b34801561045157600080fd5b5061045a610f04565b6040516104679190613801565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906138c3565b610f92565b005b6104b360048036038101906104ae9190613968565b6110d6565b005b3480156104c157600080fd5b506104ca611360565b6040516104d791906139c8565b60405180910390f35b3480156104ec57600080fd5b506104f5611366565b60405161050291906139c8565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613a21565b61137d565b005b34801561054057600080fd5b50610549611506565b60405161055691906139c8565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061384f565b61150c565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613a4e565b61151e565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613acd565b611843565b005b3480156105e657600080fd5b506105ef611868565b6040516105fc91906139c8565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061384f565b61186e565b005b34801561063a57600080fd5b50610643611880565b60405161065091906139c8565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613b38565b61188a565b60405161068d91906139c8565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613a4e565b611911565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190613acd565b611931565b005b3480156106f457600080fd5b5061070f600480360381019061070a919061384f565b611956565b005b34801561071d57600080fd5b5061073860048036038101906107339190613b38565b611968565b005b34801561074657600080fd5b5061074f611b85565b60405161075c919061374d565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613ca8565b611b98565b005b34801561079a57600080fd5b506107a3611bba565b6040516107b0919061374d565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061384f565b611bcd565b6040516107ed919061387c565b60405180910390f35b34801561080257600080fd5b5061080b611bdf565b604051610818919061374d565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613cf1565b611bf2565b60405161085591906139c8565b60405180910390f35b34801561086a57600080fd5b50610873611cab565b005b34801561088157600080fd5b5061089c60048036038101906108979190613d54565b611cbf565b005b3480156108aa57600080fd5b506108c560048036038101906108c0919061384f565b611cd1565b6040516108d2919061387c565b60405180910390f35b3480156108e757600080fd5b506108f0611d19565b6040516108fd919061387c565b60405180910390f35b34801561091257600080fd5b5061091b611d43565b6040516109289190613801565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613cf1565b611dd5565b60405161096591906139c8565b60405180910390f35b6109886004803603810190610983919061384f565b611e1e565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613d81565b611f62565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613cf1565b6120da565b6040516109e791906139c8565b60405180910390f35b3480156109fc57600080fd5b50610a0561210d565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613acd565b612132565b005b348015610a3c57600080fd5b50610a45612157565b604051610a52919061374d565b60405180910390f35b348015610a6757600080fd5b50610a7061216a565b604051610a7d91906139c8565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190613e62565b612172565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190613acd565b6121e5565b005b348015610ae457600080fd5b50610aff6004803603810190610afa919061384f565b61220a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190613b38565b612298565b604051610b3591906139c8565b60405180910390f35b348015610b4a57600080fd5b50610b53612347565b604051610b609190613801565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b919061384f565b6123d5565b604051610b9d9190613801565b60405180910390f35b348015610bb257600080fd5b50610bcd6004803603810190610bc89190613cf1565b6124fd565b604051610bda91906139c8565b60405180910390f35b348015610bef57600080fd5b50610bf8612546565b604051610c0591906139c8565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190613ee5565b61254c565b604051610c4291906139c8565b60405180910390f35b348015610c5757600080fd5b50610c726004803603810190610c6d9190613ca8565b612595565b005b348015610c8057600080fd5b50610c896125b7565b604051610c9691906139c8565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc19190613f12565b6125c1565b604051610cd3919061374d565b60405180910390f35b348015610ce857600080fd5b50610cf1612655565b604051610cfe9190613f61565b60405180910390f35b348015610d1357600080fd5b50610d2e6004803603810190610d299190613ca8565b61265b565b005b348015610d3c57600080fd5b50610d576004803603810190610d529190613cf1565b61267d565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dbc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e0290613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90613fab565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b5050505050905090565b6000610e9082612701565b610ec6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610f1190613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3d90613fab565b8015610f8a5780601f10610f5f57610100808354040283529160200191610f8a565b820191906000526020600020905b815481529060010190602001808311610f6d57829003601f168201915b505050505081565b6000610f9d82611bcd565b90508073ffffffffffffffffffffffffffffffffffffffff16610fbe612760565b73ffffffffffffffffffffffffffffffffffffffff161461102157610fea81610fe5612760565b6125c1565b611020576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110e57600080fd5b601960029054906101000a900460ff161561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590614029565b60405180910390fd5b601960009054906101000a900460ff166111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614095565b60405180910390fd5b6111b8338383612768565b6111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90614101565b60405180910390fd5b60175483611204336127c6565b61120e9190614150565b111561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690614218565b60405180910390fd5b6000611259611366565b9050601654848261126a9190614150565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614284565b60405180910390fd5b60155484826112ba9190614150565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614284565b60405180910390fd5b611303611d19565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611350578360145461134391906142a4565b34101561134f57600080fd5b5b61135a338561281d565b50505050565b60145481565b60006113706129da565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614370565b60405180910390fd5b600061140a826120da565b90506000811415611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614402565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461149f9190614150565b9250508190555080600960008282546114b89190614150565b925050819055506114c982826129df565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516114fa929190614481565b60405180910390a15050565b60165481565b611514612ad3565b8060178190555050565b600061152982612b51565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611590576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061159c84612c1f565b915091506115b281876115ad612760565b612c46565b6115fe576115c7866115c2612760565b6125c1565b6115fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611665576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116728686866001612c8a565b801561167d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061174b85611727888887612c90565b7c020000000000000000000000000000000000000000000000000000000017612cb8565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156117d35760006001850190506000600460008381526020019081526020016000205414156117d15760005481146117d0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461183b8686866001612ce3565b505050505050565b61184b612ad3565b80601360006101000a81548160ff02191690831515021790555050565b60175481565b611876612ad3565b8060168190555050565b6000600854905090565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61192c83838360405180602001604052806000815250612172565b505050565b611939612ad3565b80601960006101000a81548160ff02191690831515021790555050565b61195e612ad3565b8060148190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614370565b60405180910390fd5b60006119f68383612298565b90506000811415611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614402565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac89190614150565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1e9190614150565b92505081905550611b30838383612ce9565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611b78929190613670565b60405180910390a2505050565b601360009054906101000a900460ff1681565b611ba0612ad3565b8060109080519060200190611bb6929190613573565b5050565b601960029054906101000a900460ff1681565b6000611bd882612b51565b9050919050565b601960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611cb3612ad3565b611cbd6000612d6f565b565b611cc7612ad3565b8060188190555050565b6000600c8281548110611ce757611ce66144aa565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611d5290613fab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e90613fab565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e5657600080fd5b601960029054906101000a900460ff1615611e7057600080fd5b601960019054906101000a900460ff16611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614525565b60405180910390fd5b6000611ec9611366565b90506016548282611eda9190614150565b1115611ee557600080fd5b6015548282611ef49190614150565b1115611eff57600080fd5b611f07611d19565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f545781601454611f4791906142a4565b341015611f5357600080fd5b5b611f5e338361281d565b5050565b611f6a612760565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611fdc612760565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612089612760565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ce919061374d565b60405180910390a35050565b6000806120e56125b7565b476120f09190614150565b9050612105838261210086611dd5565b612e35565b915050919050565b612115612ad3565b6001601360006101000a81548160ff021916908315150217905550565b61213a612ad3565b80601960016101000a81548160ff02191690831515021790555050565b601960019054906101000a900460ff1681565b600047905090565b61217d84848461151e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121df576121a884848484612ea3565b6121de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121ed612ad3565b80601960026101000a81548160ff02191690831515021790555050565b612212612ad3565b601960029054906101000a900460ff161561222c57600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461226457600080fd5b600061226e611366565b9050601554828261227f9190614150565b111561228a57600080fd5b612294338361281d565b5050565b6000806122a48461254c565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122dd919061387c565b602060405180830381865afa1580156122fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231e919061455a565b6123289190614150565b905061233e8382612339878761188a565b612e35565b91505092915050565b6011805461235490613fab565b80601f016020809104026020016040519081016040528092919081815260200182805461238090613fab565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b505050505081565b60606123e082612701565b61241f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612416906145f9565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561249c5760006012805461244a90613fab565b9050116124665760405180602001604052806000815250612495565b601261247183612ff4565b6011604051602001612485939291906146e9565b6040516020818303038152906040525b90506124f8565b60006124a6613155565b905060008151116124c657604051806020016040528060008152506124f4565b806124d084612ff4565b60116040516020016124e49392919061471a565b6040516020818303038152906040525b9150505b919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60155481565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61259d612ad3565b80601190805190602001906125b3929190613573565b5050565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b612663612ad3565b8060129080519060200190612679929190613573565b5050565b612685612ad3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906147bd565b60405180910390fd5b6126fe81612d6f565b50565b60008161270c6129da565b1115801561271b575060005482105b8015612759575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006127bd612776856131e7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613217565b90509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600082141561285e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61286b6000848385612c8a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128e2836128d36000866000612c90565b6128dc8561322e565b17612cb8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461298357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612948565b5060008214156129bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129d56000848385612ce3565b505050565b600090565b80471015612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990614829565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a489061487a565b60006040518083038185875af1925050503d8060008114612a85576040519150601f19603f3d011682016040523d82523d6000602084013e612a8a565b606091505b5050905080612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590614901565b60405180910390fd5b505050565b612adb610d59565b73ffffffffffffffffffffffffffffffffffffffff16612af9611d19565b73ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061496d565b60405180910390fd5b565b60008082905080612b606129da565b11612be857600054811015612be75760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612be5575b6000811415612bdb576004600083600190039350838152602001908152602001600020549050612bb0565b8092505050612c1a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ca786868461323e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d6a8363a9059cbb60e01b8484604051602401612d08929190613670565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613247565b505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612e8691906142a4565b612e9091906149bc565b612e9a91906149ed565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ec9612760565b8786866040518563ffffffff1660e01b8152600401612eeb9493929190614a76565b6020604051808303816000875af1925050508015612f2757506040513d601f19601f82011682018060405250810190612f249190614ad7565b60015b612fa1573d8060008114612f57576040519150601f19603f3d011682016040523d82523d6000602084013e612f5c565b606091505b50600081511415612f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561303c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613150565b600082905060005b6000821461306e57808061305790614b04565b915050600a8261306791906149bc565b9150613044565b60008167ffffffffffffffff81111561308a57613089613b7d565b5b6040519080825280601f01601f1916602001820160405280156130bc5781602001600182028036833780820191505090505b5090505b60008514613149576001826130d591906149ed565b9150600a856130e49190614b4d565b60306130f09190614150565b60f81b818381518110613106576131056144aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561314291906149bc565b94506130c0565b8093505050505b919050565b60606010805461316490613fab565b80601f016020809104026020016040519081016040528092919081815260200182805461319090613fab565b80156131dd5780601f106131b2576101008083540402835291602001916131dd565b820191906000526020600020905b8154815290600101906020018083116131c057829003601f168201915b5050505050905090565b6000816040516020016131fa9190614bc6565b604051602081830303815290604052805190602001209050919050565b6000613226826018548561330e565b905092915050565b60006001821460e11b9050919050565b60009392505050565b60006132a9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166133259092919063ffffffff16565b905060008151111561330957808060200190518101906132c99190614bf6565b613308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ff90614c95565b60405180910390fd5b5b505050565b60008261331b858461333d565b1490509392505050565b60606133348484600085613393565b90509392505050565b60008082905060005b84518110156133885761337382868381518110613366576133656144aa565b5b60200260200101516134a7565b9150808061338090614b04565b915050613346565b508091505092915050565b6060824710156133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf90614d27565b60405180910390fd5b6133e1856134d2565b613420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341790614d93565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134499190614de4565b60006040518083038185875af1925050503d8060008114613486576040519150601f19603f3d011682016040523d82523d6000602084013e61348b565b606091505b509150915061349b8282866134f5565b92505050949350505050565b60008183106134bf576134ba828461355c565b6134ca565b6134c9838361355c565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561350557829050613555565b6000835111156135185782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354c9190613801565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b82805461357f90613fab565b90600052602060002090601f0160209004810192826135a157600085556135e8565b82601f106135ba57805160ff19168380011785556135e8565b828001600101855582156135e8579182015b828111156135e75782518255916020019190600101906135cc565b5b5090506135f591906135f9565b5090565b5b808211156136125760008160009055506001016135fa565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364182613616565b9050919050565b61365181613636565b82525050565b6000819050919050565b61366a81613657565b82525050565b60006040820190506136856000830185613648565b6136926020830184613661565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e2816136ad565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a6136a3565b5b6000613729848285016136f0565b91505092915050565b60008115159050919050565b61374781613732565b82525050565b6000602082019050613762600083018461373e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a2578082015181840152602081019050613787565b838111156137b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006137d382613768565b6137dd8185613773565b93506137ed818560208601613784565b6137f6816137b7565b840191505092915050565b6000602082019050818103600083015261381b81846137c8565b905092915050565b61382c81613657565b811461383757600080fd5b50565b60008135905061384981613823565b92915050565b600060208284031215613865576138646136a3565b5b60006138738482850161383a565b91505092915050565b60006020820190506138916000830184613648565b92915050565b6138a081613636565b81146138ab57600080fd5b50565b6000813590506138bd81613897565b92915050565b600080604083850312156138da576138d96136a3565b5b60006138e8858286016138ae565b92505060206138f98582860161383a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261392857613927613903565b5b8235905067ffffffffffffffff81111561394557613944613908565b5b6020830191508360208202830111156139615761396061390d565b5b9250929050565b600080600060408486031215613981576139806136a3565b5b600061398f8682870161383a565b935050602084013567ffffffffffffffff8111156139b0576139af6136a8565b5b6139bc86828701613912565b92509250509250925092565b60006020820190506139dd6000830184613661565b92915050565b60006139ee82613616565b9050919050565b6139fe816139e3565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b600060208284031215613a3757613a366136a3565b5b6000613a4584828501613a0c565b91505092915050565b600080600060608486031215613a6757613a666136a3565b5b6000613a75868287016138ae565b9350506020613a86868287016138ae565b9250506040613a978682870161383a565b9150509250925092565b613aaa81613732565b8114613ab557600080fd5b50565b600081359050613ac781613aa1565b92915050565b600060208284031215613ae357613ae26136a3565b5b6000613af184828501613ab8565b91505092915050565b6000613b0582613636565b9050919050565b613b1581613afa565b8114613b2057600080fd5b50565b600081359050613b3281613b0c565b92915050565b60008060408385031215613b4f57613b4e6136a3565b5b6000613b5d85828601613b23565b9250506020613b6e858286016138ae565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb5826137b7565b810181811067ffffffffffffffff82111715613bd457613bd3613b7d565b5b80604052505050565b6000613be7613699565b9050613bf38282613bac565b919050565b600067ffffffffffffffff821115613c1357613c12613b7d565b5b613c1c826137b7565b9050602081019050919050565b82818337600083830152505050565b6000613c4b613c4684613bf8565b613bdd565b905082815260208101848484011115613c6757613c66613b78565b5b613c72848285613c29565b509392505050565b600082601f830112613c8f57613c8e613903565b5b8135613c9f848260208601613c38565b91505092915050565b600060208284031215613cbe57613cbd6136a3565b5b600082013567ffffffffffffffff811115613cdc57613cdb6136a8565b5b613ce884828501613c7a565b91505092915050565b600060208284031215613d0757613d066136a3565b5b6000613d15848285016138ae565b91505092915050565b6000819050919050565b613d3181613d1e565b8114613d3c57600080fd5b50565b600081359050613d4e81613d28565b92915050565b600060208284031215613d6a57613d696136a3565b5b6000613d7884828501613d3f565b91505092915050565b60008060408385031215613d9857613d976136a3565b5b6000613da6858286016138ae565b9250506020613db785828601613ab8565b9150509250929050565b600067ffffffffffffffff821115613ddc57613ddb613b7d565b5b613de5826137b7565b9050602081019050919050565b6000613e05613e0084613dc1565b613bdd565b905082815260208101848484011115613e2157613e20613b78565b5b613e2c848285613c29565b509392505050565b600082601f830112613e4957613e48613903565b5b8135613e59848260208601613df2565b91505092915050565b60008060008060808587031215613e7c57613e7b6136a3565b5b6000613e8a878288016138ae565b9450506020613e9b878288016138ae565b9350506040613eac8782880161383a565b925050606085013567ffffffffffffffff811115613ecd57613ecc6136a8565b5b613ed987828801613e34565b91505092959194509250565b600060208284031215613efb57613efa6136a3565b5b6000613f0984828501613b23565b91505092915050565b60008060408385031215613f2957613f286136a3565b5b6000613f37858286016138ae565b9250506020613f48858286016138ae565b9150509250929050565b613f5b81613d1e565b82525050565b6000602082019050613f766000830184613f52565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc357607f821691505b60208210811415613fd757613fd6613f7c565b5b50919050565b7f53616c65206973206e6f74206f70656e65640000000000000000000000000000600082015250565b6000614013601283613773565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f5072656d696e74206d696e74206973206e6f74206f70656e6564000000000000600082015250565b600061407f601a83613773565b915061408a82614049565b602082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b60006140eb601483613773565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415b82613657565b915061416683613657565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419b5761419a614121565b5b828201905092915050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203420746f6b6560008201527f6e7320647572696e67207072656d696e74000000000000000000000000000000602082015250565b6000614202603183613773565b915061420d826141a6565b604082019050919050565b60006020820190508181036000830152614231816141f5565b9050919050565b7f496e73756666696369656e7420746f6b656e73206c6566740000000000000000600082015250565b600061426e601883613773565b915061427982614238565b602082019050919050565b6000602082019050818103600083015261429d81614261565b9050919050565b60006142af82613657565b91506142ba83613657565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f3576142f2614121565b5b828202905092915050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061435a602683613773565b9150614365826142fe565b604082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006143ec602b83613773565b91506143f782614390565b604082019050919050565b6000602082019050818103600083015261441b816143df565b9050919050565b6000819050919050565b600061444761444261443d84613616565b614422565b613616565b9050919050565b60006144598261442c565b9050919050565b600061446b8261444e565b9050919050565b61447b81614460565b82525050565b60006040820190506144966000830185614472565b6144a36020830184613661565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c6963206d696e74206973206e6f74206f70656e656400000000000000600082015250565b600061450f601983613773565b915061451a826144d9565b602082019050919050565b6000602082019050818103600083015261453e81614502565b9050919050565b60008151905061455481613823565b92915050565b6000602082840312156145705761456f6136a3565b5b600061457e84828501614545565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145e3602f83613773565b91506145ee82614587565b604082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461464681613fab565b6146508186614619565b9450600182166000811461466b576001811461467c576146af565b60ff198316865281860193506146af565b61468585614624565b60005b838110156146a757815481890152600182019150602081019050614688565b838801955050505b50505092915050565b60006146c382613768565b6146cd8185614619565b93506146dd818560208601613784565b80840191505092915050565b60006146f58286614639565b915061470182856146b8565b915061470d8284614639565b9150819050949350505050565b600061472682866146b8565b915061473282856146b8565b915061473e8284614639565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147a7602683613773565b91506147b28261474b565b604082019050919050565b600060208201905081810360008301526147d68161479a565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614813601d83613773565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b600081905092915050565b50565b6000614864600083614849565b915061486f82614854565b600082019050919050565b600061488582614857565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006148eb603a83613773565b91506148f68261488f565b604082019050919050565b6000602082019050818103600083015261491a816148de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614957602083613773565b915061496282614921565b602082019050919050565b600060208201905081810360008301526149868161494a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149c782613657565b91506149d283613657565b9250826149e2576149e161498d565b5b828204905092915050565b60006149f882613657565b9150614a0383613657565b925082821015614a1657614a15614121565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a4882614a21565b614a528185614a2c565b9350614a62818560208601613784565b614a6b816137b7565b840191505092915050565b6000608082019050614a8b6000830187613648565b614a986020830186613648565b614aa56040830185613661565b8181036060830152614ab78184614a3d565b905095945050505050565b600081519050614ad1816136d9565b92915050565b600060208284031215614aed57614aec6136a3565b5b6000614afb84828501614ac2565b91505092915050565b6000614b0f82613657565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b4257614b41614121565b5b600182019050919050565b6000614b5882613657565b9150614b6383613657565b925082614b7357614b7261498d565b5b828206905092915050565b60008160601b9050919050565b6000614b9682614b7e565b9050919050565b6000614ba882614b8b565b9050919050565b614bc0614bbb82613636565b614b9d565b82525050565b6000614bd28284614baf565b60148201915081905092915050565b600081519050614bf081613aa1565b92915050565b600060208284031215614c0c57614c0b6136a3565b5b6000614c1a84828501614be1565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c7f602a83613773565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d11602683613773565b9150614d1c82614cb5565b604082019050919050565b60006020820190508181036000830152614d4081614d04565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614d7d601d83613773565b9150614d8882614d47565b602082019050919050565b60006020820190508181036000830152614dac81614d70565b9050919050565b6000614dbe82614a21565b614dc88185614849565b9350614dd8818560208601613784565b80840191505092915050565b6000614df08284614db3565b91508190509291505056fea26469706673582212202416c1028297db91dc3f421795b408d5620d348fc715b107f716bdeda5d6929e64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000022b90000000000000000000000000000000000000000000000000000000000000a6b00000000000000000000000000000000000000000000000000000000000001a050626a6ea915f509300a64e08a7965f8edb32eda2aa1c75bf630c9660b9e7e12000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000002243656e7475727920536f6369616c20436c7562202d205265616c566f6c7574696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343534300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506f564576434251336f725a42666635693773727369714c4d6d68436448337a756b75396138425a663663472f000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000b4c50ec92364f107c9d7925ba34c8f5ffe0ab5fa00000000000000000000000050e739c5968b1bf377d6beafd0b46de906b2898a0000000000000000000000003b30ba562e6153da48f84a3c76397f23618c2e64000000000000000000000000f8b18715ba3c2fa548c46b6f918972d8ab6fdeff0000000000000000000000002cc2a0852471ea396f8986a4384b72964f69684200000000000000000000000000777c93da46efbd4b9ee2f65e5391a4b0b4a44200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _name (string): Century Social Club - RealVolution
Arg [1] : _symbol (string): CSC
Arg [2] : _maxSupply (uint256): 8889
Arg [3] : _supplyLimit (uint256): 2667
Arg [4] : _initNotRevealedUri (string): ipfs://QmPoVEvCBQ3orZBff5i7srsiqLMmhCdH3zuku9a8BZf6cG/
Arg [5] : _merkleroot (bytes32): 0x50626a6ea915f509300a64e08a7965f8edb32eda2aa1c75bf630c9660b9e7e12
Arg [6] : _payees (address[]): 0xb4c50EC92364F107c9d7925bA34C8F5Ffe0AB5FA,0x50E739c5968b1bF377d6beAFD0b46dE906b2898a,0x3b30BA562E6153da48F84a3c76397F23618c2e64,0xF8b18715Ba3C2fA548C46b6f918972d8Ab6fdEFf,0x2CC2a0852471Ea396f8986a4384B72964F696842,0x00777c93DA46efbd4B9EE2f65e5391a4b0B4A442
Arg [7] : _shares (uint256[]): 50,10,10,10,10,10

-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000022b9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000a6b
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 50626a6ea915f509300a64e08a7965f8edb32eda2aa1c75bf630c9660b9e7e12
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [7] : 00000000000000000000000000000000000000000000000000000000000002e0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [9] : 43656e7475727920536f6369616c20436c7562202d205265616c566f6c757469
Arg [10] : 6f6e000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 4353430000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [14] : 697066733a2f2f516d506f564576434251336f725a4266663569377372736971
Arg [15] : 4c4d6d68436448337a756b75396138425a663663472f00000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [17] : 000000000000000000000000b4c50ec92364f107c9d7925ba34c8f5ffe0ab5fa
Arg [18] : 00000000000000000000000050e739c5968b1bf377d6beafd0b46de906b2898a
Arg [19] : 0000000000000000000000003b30ba562e6153da48f84a3c76397f23618c2e64
Arg [20] : 000000000000000000000000f8b18715ba3c2fa548c46b6f918972d8ab6fdeff
Arg [21] : 0000000000000000000000002cc2a0852471ea396f8986a4384b72964f696842
Arg [22] : 00000000000000000000000000777c93da46efbd4b9ee2f65e5391a4b0b4a442
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [25] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [26] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [27] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [28] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [29] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

92674:8424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33781:40;33797:12;:10;:12::i;:::-;33811:9;33781:40;;;;;;;:::i;:::-;;;;;;;;92674:8424;;;;;59770:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60672:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67155:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92877:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66596:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99118:804;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92978:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56423:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36302:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93049:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94192:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70862:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97899:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93082:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95372:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33912:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35041:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73775:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94946:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93940:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37023:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92912:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94730:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93270:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62065:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93183:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57607:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40518:103;;;;;;;;;;;;;:::i;:::-;;95880:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35267:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39870:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60848:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34763:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98465:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67713:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35457:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97712:69;;;;;;;;;;;;;:::i;:::-;;95153:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93225:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96258:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74558:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96106:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98070:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35842:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92833:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96660:998;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34559:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93018:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34349:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95617:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34097:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68178:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93126:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94482:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40776:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30202:98;30255:7;30282:10;30275:17;;30202:98;:::o;59770:639::-;59855:4;60194:10;60179:25;;:11;:25;;;;:102;;;;60271:10;60256:25;;:11;:25;;;;60179:102;:179;;;;60348:10;60333:25;;:11;:25;;;;60179:179;60159:199;;59770:639;;;:::o;60672:100::-;60726:13;60759:5;60752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60672:100;:::o;67155:218::-;67231:7;67256:16;67264:7;67256;:16::i;:::-;67251:64;;67281:34;;;;;;;;;;;;;;67251:64;67335:15;:24;67351:7;67335:24;;;;;;;;;;;:30;;;;;;;;;;;;67328:37;;67155:218;;;:::o;92877:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66596:400::-;66677:13;66693:16;66701:7;66693;:16::i;:::-;66677:32;;66749:5;66726:28;;:19;:17;:19::i;:::-;:28;;;66722:175;;66774:44;66791:5;66798:19;:17;:19::i;:::-;66774:16;:44::i;:::-;66769:128;;66846:35;;;;;;;;;;;;;;66769:128;66722:175;66942:2;66909:15;:24;66925:7;66909:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;66980:7;66976:2;66960:28;;66969:5;66960:28;;;;;;;;;;;;66666:330;66596:400;;:::o;99118:804::-;99235:9;99221:23;;:10;:23;;;99213:32;;;;;;99265:6;;;;;;;;;;;99264:7;99256:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;99313:15;;;;;;;;;;;99305:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;99378:33;99392:10;99404:6;;99378:13;:33::i;:::-;99370:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;99496:18;;99483:9;99455:25;99469:10;99455:13;:25::i;:::-;:37;;;;:::i;:::-;:59;;99447:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;99579:14;99596:13;:11;:13::i;:::-;99579:30;;99650:11;;99637:9;99628:6;:18;;;;:::i;:::-;:33;;99620:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;99731:9;;99718;99709:6;:18;;;;:::i;:::-;:31;;99701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99800:7;:5;:7::i;:::-;99786:21;;:10;:21;;;99782:92;;99852:9;99845:4;;:16;;;;:::i;:::-;99832:9;:29;;99824:38;;;;;;99782:92;99886:28;99892:10;99904:9;99886:5;:28::i;:::-;99202:720;99118:804;;;:::o;92978:33::-;;;;:::o;56423:323::-;56484:7;56712:15;:13;:15::i;:::-;56697:12;;56681:13;;:28;:46;56674:53;;56423:323;:::o;36302:453::-;36397:1;36378:7;:16;36386:7;36378:16;;;;;;;;;;;;;;;;:20;36370:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36454:15;36472:19;36483:7;36472:10;:19::i;:::-;36454:37;;36523:1;36512:7;:12;;36504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36607:7;36585:9;:18;36595:7;36585:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;36643:7;36625:14;;:25;;;;;;;:::i;:::-;;;;;;;;36663:35;36681:7;36690;36663:17;:35::i;:::-;36714:33;36730:7;36739;36714:33;;;;;;;:::i;:::-;;;;;;;;36359:396;36302:453;:::o;93049:26::-;;;;:::o;94192:142::-;39756:13;:11;:13::i;:::-;94304:22:::1;94283:18;:43;;;;94192:142:::0;:::o;70862:2817::-;70996:27;71026;71045:7;71026:18;:27::i;:::-;70996:57;;71111:4;71070:45;;71086:19;71070:45;;;71066:86;;71124:28;;;;;;;;;;;;;;71066:86;71166:27;71195:23;71222:35;71249:7;71222:26;:35::i;:::-;71165:92;;;;71357:68;71382:15;71399:4;71405:19;:17;:19::i;:::-;71357:24;:68::i;:::-;71352:180;;71445:43;71462:4;71468:19;:17;:19::i;:::-;71445:16;:43::i;:::-;71440:92;;71497:35;;;;;;;;;;;;;;71440:92;71352:180;71563:1;71549:16;;:2;:16;;;71545:52;;;71574:23;;;;;;;;;;;;;;71545:52;71610:43;71632:4;71638:2;71642:7;71651:1;71610:21;:43::i;:::-;71746:15;71743:160;;;71886:1;71865:19;71858:30;71743:160;72283:18;:24;72302:4;72283:24;;;;;;;;;;;;;;;;72281:26;;;;;;;;;;;;72352:18;:22;72371:2;72352:22;;;;;;;;;;;;;;;;72350:24;;;;;;;;;;;72674:146;72711:2;72760:45;72775:4;72781:2;72785:19;72760:14;:45::i;:::-;52822:8;72732:73;72674:18;:146::i;:::-;72645:17;:26;72663:7;72645:26;;;;;;;;;;;:175;;;;72991:1;52822:8;72940:19;:47;:52;72936:627;;;73013:19;73045:1;73035:7;:11;73013:33;;73202:1;73168:17;:30;73186:11;73168:30;;;;;;;;;;;;:35;73164:384;;;73306:13;;73291:11;:28;73287:242;;73486:19;73453:17;:30;73471:11;73453:30;;;;;;;;;;;:52;;;;73287:242;73164:384;72994:569;72936:627;73610:7;73606:2;73591:27;;73600:4;73591:27;;;;;;;;;;;;73629:42;73650:4;73656:2;73660:7;73669:1;73629:20;:42::i;:::-;70985:2694;;;70862:2817;;;:::o;97899:85::-;39756:13;:11;:13::i;:::-;97970:6:::1;97959:8;;:17;;;;;;;;;;;;;;;;;;97899:85:::0;:::o;93082:37::-;;;;:::o;95372:108::-;39756:13;:11;:13::i;:::-;95460:12:::1;95446:11;:26;;;;95372:108:::0;:::o;33912:91::-;33956:7;33983:12;;33976:19;;33912:91;:::o;35041:135::-;35111:7;35138:14;:21;35153:5;35138:21;;;;;;;;;;;;;;;:30;35160:7;35138:30;;;;;;;;;;;;;;;;35131:37;;35041:135;;;;:::o;73775:185::-;73913:39;73930:4;73936:2;73940:7;73913:39;;;;;;;;;;;;:16;:39::i;:::-;73775:185;;;:::o;94946:101::-;39756:13;:11;:13::i;:::-;95032:7:::1;95014:15;;:25;;;;;;;;;;;;;;;;;;94946:101:::0;:::o;93940:86::-;39756:13;:11;:13::i;:::-;94010:8:::1;94003:4;:15;;;;93940:86:::0;:::o;37023:514::-;37124:1;37105:7;:16;37113:7;37105:16;;;;;;;;;;;;;;;;:20;37097:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37181:15;37199:26;37210:5;37217:7;37199:10;:26::i;:::-;37181:44;;37257:1;37246:7;:12;;37238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37353:7;37319:14;:21;37334:5;37319:21;;;;;;;;;;;;;;;:30;37341:7;37319:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;37401:7;37371:19;:26;37391:5;37371:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;37421:47;37444:5;37451:7;37460;37421:22;:47::i;:::-;37505:5;37484:45;;;37512:7;37521;37484:45;;;;;;;:::i;:::-;;;;;;;;37086:451;37023:514;;:::o;92912:28::-;;;;;;;;;;;;;:::o;94730:104::-;39756:13;:11;:13::i;:::-;94815:11:::1;94805:7;:21;;;;;;;;;;;;:::i;:::-;;94730:104:::0;:::o;93270:26::-;;;;;;;;;;;;;:::o;62065:152::-;62137:7;62180:27;62199:7;62180:18;:27::i;:::-;62157:52;;62065:152;;;:::o;93183:35::-;;;;;;;;;;;;;:::o;57607:233::-;57679:7;57720:1;57703:19;;:5;:19;;;57699:60;;;57731:28;;;;;;;;;;;;;;57699:60;51766:13;57777:18;:25;57796:5;57777:25;;;;;;;;;;;;;;;;:55;57770:62;;57607:233;;;:::o;40518:103::-;39756:13;:11;:13::i;:::-;40583:30:::1;40610:1;40583:18;:30::i;:::-;40518:103::o:0;95880:121::-;39756:13;:11;:13::i;:::-;95982:11:::1;95975:4;:18;;;;95880:121:::0;:::o;35267:100::-;35318:7;35345;35353:5;35345:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35338:21;;35267:100;;;:::o;39870:87::-;39916:7;39943:6;;;;;;;;;;;39936:13;;39870:87;:::o;60848:104::-;60904:13;60937:7;60930:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60848:104;:::o;34763:109::-;34819:7;34846:9;:18;34856:7;34846:18;;;;;;;;;;;;;;;;34839:25;;34763:109;;;:::o;98465:489::-;98552:9;98538:23;;:10;:23;;;98530:32;;;;;;98582:6;;;;;;;;;;;98581:7;98573:16;;;;;;98608:18;;;;;;;;;;;98600:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;98667:14;98684:13;:11;:13::i;:::-;98667:30;;98738:11;;98725:9;98716:6;:18;;;;:::i;:::-;:33;;98708:42;;;;;;98791:9;;98778;98769:6;:18;;;;:::i;:::-;:31;;98761:40;;;;;;98832:7;:5;:7::i;:::-;98818:21;;:10;:21;;;98814:92;;98884:9;98877:4;;:16;;;;:::i;:::-;98864:9;:29;;98856:38;;;;;;98814:92;98918:28;98924:10;98936:9;98918:5;:28::i;:::-;98519:435;98465:489;:::o;67713:308::-;67824:19;:17;:19::i;:::-;67812:31;;:8;:31;;;67808:61;;;67852:17;;;;;;;;;;;;;;67808:61;67934:8;67882:18;:39;67901:19;:17;:19::i;:::-;67882:39;;;;;;;;;;;;;;;:49;67922:8;67882:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;67994:8;67958:55;;67973:19;:17;:19::i;:::-;67958:55;;;68004:8;67958:55;;;;;;:::i;:::-;;;;;;;;67713:308;;:::o;35457:225::-;35515:7;35535:21;35583:15;:13;:15::i;:::-;35559:21;:39;;;;:::i;:::-;35535:63;;35616:58;35632:7;35641:13;35656:17;35665:7;35656:8;:17::i;:::-;35616:15;:58::i;:::-;35609:65;;;35457:225;;;:::o;97712:69::-;39756:13;:11;:13::i;:::-;97769:4:::1;97758:8;;:15;;;;;;;;;;;;;;;;;;97712:69::o:0;95153:101::-;39756:13;:11;:13::i;:::-;95239:7:::1;95218:18;;:28;;;;;;;;;;;;;;;;;;95153:101:::0;:::o;93225:38::-;;;;;;;;;;;;;:::o;96258:95::-;96297:7;96324:21;96317:28;;96258:95;:::o;74558:399::-;74725:31;74738:4;74744:2;74748:7;74725:12;:31::i;:::-;74789:1;74771:2;:14;;;:19;74767:183;;74810:56;74841:4;74847:2;74851:7;74860:5;74810:30;:56::i;:::-;74805:145;;74894:40;;;;;;;;;;;;;;74805:145;74767:183;74558:399;;;;:::o;96106:82::-;39756:13;:11;:13::i;:::-;96174:6:::1;96165;;:15;;;;;;;;;;;;;;;;;;96106:82:::0;:::o;98070:264::-;39756:13;:11;:13::i;:::-;98145:6:::1;;;;;;;;;;;98144:7;98136:16;;;::::0;::::1;;98185:9;98171:23;;:10;:23;;;98163:32;;;::::0;::::1;;98206:14;98223:13;:11;:13::i;:::-;98206:30;;98277:9;;98264;98255:6;:18;;;;:::i;:::-;:31;;98247:40;;;::::0;::::1;;98298:28;98304:10;98316:9;98298:5;:28::i;:::-;98125:209;98070:264:::0;:::o;35842:260::-;35914:7;35934:21;35991:20;36005:5;35991:13;:20::i;:::-;35958:5;:15;;;35982:4;35958:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;35934:77;;36029:65;36045:7;36054:13;36069:24;36078:5;36085:7;36069:8;:24::i;:::-;36029:15;:65::i;:::-;36022:72;;;35842:260;;;;:::o;92833:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;96660:998::-;96778:13;96831:16;96839:7;96831;:16::i;:::-;96809:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;96951:5;96939:17;;:8;;;;;;;;;;;:17;;;96935:344;;;97011:1;96986:14;96980:28;;;;;:::i;:::-;;;:32;:287;;;;;;;;;;;;;;;;;97104:14;97145:18;:7;:16;:18::i;:::-;97190:13;97061:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96980:287;96973:294;;;;96935:344;97291:28;97322:10;:8;:10::i;:::-;97291:41;;97394:1;97369:14;97363:28;:32;:287;;;;;;;;;;;;;;;;;97487:14;97528:18;:7;:16;:18::i;:::-;97573:13;97444:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;97363:287;97343:307;;;96660:998;;;;:::o;34559:105::-;34613:7;34640;:16;34648:7;34640:16;;;;;;;;;;;;;;;;34633:23;;34559:105;;;:::o;93018:24::-;;;;:::o;34349:119::-;34407:7;34434:19;:26;34454:5;34434:26;;;;;;;;;;;;;;;;34427:33;;34349:119;;;:::o;95617:151::-;39756:13;:11;:13::i;:::-;95743:17:::1;95727:13;:33;;;;;;;;;;;;:::i;:::-;;95617:151:::0;:::o;34097:95::-;34143:7;34170:14;;34163:21;;34097:95;:::o;68178:164::-;68275:4;68299:18;:25;68318:5;68299:25;;;;;;;;;;;;;;;:35;68325:8;68299:35;;;;;;;;;;;;;;;;;;;;;;;;;68292:42;;68178:164;;;;:::o;93126:19::-;;;;:::o;94482:126::-;39756:13;:11;:13::i;:::-;94585:15:::1;94568:14;:32;;;;;;;;;;;;:::i;:::-;;94482:126:::0;:::o;40776:201::-;39756:13;:11;:13::i;:::-;40885:1:::1;40865:22;;:8;:22;;;;40857:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40941:28;40960:8;40941:18;:28::i;:::-;40776:201:::0;:::o;68600:282::-;68665:4;68721:7;68702:15;:13;:15::i;:::-;:26;;:66;;;;;68755:13;;68745:7;:23;68702:66;:153;;;;;68854:1;52542:8;68806:17;:26;68824:7;68806:26;;;;;;;;;;;;:44;:49;68702:153;68682:173;;68600:282;;;:::o;90366:105::-;90426:7;90453:10;90446:17;;90366:105;:::o;100223:150::-;100311:4;100335:30;100343:14;100349:7;100343:5;:14::i;:::-;100359:5;;100335:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:30::i;:::-;100328:37;;100223:150;;;;;:::o;57922:178::-;57983:7;51766:13;51904:2;58011:18;:25;58030:5;58011:25;;;;;;;;;;;;;;;;:50;;58010:82;58003:89;;57922:178;;;:::o;78219:2454::-;78292:20;78315:13;;78292:36;;78355:1;78343:8;:13;78339:44;;;78365:18;;;;;;;;;;;;;;78339:44;78396:61;78426:1;78430:2;78434:12;78448:8;78396:21;:61::i;:::-;78940:1;51904:2;78910:1;:26;;78909:32;78897:8;:45;78871:18;:22;78890:2;78871:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;79219:139;79256:2;79310:33;79333:1;79337:2;79341:1;79310:14;:33::i;:::-;79277:30;79298:8;79277:20;:30::i;:::-;:66;79219:18;:139::i;:::-;79185:17;:31;79203:12;79185:31;;;;;;;;;;;:173;;;;79375:16;79406:11;79435:8;79420:12;:23;79406:37;;79690:16;79686:2;79682:25;79670:37;;80062:12;80022:8;79981:1;79919:25;79860:1;79799;79772:335;80187:1;80173:12;80169:20;80127:346;80228:3;80219:7;80216:16;80127:346;;80446:7;80436:8;80433:1;80406:25;80403:1;80400;80395:59;80281:1;80272:7;80268:15;80257:26;;80127:346;;;80131:77;80518:1;80506:8;:13;80502:45;;;80528:19;;;;;;;;;;;;;;80502:45;80580:3;80564:13;:19;;;;78645:1950;;80605:60;80634:1;80638:2;80642:12;80656:8;80605:20;:60::i;:::-;78281:2392;78219:2454;;:::o;55939:92::-;55995:7;55939:92;:::o;2494:317::-;2609:6;2584:21;:31;;2576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2663:12;2681:9;:14;;2703:6;2681:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662:52;;;2733:7;2725:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:246;2494:317;;:::o;40035:132::-;40110:12;:10;:12::i;:::-;40099:23;;:7;:5;:7::i;:::-;:23;;;40091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40035:132::o;63220:1275::-;63287:7;63307:12;63322:7;63307:22;;63390:4;63371:15;:13;:15::i;:::-;:23;63367:1061;;63424:13;;63417:4;:20;63413:1015;;;63462:14;63479:17;:23;63497:4;63479:23;;;;;;;;;;;;63462:40;;63596:1;52542:8;63568:6;:24;:29;63564:845;;;64233:113;64250:1;64240:6;:11;64233:113;;;64293:17;:25;64311:6;;;;;;;64293:25;;;;;;;;;;;;64284:34;;64233:113;;;64379:6;64372:13;;;;;;63564:845;63439:989;63413:1015;63367:1061;64456:31;;;;;;;;;;;;;;63220:1275;;;;:::o;69763:479::-;69865:27;69894:23;69935:38;69976:15;:24;69992:7;69976:24;;;;;;;;;;;69935:65;;70147:18;70124:41;;70204:19;70198:26;70179:45;;70109:126;69763:479;;;:::o;68991:659::-;69140:11;69305:16;69298:5;69294:28;69285:37;;69465:16;69454:9;69450:32;69437:45;;69615:15;69604:9;69601:30;69593:5;69582:9;69579:20;69576:56;69566:66;;68991:659;;;;;:::o;75619:159::-;;;;;:::o;89675:311::-;89810:7;89830:16;52946:3;89856:19;:41;;89830:68;;52946:3;89924:31;89935:4;89941:2;89945:9;89924:10;:31::i;:::-;89916:40;;:62;;89909:69;;;89675:311;;;;;:::o;65043:450::-;65123:14;65291:16;65284:5;65280:28;65271:37;;65468:5;65454:11;65429:23;65425:41;65422:52;65415:5;65412:63;65402:73;;65043:450;;;;:::o;76443:158::-;;;;;:::o;14511:211::-;14628:86;14648:5;14678:23;;;14703:2;14707:5;14655:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14628:19;:86::i;:::-;14511:211;;;:::o;41137:191::-;41211:16;41230:6;;;;;;;;;;;41211:25;;41256:8;41247:6;;:17;;;;;;;;;;;;;;;;;;41311:8;41280:40;;41301:8;41280:40;;;;;;;;;;;;41200:128;41137:191;:::o;37715:248::-;37861:7;37940:15;37925:12;;37905:7;:16;37913:7;37905:16;;;;;;;;;;;;;;;;37889:13;:32;;;;:::i;:::-;37888:49;;;;:::i;:::-;:67;;;;:::i;:::-;37881:74;;37715:248;;;;;:::o;77041:716::-;77204:4;77250:2;77225:45;;;77271:19;:17;:19::i;:::-;77292:4;77298:7;77307:5;77225:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;77221:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77525:1;77508:6;:13;:18;77504:235;;;77554:40;;;;;;;;;;;;;;77504:235;77697:6;77691:13;77682:6;77678:2;77674:15;77667:38;77221:529;77394:54;;;77384:64;;;:6;:64;;;;77377:71;;;77041:716;;;;;;:::o;18731:723::-;18787:13;19017:1;19008:5;:10;19004:53;;;19035:10;;;;;;;;;;;;;;;;;;;;;19004:53;19067:12;19082:5;19067:20;;19098:14;19123:78;19138:1;19130:4;:9;19123:78;;19156:8;;;;;:::i;:::-;;;;19187:2;19179:10;;;;;:::i;:::-;;;19123:78;;;19211:19;19243:6;19233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19211:39;;19261:154;19277:1;19268:5;:10;19261:154;;19305:1;19295:11;;;;;:::i;:::-;;;19372:2;19364:5;:10;;;;:::i;:::-;19351:2;:24;;;;:::i;:::-;19338:39;;19321:6;19328;19321:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19401:2;19392:11;;;;;:::i;:::-;;;19261:154;;;19439:6;19425:21;;;;;18731:723;;;;:::o;96445:108::-;96505:13;96538:7;96531:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96445:108;:::o;100530:125::-;100584:7;100638;100621:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;100611:36;;;;;;100604:43;;100530:125;;;:::o;100949:146::-;101026:4;101050:37;101069:5;101076:4;;101082;101050:18;:37::i;:::-;101043:44;;100949:146;;;;:::o;65595:324::-;65665:14;65898:1;65888:8;65885:15;65859:24;65855:46;65845:56;;65595:324;;;:::o;89376:147::-;89513:6;89376:147;;;;;:::o;17578:716::-;18002:23;18028:69;18056:4;18028:69;;;;;;;;;;;;;;;;;18036:5;18028:27;;;;:69;;;;;:::i;:::-;18002:95;;18132:1;18112:10;:17;:21;18108:179;;;18209:10;18198:30;;;;;;;;;;;;:::i;:::-;18190:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18108:179;17648:646;17578:716;;:::o;22017:190::-;22142:4;22195;22166:25;22179:5;22186:4;22166:12;:25::i;:::-;:33;22159:40;;22017:190;;;;;:::o;3978:229::-;4115:12;4147:52;4169:6;4177:4;4183:1;4186:12;4147:21;:52::i;:::-;4140:59;;3978:229;;;;;:::o;22884:296::-;22967:7;22987:20;23010:4;22987:27;;23030:9;23025:118;23049:5;:12;23045:1;:16;23025:118;;;23098:33;23108:12;23122:5;23128:1;23122:8;;;;;;;;:::i;:::-;;;;;;;;23098:9;:33::i;:::-;23083:48;;23063:3;;;;;:::i;:::-;;;;23025:118;;;;23160:12;23153:19;;;22884:296;;;;:::o;5098:510::-;5268:12;5326:5;5301:21;:30;;5293:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5393:18;5404:6;5393:10;:18::i;:::-;5385:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5459:12;5473:23;5500:6;:11;;5519:5;5526:4;5500:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5458:73;;;;5549:51;5566:7;5575:10;5587:12;5549:16;:51::i;:::-;5542:58;;;;5098:510;;;;;;:::o;29091:149::-;29154:7;29185:1;29181;:5;:51;;29212:20;29227:1;29230;29212:14;:20::i;:::-;29181:51;;;29189:20;29204:1;29207;29189:14;:20::i;:::-;29181:51;29174:58;;29091:149;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;7784:762::-;7934:12;7963:7;7959:580;;;7994:10;7987:17;;;;7959:580;8128:1;8108:10;:17;:21;8104:424;;;8356:10;8350:17;8417:15;8404:10;8400:2;8396:19;8389:44;8104:424;8499:12;8492:20;;;;;;;;;;;:::i;:::-;;;;;;;;7784:762;;;;;;:::o;29248:268::-;29316:13;29423:1;29417:4;29410:15;29452:1;29446:4;29439:15;29493:4;29487;29477:21;29468:30;;29248:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:149;1273:7;1313:66;1306:5;1302:78;1291:89;;1237:149;;;:::o;1392:120::-;1464:23;1481:5;1464:23;:::i;:::-;1457:5;1454:34;1444:62;;1502:1;1499;1492:12;1444:62;1392:120;:::o;1518:137::-;1563:5;1601:6;1588:20;1579:29;;1617:32;1643:5;1617:32;:::i;:::-;1518:137;;;;:::o;1661:327::-;1719:6;1768:2;1756:9;1747:7;1743:23;1739:32;1736:119;;;1774:79;;:::i;:::-;1736:119;1894:1;1919:52;1963:7;1954:6;1943:9;1939:22;1919:52;:::i;:::-;1909:62;;1865:116;1661:327;;;;:::o;1994:90::-;2028:7;2071:5;2064:13;2057:21;2046:32;;1994:90;;;:::o;2090:109::-;2171:21;2186:5;2171:21;:::i;:::-;2166:3;2159:34;2090:109;;:::o;2205:210::-;2292:4;2330:2;2319:9;2315:18;2307:26;;2343:65;2405:1;2394:9;2390:17;2381:6;2343:65;:::i;:::-;2205:210;;;;:::o;2421:99::-;2473:6;2507:5;2501:12;2491:22;;2421:99;;;:::o;2526:169::-;2610:11;2644:6;2639:3;2632:19;2684:4;2679:3;2675:14;2660:29;;2526:169;;;;:::o;2701:307::-;2769:1;2779:113;2793:6;2790:1;2787:13;2779:113;;;2878:1;2873:3;2869:11;2863:18;2859:1;2854:3;2850:11;2843:39;2815:2;2812:1;2808:10;2803:15;;2779:113;;;2910:6;2907:1;2904:13;2901:101;;;2990:1;2981:6;2976:3;2972:16;2965:27;2901:101;2750:258;2701:307;;;:::o;3014:102::-;3055:6;3106:2;3102:7;3097:2;3090:5;3086:14;3082:28;3072:38;;3014:102;;;:::o;3122:364::-;3210:3;3238:39;3271:5;3238:39;:::i;:::-;3293:71;3357:6;3352:3;3293:71;:::i;:::-;3286:78;;3373:52;3418:6;3413:3;3406:4;3399:5;3395:16;3373:52;:::i;:::-;3450:29;3472:6;3450:29;:::i;:::-;3445:3;3441:39;3434:46;;3214:272;3122:364;;;;:::o;3492:313::-;3605:4;3643:2;3632:9;3628:18;3620:26;;3692:9;3686:4;3682:20;3678:1;3667:9;3663:17;3656:47;3720:78;3793:4;3784:6;3720:78;:::i;:::-;3712:86;;3492:313;;;;:::o;3811:122::-;3884:24;3902:5;3884:24;:::i;:::-;3877:5;3874:35;3864:63;;3923:1;3920;3913:12;3864:63;3811:122;:::o;3939:139::-;3985:5;4023:6;4010:20;4001:29;;4039:33;4066:5;4039:33;:::i;:::-;3939:139;;;;:::o;4084:329::-;4143:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:119;;;4198:79;;:::i;:::-;4160:119;4318:1;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4289:117;4084:329;;;;:::o;4419:222::-;4512:4;4550:2;4539:9;4535:18;4527:26;;4563:71;4631:1;4620:9;4616:17;4607:6;4563:71;:::i;:::-;4419:222;;;;:::o;4647:122::-;4720:24;4738:5;4720:24;:::i;:::-;4713:5;4710:35;4700:63;;4759:1;4756;4749:12;4700:63;4647:122;:::o;4775:139::-;4821:5;4859:6;4846:20;4837:29;;4875:33;4902:5;4875:33;:::i;:::-;4775:139;;;;:::o;4920:474::-;4988:6;4996;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;5298:2;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5269:118;4920:474;;;;;:::o;5400:117::-;5509:1;5506;5499:12;5523:117;5632:1;5629;5622:12;5646:117;5755:1;5752;5745:12;5786:568;5859:8;5869:6;5919:3;5912:4;5904:6;5900:17;5896:27;5886:122;;5927:79;;:::i;:::-;5886:122;6040:6;6027:20;6017:30;;6070:18;6062:6;6059:30;6056:117;;;6092:79;;:::i;:::-;6056:117;6206:4;6198:6;6194:17;6182:29;;6260:3;6252:4;6244:6;6240:17;6230:8;6226:32;6223:41;6220:128;;;6267:79;;:::i;:::-;6220:128;5786:568;;;;;:::o;6360:704::-;6455:6;6463;6471;6520:2;6508:9;6499:7;6495:23;6491:32;6488:119;;;6526:79;;:::i;:::-;6488:119;6646:1;6671:53;6716:7;6707:6;6696:9;6692:22;6671:53;:::i;:::-;6661:63;;6617:117;6801:2;6790:9;6786:18;6773:32;6832:18;6824:6;6821:30;6818:117;;;6854:79;;:::i;:::-;6818:117;6967:80;7039:7;7030:6;7019:9;7015:22;6967:80;:::i;:::-;6949:98;;;;6744:313;6360:704;;;;;:::o;7070:222::-;7163:4;7201:2;7190:9;7186:18;7178:26;;7214:71;7282:1;7271:9;7267:17;7258:6;7214:71;:::i;:::-;7070:222;;;;:::o;7298:104::-;7343:7;7372:24;7390:5;7372:24;:::i;:::-;7361:35;;7298:104;;;:::o;7408:138::-;7489:32;7515:5;7489:32;:::i;:::-;7482:5;7479:43;7469:71;;7536:1;7533;7526:12;7469:71;7408:138;:::o;7552:155::-;7606:5;7644:6;7631:20;7622:29;;7660:41;7695:5;7660:41;:::i;:::-;7552:155;;;;:::o;7713:345::-;7780:6;7829:2;7817:9;7808:7;7804:23;7800:32;7797:119;;;7835:79;;:::i;:::-;7797:119;7955:1;7980:61;8033:7;8024:6;8013:9;8009:22;7980:61;:::i;:::-;7970:71;;7926:125;7713:345;;;;:::o;8064:619::-;8141:6;8149;8157;8206:2;8194:9;8185:7;8181:23;8177:32;8174:119;;;8212:79;;:::i;:::-;8174:119;8332:1;8357:53;8402:7;8393:6;8382:9;8378:22;8357:53;:::i;:::-;8347:63;;8303:117;8459:2;8485:53;8530:7;8521:6;8510:9;8506:22;8485:53;:::i;:::-;8475:63;;8430:118;8587:2;8613:53;8658:7;8649:6;8638:9;8634:22;8613:53;:::i;:::-;8603:63;;8558:118;8064:619;;;;;:::o;8689:116::-;8759:21;8774:5;8759:21;:::i;:::-;8752:5;8749:32;8739:60;;8795:1;8792;8785:12;8739:60;8689:116;:::o;8811:133::-;8854:5;8892:6;8879:20;8870:29;;8908:30;8932:5;8908:30;:::i;:::-;8811:133;;;;:::o;8950:323::-;9006:6;9055:2;9043:9;9034:7;9030:23;9026:32;9023:119;;;9061:79;;:::i;:::-;9023:119;9181:1;9206:50;9248:7;9239:6;9228:9;9224:22;9206:50;:::i;:::-;9196:60;;9152:114;8950:323;;;;:::o;9279:110::-;9330:7;9359:24;9377:5;9359:24;:::i;:::-;9348:35;;9279:110;;;:::o;9395:150::-;9482:38;9514:5;9482:38;:::i;:::-;9475:5;9472:49;9462:77;;9535:1;9532;9525:12;9462:77;9395:150;:::o;9551:167::-;9611:5;9649:6;9636:20;9627:29;;9665:47;9706:5;9665:47;:::i;:::-;9551:167;;;;:::o;9724:502::-;9806:6;9814;9863:2;9851:9;9842:7;9838:23;9834:32;9831:119;;;9869:79;;:::i;:::-;9831:119;9989:1;10014:67;10073:7;10064:6;10053:9;10049:22;10014:67;:::i;:::-;10004:77;;9960:131;10130:2;10156:53;10201:7;10192:6;10181:9;10177:22;10156:53;:::i;:::-;10146:63;;10101:118;9724:502;;;;;:::o;10232:117::-;10341:1;10338;10331:12;10355:180;10403:77;10400:1;10393:88;10500:4;10497:1;10490:15;10524:4;10521:1;10514:15;10541:281;10624:27;10646:4;10624:27;:::i;:::-;10616:6;10612:40;10754:6;10742:10;10739:22;10718:18;10706:10;10703:34;10700:62;10697:88;;;10765:18;;:::i;:::-;10697:88;10805:10;10801:2;10794:22;10584:238;10541:281;;:::o;10828:129::-;10862:6;10889:20;;:::i;:::-;10879:30;;10918:33;10946:4;10938:6;10918:33;:::i;:::-;10828:129;;;:::o;10963:308::-;11025:4;11115:18;11107:6;11104:30;11101:56;;;11137:18;;:::i;:::-;11101:56;11175:29;11197:6;11175:29;:::i;:::-;11167:37;;11259:4;11253;11249:15;11241:23;;10963:308;;;:::o;11277:154::-;11361:6;11356:3;11351;11338:30;11423:1;11414:6;11409:3;11405:16;11398:27;11277:154;;;:::o;11437:412::-;11515:5;11540:66;11556:49;11598:6;11556:49;:::i;:::-;11540:66;:::i;:::-;11531:75;;11629:6;11622:5;11615:21;11667:4;11660:5;11656:16;11705:3;11696:6;11691:3;11687:16;11684:25;11681:112;;;11712:79;;:::i;:::-;11681:112;11802:41;11836:6;11831:3;11826;11802:41;:::i;:::-;11521:328;11437:412;;;;;:::o;11869:340::-;11925:5;11974:3;11967:4;11959:6;11955:17;11951:27;11941:122;;11982:79;;:::i;:::-;11941:122;12099:6;12086:20;12124:79;12199:3;12191:6;12184:4;12176:6;12172:17;12124:79;:::i;:::-;12115:88;;11931:278;11869:340;;;;:::o;12215:509::-;12284:6;12333:2;12321:9;12312:7;12308:23;12304:32;12301:119;;;12339:79;;:::i;:::-;12301:119;12487:1;12476:9;12472:17;12459:31;12517:18;12509:6;12506:30;12503:117;;;12539:79;;:::i;:::-;12503:117;12644:63;12699:7;12690:6;12679:9;12675:22;12644:63;:::i;:::-;12634:73;;12430:287;12215:509;;;;:::o;12730:329::-;12789:6;12838:2;12826:9;12817:7;12813:23;12809:32;12806:119;;;12844:79;;:::i;:::-;12806:119;12964:1;12989:53;13034:7;13025:6;13014:9;13010:22;12989:53;:::i;:::-;12979:63;;12935:117;12730:329;;;;:::o;13065:77::-;13102:7;13131:5;13120:16;;13065:77;;;:::o;13148:122::-;13221:24;13239:5;13221:24;:::i;:::-;13214:5;13211:35;13201:63;;13260:1;13257;13250:12;13201:63;13148:122;:::o;13276:139::-;13322:5;13360:6;13347:20;13338:29;;13376:33;13403:5;13376:33;:::i;:::-;13276:139;;;;:::o;13421:329::-;13480:6;13529:2;13517:9;13508:7;13504:23;13500:32;13497:119;;;13535:79;;:::i;:::-;13497:119;13655:1;13680:53;13725:7;13716:6;13705:9;13701:22;13680:53;:::i;:::-;13670:63;;13626:117;13421:329;;;;:::o;13756:468::-;13821:6;13829;13878:2;13866:9;13857:7;13853:23;13849:32;13846:119;;;13884:79;;:::i;:::-;13846:119;14004:1;14029:53;14074:7;14065:6;14054:9;14050:22;14029:53;:::i;:::-;14019:63;;13975:117;14131:2;14157:50;14199:7;14190:6;14179:9;14175:22;14157:50;:::i;:::-;14147:60;;14102:115;13756:468;;;;;:::o;14230:307::-;14291:4;14381:18;14373:6;14370:30;14367:56;;;14403:18;;:::i;:::-;14367:56;14441:29;14463:6;14441:29;:::i;:::-;14433:37;;14525:4;14519;14515:15;14507:23;;14230:307;;;:::o;14543:410::-;14620:5;14645:65;14661:48;14702:6;14661:48;:::i;:::-;14645:65;:::i;:::-;14636:74;;14733:6;14726:5;14719:21;14771:4;14764:5;14760:16;14809:3;14800:6;14795:3;14791:16;14788:25;14785:112;;;14816:79;;:::i;:::-;14785:112;14906:41;14940:6;14935:3;14930;14906:41;:::i;:::-;14626:327;14543:410;;;;;:::o;14972:338::-;15027:5;15076:3;15069:4;15061:6;15057:17;15053:27;15043:122;;15084:79;;:::i;:::-;15043:122;15201:6;15188:20;15226:78;15300:3;15292:6;15285:4;15277:6;15273:17;15226:78;:::i;:::-;15217:87;;15033:277;14972:338;;;;:::o;15316:943::-;15411:6;15419;15427;15435;15484:3;15472:9;15463:7;15459:23;15455:33;15452:120;;;15491:79;;:::i;:::-;15452:120;15611:1;15636:53;15681:7;15672:6;15661:9;15657:22;15636:53;:::i;:::-;15626:63;;15582:117;15738:2;15764:53;15809:7;15800:6;15789:9;15785:22;15764:53;:::i;:::-;15754:63;;15709:118;15866:2;15892:53;15937:7;15928:6;15917:9;15913:22;15892:53;:::i;:::-;15882:63;;15837:118;16022:2;16011:9;16007:18;15994:32;16053:18;16045:6;16042:30;16039:117;;;16075:79;;:::i;:::-;16039:117;16180:62;16234:7;16225:6;16214:9;16210:22;16180:62;:::i;:::-;16170:72;;15965:287;15316:943;;;;;;;:::o;16265:357::-;16338:6;16387:2;16375:9;16366:7;16362:23;16358:32;16355:119;;;16393:79;;:::i;:::-;16355:119;16513:1;16538:67;16597:7;16588:6;16577:9;16573:22;16538:67;:::i;:::-;16528:77;;16484:131;16265:357;;;;:::o;16628:474::-;16696:6;16704;16753:2;16741:9;16732:7;16728:23;16724:32;16721:119;;;16759:79;;:::i;:::-;16721:119;16879:1;16904:53;16949:7;16940:6;16929:9;16925:22;16904:53;:::i;:::-;16894:63;;16850:117;17006:2;17032:53;17077:7;17068:6;17057:9;17053:22;17032:53;:::i;:::-;17022:63;;16977:118;16628:474;;;;;:::o;17108:118::-;17195:24;17213:5;17195:24;:::i;:::-;17190:3;17183:37;17108:118;;:::o;17232:222::-;17325:4;17363:2;17352:9;17348:18;17340:26;;17376:71;17444:1;17433:9;17429:17;17420:6;17376:71;:::i;:::-;17232:222;;;;:::o;17460:180::-;17508:77;17505:1;17498:88;17605:4;17602:1;17595:15;17629:4;17626:1;17619:15;17646:320;17690:6;17727:1;17721:4;17717:12;17707:22;;17774:1;17768:4;17764:12;17795:18;17785:81;;17851:4;17843:6;17839:17;17829:27;;17785:81;17913:2;17905:6;17902:14;17882:18;17879:38;17876:84;;;17932:18;;:::i;:::-;17876:84;17697:269;17646:320;;;:::o;17972:168::-;18112:20;18108:1;18100:6;18096:14;18089:44;17972:168;:::o;18146:366::-;18288:3;18309:67;18373:2;18368:3;18309:67;:::i;:::-;18302:74;;18385:93;18474:3;18385:93;:::i;:::-;18503:2;18498:3;18494:12;18487:19;;18146:366;;;:::o;18518:419::-;18684:4;18722:2;18711:9;18707:18;18699:26;;18771:9;18765:4;18761:20;18757:1;18746:9;18742:17;18735:47;18799:131;18925:4;18799:131;:::i;:::-;18791:139;;18518:419;;;:::o;18943:176::-;19083:28;19079:1;19071:6;19067:14;19060:52;18943:176;:::o;19125:366::-;19267:3;19288:67;19352:2;19347:3;19288:67;:::i;:::-;19281:74;;19364:93;19453:3;19364:93;:::i;:::-;19482:2;19477:3;19473:12;19466:19;;19125:366;;;:::o;19497:419::-;19663:4;19701:2;19690:9;19686:18;19678:26;;19750:9;19744:4;19740:20;19736:1;19725:9;19721:17;19714:47;19778:131;19904:4;19778:131;:::i;:::-;19770:139;;19497:419;;;:::o;19922:170::-;20062:22;20058:1;20050:6;20046:14;20039:46;19922:170;:::o;20098:366::-;20240:3;20261:67;20325:2;20320:3;20261:67;:::i;:::-;20254:74;;20337:93;20426:3;20337:93;:::i;:::-;20455:2;20450:3;20446:12;20439:19;;20098:366;;;:::o;20470:419::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20723:9;20717:4;20713:20;20709:1;20698:9;20694:17;20687:47;20751:131;20877:4;20751:131;:::i;:::-;20743:139;;20470:419;;;:::o;20895:180::-;20943:77;20940:1;20933:88;21040:4;21037:1;21030:15;21064:4;21061:1;21054:15;21081:305;21121:3;21140:20;21158:1;21140:20;:::i;:::-;21135:25;;21174:20;21192:1;21174:20;:::i;:::-;21169:25;;21328:1;21260:66;21256:74;21253:1;21250:81;21247:107;;;21334:18;;:::i;:::-;21247:107;21378:1;21375;21371:9;21364:16;;21081:305;;;;:::o;21392:236::-;21532:34;21528:1;21520:6;21516:14;21509:58;21601:19;21596:2;21588:6;21584:15;21577:44;21392:236;:::o;21634:366::-;21776:3;21797:67;21861:2;21856:3;21797:67;:::i;:::-;21790:74;;21873:93;21962:3;21873:93;:::i;:::-;21991:2;21986:3;21982:12;21975:19;;21634:366;;;:::o;22006:419::-;22172:4;22210:2;22199:9;22195:18;22187:26;;22259:9;22253:4;22249:20;22245:1;22234:9;22230:17;22223:47;22287:131;22413:4;22287:131;:::i;:::-;22279:139;;22006:419;;;:::o;22431:174::-;22571:26;22567:1;22559:6;22555:14;22548:50;22431:174;:::o;22611:366::-;22753:3;22774:67;22838:2;22833:3;22774:67;:::i;:::-;22767:74;;22850:93;22939:3;22850:93;:::i;:::-;22968:2;22963:3;22959:12;22952:19;;22611:366;;;:::o;22983:419::-;23149:4;23187:2;23176:9;23172:18;23164:26;;23236:9;23230:4;23226:20;23222:1;23211:9;23207:17;23200:47;23264:131;23390:4;23264:131;:::i;:::-;23256:139;;22983:419;;;:::o;23408:348::-;23448:7;23471:20;23489:1;23471:20;:::i;:::-;23466:25;;23505:20;23523:1;23505:20;:::i;:::-;23500:25;;23693:1;23625:66;23621:74;23618:1;23615:81;23610:1;23603:9;23596:17;23592:105;23589:131;;;23700:18;;:::i;:::-;23589:131;23748:1;23745;23741:9;23730:20;;23408:348;;;;:::o;23762:225::-;23902:34;23898:1;23890:6;23886:14;23879:58;23971:8;23966:2;23958:6;23954:15;23947:33;23762:225;:::o;23993:366::-;24135:3;24156:67;24220:2;24215:3;24156:67;:::i;:::-;24149:74;;24232:93;24321:3;24232:93;:::i;:::-;24350:2;24345:3;24341:12;24334:19;;23993:366;;;:::o;24365:419::-;24531:4;24569:2;24558:9;24554:18;24546:26;;24618:9;24612:4;24608:20;24604:1;24593:9;24589:17;24582:47;24646:131;24772:4;24646:131;:::i;:::-;24638:139;;24365:419;;;:::o;24790:230::-;24930:34;24926:1;24918:6;24914:14;24907:58;24999:13;24994:2;24986:6;24982:15;24975:38;24790:230;:::o;25026:366::-;25168:3;25189:67;25253:2;25248:3;25189:67;:::i;:::-;25182:74;;25265:93;25354:3;25265:93;:::i;:::-;25383:2;25378:3;25374:12;25367:19;;25026:366;;;:::o;25398:419::-;25564:4;25602:2;25591:9;25587:18;25579:26;;25651:9;25645:4;25641:20;25637:1;25626:9;25622:17;25615:47;25679:131;25805:4;25679:131;:::i;:::-;25671:139;;25398:419;;;:::o;25823:60::-;25851:3;25872:5;25865:12;;25823:60;;;:::o;25889:142::-;25939:9;25972:53;25990:34;25999:24;26017:5;25999:24;:::i;:::-;25990:34;:::i;:::-;25972:53;:::i;:::-;25959:66;;25889:142;;;:::o;26037:126::-;26087:9;26120:37;26151:5;26120:37;:::i;:::-;26107:50;;26037:126;;;:::o;26169:134::-;26227:9;26260:37;26291:5;26260:37;:::i;:::-;26247:50;;26169:134;;;:::o;26309:147::-;26404:45;26443:5;26404:45;:::i;:::-;26399:3;26392:58;26309:147;;:::o;26462:348::-;26591:4;26629:2;26618:9;26614:18;26606:26;;26642:79;26718:1;26707:9;26703:17;26694:6;26642:79;:::i;:::-;26731:72;26799:2;26788:9;26784:18;26775:6;26731:72;:::i;:::-;26462:348;;;;;:::o;26816:180::-;26864:77;26861:1;26854:88;26961:4;26958:1;26951:15;26985:4;26982:1;26975:15;27002:175;27142:27;27138:1;27130:6;27126:14;27119:51;27002:175;:::o;27183:366::-;27325:3;27346:67;27410:2;27405:3;27346:67;:::i;:::-;27339:74;;27422:93;27511:3;27422:93;:::i;:::-;27540:2;27535:3;27531:12;27524:19;;27183:366;;;:::o;27555:419::-;27721:4;27759:2;27748:9;27744:18;27736:26;;27808:9;27802:4;27798:20;27794:1;27783:9;27779:17;27772:47;27836:131;27962:4;27836:131;:::i;:::-;27828:139;;27555:419;;;:::o;27980:143::-;28037:5;28068:6;28062:13;28053:22;;28084:33;28111:5;28084:33;:::i;:::-;27980:143;;;;:::o;28129:351::-;28199:6;28248:2;28236:9;28227:7;28223:23;28219:32;28216:119;;;28254:79;;:::i;:::-;28216:119;28374:1;28399:64;28455:7;28446:6;28435:9;28431:22;28399:64;:::i;:::-;28389:74;;28345:128;28129:351;;;;:::o;28486:234::-;28626:34;28622:1;28614:6;28610:14;28603:58;28695:17;28690:2;28682:6;28678:15;28671:42;28486:234;:::o;28726:366::-;28868:3;28889:67;28953:2;28948:3;28889:67;:::i;:::-;28882:74;;28965:93;29054:3;28965:93;:::i;:::-;29083:2;29078:3;29074:12;29067:19;;28726:366;;;:::o;29098:419::-;29264:4;29302:2;29291:9;29287:18;29279:26;;29351:9;29345:4;29341:20;29337:1;29326:9;29322:17;29315:47;29379:131;29505:4;29379:131;:::i;:::-;29371:139;;29098:419;;;:::o;29523:148::-;29625:11;29662:3;29647:18;;29523:148;;;;:::o;29677:141::-;29726:4;29749:3;29741:11;;29772:3;29769:1;29762:14;29806:4;29803:1;29793:18;29785:26;;29677:141;;;:::o;29848:845::-;29951:3;29988:5;29982:12;30017:36;30043:9;30017:36;:::i;:::-;30069:89;30151:6;30146:3;30069:89;:::i;:::-;30062:96;;30189:1;30178:9;30174:17;30205:1;30200:137;;;;30351:1;30346:341;;;;30167:520;;30200:137;30284:4;30280:9;30269;30265:25;30260:3;30253:38;30320:6;30315:3;30311:16;30304:23;;30200:137;;30346:341;30413:38;30445:5;30413:38;:::i;:::-;30473:1;30487:154;30501:6;30498:1;30495:13;30487:154;;;30575:7;30569:14;30565:1;30560:3;30556:11;30549:35;30625:1;30616:7;30612:15;30601:26;;30523:4;30520:1;30516:12;30511:17;;30487:154;;;30670:6;30665:3;30661:16;30654:23;;30353:334;;30167:520;;29955:738;;29848:845;;;;:::o;30699:377::-;30805:3;30833:39;30866:5;30833:39;:::i;:::-;30888:89;30970:6;30965:3;30888:89;:::i;:::-;30881:96;;30986:52;31031:6;31026:3;31019:4;31012:5;31008:16;30986:52;:::i;:::-;31063:6;31058:3;31054:16;31047:23;;30809:267;30699:377;;;;:::o;31082:583::-;31304:3;31326:92;31414:3;31405:6;31326:92;:::i;:::-;31319:99;;31435:95;31526:3;31517:6;31435:95;:::i;:::-;31428:102;;31547:92;31635:3;31626:6;31547:92;:::i;:::-;31540:99;;31656:3;31649:10;;31082:583;;;;;;:::o;31671:589::-;31896:3;31918:95;32009:3;32000:6;31918:95;:::i;:::-;31911:102;;32030:95;32121:3;32112:6;32030:95;:::i;:::-;32023:102;;32142:92;32230:3;32221:6;32142:92;:::i;:::-;32135:99;;32251:3;32244:10;;31671:589;;;;;;:::o;32266:225::-;32406:34;32402:1;32394:6;32390:14;32383:58;32475:8;32470:2;32462:6;32458:15;32451:33;32266:225;:::o;32497:366::-;32639:3;32660:67;32724:2;32719:3;32660:67;:::i;:::-;32653:74;;32736:93;32825:3;32736:93;:::i;:::-;32854:2;32849:3;32845:12;32838:19;;32497:366;;;:::o;32869:419::-;33035:4;33073:2;33062:9;33058:18;33050:26;;33122:9;33116:4;33112:20;33108:1;33097:9;33093:17;33086:47;33150:131;33276:4;33150:131;:::i;:::-;33142:139;;32869:419;;;:::o;33294:179::-;33434:31;33430:1;33422:6;33418:14;33411:55;33294:179;:::o;33479:366::-;33621:3;33642:67;33706:2;33701:3;33642:67;:::i;:::-;33635:74;;33718:93;33807:3;33718:93;:::i;:::-;33836:2;33831:3;33827:12;33820:19;;33479:366;;;:::o;33851:419::-;34017:4;34055:2;34044:9;34040:18;34032:26;;34104:9;34098:4;34094:20;34090:1;34079:9;34075:17;34068:47;34132:131;34258:4;34132:131;:::i;:::-;34124:139;;33851:419;;;:::o;34276:147::-;34377:11;34414:3;34399:18;;34276:147;;;;:::o;34429:114::-;;:::o;34549:398::-;34708:3;34729:83;34810:1;34805:3;34729:83;:::i;:::-;34722:90;;34821:93;34910:3;34821:93;:::i;:::-;34939:1;34934:3;34930:11;34923:18;;34549:398;;;:::o;34953:379::-;35137:3;35159:147;35302:3;35159:147;:::i;:::-;35152:154;;35323:3;35316:10;;34953:379;;;:::o;35338:245::-;35478:34;35474:1;35466:6;35462:14;35455:58;35547:28;35542:2;35534:6;35530:15;35523:53;35338:245;:::o;35589:366::-;35731:3;35752:67;35816:2;35811:3;35752:67;:::i;:::-;35745:74;;35828:93;35917:3;35828:93;:::i;:::-;35946:2;35941:3;35937:12;35930:19;;35589:366;;;:::o;35961:419::-;36127:4;36165:2;36154:9;36150:18;36142:26;;36214:9;36208:4;36204:20;36200:1;36189:9;36185:17;36178:47;36242:131;36368:4;36242:131;:::i;:::-;36234:139;;35961:419;;;:::o;36386:182::-;36526:34;36522:1;36514:6;36510:14;36503:58;36386:182;:::o;36574:366::-;36716:3;36737:67;36801:2;36796:3;36737:67;:::i;:::-;36730:74;;36813:93;36902:3;36813:93;:::i;:::-;36931:2;36926:3;36922:12;36915:19;;36574:366;;;:::o;36946:419::-;37112:4;37150:2;37139:9;37135:18;37127:26;;37199:9;37193:4;37189:20;37185:1;37174:9;37170:17;37163:47;37227:131;37353:4;37227:131;:::i;:::-;37219:139;;36946:419;;;:::o;37371:180::-;37419:77;37416:1;37409:88;37516:4;37513:1;37506:15;37540:4;37537:1;37530:15;37557:185;37597:1;37614:20;37632:1;37614:20;:::i;:::-;37609:25;;37648:20;37666:1;37648:20;:::i;:::-;37643:25;;37687:1;37677:35;;37692:18;;:::i;:::-;37677:35;37734:1;37731;37727:9;37722:14;;37557:185;;;;:::o;37748:191::-;37788:4;37808:20;37826:1;37808:20;:::i;:::-;37803:25;;37842:20;37860:1;37842:20;:::i;:::-;37837:25;;37881:1;37878;37875:8;37872:34;;;37886:18;;:::i;:::-;37872:34;37931:1;37928;37924:9;37916:17;;37748:191;;;;:::o;37945:98::-;37996:6;38030:5;38024:12;38014:22;;37945:98;;;:::o;38049:168::-;38132:11;38166:6;38161:3;38154:19;38206:4;38201:3;38197:14;38182:29;;38049:168;;;;:::o;38223:360::-;38309:3;38337:38;38369:5;38337:38;:::i;:::-;38391:70;38454:6;38449:3;38391:70;:::i;:::-;38384:77;;38470:52;38515:6;38510:3;38503:4;38496:5;38492:16;38470:52;:::i;:::-;38547:29;38569:6;38547:29;:::i;:::-;38542:3;38538:39;38531:46;;38313:270;38223:360;;;;:::o;38589:640::-;38784:4;38822:3;38811:9;38807:19;38799:27;;38836:71;38904:1;38893:9;38889:17;38880:6;38836:71;:::i;:::-;38917:72;38985:2;38974:9;38970:18;38961:6;38917:72;:::i;:::-;38999;39067:2;39056:9;39052:18;39043:6;38999:72;:::i;:::-;39118:9;39112:4;39108:20;39103:2;39092:9;39088:18;39081:48;39146:76;39217:4;39208:6;39146:76;:::i;:::-;39138:84;;38589:640;;;;;;;:::o;39235:141::-;39291:5;39322:6;39316:13;39307:22;;39338:32;39364:5;39338:32;:::i;:::-;39235:141;;;;:::o;39382:349::-;39451:6;39500:2;39488:9;39479:7;39475:23;39471:32;39468:119;;;39506:79;;:::i;:::-;39468:119;39626:1;39651:63;39706:7;39697:6;39686:9;39682:22;39651:63;:::i;:::-;39641:73;;39597:127;39382:349;;;;:::o;39737:233::-;39776:3;39799:24;39817:5;39799:24;:::i;:::-;39790:33;;39845:66;39838:5;39835:77;39832:103;;;39915:18;;:::i;:::-;39832:103;39962:1;39955:5;39951:13;39944:20;;39737:233;;;:::o;39976:176::-;40008:1;40025:20;40043:1;40025:20;:::i;:::-;40020:25;;40059:20;40077:1;40059:20;:::i;:::-;40054:25;;40098:1;40088:35;;40103:18;;:::i;:::-;40088:35;40144:1;40141;40137:9;40132:14;;39976:176;;;;:::o;40158:94::-;40191:8;40239:5;40235:2;40231:14;40210:35;;40158:94;;;:::o;40258:::-;40297:7;40326:20;40340:5;40326:20;:::i;:::-;40315:31;;40258:94;;;:::o;40358:100::-;40397:7;40426:26;40446:5;40426:26;:::i;:::-;40415:37;;40358:100;;;:::o;40464:157::-;40569:45;40589:24;40607:5;40589:24;:::i;:::-;40569:45;:::i;:::-;40564:3;40557:58;40464:157;;:::o;40627:256::-;40739:3;40754:75;40825:3;40816:6;40754:75;:::i;:::-;40854:2;40849:3;40845:12;40838:19;;40874:3;40867:10;;40627:256;;;;:::o;40889:137::-;40943:5;40974:6;40968:13;40959:22;;40990:30;41014:5;40990:30;:::i;:::-;40889:137;;;;:::o;41032:345::-;41099:6;41148:2;41136:9;41127:7;41123:23;41119:32;41116:119;;;41154:79;;:::i;:::-;41116:119;41274:1;41299:61;41352:7;41343:6;41332:9;41328:22;41299:61;:::i;:::-;41289:71;;41245:125;41032:345;;;;:::o;41383:229::-;41523:34;41519:1;41511:6;41507:14;41500:58;41592:12;41587:2;41579:6;41575:15;41568:37;41383:229;:::o;41618:366::-;41760:3;41781:67;41845:2;41840:3;41781:67;:::i;:::-;41774:74;;41857:93;41946:3;41857:93;:::i;:::-;41975:2;41970:3;41966:12;41959:19;;41618:366;;;:::o;41990:419::-;42156:4;42194:2;42183:9;42179:18;42171:26;;42243:9;42237:4;42233:20;42229:1;42218:9;42214:17;42207:47;42271:131;42397:4;42271:131;:::i;:::-;42263:139;;41990:419;;;:::o;42415:225::-;42555:34;42551:1;42543:6;42539:14;42532:58;42624:8;42619:2;42611:6;42607:15;42600:33;42415:225;:::o;42646:366::-;42788:3;42809:67;42873:2;42868:3;42809:67;:::i;:::-;42802:74;;42885:93;42974:3;42885:93;:::i;:::-;43003:2;42998:3;42994:12;42987:19;;42646:366;;;:::o;43018:419::-;43184:4;43222:2;43211:9;43207:18;43199:26;;43271:9;43265:4;43261:20;43257:1;43246:9;43242:17;43235:47;43299:131;43425:4;43299:131;:::i;:::-;43291:139;;43018:419;;;:::o;43443:179::-;43583:31;43579:1;43571:6;43567:14;43560:55;43443:179;:::o;43628:366::-;43770:3;43791:67;43855:2;43850:3;43791:67;:::i;:::-;43784:74;;43867:93;43956:3;43867:93;:::i;:::-;43985:2;43980:3;43976:12;43969:19;;43628:366;;;:::o;44000:419::-;44166:4;44204:2;44193:9;44189:18;44181:26;;44253:9;44247:4;44243:20;44239:1;44228:9;44224:17;44217:47;44281:131;44407:4;44281:131;:::i;:::-;44273:139;;44000:419;;;:::o;44425:373::-;44529:3;44557:38;44589:5;44557:38;:::i;:::-;44611:88;44692:6;44687:3;44611:88;:::i;:::-;44604:95;;44708:52;44753:6;44748:3;44741:4;44734:5;44730:16;44708:52;:::i;:::-;44785:6;44780:3;44776:16;44769:23;;44533:265;44425:373;;;;:::o;44804:271::-;44934:3;44956:93;45045:3;45036:6;44956:93;:::i;:::-;44949:100;;45066:3;45059:10;;44804:271;;;;:::o

Swarm Source

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