ETH Price: $3,117.14 (+0.62%)
Gas: 4 Gwei

Token

AlcatrazSwimTeam (AST)
 

Overview

Max Total Supply

3,351 AST

Holders

401

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 AST
0xe259e3c5f1e8f337100c6def64360b6ed90d438e
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:
AlcatrazSwimTeam

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-13
*/

// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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/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/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/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.2
// 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.2
// 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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/AlactrazSwimTeam_ERC721A.sol



pragma solidity ^0.8.4;







contract AlcatrazSwimTeam is ERC721A, Ownable, PaymentSplitter, ReentrancyGuard  {

    //metadata
    string public hiddenMetadataUri = 'https://arweave.net/8PPPPYgNuciffkTc_V9V5FWXbVnVwQw4pgtFWwmtpRc';
    string public uriPrefix = 'https://arweave.net/__ARWEAVE_HASH_/';
    string public uriSuffix = '.json';

    // mainMint
    uint256 public mainMintStart = 1665687600; // Thu Oct 13 2022 20:00:00 GMT+0100 (British Summer Time)
    uint256 public maxMintAmountPerTx = 5;
    uint256 public mintRate = 0.02 ether;

    uint256 public currentTokenId = 0;

    uint public totalMints;
    bool public paused = false;
    bool public revealing = true;
    uint public revealTo = 0;
    uint16[10001] public ids; // creates ids 0-9999 must be 10001 on final contract
    uint16 private index;
    mapping(uint256 => uint256) public setIDs;
    
    // frenList


    uint256 public frenListMintStart = 1665514800;  // Wed Oct 11 2022 20:00:00 GMT+0100 (British Summer Time)
    uint256 public frenListMintEnd = 1666119600;    // Tue Oct 18 2022 20:00:00 GMT+0100 (British Summer Time)
    uint public frenListMintLimits = 5;
    uint256 public frenListMintRate = 0.015 ether;
    bytes32 public frenListMerkleRoot;
    mapping(address=>uint) public frenListMinted;
    bool public initialised = false;

    // giftList
    bytes32 public giftListMerkleRoot;
    uint public giftListDefaultMax = 1;
    mapping(address=>uint) public giftListMintLimits;
    mapping(address=>uint) public giftListMinted;

    //team
    uint256 public totalTeamMints;
    mapping(address=>uint256) public allocations;

    // burn to earn
    bool public burnToEarnActive = false;
    uint public burnToEarnRequirement = 1;
    uint public burnToEarnNominateRequirement = 1;
    

    mapping(uint256=>uint256) public sacrafices; 

    constructor(address[] memory _payees, uint256[] memory _shares,  uint256 totalMintable, uint256 teamMemberAllocation) 
        ERC721A("AlcatrazSwimTeam", "AST") 
        PaymentSplitter(_payees, _shares) payable 
        {
            delete ids[0];
            
            totalTeamMints = _payees.length * teamMemberAllocation;
            totalMints = totalMintable-totalTeamMints;
            for (uint256 i = 0; i<_shares.length; i++){
                allocations[_payees[i]] = teamMemberAllocation;
            }

        }

    // Token & Token URI

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function pickRandomUniqueId(uint256 random) private returns (uint256 id) {
        uint256 len = ids.length - index++;
        require(len > 0, "no ids left");
        uint256 randomIndex = random % len;
        
        id = ids[randomIndex] != 0 ? ids[randomIndex] : randomIndex;
        ids[randomIndex] = uint16(ids[len - 1] == 0 ? len - 1 : ids[len - 1]);
        ids[len - 1] = 0;
        return id;
    }

    
    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

      function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

        // if revealing is on, 
        if (revealing == true && (_tokenId > revealTo)) {
         return hiddenMetadataUri;
        }
        string memory currentBaseURI = uriPrefix;
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, Strings.toString(setIDs[_tokenId]), uriSuffix))
        : '';
    }

    // Minting

    function setPeriod(string memory periodType, uint256 _timestamp) public onlyOwner {
        if(keccak256(bytes(periodType)) == keccak256(bytes("mainMintStart"))){
            require(block.timestamp < mainMintStart, "You can't update mainMintstart once the period has started.");
            mainMintStart = _timestamp;
        } else if (keccak256(bytes(periodType)) == keccak256(bytes("frenListMintStart"))){
            require(block.timestamp < frenListMintStart, "You can't update frenListMintstart once the frenlListMint period started.");
            frenListMintStart = _timestamp;
        }else if (keccak256(bytes(periodType)) == keccak256(bytes("frenListMintEnd"))){
            require(block.timestamp < frenListMintEnd, "You can't update frenListMintEnd once it has passed.");
            frenListMintEnd = _timestamp;
        }
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setMintRate(uint256 _cost) public onlyOwner {
        mintRate = _cost;
    }

    function setMaxMintAmountPerTx(uint256 quantity) public onlyOwner {
        maxMintAmountPerTx = quantity;
    }  

    function setRandomIdsForToken(uint256 quantity) private{
        for (uint256 i = 1; i!=quantity+1; i++){
            currentTokenId++;
            setIDs[currentTokenId] =  pickRandomUniqueId(block.timestamp* block.number-1);
        }
    }

    function mint(uint256 quantity) external nonReentrant payable {
        require(!paused, "Minting is paused!");
        require(block.timestamp >= mainMintStart, "The period to mint this card has not started.");
        require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        require(quantity <= maxMintAmountPerTx, "Max Mint Amount Per TX reached");
        
        // assign random ids
        setRandomIdsForToken(quantity);
        _mint(msg.sender, quantity);
    }

    function teamMint(uint256 quantity) external nonReentrant payable {
        require(!paused, "Minting is paused!");
        require(block.timestamp >= frenListMintStart, "The period to mint this card has not started.");
        // anyone without allocation bounced out here.
        require((_nextTokenId()-1) + quantity <= allocations[msg.sender], "Not enough tokens left in your allocation.");
        // assign random ids
        setRandomIdsForToken(quantity);
        allocations[msg.sender] = allocations[msg.sender] - quantity;
        totalTeamMints = totalTeamMints - quantity;
        _mint(msg.sender, quantity);
    }

    function mintForAddress( uint256 quantity, address _reciever) public nonReentrant onlyOwner {
        require(block.timestamp >= frenListMintStart, "You can only mintForAddress once the frenList Mint starts.");
        require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");

        // assign random ids
        setRandomIdsForToken(quantity);
        _safeMint(_reciever, quantity); 
    }

    function setRevealState(bool _state) public onlyOwner {
        revealing = _state;
    }


    // frenListminting utilising merkeproofs

    function setFrenListMintRate(uint256 _cost) public onlyOwner {
        frenListMintRate = _cost;
    }

    function setFrenListMintLimits(uint256 _limit) public onlyOwner {
        frenListMintLimits = _limit;
    }
    
    function setFrenListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        frenListMerkleRoot = merkleRoot;
    }
    
    function setGiftListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        giftListMerkleRoot = merkleRoot;
    }

    function frenListMint(bytes32[] calldata merkleProof, uint256 quantity) public nonReentrant
        payable
        isValidMerkleProof(merkleProof, frenListMerkleRoot) {
        require(!paused, "Minting is paused!");
        require(block.timestamp >= frenListMintStart, "You can only mint once the frenList Mint starts.");
        require(block.timestamp < frenListMintEnd, "You can only mint before the frenList Mint ends.");

        require((frenListMinted[msg.sender]+ quantity) <= frenListMintLimits, "Going over maximum frenList Mints" );
        require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");
        require(msg.value >= (frenListMintRate * quantity), "Not enough ether sent");
        require(quantity <= maxMintAmountPerTx, "Max Mint Amount Per TX reached");
        
        // assign random ids
        frenListMinted[msg.sender] = frenListMinted[msg.sender]+quantity;
        setRandomIdsForToken(quantity);
        _mint(msg.sender, quantity);

    }

    function giftListMint(bytes32[] calldata merkleProof, uint256 quantity) public nonReentrant
        payable
        isValidMerkleProof(merkleProof, giftListMerkleRoot) {
        require(!paused, "Minting is paused!");
        require(block.timestamp >= frenListMintStart, "You can only mint once the frenList Mint starts.");  
        require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");

         // assign default or override if not set.
        if(giftListMinted[msg.sender] == 0){
            giftListMintLimits[msg.sender] = giftListMintLimits[msg.sender]==0 ? giftListDefaultMax : giftListMintLimits[msg.sender];
        }
        // can only mint what youve been granted
        require(giftListMinted[msg.sender]+quantity <= giftListMintLimits[msg.sender] ,"Can not exceed max gift mints for this address");
        
        giftListMinted[msg.sender] = giftListMinted[msg.sender]+quantity;
        // assign random ids        
        setRandomIdsForToken(quantity);
        _mint(msg.sender, quantity);

    }

    function updateGiftLimit(address[] memory addressses, uint[] memory limits) public nonReentrant onlyOwner {
        require(addressses.length == limits.length,"adresses and limits must be of equal length");
        for (uint256 i = 0; i<addressses.length; i++){
            giftListMintLimits[addressses[i]] = limits[i];
        }
    }

    function release(address payable account) public nonReentrant virtual override {

        require(msg.sender == account,"You can only release funds to your own address");

        super.release(account);
    }

    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                leaf
            ),
            "Address is not in the frens list"
        );
        _;
    }

    // Burn To Earn.

    function setBurnToEarnActive(bool _state) public onlyOwner {
        burnToEarnActive = _state;
    }

    function setBurnToEarnRequirement(uint requirement) public onlyOwner {
        require(requirement>0,"Must require at least 1");
        burnToEarnRequirement = requirement;
    }
    
    function setBurnToEarnNominateRequirement(uint requirement) public onlyOwner {
        burnToEarnNominateRequirement = requirement;
    }


    // function getSetIDs() public view returns (uint[] memory){

    //     uint256 minted =  _nextTokenId()-1;

    //     uint256[] memory ret = new uint256[](minted);
    
    //     for (uint i = 0; i < minted; i++) {
    //         ret[i] = setIDs[i+1];
    //     }
        
    //     return ret;
    // }
    function getSetIDSlice(uint start, uint end) public view returns (uint[] memory){
        require(start!=0,"start of slice must not be 0");
        require(end>start,"end  of slice must not be higher than end of slice");
        uint256 minted =  _nextTokenId()-1;
        require(end<=minted,"end  of slice must be lower than last tokenId");

        uint256[] memory ret = new uint256[]((end-start)+1);
    
        for (uint i = 0; i < ((end-start)+1); i++) {
            ret[i] = setIDs[(i+start)];
        }
        
        return ret;
    }

    function getSacraficesSlice(uint start, uint end) public view returns (uint[] memory){
        require(start!=0,"start of slice must not be 0");
        require(end>start,"start  of slice must not be higher than end of slice");
        uint256 minted =  _nextTokenId()-1;
        require(end<=minted,"end  of slice must be lower than last tokenId");

        uint256[] memory ret = new uint256[]((end-start)+1);
    
        for (uint i = 0; i < ((end-start)+1); i++) {
            ret[i] = sacrafices[(i+start)];
        }
        
        return ret;
    }

    event BurnToEarn(address indexed _from, uint256[] indexed tokenIds,uint256[] indexed nominatedIds,uint256[]  tokenIdsRead,uint256[]  nominatedIdsRead, string reason );

    function burnToEarn(uint256[] memory tokenIds, uint256[] memory nominatedIds, string memory reason) public nonReentrant virtual {
        require(burnToEarnActive, "ERC721: 'Burn To Earn' is not yet active");
        require((nominatedIds.length >0) && tokenIds.length >0, "ERC721: Must nominate and burn");
        require(tokenIds.length >= burnToEarnRequirement ,"ERC721: Must match or exceed burn to earn burn requirement");
        require(nominatedIds.length >= burnToEarnNominateRequirement, "ERC721: Must match or exceed burn to earn nomination requirement");
        
        for (uint256 i = 0; i < tokenIds.length ; i++) { 
            require(ownerOf(tokenIds[i]) == msg.sender, "ERC721: caller is not the burn token owner");
        }
        for (uint256 i = 0; i < nominatedIds.length ; i++) { 
            require(ownerOf(nominatedIds[i]) == msg.sender, "ERC721A: caller is not the nominated token owner");
        }

        
        if((tokenIds.length ==1) && (nominatedIds.length ==1)){
            // 'one for one' add one to nominated sacrafices + whatever sacrafices have been received to the burnt token.
            sacrafices[nominatedIds[0]] = sacrafices[nominatedIds[0]]+1+sacrafices[tokenIds[0]];
            sacrafices[tokenIds[0]] = 0;
        } else if((tokenIds.length >1) && (nominatedIds.length ==1)){
            // 'many for one' add tokenIds count to  nominateds sacrafices + whatever sacrafices have been received to the burnt tokens.
            uint256 totalAdditionalSacrafices;
            for (uint256 i = 0; i < tokenIds.length ; i++) { 
                totalAdditionalSacrafices+sacrafices[tokenIds[i]];
                sacrafices[tokenIds[i]] = 0;
            }
            sacrafices[nominatedIds[0]] = sacrafices[nominatedIds[0]]+tokenIds.length+totalAdditionalSacrafices;
        } else if( ((tokenIds.length >1) && (nominatedIds.length >1))){

            if ( (tokenIds.length == nominatedIds.length)){
                // 'many for many and even' add 1 per tokenId to each nominated and add on previous sacrafices 1 for 1
                
                for (uint256 i = 0; i < nominatedIds.length ; i++) { 
                    sacrafices[nominatedIds[i]] = sacrafices[nominatedIds[i]]+1 + sacrafices[tokenIds[i]];
                    sacrafices[tokenIds[i]] = 0;
                }
                
            } else if(tokenIds.length % nominatedIds.length == 0){
                uint multiplier = tokenIds.length/nominatedIds.length;
                for (uint256 i = 0; i < nominatedIds.length ; i++) {
                    uint256 sacraficesToCarry;
                    for (uint256 indexA = 0; indexA < multiplier ; indexA++) {
                        sacraficesToCarry = sacraficesToCarry+ sacrafices[tokenIds[indexA+(i*multiplier)]];
                        sacrafices[tokenIds[indexA+(i*multiplier)]] = 0;
                    }
                    sacrafices[nominatedIds[i]] = sacrafices[nominatedIds[i]]+multiplier+sacraficesToCarry;
                }
               
            }   else {
                revert("Burns must be even, 'one to one' 'many burns to one', even or evenly divsible bya a mutliplier, like 3 nominations to one burn, 6 noms to two burns, but not uneven like 5 noms to 3 burns");
            }
        }
        else {
            revert("Burns must be even, 'one to one' 'many burns to one', even or evenly divsible bya a mutliplier, like 3 nominations to one burn, 6 noms to two burns, but not uneven like 5 noms to 3 burns");
        }
        for (uint256 i = 0; i < tokenIds.length ; i++) { 
            super._burn(tokenIds[i],true);
        }
        emit BurnToEarn(msg.sender, tokenIds, nominatedIds, tokenIds, nominatedIds, reason);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"uint256","name":"totalMintable","type":"uint256"},{"internalType":"uint256","name":"teamMemberAllocation","type":"uint256"}],"stateMutability":"payable","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":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":true,"internalType":"uint256[]","name":"nominatedIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"tokenIdsRead","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"nominatedIdsRead","type":"uint256[]"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BurnToEarn","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":"address","name":"","type":"address"}],"name":"allocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"nominatedIds","type":"uint256[]"},{"internalType":"string","name":"reason","type":"string"}],"name":"burnToEarn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnToEarnActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnToEarnNominateRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnToEarnRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"frenListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"frenListMintEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMintLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frenListMinted","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":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getSacraficesSlice","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getSetIDSlice","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftListDefaultMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giftListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftListMintLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ids","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mainMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_reciever","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"revealTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sacrafices","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":"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":"bool","name":"_state","type":"bool"}],"name":"setBurnToEarnActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requirement","type":"uint256"}],"name":"setBurnToEarnNominateRequirement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requirement","type":"uint256"}],"name":"setBurnToEarnRequirement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setFrenListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFrenListMintLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setFrenListMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setGiftListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"setIDs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"periodType","type":"string"},{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"totalTeamMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressses","type":"address[]"},{"internalType":"uint256[]","name":"limits","type":"uint256[]"}],"name":"updateGiftLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052603f608081815290620066fe60a03980516200002991601191602090910190620005c9565b506040518060600160405280602481526020016200673d6024913980516200005a91601291602090910190620005c9565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200008991601391620005c9565b5063634860306014556005601581905566470de4df820000601655600060178190556019805461ffff1916610100179055601a55636345bd3061028f5563634ef7b0610290556102915566354a6ba7a1800061029255610295805460ff19908116909155600161029781905561029c805490921690915561029d81905561029e5560405162006761388190039081908339810160408190526200012c91620006e9565b604080518082018252601081526f416c63617472617a5377696d5465616d60801b6020808301918252835180850190945260038452621054d560ea1b908401528151879387939290916200018391600291620005c9565b50805162000199906003906020840190620005c9565b5050600160005550620001ac3362000389565b80518251146200021e5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002715760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000215565b60005b8251811015620002dd57620002c8838281518110620002975762000297620008fe565b6020026020010151838381518110620002b457620002b4620008fe565b6020026020010151620003db60201b60201c565b80620002d481620008ca565b91505062000274565b5050600160105550601b805461ffff191690558351620002ff90829062000851565b61029a81905562000311908362000873565b60185560005b83518110156200037e578161029b60008784815181106200033c576200033c620008fe565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806200037590620008ca565b91505062000317565b50505050506200092a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004485760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000215565b600081116200049a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000215565b6001600160a01b0382166000908152600b602052604090205415620005165760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000215565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200058090829062000836565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005d7906200088d565b90600052602060002090601f016020900481019282620005fb576000855562000646565b82601f106200061657805160ff191683800117855562000646565b8280016001018555821562000646579182015b828111156200064657825182559160200191906001019062000629565b506200065492915062000658565b5090565b5b8082111562000654576000815560010162000659565b600082601f8301126200068157600080fd5b815160206200069a620006948362000810565b620007dd565b80838252828201915082860187848660051b8901011115620006bb57600080fd5b60005b85811015620006dc57815184529284019290840190600101620006be565b5090979650505050505050565b600080600080608085870312156200070057600080fd5b84516001600160401b03808211156200071857600080fd5b818701915087601f8301126200072d57600080fd5b8151602062000740620006948362000810565b8083825282820191508286018c848660051b89010111156200076157600080fd5b600096505b848710156200079c5780516001600160a01b03811681146200078757600080fd5b83526001969096019591830191830162000766565b50918a0151919850909350505080821115620007b757600080fd5b50620007c6878288016200066f565b604087015160609097015195989097509350505050565b604051601f8201601f191681016001600160401b038111828210171562000808576200080862000914565b604052919050565b60006001600160401b038211156200082c576200082c62000914565b5060051b60200190565b600082198211156200084c576200084c620008e8565b500190565b60008160001904831182151516156200086e576200086e620008e8565b500290565b600082821015620008885762000888620008e8565b500390565b600181811c90821680620008a257607f821691505b60208210811415620008c457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008e157620008e1620008e8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b615dc4806200093a6000396000f3fe60806040526004361061058c5760003560e01c806374cd3b09116102d5578063b69faf5011610184578063d79779b2116100e1578063efbd73f411610095578063f645f2db1161006f578063f645f2db14610fce578063f8f15fbd14610ffc578063fac333ac1461101c57600080fd5b8063efbd73f414610f6e578063efdf073d14610f8e578063f2fde38b14610fae57600080fd5b8063e0e7f6a3116100c6578063e0e7f6a314610ef9578063e33b7de314610f10578063e985e9c514610f2557600080fd5b8063d79779b214610ea3578063dbe2193f14610ed957600080fd5b8063c87b56dd11610138578063ccd58f071161011d578063ccd58f0714610e36578063ce7c2ac214610e56578063d3300df014610e8c57600080fd5b8063c87b56dd14610e00578063ca0dcf1614610e2057600080fd5b8063c0d99f5411610169578063c0d99f5414610d92578063c42f42d114610db2578063c45ac05014610de057600080fd5b8063b69faf5014610d5f578063b88d4fde14610d7257600080fd5b80638da5cb5b11610232578063a22cb465116101e6578063a45ba8e7116101cb578063a45ba8e714610d0a578063b071401b14610d1f578063b5c440ea14610d3f57600080fd5b8063a22cb46514610cca578063a3f8eace14610cea57600080fd5b806395d89b411161021757806395d89b4114610c6c5780639852595c14610c81578063a0712d6814610cb757600080fd5b80638da5cb5b14610c3857806394354fd014610c5657600080fd5b80637f5e54981161028957806386b9eee71161026e57806386b9eee714610be15780638b2e980914610bf85780638b83209b14610c1857600080fd5b80637f5e549814610bb45780638099e82a14610bcb57600080fd5b806378856d8a116102ba57806378856d8a14610b5d5780637e708fb614610b745780637ec4a65914610b9457600080fd5b806374cd3b0914610b275780637590ec2414610b3d57600080fd5b806343bcc5821161043c57806353e78249116103995780636352211e1161034d57806370a082311161032757806370a0823114610adb57806370d9c5ff14610afb578063715018a614610b1257600080fd5b80636352211e14610a7b57806368a085e614610a9b5780636c2efc5614610abb57600080fd5b80635c975abb1161037e5780635c975abb14610a2c5780635edee6f714610a4657806362b99ad414610a6657600080fd5b806353e7824914610a005780635503a0e814610a1757600080fd5b80634c79479a116103f05780634f9263e0116103d55780634f9263e0146109845780634fdd43cb146109b257806352a9039c146109d257600080fd5b80634c79479a1461093c5780634c96b35d1461096957600080fd5b806346a76bf21161042157806346a76bf2146108ee57806346c0d1101461090557806348b750441461091c57600080fd5b806343bcc582146108af5780634576976e146108ce57600080fd5b806316c38b3c116104ea57806323b872dd1161049e5780633a98ef39116104835780633a98ef3914610834578063406072a91461084957806342842e0e1461088f57600080fd5b806323b872dd146108015780632fbba1151461082157600080fd5b806319165587116104cf578063191655871461079d5780631f21bfbf146107bd57806323143c5b146107d357600080fd5b806316c38b3c1461074257806318160ddd1461076257600080fd5b8063095ea7b31161054157806310069f711161052657806310069f71146106dd578063113dcca5146106f457806316ba10e01461072257600080fd5b8063095ea7b3146106a85780630a6cd0f9146106ca57600080fd5b806306fdde031161057257806306fdde031461063357806307003bb414610655578063081812fc1461067057600080fd5b80629a9b7b146105da57806301ffc9a71461060357600080fd5b366105d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156105e657600080fd5b506105f060175481565b6040519081526020015b60405180910390f35b34801561060f57600080fd5b5061062361061e36600461571e565b61104f565b60405190151581526020016105fa565b34801561063f57600080fd5b50610648611134565b6040516105fa9190615a8c565b34801561066157600080fd5b50610295546106239060ff1681565b34801561067c57600080fd5b5061069061068b366004615705565b6111c6565b6040516001600160a01b0390911681526020016105fa565b3480156106b457600080fd5b506106c86106c33660046154d3565b611223565b005b6106c86106d83660046155c8565b6112f4565b3480156106e957600080fd5b506105f06102975481565b34801561070057600080fd5b506105f061070f366004615705565b61029f6020526000908152604090205481565b34801561072e57600080fd5b506106c861073d366004615758565b61179e565b34801561074e57600080fd5b506106c861075d3660046156cb565b6117bd565b34801561076e57600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016105f0565b3480156107a957600080fd5b506106c86107b836600461538e565b6117f6565b3480156107c957600080fd5b506105f060185481565b3480156107df57600080fd5b506105f06107ee36600461538e565b6102946020526000908152604090205481565b34801561080d57600080fd5b506106c861081c3660046153e4565b6118dd565b6106c861082f366004615705565b611b14565b34801561084057600080fd5b506009546105f0565b34801561085557600080fd5b506105f06108643660046153ab565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561089b57600080fd5b506106c86108aa3660046153e4565b611d30565b3480156108bb57600080fd5b5060195461062390610100900460ff1681565b3480156108da57600080fd5b506106c86108e9366004615705565b611d50565b3480156108fa57600080fd5b506105f061029d5481565b34801561091157600080fd5b506105f061028f5481565b34801561092857600080fd5b506106c86109373660046153ab565b611d5e565b34801561094857600080fd5b5061095c610957366004615810565b611f2a565b6040516105fa9190615a40565b34801561097557600080fd5b5061029c546106239060ff1681565b34801561099057600080fd5b506105f061099f36600461538e565b6102996020526000908152604090205481565b3480156109be57600080fd5b506106c86109cd366004615758565b61214d565b3480156109de57600080fd5b506105f06109ed36600461538e565b61029b6020526000908152604090205481565b348015610a0c57600080fd5b506105f061029e5481565b348015610a2357600080fd5b50610648612168565b348015610a3857600080fd5b506019546106239060ff1681565b348015610a5257600080fd5b506106c8610a613660046156cb565b6121f6565b348015610a7257600080fd5b50610648612230565b348015610a8757600080fd5b50610690610a96366004615705565b61223d565b348015610aa757600080fd5b506106c8610ab6366004615705565b612248565b348015610ac757600080fd5b506106c8610ad6366004615705565b612256565b348015610ae757600080fd5b506105f0610af636600461538e565b612264565b348015610b0757600080fd5b506105f06102935481565b348015610b1e57600080fd5b506106c86122cc565b348015610b3357600080fd5b506105f0601a5481565b348015610b4957600080fd5b506106c8610b583660046154ff565b6122e0565b348015610b6957600080fd5b506105f06102915481565b348015610b8057600080fd5b506106c8610b8f36600461578d565b61243d565b348015610ba057600080fd5b506106c8610baf366004615758565b61270c565b348015610bc057600080fd5b506105f061029a5481565b348015610bd757600080fd5b506105f060145481565b348015610bed57600080fd5b506105f06102905481565b348015610c0457600080fd5b506106c8610c133660046156cb565b612727565b348015610c2457600080fd5b50610690610c33366004615705565b612766565b348015610c4457600080fd5b506008546001600160a01b0316610690565b348015610c6257600080fd5b506105f060155481565b348015610c7857600080fd5b50610648612796565b348015610c8d57600080fd5b506105f0610c9c36600461538e565b6001600160a01b03166000908152600c602052604090205490565b6106c8610cc5366004615705565b6127a5565b348015610cd657600080fd5b506106c8610ce53660046154a5565b612a21565b348015610cf657600080fd5b506105f0610d0536600461538e565b612aee565b348015610d1657600080fd5b50610648612b36565b348015610d2b57600080fd5b506106c8610d3a366004615705565b612b43565b348015610d4b57600080fd5b506106c8610d5a366004615643565b612b50565b6106c8610d6d3660046155c8565b613563565b348015610d7e57600080fd5b506106c8610d8d366004615425565b613929565b348015610d9e57600080fd5b5061095c610dad366004615810565b61398c565b348015610dbe57600080fd5b506105f0610dcd366004615705565b61028e6020526000908152604090205481565b348015610dec57600080fd5b506105f0610dfb3660046153ab565b613ba6565b348015610e0c57600080fd5b50610648610e1b366004615705565b613c99565b348015610e2c57600080fd5b506105f060165481565b348015610e4257600080fd5b506106c8610e51366004615705565b613ebd565b348015610e6257600080fd5b506105f0610e7136600461538e565b6001600160a01b03166000908152600b602052604090205490565b348015610e9857600080fd5b506105f06102965481565b348015610eaf57600080fd5b506105f0610ebe36600461538e565b6001600160a01b03166000908152600e602052604090205490565b348015610ee557600080fd5b506106c8610ef4366004615705565b613f1b565b348015610f0557600080fd5b506105f06102925481565b348015610f1c57600080fd5b50600a546105f0565b348015610f3157600080fd5b50610623610f403660046153ab565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610f7a57600080fd5b506106c8610f893660046157eb565b613f28565b348015610f9a57600080fd5b506106c8610fa9366004615705565b6140b4565b348015610fba57600080fd5b506106c8610fc936600461538e565b6140c2565b348015610fda57600080fd5b506105f0610fe936600461538e565b6102986020526000908152604090205481565b34801561100857600080fd5b506106c8611017366004615705565b614152565b34801561102857600080fd5b5061103c611037366004615705565b614160565b60405161ffff90911681526020016105fa565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806110e257507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061112e57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461114390615bbe565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90615bbe565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050905090565b60006111d18261418f565b611207576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061122e8261223d565b9050336001600160a01b038216146112805761124a8133610f40565b611280576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002601054141561134c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002601055610293546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152849184916000906034016040516020818303038152906040528051906020012090506113e58484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506141dd9050565b6114315760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401611343565b60195460ff16156114845760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f544210156114fd5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60448201527f697374204d696e74207374617274732e000000000000000000000000000000006064820152608401611343565b6102905442106115755760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206265666f7265207468652066726560448201527f6e4c697374204d696e7420656e64732e000000000000000000000000000000006064820152608401611343565b610291543360009081526102946020526040902054611595908790615b12565b11156116095760405162461bcd60e51b815260206004820152602160248201527f476f696e67206f766572206d6178696d756d206672656e4c697374204d696e7460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401611343565b60185485600161161860005490565b6116229190615b7b565b61162c9190615b12565b11156116a05760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b84610292546116af9190615b3e565b3410156116fe5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401611343565b6015548511156117505760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401611343565b336000908152610294602052604090205461176c908690615b12565b3360009081526102946020526040902055611786856141f3565b6117903386614260565b505060016010555050505050565b6117a661438a565b80516117b99060139060208401906151ed565b5050565b6117c561438a565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260105414156118495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055336001600160a01b038216146118cc5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206f6e6c792072656c656173652066756e647320746f20796f60448201527f7572206f776e20616464726573730000000000000000000000000000000000006064820152608401611343565b6118d5816143e4565b506001601055565b60006118e882614586565b9050836001600160a01b0316816001600160a01b031614611935576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546119618187335b6001600160a01b039081169116811491141790565b6119a55761196f8633610f40565b6119a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166119e5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156119f057600082555b6001600160a01b0386811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316611acb5760018401600081815260046020526040902054611ac9576000548114611ac95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60026010541415611b675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105560195460ff1615611bbf5760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f54421015611c385760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201527f206e6f7420737461727465642e000000000000000000000000000000000000006064820152608401611343565b33600090815261029b6020526040902054816001611c5560005490565b611c5f9190615b7b565b611c699190615b12565b1115611cdd5760405162461bcd60e51b815260206004820152602a60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420696e20796f7572206160448201527f6c6c6f636174696f6e2e000000000000000000000000000000000000000000006064820152608401611343565b611ce6816141f3565b33600090815261029b6020526040902054611d02908290615b7b565b33600090815261029b602052604090205561029a54611d22908290615b7b565b61029a556118d53382614260565b611d4b83838360405180602001604052806000815250613929565b505050565b611d5861438a565b61029e55565b6001600160a01b0381166000908152600b6020526040902054611de95760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401611343565b6000611df58383613ba6565b905080611e6a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401611343565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290611ea1908490615b12565b90915550506001600160a01b0383166000908152600e602052604081208054839290611ece908490615b12565b90915550611edf905083838361463f565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b606082611f795760405162461bcd60e51b815260206004820152601c60248201527f7374617274206f6620736c696365206d757374206e6f742062652030000000006044820152606401611343565b828211611fee5760405162461bcd60e51b815260206004820152603460248201527f737461727420206f6620736c696365206d757374206e6f74206265206869676860448201527f6572207468616e20656e64206f6620736c6963650000000000000000000000006064820152608401611343565b60006001611ffb60005490565b6120059190615b7b565b90508083111561207d5760405162461bcd60e51b815260206004820152602d60248201527f656e6420206f6620736c696365206d757374206265206c6f776572207468616e60448201527f206c61737420746f6b656e4964000000000000000000000000000000000000006064820152608401611343565b60006120898585615b7b565b612094906001615b12565b67ffffffffffffffff8111156120ac576120ac615d0e565b6040519080825280602002602001820160405280156120d5578160200160208202803683370190505b50905060005b6120e58686615b7b565b6120f0906001615b12565b8110156121445761029f60006121068884615b12565b81526020019081526020016000205482828151811061212757612127615cdf565b60209081029190910101528061213c81615c34565b9150506120db565b50949350505050565b61215561438a565b80516117b99060119060208401906151ed565b6013805461217590615bbe565b80601f01602080910402602001604051908101604052809291908181526020018280546121a190615bbe565b80156121ee5780601f106121c3576101008083540402835291602001916121ee565b820191906000526020600020905b8154815290600101906020018083116121d157829003601f168201915b505050505081565b6121fe61438a565b61029c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6012805461217590615bbe565b600061112e82614586565b61225061438a565b61029655565b61225e61438a565b61029355565b60006001600160a01b0382166122a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6122d461438a565b6122de60006146bf565b565b600260105414156123335760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105561234061438a565b80518251146123b75760405162461bcd60e51b815260206004820152602b60248201527f616472657373657320616e64206c696d697473206d757374206265206f66206560448201527f7175616c206c656e6774680000000000000000000000000000000000000000006064820152608401611343565b60005b8251811015612433578181815181106123d5576123d5615cdf565b602002602001015161029860008584815181106123f4576123f4615cdf565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061242b90615c34565b9150506123ba565b5050600160105550565b61244561438a565b60408051808201909152600d81527f6d61696e4d696e745374617274000000000000000000000000000000000000006020918201528251908301207f6c3bf32449e6496f18789ebcd13e4fb0af47b689fc31e7a3bd6e9df186a0ca59141561252457601454421061251e5760405162461bcd60e51b815260206004820152603b60248201527f596f752063616e277420757064617465206d61696e4d696e747374617274206f60448201527f6e63652074686520706572696f642068617320737461727465642e00000000006064820152608401611343565b60145550565b60408051808201909152601181527f6672656e4c6973744d696e7453746172740000000000000000000000000000006020918201528251908301207f6c83cbc5eba2091cd8f18bbf2e143bc4ac7ef07d924fcdd23756677714e4ba0f141561262b5761028f5442106126245760405162461bcd60e51b815260206004820152604960248201527f596f752063616e277420757064617465206672656e4c6973744d696e7473746160448201527f7274206f6e636520746865206672656e6c4c6973744d696e7420706572696f6460648201527f20737461727465642e0000000000000000000000000000000000000000000000608482015260a401611343565b61028f5550565b60408051808201909152600f81527f6672656e4c6973744d696e74456e6400000000000000000000000000000000006020918201528251908301207fedc3f25306b6707dfacce136de7d9b785dc4ed0a4e0a08ac8f3fc6a922138f5414156117b9576102905442106127055760405162461bcd60e51b815260206004820152603460248201527f596f752063616e277420757064617465206672656e4c6973744d696e74456e6460448201527f206f6e636520697420686173207061737365642e0000000000000000000000006064820152608401611343565b6102905550565b61271461438a565b80516117b99060129060208401906151ed565b61272f61438a565b60198054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000600d828154811061277b5761277b615cdf565b6000918252602090912001546001600160a01b031692915050565b60606003805461114390615bbe565b600260105414156127f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105560195460ff16156128505760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b6014544210156128c85760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201527f206e6f7420737461727465642e000000000000000000000000000000000000006064820152608401611343565b6018548160016128d760005490565b6128e19190615b7b565b6128eb9190615b12565b111561295f5760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b8060165461296d9190615b3e565b3410156129bc5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401611343565b601554811115612a0e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401611343565b612a17816141f3565b6118d53382614260565b6001600160a01b038216331415612a64576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080612afa600a5490565b612b049047615b12565b9050612b2f8382612b2a866001600160a01b03166000908152600c602052604090205490565b614729565b9392505050565b6011805461217590615bbe565b612b4b61438a565b601555565b60026010541415612ba35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105561029c5460ff16612c215760405162461bcd60e51b815260206004820152602860248201527f4552433732313a20274275726e20546f204561726e27206973206e6f7420796560448201527f74206163746976650000000000000000000000000000000000000000000000006064820152608401611343565b60008251118015612c33575060008351115b612c7f5760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a204d757374206e6f6d696e61746520616e64206275726e00006044820152606401611343565b61029d5483511015612cf95760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a204d757374206d61746368206f72206578636565642062757260448201527f6e20746f206561726e206275726e20726571756972656d656e740000000000006064820152608401611343565b61029e5482511015612d75576040805162461bcd60e51b81526020600482015260248101919091527f4552433732313a204d757374206d61746368206f72206578636565642062757260448201527f6e20746f206561726e206e6f6d696e6174696f6e20726571756972656d656e746064820152608401611343565b60005b8351811015612e3b57336001600160a01b0316612dad858381518110612da057612da0615cdf565b602002602001015161223d565b6001600160a01b031614612e295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2063616c6c6572206973206e6f7420746865206275726e207460448201527f6f6b656e206f776e6572000000000000000000000000000000000000000000006064820152608401611343565b80612e3381615c34565b915050612d78565b5060005b8251811015612ef557336001600160a01b0316612e67848381518110612da057612da0615cdf565b6001600160a01b031614612ee35760405162461bcd60e51b815260206004820152603060248201527f455243373231413a2063616c6c6572206973206e6f7420746865206e6f6d696e60448201527f6174656420746f6b656e206f776e6572000000000000000000000000000000006064820152608401611343565b80612eed81615c34565b915050612e3f565b5082516001148015612f08575081516001145b15612fec5761029f600084600081518110612f2557612f25615cdf565b602002602001015181526020019081526020016000205461029f600084600081518110612f5457612f54615cdf565b60200260200101518152602001908152602001600020546001612f779190615b12565b612f819190615b12565b61029f600084600081518110612f9957612f99615cdf565b6020026020010151815260200190815260200160002081905550600061029f600085600081518110612fcd57612fcd615cdf565b60200260200101518152602001908152602001600020819055506134a5565b60018351118015612ffe575081516001145b1561310f576000805b84518110156130905761029f600086838151811061302757613027615cdf565b6020026020010151815260200190815260200160002054826130499190615b12565b50600061029f600087848151811061306357613063615cdf565b6020026020010151815260200190815260200160002081905550808061308890615c34565b915050613007565b5080845161029f6000866000815181106130ac576130ac615cdf565b60200260200101518152602001908152602001600020546130cd9190615b12565b6130d79190615b12565b61029f6000856000815181106130ef576130ef615cdf565b6020026020010151815260200190815260200160002081905550506134a5565b60018351118015613121575060018251115b1561339e5781518351141561322b5760005b82518110156132255761029f600085838151811061315357613153615cdf565b602002602001015181526020019081526020016000205461029f600085848151811061318157613181615cdf565b602002602001015181526020019081526020016000205460016131a49190615b12565b6131ae9190615b12565b61029f60008584815181106131c5576131c5615cdf565b6020026020010151815260200190815260200160002081905550600061029f60008684815181106131f8576131f8615cdf565b6020026020010151815260200190815260200160002081905550808061321d90615c34565b915050613133565b506134a5565b815183516132399190615c6d565b61339e5760008251845161324d9190615b2a565b905060005b8351811015613397576000805b8381101561330d5761029f6000886132778787615b3e565b6132819085615b12565b8151811061329157613291615cdf565b6020026020010151815260200190815260200160002054826132b39190615b12565b9150600061029f81896132c68888615b3e565b6132d09086615b12565b815181106132e0576132e0615cdf565b6020026020010151815260200190815260200160002081905550808061330590615c34565b91505061325f565b50808361029f600088868151811061332757613327615cdf565b60200260200101518152602001908152602001600020546133489190615b12565b6133529190615b12565b61029f600087858151811061336957613369615cdf565b602002602001015181526020019081526020016000208190555050808061338f90615c34565b915050613252565b50506134a5565b60405162461bcd60e51b81526020600482015260ba60248201527f4275726e73206d757374206265206576656e2c20276f6e6520746f206f6e652760448201527f20276d616e79206275726e7320746f206f6e65272c206576656e206f7220657660648201527f656e6c79206469767369626c65206279612061206d75746c69706c6965722c2060848201527f6c696b652033206e6f6d696e6174696f6e7320746f206f6e65206275726e2c2060a48201527f36206e6f6d7320746f2074776f206275726e732c20627574206e6f7420756e6560c48201527f76656e206c696b652035206e6f6d7320746f2033206275726e7300000000000060e482015261010401611343565b60005b83518110156134e7576134d58482815181106134c6576134c6615cdf565b60200260200101516001614767565b806134df81615c34565b9150506134a8565b50816040516134f691906158b7565b60405180910390208360405161350c91906158b7565b6040518091039020336001600160a01b03167faca6d25e9e8a9aec606bbc6415bba72cd40120eb20b3b8bb0d48e482494c05bb86868660405161355193929190615a53565b60405180910390a45050600160105550565b600260105414156135b65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055610296546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528491849160009060340160405160208183030381529060405280519060200120905061364f8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506141dd9050565b61369b5760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401611343565b60195460ff16156136ee5760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f544210156137675760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60448201527f697374204d696e74207374617274732e000000000000000000000000000000006064820152608401611343565b60185485600161377660005490565b6137809190615b7b565b61378a9190615b12565b11156137fe5760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b33600090815261029960205260409020546138565733600090815261029860205260409020541561383f573360009081526102986020526040902054613844565b610297545b33600090815261029860205260409020555b33600090815261029860209081526040808320546102999092529091205461387f908790615b12565b11156138f35760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f7420657863656564206d61782067696674206d696e747320666f60448201527f72207468697320616464726573730000000000000000000000000000000000006064820152608401611343565b336000908152610299602052604090205461390f908690615b12565b3360009081526102996020526040902055611786856141f3565b6139348484846118dd565b6001600160a01b0383163b1561398657613950848484846148f5565b613986576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060826139db5760405162461bcd60e51b815260206004820152601c60248201527f7374617274206f6620736c696365206d757374206e6f742062652030000000006044820152606401611343565b828211613a505760405162461bcd60e51b815260206004820152603260248201527f656e6420206f6620736c696365206d757374206e6f742062652068696768657260448201527f207468616e20656e64206f6620736c69636500000000000000000000000000006064820152608401611343565b60006001613a5d60005490565b613a679190615b7b565b905080831115613adf5760405162461bcd60e51b815260206004820152602d60248201527f656e6420206f6620736c696365206d757374206265206c6f776572207468616e60448201527f206c61737420746f6b656e4964000000000000000000000000000000000000006064820152608401611343565b6000613aeb8585615b7b565b613af6906001615b12565b67ffffffffffffffff811115613b0e57613b0e615d0e565b604051908082528060200260200182016040528015613b37578160200160208202803683370190505b50905060005b613b478686615b7b565b613b52906001615b12565b8110156121445761028e6000613b688884615b12565b815260200190815260200160002054828281518110613b8957613b89615cdf565b602090810291909101015280613b9e81615c34565b915050613b3d565b6001600160a01b0382166000908152600e602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a082319060240160206040518083038186803b158015613c1957600080fd5b505afa158015613c2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c5191906157d2565b613c5b9190615b12565b6001600160a01b038086166000908152600f6020908152604080832093881683529290522054909150613c919084908390614729565b949350505050565b6060613ca48261418f565b613d165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401611343565b60195460ff6101009091041615156001148015613d345750601a5482115b15613dcb5760118054613d4690615bbe565b80601f0160208091040260200160405190810160405280929190818152602001828054613d7290615bbe565b8015613dbf5780601f10613d9457610100808354040283529160200191613dbf565b820191906000526020600020905b815481529060010190602001808311613da257829003601f168201915b50505050509050919050565b600060128054613dda90615bbe565b80601f0160208091040260200160405190810160405280929190818152602001828054613e0690615bbe565b8015613e535780601f10613e2857610100808354040283529160200191613e53565b820191906000526020600020905b815481529060010190602001808311613e3657829003601f168201915b505050505090506000815111613e785760405180602001604052806000815250612b2f565b600083815261028e60205260409020548190613e9390614a6d565b6013604051602001613ea793929190615909565b6040516020818303038152906040529392505050565b613ec561438a565b60008111613f155760405162461bcd60e51b815260206004820152601760248201527f4d7573742072657175697265206174206c6561737420310000000000000000006044820152606401611343565b61029d55565b613f2361438a565b601655565b60026010541415613f7b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055613f8861438a565b61028f544210156140015760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206d696e74466f7241646472657373206f6e636560448201527f20746865206672656e4c697374204d696e74207374617274732e0000000000006064820152608401611343565b60185482600161401060005490565b61401a9190615b7b565b6140249190615b12565b11156140985760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b6140a1826141f3565b6140ab8183614b9f565b50506001601055565b6140bc61438a565b61029255565b6140ca61438a565b6001600160a01b0381166141465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611343565b61414f816146bf565b50565b61415a61438a565b61029155565b601b81612711811061417157600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6000816001111580156141a3575060005482105b801561112e5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000826141ea8584614bb9565b14949350505050565b60015b614201826001615b12565b81146117b9576017805490600061421783615c34565b9091555061423b9050600161422c4342615b3e565b6142369190615b7b565b614c06565b601754600090815261028e60205260409020558061425881615c34565b9150506141f6565b6000548161429a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461434957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101614311565b5081614381576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6008546001600160a01b031633146122de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611343565b6001600160a01b0381166000908152600b602052604090205461446f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401611343565b600061447a82612aee565b9050806144ef5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401611343565b6001600160a01b0382166000908152600c602052604081208054839290614517908490615b12565b9250508190555080600a60008282546145309190615b12565b9091555061454090508282614e29565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000818060011161460d5760005481101561460d576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661460b575b80612b2f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546145cf565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611d4b908490614f42565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546001600160a01b0384166000908152600b6020526040812054909183916147539086615b3e565b61475d9190615b2a565b613c919190615b7b565b600061477283614586565b90508060008061479086600090815260066020526040902080549091565b9150915084156147e9576147a581843361194c565b6147e9576147b38333610f40565b6147e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156147f457600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260409020557c020000000000000000000000000000000000000000000000000000000084166148ad57600186016000818152600460205260409020546148ab5760005481146148ab5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290614943903390899088908890600401615a04565b602060405180830381600087803b15801561495d57600080fd5b505af19250505080156149ab575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526149a89181019061573b565b60015b614a1f573d8080156149d9576040519150601f19603f3d011682016040523d82523d6000602084013e6149de565b606091505b508051614a17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606081614aad57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115614ad75780614ac181615c34565b9150614ad09050600a83615b2a565b9150614ab1565b60008167ffffffffffffffff811115614af257614af2615d0e565b6040519080825280601f01601f191660200182016040528015614b1c576020820181803683370190505b5090505b8415613c9157614b31600183615b7b565b9150614b3e600a86615c6d565b614b49906030615b12565b60f81b818381518110614b5e57614b5e615cdf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350614b98600a86615b2a565b9450614b20565b6117b9828260405180602001604052806000815250615027565b600081815b8451811015614bfe57614bea82868381518110614bdd57614bdd615cdf565b60200260200101516150ad565b915080614bf681615c34565b915050614bbe565b509392505050565b61028d8054600091829161ffff169082614c1f83615c12565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612711614c4a9190615b7b565b905060008111614c9c5760405162461bcd60e51b815260206004820152600b60248201527f6e6f20696473206c6566740000000000000000000000000000000000000000006044820152606401611343565b6000614ca88285615c6d565b9050601b816127118110614cbe57614cbe615cdf565b601081049190910154600f9091166002026101000a900461ffff16614ce35780614d16565b601b816127118110614cf757614cf7615cdf565b601091828204019190066002029054906101000a900461ffff1661ffff165b9250601b614d25600184615b7b565b6127118110614d3657614d36615cdf565b601081049190910154600f9091166002026101000a900461ffff1615614d9757601b614d63600184615b7b565b6127118110614d7457614d74615cdf565b601091828204019190066002029054906101000a900461ffff1661ffff16614da2565b614da2600183615b7b565b601b826127118110614db657614db6615cdf565b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506000601b600184614dec9190615b7b565b6127118110614dfd57614dfd615cdf565b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505050919050565b80471015614e795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401611343565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614ec6576040519150601f19603f3d011682016040523d82523d6000602084013e614ecb565b606091505b5050905080611d4b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401611343565b6000614f97826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150d99092919063ffffffff16565b805190915015611d4b5780806020019051810190614fb591906156e8565b611d4b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611343565b6150318383614260565b6001600160a01b0383163b15611d4b576000548281035b61505b60008683806001019450866148f5565b615091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106150485781600054146150a657600080fd5b5050505050565b60008183106150c9576000828152602084905260409020612b2f565b5060009182526020526040902090565b6060613c918484600085856001600160a01b0385163b61513b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611343565b600080866001600160a01b0316858760405161515791906158ed565b60006040518083038185875af1925050503d8060008114615194576040519150601f19603f3d011682016040523d82523d6000602084013e615199565b606091505b50915091506151a98282866151b4565b979650505050505050565b606083156151c3575081612b2f565b8251156151d35782518084602001fd5b8160405162461bcd60e51b81526004016113439190615a8c565b8280546151f990615bbe565b90600052602060002090601f01602090048101928261521b5760008555615261565b82601f1061523457805160ff1916838001178555615261565b82800160010185558215615261579182015b82811115615261578251825591602001919060010190615246565b5061526d929150615271565b5090565b5b8082111561526d5760008155600101615272565b600067ffffffffffffffff8311156152a0576152a0615d0e565b6152d160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601615a9f565b90508281528383830111156152e557600080fd5b828260208301376000602084830101529392505050565b600082601f83011261530d57600080fd5b8135602061532261531d83615aee565b615a9f565b80838252828201915082860187848660051b890101111561534257600080fd5b60005b8581101561536157813584529284019290840190600101615345565b5090979650505050505050565b600082601f83011261537f57600080fd5b612b2f83833560208501615286565b6000602082840312156153a057600080fd5b8135612b2f81615d3d565b600080604083850312156153be57600080fd5b82356153c981615d3d565b915060208301356153d981615d3d565b809150509250929050565b6000806000606084860312156153f957600080fd5b833561540481615d3d565b9250602084013561541481615d3d565b929592945050506040919091013590565b6000806000806080858703121561543b57600080fd5b843561544681615d3d565b9350602085013561545681615d3d565b925060408501359150606085013567ffffffffffffffff81111561547957600080fd5b8501601f8101871361548a57600080fd5b61549987823560208401615286565b91505092959194509250565b600080604083850312156154b857600080fd5b82356154c381615d3d565b915060208301356153d981615d52565b600080604083850312156154e657600080fd5b82356154f181615d3d565b946020939093013593505050565b6000806040838503121561551257600080fd5b823567ffffffffffffffff8082111561552a57600080fd5b818501915085601f83011261553e57600080fd5b8135602061554e61531d83615aee565b8083825282820191508286018a848660051b890101111561556e57600080fd5b600096505b8487101561559a57803561558681615d3d565b835260019690960195918301918301615573565b50965050860135925050808211156155b157600080fd5b506155be858286016152fc565b9150509250929050565b6000806000604084860312156155dd57600080fd5b833567ffffffffffffffff808211156155f557600080fd5b818601915086601f83011261560957600080fd5b81358181111561561857600080fd5b8760208260051b850101111561562d57600080fd5b6020928301989097509590910135949350505050565b60008060006060848603121561565857600080fd5b833567ffffffffffffffff8082111561567057600080fd5b61567c878388016152fc565b9450602086013591508082111561569257600080fd5b61569e878388016152fc565b935060408601359150808211156156b457600080fd5b506156c18682870161536e565b9150509250925092565b6000602082840312156156dd57600080fd5b8135612b2f81615d52565b6000602082840312156156fa57600080fd5b8151612b2f81615d52565b60006020828403121561571757600080fd5b5035919050565b60006020828403121561573057600080fd5b8135612b2f81615d60565b60006020828403121561574d57600080fd5b8151612b2f81615d60565b60006020828403121561576a57600080fd5b813567ffffffffffffffff81111561578157600080fd5b613c918482850161536e565b600080604083850312156157a057600080fd5b823567ffffffffffffffff8111156157b757600080fd5b6157c38582860161536e565b95602094909401359450505050565b6000602082840312156157e457600080fd5b5051919050565b600080604083850312156157fe57600080fd5b8235915060208301356153d981615d3d565b6000806040838503121561582357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561586257815187529582019590820190600101615846565b509495945050505050565b60008151808452615885816020860160208601615b92565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b815160009082906020808601845b838110156158e1578151855293820193908201906001016158c5565b50929695505050505050565b600082516158ff818460208701615b92565b9190910192915050565b60008451602061591c8285838a01615b92565b85519184019161592f8184848a01615b92565b8554920191600090600181811c908083168061594c57607f831692505b858310811415615983577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b80801561599757600181146159c6576159f3565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516885283880195506159f3565b60008b81526020902060005b858110156159eb5781548a8201529084019088016159d2565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615a36608083018461586d565b9695505050505050565b602081526000612b2f6020830184615832565b606081526000615a666060830186615832565b8281036020840152615a788186615832565b90508281036040840152615a36818561586d565b602081526000612b2f602083018461586d565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715615ae657615ae6615d0e565b604052919050565b600067ffffffffffffffff821115615b0857615b08615d0e565b5060051b60200190565b60008219821115615b2557615b25615c81565b500190565b600082615b3957615b39615cb0565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b7657615b76615c81565b500290565b600082821015615b8d57615b8d615c81565b500390565b60005b83811015615bad578181015183820152602001615b95565b838111156139865750506000910152565b600181811c90821680615bd257607f821691505b60208210811415615c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600061ffff80831681811415615c2a57615c2a615c81565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c6657615c66615c81565b5060010190565b600082615c7c57615c7c615cb0565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461414f57600080fd5b801515811461414f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461414f57600080fdfea2646970667358221220cd2b1104e45c9cdc58772397e43261cdd85e92e67462e62e3ec7f54c1e17682364736f6c6343000807003368747470733a2f2f617277656176652e6e65742f385050505059674e75636966666b54635f5639563546575862566e56775177347067744657776d7470526368747470733a2f2f617277656176652e6e65742f5f5f415257454156455f484153485f2f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000004000000000000000000000000cddea80516e80ee58e9a416c39c498c2b96ec40b00000000000000000000000028881c6667bc0ccf27ab696ae16e53e01e397d260000000000000000000000007f0330ddd9e669bad5284f09f1a2e248141f00390000000000000000000000006eb6e7341fb68d52ee47d47cefff70f75801fe2100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x60806040526004361061058c5760003560e01c806374cd3b09116102d5578063b69faf5011610184578063d79779b2116100e1578063efbd73f411610095578063f645f2db1161006f578063f645f2db14610fce578063f8f15fbd14610ffc578063fac333ac1461101c57600080fd5b8063efbd73f414610f6e578063efdf073d14610f8e578063f2fde38b14610fae57600080fd5b8063e0e7f6a3116100c6578063e0e7f6a314610ef9578063e33b7de314610f10578063e985e9c514610f2557600080fd5b8063d79779b214610ea3578063dbe2193f14610ed957600080fd5b8063c87b56dd11610138578063ccd58f071161011d578063ccd58f0714610e36578063ce7c2ac214610e56578063d3300df014610e8c57600080fd5b8063c87b56dd14610e00578063ca0dcf1614610e2057600080fd5b8063c0d99f5411610169578063c0d99f5414610d92578063c42f42d114610db2578063c45ac05014610de057600080fd5b8063b69faf5014610d5f578063b88d4fde14610d7257600080fd5b80638da5cb5b11610232578063a22cb465116101e6578063a45ba8e7116101cb578063a45ba8e714610d0a578063b071401b14610d1f578063b5c440ea14610d3f57600080fd5b8063a22cb46514610cca578063a3f8eace14610cea57600080fd5b806395d89b411161021757806395d89b4114610c6c5780639852595c14610c81578063a0712d6814610cb757600080fd5b80638da5cb5b14610c3857806394354fd014610c5657600080fd5b80637f5e54981161028957806386b9eee71161026e57806386b9eee714610be15780638b2e980914610bf85780638b83209b14610c1857600080fd5b80637f5e549814610bb45780638099e82a14610bcb57600080fd5b806378856d8a116102ba57806378856d8a14610b5d5780637e708fb614610b745780637ec4a65914610b9457600080fd5b806374cd3b0914610b275780637590ec2414610b3d57600080fd5b806343bcc5821161043c57806353e78249116103995780636352211e1161034d57806370a082311161032757806370a0823114610adb57806370d9c5ff14610afb578063715018a614610b1257600080fd5b80636352211e14610a7b57806368a085e614610a9b5780636c2efc5614610abb57600080fd5b80635c975abb1161037e5780635c975abb14610a2c5780635edee6f714610a4657806362b99ad414610a6657600080fd5b806353e7824914610a005780635503a0e814610a1757600080fd5b80634c79479a116103f05780634f9263e0116103d55780634f9263e0146109845780634fdd43cb146109b257806352a9039c146109d257600080fd5b80634c79479a1461093c5780634c96b35d1461096957600080fd5b806346a76bf21161042157806346a76bf2146108ee57806346c0d1101461090557806348b750441461091c57600080fd5b806343bcc582146108af5780634576976e146108ce57600080fd5b806316c38b3c116104ea57806323b872dd1161049e5780633a98ef39116104835780633a98ef3914610834578063406072a91461084957806342842e0e1461088f57600080fd5b806323b872dd146108015780632fbba1151461082157600080fd5b806319165587116104cf578063191655871461079d5780631f21bfbf146107bd57806323143c5b146107d357600080fd5b806316c38b3c1461074257806318160ddd1461076257600080fd5b8063095ea7b31161054157806310069f711161052657806310069f71146106dd578063113dcca5146106f457806316ba10e01461072257600080fd5b8063095ea7b3146106a85780630a6cd0f9146106ca57600080fd5b806306fdde031161057257806306fdde031461063357806307003bb414610655578063081812fc1461067057600080fd5b80629a9b7b146105da57806301ffc9a71461060357600080fd5b366105d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156105e657600080fd5b506105f060175481565b6040519081526020015b60405180910390f35b34801561060f57600080fd5b5061062361061e36600461571e565b61104f565b60405190151581526020016105fa565b34801561063f57600080fd5b50610648611134565b6040516105fa9190615a8c565b34801561066157600080fd5b50610295546106239060ff1681565b34801561067c57600080fd5b5061069061068b366004615705565b6111c6565b6040516001600160a01b0390911681526020016105fa565b3480156106b457600080fd5b506106c86106c33660046154d3565b611223565b005b6106c86106d83660046155c8565b6112f4565b3480156106e957600080fd5b506105f06102975481565b34801561070057600080fd5b506105f061070f366004615705565b61029f6020526000908152604090205481565b34801561072e57600080fd5b506106c861073d366004615758565b61179e565b34801561074e57600080fd5b506106c861075d3660046156cb565b6117bd565b34801561076e57600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016105f0565b3480156107a957600080fd5b506106c86107b836600461538e565b6117f6565b3480156107c957600080fd5b506105f060185481565b3480156107df57600080fd5b506105f06107ee36600461538e565b6102946020526000908152604090205481565b34801561080d57600080fd5b506106c861081c3660046153e4565b6118dd565b6106c861082f366004615705565b611b14565b34801561084057600080fd5b506009546105f0565b34801561085557600080fd5b506105f06108643660046153ab565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561089b57600080fd5b506106c86108aa3660046153e4565b611d30565b3480156108bb57600080fd5b5060195461062390610100900460ff1681565b3480156108da57600080fd5b506106c86108e9366004615705565b611d50565b3480156108fa57600080fd5b506105f061029d5481565b34801561091157600080fd5b506105f061028f5481565b34801561092857600080fd5b506106c86109373660046153ab565b611d5e565b34801561094857600080fd5b5061095c610957366004615810565b611f2a565b6040516105fa9190615a40565b34801561097557600080fd5b5061029c546106239060ff1681565b34801561099057600080fd5b506105f061099f36600461538e565b6102996020526000908152604090205481565b3480156109be57600080fd5b506106c86109cd366004615758565b61214d565b3480156109de57600080fd5b506105f06109ed36600461538e565b61029b6020526000908152604090205481565b348015610a0c57600080fd5b506105f061029e5481565b348015610a2357600080fd5b50610648612168565b348015610a3857600080fd5b506019546106239060ff1681565b348015610a5257600080fd5b506106c8610a613660046156cb565b6121f6565b348015610a7257600080fd5b50610648612230565b348015610a8757600080fd5b50610690610a96366004615705565b61223d565b348015610aa757600080fd5b506106c8610ab6366004615705565b612248565b348015610ac757600080fd5b506106c8610ad6366004615705565b612256565b348015610ae757600080fd5b506105f0610af636600461538e565b612264565b348015610b0757600080fd5b506105f06102935481565b348015610b1e57600080fd5b506106c86122cc565b348015610b3357600080fd5b506105f0601a5481565b348015610b4957600080fd5b506106c8610b583660046154ff565b6122e0565b348015610b6957600080fd5b506105f06102915481565b348015610b8057600080fd5b506106c8610b8f36600461578d565b61243d565b348015610ba057600080fd5b506106c8610baf366004615758565b61270c565b348015610bc057600080fd5b506105f061029a5481565b348015610bd757600080fd5b506105f060145481565b348015610bed57600080fd5b506105f06102905481565b348015610c0457600080fd5b506106c8610c133660046156cb565b612727565b348015610c2457600080fd5b50610690610c33366004615705565b612766565b348015610c4457600080fd5b506008546001600160a01b0316610690565b348015610c6257600080fd5b506105f060155481565b348015610c7857600080fd5b50610648612796565b348015610c8d57600080fd5b506105f0610c9c36600461538e565b6001600160a01b03166000908152600c602052604090205490565b6106c8610cc5366004615705565b6127a5565b348015610cd657600080fd5b506106c8610ce53660046154a5565b612a21565b348015610cf657600080fd5b506105f0610d0536600461538e565b612aee565b348015610d1657600080fd5b50610648612b36565b348015610d2b57600080fd5b506106c8610d3a366004615705565b612b43565b348015610d4b57600080fd5b506106c8610d5a366004615643565b612b50565b6106c8610d6d3660046155c8565b613563565b348015610d7e57600080fd5b506106c8610d8d366004615425565b613929565b348015610d9e57600080fd5b5061095c610dad366004615810565b61398c565b348015610dbe57600080fd5b506105f0610dcd366004615705565b61028e6020526000908152604090205481565b348015610dec57600080fd5b506105f0610dfb3660046153ab565b613ba6565b348015610e0c57600080fd5b50610648610e1b366004615705565b613c99565b348015610e2c57600080fd5b506105f060165481565b348015610e4257600080fd5b506106c8610e51366004615705565b613ebd565b348015610e6257600080fd5b506105f0610e7136600461538e565b6001600160a01b03166000908152600b602052604090205490565b348015610e9857600080fd5b506105f06102965481565b348015610eaf57600080fd5b506105f0610ebe36600461538e565b6001600160a01b03166000908152600e602052604090205490565b348015610ee557600080fd5b506106c8610ef4366004615705565b613f1b565b348015610f0557600080fd5b506105f06102925481565b348015610f1c57600080fd5b50600a546105f0565b348015610f3157600080fd5b50610623610f403660046153ab565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610f7a57600080fd5b506106c8610f893660046157eb565b613f28565b348015610f9a57600080fd5b506106c8610fa9366004615705565b6140b4565b348015610fba57600080fd5b506106c8610fc936600461538e565b6140c2565b348015610fda57600080fd5b506105f0610fe936600461538e565b6102986020526000908152604090205481565b34801561100857600080fd5b506106c8611017366004615705565b614152565b34801561102857600080fd5b5061103c611037366004615705565b614160565b60405161ffff90911681526020016105fa565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806110e257507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061112e57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461114390615bbe565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90615bbe565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050905090565b60006111d18261418f565b611207576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061122e8261223d565b9050336001600160a01b038216146112805761124a8133610f40565b611280576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002601054141561134c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002601055610293546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152849184916000906034016040516020818303038152906040528051906020012090506113e58484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506141dd9050565b6114315760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401611343565b60195460ff16156114845760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f544210156114fd5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60448201527f697374204d696e74207374617274732e000000000000000000000000000000006064820152608401611343565b6102905442106115755760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206265666f7265207468652066726560448201527f6e4c697374204d696e7420656e64732e000000000000000000000000000000006064820152608401611343565b610291543360009081526102946020526040902054611595908790615b12565b11156116095760405162461bcd60e51b815260206004820152602160248201527f476f696e67206f766572206d6178696d756d206672656e4c697374204d696e7460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401611343565b60185485600161161860005490565b6116229190615b7b565b61162c9190615b12565b11156116a05760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b84610292546116af9190615b3e565b3410156116fe5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401611343565b6015548511156117505760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401611343565b336000908152610294602052604090205461176c908690615b12565b3360009081526102946020526040902055611786856141f3565b6117903386614260565b505060016010555050505050565b6117a661438a565b80516117b99060139060208401906151ed565b5050565b6117c561438a565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260105414156118495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055336001600160a01b038216146118cc5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206f6e6c792072656c656173652066756e647320746f20796f60448201527f7572206f776e20616464726573730000000000000000000000000000000000006064820152608401611343565b6118d5816143e4565b506001601055565b60006118e882614586565b9050836001600160a01b0316816001600160a01b031614611935576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546119618187335b6001600160a01b039081169116811491141790565b6119a55761196f8633610f40565b6119a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166119e5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156119f057600082555b6001600160a01b0386811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316611acb5760018401600081815260046020526040902054611ac9576000548114611ac95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60026010541415611b675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105560195460ff1615611bbf5760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f54421015611c385760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201527f206e6f7420737461727465642e000000000000000000000000000000000000006064820152608401611343565b33600090815261029b6020526040902054816001611c5560005490565b611c5f9190615b7b565b611c699190615b12565b1115611cdd5760405162461bcd60e51b815260206004820152602a60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420696e20796f7572206160448201527f6c6c6f636174696f6e2e000000000000000000000000000000000000000000006064820152608401611343565b611ce6816141f3565b33600090815261029b6020526040902054611d02908290615b7b565b33600090815261029b602052604090205561029a54611d22908290615b7b565b61029a556118d53382614260565b611d4b83838360405180602001604052806000815250613929565b505050565b611d5861438a565b61029e55565b6001600160a01b0381166000908152600b6020526040902054611de95760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401611343565b6000611df58383613ba6565b905080611e6a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401611343565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290611ea1908490615b12565b90915550506001600160a01b0383166000908152600e602052604081208054839290611ece908490615b12565b90915550611edf905083838361463f565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b606082611f795760405162461bcd60e51b815260206004820152601c60248201527f7374617274206f6620736c696365206d757374206e6f742062652030000000006044820152606401611343565b828211611fee5760405162461bcd60e51b815260206004820152603460248201527f737461727420206f6620736c696365206d757374206e6f74206265206869676860448201527f6572207468616e20656e64206f6620736c6963650000000000000000000000006064820152608401611343565b60006001611ffb60005490565b6120059190615b7b565b90508083111561207d5760405162461bcd60e51b815260206004820152602d60248201527f656e6420206f6620736c696365206d757374206265206c6f776572207468616e60448201527f206c61737420746f6b656e4964000000000000000000000000000000000000006064820152608401611343565b60006120898585615b7b565b612094906001615b12565b67ffffffffffffffff8111156120ac576120ac615d0e565b6040519080825280602002602001820160405280156120d5578160200160208202803683370190505b50905060005b6120e58686615b7b565b6120f0906001615b12565b8110156121445761029f60006121068884615b12565b81526020019081526020016000205482828151811061212757612127615cdf565b60209081029190910101528061213c81615c34565b9150506120db565b50949350505050565b61215561438a565b80516117b99060119060208401906151ed565b6013805461217590615bbe565b80601f01602080910402602001604051908101604052809291908181526020018280546121a190615bbe565b80156121ee5780601f106121c3576101008083540402835291602001916121ee565b820191906000526020600020905b8154815290600101906020018083116121d157829003601f168201915b505050505081565b6121fe61438a565b61029c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6012805461217590615bbe565b600061112e82614586565b61225061438a565b61029655565b61225e61438a565b61029355565b60006001600160a01b0382166122a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6122d461438a565b6122de60006146bf565b565b600260105414156123335760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105561234061438a565b80518251146123b75760405162461bcd60e51b815260206004820152602b60248201527f616472657373657320616e64206c696d697473206d757374206265206f66206560448201527f7175616c206c656e6774680000000000000000000000000000000000000000006064820152608401611343565b60005b8251811015612433578181815181106123d5576123d5615cdf565b602002602001015161029860008584815181106123f4576123f4615cdf565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061242b90615c34565b9150506123ba565b5050600160105550565b61244561438a565b60408051808201909152600d81527f6d61696e4d696e745374617274000000000000000000000000000000000000006020918201528251908301207f6c3bf32449e6496f18789ebcd13e4fb0af47b689fc31e7a3bd6e9df186a0ca59141561252457601454421061251e5760405162461bcd60e51b815260206004820152603b60248201527f596f752063616e277420757064617465206d61696e4d696e747374617274206f60448201527f6e63652074686520706572696f642068617320737461727465642e00000000006064820152608401611343565b60145550565b60408051808201909152601181527f6672656e4c6973744d696e7453746172740000000000000000000000000000006020918201528251908301207f6c83cbc5eba2091cd8f18bbf2e143bc4ac7ef07d924fcdd23756677714e4ba0f141561262b5761028f5442106126245760405162461bcd60e51b815260206004820152604960248201527f596f752063616e277420757064617465206672656e4c6973744d696e7473746160448201527f7274206f6e636520746865206672656e6c4c6973744d696e7420706572696f6460648201527f20737461727465642e0000000000000000000000000000000000000000000000608482015260a401611343565b61028f5550565b60408051808201909152600f81527f6672656e4c6973744d696e74456e6400000000000000000000000000000000006020918201528251908301207fedc3f25306b6707dfacce136de7d9b785dc4ed0a4e0a08ac8f3fc6a922138f5414156117b9576102905442106127055760405162461bcd60e51b815260206004820152603460248201527f596f752063616e277420757064617465206672656e4c6973744d696e74456e6460448201527f206f6e636520697420686173207061737365642e0000000000000000000000006064820152608401611343565b6102905550565b61271461438a565b80516117b99060129060208401906151ed565b61272f61438a565b60198054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000600d828154811061277b5761277b615cdf565b6000918252602090912001546001600160a01b031692915050565b60606003805461114390615bbe565b600260105414156127f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105560195460ff16156128505760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b6014544210156128c85760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201527f206e6f7420737461727465642e000000000000000000000000000000000000006064820152608401611343565b6018548160016128d760005490565b6128e19190615b7b565b6128eb9190615b12565b111561295f5760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b8060165461296d9190615b3e565b3410156129bc5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401611343565b601554811115612a0e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401611343565b612a17816141f3565b6118d53382614260565b6001600160a01b038216331415612a64576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080612afa600a5490565b612b049047615b12565b9050612b2f8382612b2a866001600160a01b03166000908152600c602052604090205490565b614729565b9392505050565b6011805461217590615bbe565b612b4b61438a565b601555565b60026010541415612ba35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b600260105561029c5460ff16612c215760405162461bcd60e51b815260206004820152602860248201527f4552433732313a20274275726e20546f204561726e27206973206e6f7420796560448201527f74206163746976650000000000000000000000000000000000000000000000006064820152608401611343565b60008251118015612c33575060008351115b612c7f5760405162461bcd60e51b815260206004820152601e60248201527f4552433732313a204d757374206e6f6d696e61746520616e64206275726e00006044820152606401611343565b61029d5483511015612cf95760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a204d757374206d61746368206f72206578636565642062757260448201527f6e20746f206561726e206275726e20726571756972656d656e740000000000006064820152608401611343565b61029e5482511015612d75576040805162461bcd60e51b81526020600482015260248101919091527f4552433732313a204d757374206d61746368206f72206578636565642062757260448201527f6e20746f206561726e206e6f6d696e6174696f6e20726571756972656d656e746064820152608401611343565b60005b8351811015612e3b57336001600160a01b0316612dad858381518110612da057612da0615cdf565b602002602001015161223d565b6001600160a01b031614612e295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2063616c6c6572206973206e6f7420746865206275726e207460448201527f6f6b656e206f776e6572000000000000000000000000000000000000000000006064820152608401611343565b80612e3381615c34565b915050612d78565b5060005b8251811015612ef557336001600160a01b0316612e67848381518110612da057612da0615cdf565b6001600160a01b031614612ee35760405162461bcd60e51b815260206004820152603060248201527f455243373231413a2063616c6c6572206973206e6f7420746865206e6f6d696e60448201527f6174656420746f6b656e206f776e6572000000000000000000000000000000006064820152608401611343565b80612eed81615c34565b915050612e3f565b5082516001148015612f08575081516001145b15612fec5761029f600084600081518110612f2557612f25615cdf565b602002602001015181526020019081526020016000205461029f600084600081518110612f5457612f54615cdf565b60200260200101518152602001908152602001600020546001612f779190615b12565b612f819190615b12565b61029f600084600081518110612f9957612f99615cdf565b6020026020010151815260200190815260200160002081905550600061029f600085600081518110612fcd57612fcd615cdf565b60200260200101518152602001908152602001600020819055506134a5565b60018351118015612ffe575081516001145b1561310f576000805b84518110156130905761029f600086838151811061302757613027615cdf565b6020026020010151815260200190815260200160002054826130499190615b12565b50600061029f600087848151811061306357613063615cdf565b6020026020010151815260200190815260200160002081905550808061308890615c34565b915050613007565b5080845161029f6000866000815181106130ac576130ac615cdf565b60200260200101518152602001908152602001600020546130cd9190615b12565b6130d79190615b12565b61029f6000856000815181106130ef576130ef615cdf565b6020026020010151815260200190815260200160002081905550506134a5565b60018351118015613121575060018251115b1561339e5781518351141561322b5760005b82518110156132255761029f600085838151811061315357613153615cdf565b602002602001015181526020019081526020016000205461029f600085848151811061318157613181615cdf565b602002602001015181526020019081526020016000205460016131a49190615b12565b6131ae9190615b12565b61029f60008584815181106131c5576131c5615cdf565b6020026020010151815260200190815260200160002081905550600061029f60008684815181106131f8576131f8615cdf565b6020026020010151815260200190815260200160002081905550808061321d90615c34565b915050613133565b506134a5565b815183516132399190615c6d565b61339e5760008251845161324d9190615b2a565b905060005b8351811015613397576000805b8381101561330d5761029f6000886132778787615b3e565b6132819085615b12565b8151811061329157613291615cdf565b6020026020010151815260200190815260200160002054826132b39190615b12565b9150600061029f81896132c68888615b3e565b6132d09086615b12565b815181106132e0576132e0615cdf565b6020026020010151815260200190815260200160002081905550808061330590615c34565b91505061325f565b50808361029f600088868151811061332757613327615cdf565b60200260200101518152602001908152602001600020546133489190615b12565b6133529190615b12565b61029f600087858151811061336957613369615cdf565b602002602001015181526020019081526020016000208190555050808061338f90615c34565b915050613252565b50506134a5565b60405162461bcd60e51b81526020600482015260ba60248201527f4275726e73206d757374206265206576656e2c20276f6e6520746f206f6e652760448201527f20276d616e79206275726e7320746f206f6e65272c206576656e206f7220657660648201527f656e6c79206469767369626c65206279612061206d75746c69706c6965722c2060848201527f6c696b652033206e6f6d696e6174696f6e7320746f206f6e65206275726e2c2060a48201527f36206e6f6d7320746f2074776f206275726e732c20627574206e6f7420756e6560c48201527f76656e206c696b652035206e6f6d7320746f2033206275726e7300000000000060e482015261010401611343565b60005b83518110156134e7576134d58482815181106134c6576134c6615cdf565b60200260200101516001614767565b806134df81615c34565b9150506134a8565b50816040516134f691906158b7565b60405180910390208360405161350c91906158b7565b6040518091039020336001600160a01b03167faca6d25e9e8a9aec606bbc6415bba72cd40120eb20b3b8bb0d48e482494c05bb86868660405161355193929190615a53565b60405180910390a45050600160105550565b600260105414156135b65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055610296546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528491849160009060340160405160208183030381529060405280519060200120905061364f8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506141dd9050565b61369b5760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401611343565b60195460ff16156136ee5760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206973207061757365642100000000000000000000000000006044820152606401611343565b61028f544210156137675760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60448201527f697374204d696e74207374617274732e000000000000000000000000000000006064820152608401611343565b60185485600161377660005490565b6137809190615b7b565b61378a9190615b12565b11156137fe5760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b33600090815261029960205260409020546138565733600090815261029860205260409020541561383f573360009081526102986020526040902054613844565b610297545b33600090815261029860205260409020555b33600090815261029860209081526040808320546102999092529091205461387f908790615b12565b11156138f35760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f7420657863656564206d61782067696674206d696e747320666f60448201527f72207468697320616464726573730000000000000000000000000000000000006064820152608401611343565b336000908152610299602052604090205461390f908690615b12565b3360009081526102996020526040902055611786856141f3565b6139348484846118dd565b6001600160a01b0383163b1561398657613950848484846148f5565b613986576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060826139db5760405162461bcd60e51b815260206004820152601c60248201527f7374617274206f6620736c696365206d757374206e6f742062652030000000006044820152606401611343565b828211613a505760405162461bcd60e51b815260206004820152603260248201527f656e6420206f6620736c696365206d757374206e6f742062652068696768657260448201527f207468616e20656e64206f6620736c69636500000000000000000000000000006064820152608401611343565b60006001613a5d60005490565b613a679190615b7b565b905080831115613adf5760405162461bcd60e51b815260206004820152602d60248201527f656e6420206f6620736c696365206d757374206265206c6f776572207468616e60448201527f206c61737420746f6b656e4964000000000000000000000000000000000000006064820152608401611343565b6000613aeb8585615b7b565b613af6906001615b12565b67ffffffffffffffff811115613b0e57613b0e615d0e565b604051908082528060200260200182016040528015613b37578160200160208202803683370190505b50905060005b613b478686615b7b565b613b52906001615b12565b8110156121445761028e6000613b688884615b12565b815260200190815260200160002054828281518110613b8957613b89615cdf565b602090810291909101015280613b9e81615c34565b915050613b3d565b6001600160a01b0382166000908152600e602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a082319060240160206040518083038186803b158015613c1957600080fd5b505afa158015613c2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c5191906157d2565b613c5b9190615b12565b6001600160a01b038086166000908152600f6020908152604080832093881683529290522054909150613c919084908390614729565b949350505050565b6060613ca48261418f565b613d165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401611343565b60195460ff6101009091041615156001148015613d345750601a5482115b15613dcb5760118054613d4690615bbe565b80601f0160208091040260200160405190810160405280929190818152602001828054613d7290615bbe565b8015613dbf5780601f10613d9457610100808354040283529160200191613dbf565b820191906000526020600020905b815481529060010190602001808311613da257829003601f168201915b50505050509050919050565b600060128054613dda90615bbe565b80601f0160208091040260200160405190810160405280929190818152602001828054613e0690615bbe565b8015613e535780601f10613e2857610100808354040283529160200191613e53565b820191906000526020600020905b815481529060010190602001808311613e3657829003601f168201915b505050505090506000815111613e785760405180602001604052806000815250612b2f565b600083815261028e60205260409020548190613e9390614a6d565b6013604051602001613ea793929190615909565b6040516020818303038152906040529392505050565b613ec561438a565b60008111613f155760405162461bcd60e51b815260206004820152601760248201527f4d7573742072657175697265206174206c6561737420310000000000000000006044820152606401611343565b61029d55565b613f2361438a565b601655565b60026010541415613f7b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611343565b6002601055613f8861438a565b61028f544210156140015760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206d696e74466f7241646472657373206f6e636560448201527f20746865206672656e4c697374204d696e74207374617274732e0000000000006064820152608401611343565b60185482600161401060005490565b61401a9190615b7b565b6140249190615b12565b11156140985760405162461bcd60e51b815260206004820152603860248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60448201527f6c206d696e7420616d6d6f756e742072657175657374656400000000000000006064820152608401611343565b6140a1826141f3565b6140ab8183614b9f565b50506001601055565b6140bc61438a565b61029255565b6140ca61438a565b6001600160a01b0381166141465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611343565b61414f816146bf565b50565b61415a61438a565b61029155565b601b81612711811061417157600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6000816001111580156141a3575060005482105b801561112e5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000826141ea8584614bb9565b14949350505050565b60015b614201826001615b12565b81146117b9576017805490600061421783615c34565b9091555061423b9050600161422c4342615b3e565b6142369190615b7b565b614c06565b601754600090815261028e60205260409020558061425881615c34565b9150506141f6565b6000548161429a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461434957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101614311565b5081614381576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6008546001600160a01b031633146122de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611343565b6001600160a01b0381166000908152600b602052604090205461446f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401611343565b600061447a82612aee565b9050806144ef5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401611343565b6001600160a01b0382166000908152600c602052604081208054839290614517908490615b12565b9250508190555080600a60008282546145309190615b12565b9091555061454090508282614e29565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000818060011161460d5760005481101561460d576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661460b575b80612b2f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546145cf565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611d4b908490614f42565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546001600160a01b0384166000908152600b6020526040812054909183916147539086615b3e565b61475d9190615b2a565b613c919190615b7b565b600061477283614586565b90508060008061479086600090815260066020526040902080549091565b9150915084156147e9576147a581843361194c565b6147e9576147b38333610f40565b6147e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156147f457600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260409020557c020000000000000000000000000000000000000000000000000000000084166148ad57600186016000818152600460205260409020546148ab5760005481146148ab5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290614943903390899088908890600401615a04565b602060405180830381600087803b15801561495d57600080fd5b505af19250505080156149ab575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526149a89181019061573b565b60015b614a1f573d8080156149d9576040519150601f19603f3d011682016040523d82523d6000602084013e6149de565b606091505b508051614a17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606081614aad57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115614ad75780614ac181615c34565b9150614ad09050600a83615b2a565b9150614ab1565b60008167ffffffffffffffff811115614af257614af2615d0e565b6040519080825280601f01601f191660200182016040528015614b1c576020820181803683370190505b5090505b8415613c9157614b31600183615b7b565b9150614b3e600a86615c6d565b614b49906030615b12565b60f81b818381518110614b5e57614b5e615cdf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350614b98600a86615b2a565b9450614b20565b6117b9828260405180602001604052806000815250615027565b600081815b8451811015614bfe57614bea82868381518110614bdd57614bdd615cdf565b60200260200101516150ad565b915080614bf681615c34565b915050614bbe565b509392505050565b61028d8054600091829161ffff169082614c1f83615c12565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612711614c4a9190615b7b565b905060008111614c9c5760405162461bcd60e51b815260206004820152600b60248201527f6e6f20696473206c6566740000000000000000000000000000000000000000006044820152606401611343565b6000614ca88285615c6d565b9050601b816127118110614cbe57614cbe615cdf565b601081049190910154600f9091166002026101000a900461ffff16614ce35780614d16565b601b816127118110614cf757614cf7615cdf565b601091828204019190066002029054906101000a900461ffff1661ffff165b9250601b614d25600184615b7b565b6127118110614d3657614d36615cdf565b601081049190910154600f9091166002026101000a900461ffff1615614d9757601b614d63600184615b7b565b6127118110614d7457614d74615cdf565b601091828204019190066002029054906101000a900461ffff1661ffff16614da2565b614da2600183615b7b565b601b826127118110614db657614db6615cdf565b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506000601b600184614dec9190615b7b565b6127118110614dfd57614dfd615cdf565b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505050919050565b80471015614e795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401611343565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614ec6576040519150601f19603f3d011682016040523d82523d6000602084013e614ecb565b606091505b5050905080611d4b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401611343565b6000614f97826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150d99092919063ffffffff16565b805190915015611d4b5780806020019051810190614fb591906156e8565b611d4b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611343565b6150318383614260565b6001600160a01b0383163b15611d4b576000548281035b61505b60008683806001019450866148f5565b615091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106150485781600054146150a657600080fd5b5050505050565b60008183106150c9576000828152602084905260409020612b2f565b5060009182526020526040902090565b6060613c918484600085856001600160a01b0385163b61513b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611343565b600080866001600160a01b0316858760405161515791906158ed565b60006040518083038185875af1925050503d8060008114615194576040519150601f19603f3d011682016040523d82523d6000602084013e615199565b606091505b50915091506151a98282866151b4565b979650505050505050565b606083156151c3575081612b2f565b8251156151d35782518084602001fd5b8160405162461bcd60e51b81526004016113439190615a8c565b8280546151f990615bbe565b90600052602060002090601f01602090048101928261521b5760008555615261565b82601f1061523457805160ff1916838001178555615261565b82800160010185558215615261579182015b82811115615261578251825591602001919060010190615246565b5061526d929150615271565b5090565b5b8082111561526d5760008155600101615272565b600067ffffffffffffffff8311156152a0576152a0615d0e565b6152d160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601615a9f565b90508281528383830111156152e557600080fd5b828260208301376000602084830101529392505050565b600082601f83011261530d57600080fd5b8135602061532261531d83615aee565b615a9f565b80838252828201915082860187848660051b890101111561534257600080fd5b60005b8581101561536157813584529284019290840190600101615345565b5090979650505050505050565b600082601f83011261537f57600080fd5b612b2f83833560208501615286565b6000602082840312156153a057600080fd5b8135612b2f81615d3d565b600080604083850312156153be57600080fd5b82356153c981615d3d565b915060208301356153d981615d3d565b809150509250929050565b6000806000606084860312156153f957600080fd5b833561540481615d3d565b9250602084013561541481615d3d565b929592945050506040919091013590565b6000806000806080858703121561543b57600080fd5b843561544681615d3d565b9350602085013561545681615d3d565b925060408501359150606085013567ffffffffffffffff81111561547957600080fd5b8501601f8101871361548a57600080fd5b61549987823560208401615286565b91505092959194509250565b600080604083850312156154b857600080fd5b82356154c381615d3d565b915060208301356153d981615d52565b600080604083850312156154e657600080fd5b82356154f181615d3d565b946020939093013593505050565b6000806040838503121561551257600080fd5b823567ffffffffffffffff8082111561552a57600080fd5b818501915085601f83011261553e57600080fd5b8135602061554e61531d83615aee565b8083825282820191508286018a848660051b890101111561556e57600080fd5b600096505b8487101561559a57803561558681615d3d565b835260019690960195918301918301615573565b50965050860135925050808211156155b157600080fd5b506155be858286016152fc565b9150509250929050565b6000806000604084860312156155dd57600080fd5b833567ffffffffffffffff808211156155f557600080fd5b818601915086601f83011261560957600080fd5b81358181111561561857600080fd5b8760208260051b850101111561562d57600080fd5b6020928301989097509590910135949350505050565b60008060006060848603121561565857600080fd5b833567ffffffffffffffff8082111561567057600080fd5b61567c878388016152fc565b9450602086013591508082111561569257600080fd5b61569e878388016152fc565b935060408601359150808211156156b457600080fd5b506156c18682870161536e565b9150509250925092565b6000602082840312156156dd57600080fd5b8135612b2f81615d52565b6000602082840312156156fa57600080fd5b8151612b2f81615d52565b60006020828403121561571757600080fd5b5035919050565b60006020828403121561573057600080fd5b8135612b2f81615d60565b60006020828403121561574d57600080fd5b8151612b2f81615d60565b60006020828403121561576a57600080fd5b813567ffffffffffffffff81111561578157600080fd5b613c918482850161536e565b600080604083850312156157a057600080fd5b823567ffffffffffffffff8111156157b757600080fd5b6157c38582860161536e565b95602094909401359450505050565b6000602082840312156157e457600080fd5b5051919050565b600080604083850312156157fe57600080fd5b8235915060208301356153d981615d3d565b6000806040838503121561582357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561586257815187529582019590820190600101615846565b509495945050505050565b60008151808452615885816020860160208601615b92565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b815160009082906020808601845b838110156158e1578151855293820193908201906001016158c5565b50929695505050505050565b600082516158ff818460208701615b92565b9190910192915050565b60008451602061591c8285838a01615b92565b85519184019161592f8184848a01615b92565b8554920191600090600181811c908083168061594c57607f831692505b858310811415615983577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b80801561599757600181146159c6576159f3565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516885283880195506159f3565b60008b81526020902060005b858110156159eb5781548a8201529084019088016159d2565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615a36608083018461586d565b9695505050505050565b602081526000612b2f6020830184615832565b606081526000615a666060830186615832565b8281036020840152615a788186615832565b90508281036040840152615a36818561586d565b602081526000612b2f602083018461586d565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715615ae657615ae6615d0e565b604052919050565b600067ffffffffffffffff821115615b0857615b08615d0e565b5060051b60200190565b60008219821115615b2557615b25615c81565b500190565b600082615b3957615b39615cb0565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b7657615b76615c81565b500290565b600082821015615b8d57615b8d615c81565b500390565b60005b83811015615bad578181015183820152602001615b95565b838111156139865750506000910152565b600181811c90821680615bd257607f821691505b60208210811415615c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600061ffff80831681811415615c2a57615c2a615c81565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c6657615c66615c81565b5060010190565b600082615c7c57615c7c615cb0565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461414f57600080fd5b801515811461414f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461414f57600080fdfea2646970667358221220cd2b1104e45c9cdc58772397e43261cdd85e92e67462e62e3ec7f54c1e17682364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000004000000000000000000000000cddea80516e80ee58e9a416c39c498c2b96ec40b00000000000000000000000028881c6667bc0ccf27ab696ae16e53e01e397d260000000000000000000000007f0330ddd9e669bad5284f09f1a2e248141f00390000000000000000000000006eb6e7341fb68d52ee47d47cefff70f75801fe2100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _payees (address[]): 0xCDdEa80516E80eE58e9A416c39C498c2b96eC40B,0x28881c6667BC0CcF27Ab696AE16E53E01e397d26,0x7F0330DDd9e669BAD5284f09F1A2e248141F0039,0x6EB6e7341Fb68d52ee47D47ceFfF70F75801fe21
Arg [1] : _shares (uint256[]): 2,1,1,1
Arg [2] : totalMintable (uint256): 10000
Arg [3] : teamMemberAllocation (uint256): 100

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 000000000000000000000000cddea80516e80ee58e9a416c39c498c2b96ec40b
Arg [6] : 00000000000000000000000028881c6667bc0ccf27ab696ae16e53e01e397d26
Arg [7] : 0000000000000000000000007f0330ddd9e669bad5284f09f1a2e248141f0039
Arg [8] : 0000000000000000000000006eb6e7341fb68d52ee47d47cefff70f75801fe21
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

95054:16789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36580:40;33081:10;36580:40;;;-1:-1:-1;;;;;14657:55:1;;;14639:74;;36610:9:0;14744:2:1;14729:18;;14722:34;14612:18;36580:40:0;;;;;;;95054:16789;;;;;95592:33;;;;;;;;;;;;;;;;;;;16821:25:1;;;16809:2;16794:18;95592:33:0;;;;;;;;62569:639;;;;;;;;;;-1:-1:-1;62569:639:0;;;;;:::i;:::-;;:::i;:::-;;;16648:14:1;;16641:22;16623:41;;16611:2;16596:18;62569:639:0;16483:187:1;63471:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;96357:31::-;;;;;;;;;;-1:-1:-1;96357:31:0;;;;;;;;69954:218;;;;;;;;;;-1:-1:-1;69954:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;14390:55:1;;;14372:74;;14360:2;14345:18;69954:218:0;14226:226:1;69395:400:0;;;;;;;;;;-1:-1:-1;69395:400:0;;;;;:::i;:::-;;:::i;:::-;;102814:1050;;;;;;:::i;:::-;;:::i;96454:34::-;;;;;;;;;;;;;;;;96872:43;;;;;;;;;;-1:-1:-1;96872:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;98161:106;;;;;;;;;;-1:-1:-1;98161:106:0;;;;;:::i;:::-;;:::i;99861:83::-;;;;;;;;;;-1:-1:-1;99861:83:0;;;;;:::i;:::-;;:::i;59222:323::-;;;;;;;;;;-1:-1:-1;97596:1:0;59496:12;59283:7;59480:13;:28;:46;;59222:323;;105328:214;;;;;;;;;;-1:-1:-1;105328:214:0;;;;;:::i;:::-;;:::i;95634:22::-;;;;;;;;;;;;;;;;96306:44;;;;;;;;;;-1:-1:-1;96306:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;73661:2817;;;;;;;;;;-1:-1:-1;73661:2817:0;;;;;:::i;:::-;;:::i;101060:639::-;;;;;;:::i;:::-;;:::i;36711:91::-;;;;;;;;;;-1:-1:-1;36782:12:0;;36711:91;;37840:135;;;;;;;;;;-1:-1:-1;37840:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;37937:21:0;;;37910:7;37937:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;37840:135;76574:185;;;;;;;;;;-1:-1:-1;76574:185:0;;;;;:::i;:::-;;:::i;95696:28::-;;;;;;;;;;-1:-1:-1;95696:28:0;;;;;;;;;;;106248:139;;;;;;;;;;-1:-1:-1;106248:139:0;;;;;:::i;:::-;;:::i;96768:37::-;;;;;;;;;;;;;;;;95949:45;;;;;;;;;;;;;;;;39822:514;;;;;;;;;;-1:-1:-1;39822:514:0;;;;;:::i;:::-;;:::i;107291:571::-;;;;;;;;;;-1:-1:-1;107291:571:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;96725:36::-;;;;;;;;;;-1:-1:-1;96725:36:0;;;;;;;;96550:44;;;;;;;;;;-1:-1:-1;96550:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;98277:138;;;;;;;;;;-1:-1:-1;98277:138:0;;;;;:::i;:::-;;:::i;96651:44::-;;;;;;;;;;-1:-1:-1;96651:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;96812:45;;;;;;;;;;;;;;;;95337:33;;;;;;;;;;;;;:::i;95663:26::-;;;;;;;;;;-1:-1:-1;95663:26:0;;;;;;;;105943:103;;;;;;;;;;-1:-1:-1;105943:103:0;;;;;:::i;:::-;;:::i;95266:64::-;;;;;;;;;;;;;:::i;64864:152::-;;;;;;;;;;-1:-1:-1;64864:152:0;;;;;:::i;:::-;;:::i;102686:120::-;;;;;;;;;;-1:-1:-1;102686:120:0;;;;;:::i;:::-;;:::i;102554:::-;;;;;;;;;;-1:-1:-1;102554:120:0;;;;;:::i;:::-;;:::i;60406:233::-;;;;;;;;;;-1:-1:-1;60406:233:0;;;;;:::i;:::-;;:::i;96266:33::-;;;;;;;;;;;;;;;;43317:103;;;;;;;;;;;;;:::i;95731:24::-;;;;;;;;;;;;;;;;104979:341;;;;;;;;;;-1:-1:-1;104979:341:0;;;;;:::i;:::-;;:::i;96173:34::-;;;;;;;;;;;;;;;;98995:858;;;;;;;;;;-1:-1:-1;98995:858:0;;;;;:::i;:::-;;:::i;98047:106::-;;;;;;;;;;-1:-1:-1;98047:106:0;;;;;:::i;:::-;;:::i;96615:29::-;;;;;;;;;;;;;;;;95396:41;;;;;;;;;;;;;;;;96061:43;;;;;;;;;;;;;;;;102171:91;;;;;;;;;;-1:-1:-1;102171:91:0;;;;;:::i;:::-;;:::i;38066:100::-;;;;;;;;;;-1:-1:-1;38066:100:0;;;;;:::i;:::-;;:::i;42669:87::-;;;;;;;;;;-1:-1:-1;42742:6:0;;-1:-1:-1;;;;;42742:6:0;42669:87;;95503:37;;;;;;;;;;;;;;;;63647:104;;;;;;;;;;;;;:::i;37562:109::-;;;;;;;;;;-1:-1:-1;37562:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;37645:18:0;37618:7;37645:18;;;:9;:18;;;;;;;37562:109;100427:625;;;;;;:::i;:::-;;:::i;70512:308::-;;;;;;;;;;-1:-1:-1;70512:308:0;;;;;:::i;:::-;;:::i;38256:225::-;;;;;;;;;;-1:-1:-1;38256:225:0;;;;;:::i;:::-;;:::i;95160:99::-;;;;;;;;;;;;;:::i;100048:114::-;;;;;;;;;;-1:-1:-1;100048:114:0;;;;;:::i;:::-;;:::i;108045:3793::-;;;;;;;;;;-1:-1:-1;108045:3793:0;;;;;:::i;:::-;;:::i;103872:1099::-;;;;;;:::i;:::-;;:::i;77357:399::-;;;;;;;;;;-1:-1:-1;77357:399:0;;;;;:::i;:::-;;:::i;106723:560::-;;;;;;;;;;-1:-1:-1;106723:560:0;;;;;:::i;:::-;;:::i;95874:41::-;;;;;;;;;;-1:-1:-1;95874:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;38641:260;;;;;;;;;;-1:-1:-1;38641:260:0;;;;;:::i;:::-;;:::i;98429:540::-;;;;;;;;;;-1:-1:-1;98429:540:0;;;;;:::i;:::-;;:::i;95547:36::-;;;;;;;;;;;;;;;;106054:182;;;;;;;;;;-1:-1:-1;106054:182:0;;;;;:::i;:::-;;:::i;37358:105::-;;;;;;;;;;-1:-1:-1;37358:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;37439:16:0;37412:7;37439:16;;;:7;:16;;;;;;;37358:105;96414:33;;;;;;;;;;;;;;;;37148:119;;;;;;;;;;-1:-1:-1;37148:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;37233:26:0;37206:7;37233:26;;;:19;:26;;;;;;;37148:119;99952:88;;;;;;;;;;-1:-1:-1;99952:88:0;;;;;:::i;:::-;;:::i;96214:45::-;;;;;;;;;;;;;;;;36896:95;;;;;;;;;;-1:-1:-1;36969:14:0;;36896:95;;70977:164;;;;;;;;;;-1:-1:-1;70977:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;71098:25:0;;;71074:4;71098:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;70977:164;101707:456;;;;;;;;;;-1:-1:-1;101707:456:0;;;;;:::i;:::-;;:::i;102320:104::-;;;;;;;;;;-1:-1:-1;102320:104:0;;;;;:::i;:::-;;:::i;43575:201::-;;;;;;;;;;-1:-1:-1;43575:201:0;;;;;:::i;:::-;;:::i;96495:48::-;;;;;;;;;;-1:-1:-1;96495:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;102432:110;;;;;;;;;;-1:-1:-1;102432:110:0;;;;;:::i;:::-;;:::i;95762:24::-;;;;;;;;;;-1:-1:-1;95762:24:0;;;;;:::i;:::-;;:::i;:::-;;;33957:6:1;33945:19;;;33927:38;;33915:2;33900:18;95762:24:0;33783:188:1;62569:639:0;62654:4;62978:25;;;;;;:102;;-1:-1:-1;63055:25:0;;;;;62978:102;:179;;;-1:-1:-1;63132:25:0;;;;;62978:179;62958:199;62569:639;-1:-1:-1;;62569:639:0:o;63471:100::-;63525:13;63558:5;63551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63471:100;:::o;69954:218::-;70030:7;70055:16;70063:7;70055;:16::i;:::-;70050:64;;70080:34;;;;;;;;;;;;;;70050:64;-1:-1:-1;70134:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;70134:30:0;;69954:218::o;69395:400::-;69476:13;69492:16;69500:7;69492;:16::i;:::-;69476:32;-1:-1:-1;33081:10:0;-1:-1:-1;;;;;69525:28:0;;;69521:175;;69573:44;69590:5;33081:10;70977:164;:::i;69573:44::-;69568:128;;69645:35;;;;;;;;;;;;;;69568:128;69708:24;;;;:15;:24;;;;;;:35;;;;-1:-1:-1;;;;;69708:35:0;;;;;;;;;69759:28;;69708:24;;69759:28;;;;;;;69465:330;69395:400;;:::o;102814:1050::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;;;;;;;;;1852:1;2583:7;:18;102964::::1;::::0;105660:28:::1;::::0;11435:66:1;105677:10:0::1;11422:2:1::0;11418:15;11414:88;105660:28:0::1;::::0;::::1;11402:101:1::0;102951:11:0;;;;105635:12:::1;::::0;11519::1;;105660:28:0::1;;;;;;;;;;;;105650:39;;;;;;105635:54;;105722:109;105759:11;;105722:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;105789:4:0;;-1:-1:-1;105812:4:0;;-1:-1:-1;105722:18:0::1;::::0;-1:-1:-1;105722:109:0:i:1;:::-;105700:191;;;::::0;-1:-1:-1;;;105700:191:0;;19016:2:1;105700:191:0::1;::::0;::::1;18998:21:1::0;;;19035:18;;;19028:30;19094:34;19074:18;;;19067:62;19146:18;;105700:191:0::1;18814:356:1::0;105700:191:0::1;103004:6:::2;::::0;::::2;;103003:7;102995:38;;;::::0;-1:-1:-1;;;102995:38:0;;24639:2:1;102995:38:0::2;::::0;::::2;24621:21:1::0;24678:2;24658:18;;;24651:30;24717:20;24697:18;;;24690:48;24755:18;;102995:38:0::2;24437:342:1::0;102995:38:0::2;103071:17;;103052:15;:36;;103044:97;;;::::0;-1:-1:-1;;;103044:97:0;;18599:2:1;103044:97:0::2;::::0;::::2;18581:21:1::0;18638:2;18618:18;;;18611:30;18677:34;18657:18;;;18650:62;18748:18;18728;;;18721:46;18784:19;;103044:97:0::2;18397:412:1::0;103044:97:0::2;103178:15;;103160;:33;103152:94;;;::::0;-1:-1:-1;;;103152:94:0;;17283:2:1;103152:94:0::2;::::0;::::2;17265:21:1::0;17322:2;17302:18;;;17295:30;17361:34;17341:18;;;17334:62;17432:18;17412;;;17405:46;17468:19;;103152:94:0::2;17081:412:1::0;103152:94:0::2;103309:18;::::0;103283:10:::2;103268:26;::::0;;;:14:::2;:26;::::0;;;;;:36:::2;::::0;103296:8;;103268:36:::2;:::i;:::-;103267:60;;103259:107;;;::::0;-1:-1:-1;;;103259:107:0;;24986:2:1;103259:107:0::2;::::0;::::2;24968:21:1::0;25025:2;25005:18;;;24998:30;25064:34;25044:18;;;25037:62;25135:3;25115:18;;;25108:31;25156:19;;103259:107:0::2;24784:397:1::0;103259:107:0::2;103418:10;;103406:8;103401:1;103386:14;58964:7:::0;58991:13;;58909:103;103386:14:::2;:16;;;;:::i;:::-;103385:29;;;;:::i;:::-;:43;;103377:112;;;::::0;-1:-1:-1;;;103377:112:0;;32013:2:1;103377:112:0::2;::::0;::::2;31995:21:1::0;32052:2;32032:18;;;32025:30;32091:34;32071:18;;;32064:62;32162:26;32142:18;;;32135:54;32206:19;;103377:112:0::2;31811:420:1::0;103377:112:0::2;103541:8;103522:16;;:27;;;;:::i;:::-;103508:9;:42;;103500:76;;;::::0;-1:-1:-1;;;103500:76:0;;30466:2:1;103500:76:0::2;::::0;::::2;30448:21:1::0;30505:2;30485:18;;;30478:30;30544:23;30524:18;;;30517:51;30585:18;;103500:76:0::2;30264:345:1::0;103500:76:0::2;103607:18;;103595:8;:30;;103587:73;;;::::0;-1:-1:-1;;;103587:73:0;;27023:2:1;103587:73:0::2;::::0;::::2;27005:21:1::0;27062:2;27042:18;;;27035:30;27101:32;27081:18;;;27074:60;27151:18;;103587:73:0::2;26821:354:1::0;103587:73:0::2;103755:10;103740:26;::::0;;;:14:::2;:26;::::0;;;;;:35:::2;::::0;103767:8;;103740:35:::2;:::i;:::-;103726:10;103711:26;::::0;;;:14:::2;:26;::::0;;;;:64;103786:30:::2;103807:8:::0;103786:20:::2;:30::i;:::-;103827:27;103833:10;103845:8;103827:5;:27::i;:::-;-1:-1:-1::0;;1808:1:0;2762:7;:22;-1:-1:-1;;;;;102814:1050:0:o;98161:106::-;42555:13;:11;:13::i;:::-;98237:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;98161:106:::0;:::o;99861:83::-;42555:13;:11;:13::i;:::-;99921:6:::1;:15:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;99861:83::o;105328:214::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;105428:10:::1;-1:-1:-1::0;;;;;105428:21:0;::::1;;105420:79;;;::::0;-1:-1:-1;;;105420:79:0;;24224:2:1;105420:79:0::1;::::0;::::1;24206:21:1::0;24263:2;24243:18;;;24236:30;24302:34;24282:18;;;24275:62;24373:16;24353:18;;;24346:44;24407:19;;105420:79:0::1;24022:410:1::0;105420:79:0::1;105512:22;105526:7;105512:13;:22::i;:::-;-1:-1:-1::0;1808:1:0;2762:7;:22;105328:214::o;73661:2817::-;73795:27;73825;73844:7;73825:18;:27::i;:::-;73795:57;;73910:4;-1:-1:-1;;;;;73869:45:0;73885:19;-1:-1:-1;;;;;73869:45:0;;73865:86;;73923:28;;;;;;;;;;;;;;73865:86;73965:27;72775:24;;;:15;:24;;;;;72997:26;;74156:68;72997:26;74198:4;33081:10;74204:19;-1:-1:-1;;;;;72249:32:0;;;72093:28;;72378:20;;72400:30;;72375:56;;71790:659;74156:68;74151:180;;74244:43;74261:4;33081:10;70977:164;:::i;74244:43::-;74239:92;;74296:35;;;;;;;;;;;;;;74239:92;-1:-1:-1;;;;;74348:16:0;;74344:52;;74373:23;;;;;;;;;;;;;;74344:52;74545:15;74542:160;;;74685:1;74664:19;74657:30;74542:160;-1:-1:-1;;;;;75082:24:0;;;;;;;:18;:24;;;;;;75080:26;;;;;;75151:22;;;;;;;;;75149:24;;-1:-1:-1;75149:24:0;;;68253:11;68228:23;68224:41;68211:63;55621:8;68211:63;75444:26;;;;:17;:26;;;;;:175;55621:8;75739:47;;75735:627;;75844:1;75834:11;;75812:19;75967:30;;;:17;:30;;;;;;75963:384;;76105:13;;76090:11;:28;76086:242;;76252:30;;;;:17;:30;;;;;:52;;;76086:242;75793:569;75735:627;76409:7;76405:2;-1:-1:-1;;;;;76390:27:0;76399:4;-1:-1:-1;;;;;76390:27:0;;;;;;;;;;;73784:2694;;;73661:2817;;;:::o;101060:639::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;101146:6:::1;::::0;::::1;;101145:7;101137:38;;;::::0;-1:-1:-1;;;101137:38:0;;24639:2:1;101137:38:0::1;::::0;::::1;24621:21:1::0;24678:2;24658:18;;;24651:30;24717:20;24697:18;;;24690:48;24755:18;;101137:38:0::1;24437:342:1::0;101137:38:0::1;101213:17;;101194:15;:36;;101186:94;;;::::0;-1:-1:-1;;;101186:94:0;;26248:2:1;101186:94:0::1;::::0;::::1;26230:21:1::0;26287:2;26267:18;;;26260:30;26326:34;26306:18;;;26299:62;26397:15;26377:18;;;26370:43;26430:19;;101186:94:0::1;26046:409:1::0;101186:94:0::1;101400:10;101388:23;::::0;;;:11:::1;:23;::::0;;;;;101376:8;101371:1:::1;101356:14;58964:7:::0;58991:13;;58909:103;101356:14:::1;:16;;;;:::i;:::-;101355:29;;;;:::i;:::-;:56;;101347:111;;;::::0;-1:-1:-1;;;101347:111:0;;28929:2:1;101347:111:0::1;::::0;::::1;28911:21:1::0;28968:2;28948:18;;;28941:30;29007:34;28987:18;;;28980:62;29078:12;29058:18;;;29051:40;29108:19;;101347:111:0::1;28727:406:1::0;101347:111:0::1;101499:30;101520:8;101499:20;:30::i;:::-;101578:10;101566:23;::::0;;;:11:::1;:23;::::0;;;;;:34:::1;::::0;101592:8;;101566:34:::1;:::i;:::-;101552:10;101540:23;::::0;;;:11:::1;:23;::::0;;;;:60;101628:14:::1;::::0;:25:::1;::::0;101645:8;;101628:25:::1;:::i;:::-;101611:14;:42:::0;101664:27:::1;101670:10;101682:8:::0;101664:5:::1;:27::i;76574:185::-:0;76712:39;76729:4;76735:2;76739:7;76712:39;;;;;;;;;;;;:16;:39::i;:::-;76574:185;;;:::o;106248:139::-;42555:13;:11;:13::i;:::-;106336:29:::1;:43:::0;106248:139::o;39822:514::-;-1:-1:-1;;;;;39904:16:0;;39923:1;39904:16;;;:7;:16;;;;;;39896:71;;;;-1:-1:-1;;;39896:71:0;;21380:2:1;39896:71:0;;;21362:21:1;21419:2;21399:18;;;21392:30;21458:34;21438:18;;;21431:62;21529:8;21509:18;;;21502:36;21555:19;;39896:71:0;21178:402:1;39896:71:0;39980:15;39998:26;40009:5;40016:7;39998:10;:26::i;:::-;39980:44;-1:-1:-1;40045:12:0;40037:68;;;;-1:-1:-1;;;40037:68:0;;23400:2:1;40037:68:0;;;23382:21:1;23439:2;23419:18;;;23412:30;23478:34;23458:18;;;23451:62;23549:13;23529:18;;;23522:41;23580:19;;40037:68:0;23198:407:1;40037:68:0;-1:-1:-1;;;;;40118:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;40152:7;;40118:21;:41;;40152:7;;40118:41;:::i;:::-;;;;-1:-1:-1;;;;;;;40170:26:0;;;;;;:19;:26;;;;;:37;;40200:7;;40170:26;:37;;40200:7;;40170:37;:::i;:::-;;;;-1:-1:-1;40220:47:0;;-1:-1:-1;40243:5:0;40250:7;40259;40220:22;:47::i;:::-;40283:45;;;-1:-1:-1;;;;;14657:55:1;;;14639:74;;14744:2;14729:18;;14722:34;;;40283:45:0;;;;;14612:18:1;40283:45:0;;;;;;;39885:451;39822:514;;:::o;107291:571::-;107362:13;107395:8;107387:48;;;;-1:-1:-1;;;107387:48:0;;33217:2:1;107387:48:0;;;33199:21:1;33256:2;33236:18;;;33229:30;33295;33275:18;;;33268:58;33343:18;;107387:48:0;33015:352:1;107387:48:0;107458:5;107454:3;:9;107446:73;;;;-1:-1:-1;;;107446:73:0;;19784:2:1;107446:73:0;;;19766:21:1;19823:2;19803:18;;;19796:30;19862:34;19842:18;;;19835:62;19933:22;19913:18;;;19906:50;19973:19;;107446:73:0;19582:416:1;107446:73:0;107530:14;107563:1;107548:14;58964:7;58991:13;;58909:103;107548:14;:16;;;;:::i;:::-;107530:34;;107588:6;107583:3;:11;;107575:68;;;;-1:-1:-1;;;107575:68:0;;20966:2:1;107575:68:0;;;20948:21:1;21005:2;20985:18;;;20978:30;21044:34;21024:18;;;21017:62;21115:15;21095:18;;;21088:43;21148:19;;107575:68:0;20764:409:1;107575:68:0;107656:20;107694:9;107698:5;107694:3;:9;:::i;:::-;107693:13;;107705:1;107693:13;:::i;:::-;107679:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;107679:28:0;;107656:51;;107729:6;107724:100;107747:9;107751:5;107747:3;:9;:::i;:::-;107746:13;;107758:1;107746:13;:::i;:::-;107741:1;:19;107724:100;;;107791:10;:21;107803:7;107805:5;107803:1;:7;:::i;:::-;107791:21;;;;;;;;;;;;107782:3;107786:1;107782:6;;;;;;;;:::i;:::-;;;;;;;;;;:30;107762:3;;;;:::i;:::-;;;;107724:100;;;-1:-1:-1;107851:3:0;107291:571;-1:-1:-1;;;;107291:571:0:o;98277:138::-;42555:13;:11;:13::i;:::-;98369:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;95337:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;105943:103::-;42555:13;:11;:13::i;:::-;106013:16:::1;:25:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;105943:103::o;95266:64::-;;;;;;;:::i;64864:152::-;64936:7;64979:27;64998:7;64979:18;:27::i;102686:120::-;42555:13;:11;:13::i;:::-;102767:18:::1;:31:::0;102686:120::o;102554:::-;42555:13;:11;:13::i;:::-;102635:18:::1;:31:::0;102554:120::o;60406:233::-;60478:7;-1:-1:-1;;;;;60502:19:0;;60498:60;;60530:28;;;;;;;;;;;;;;60498:60;-1:-1:-1;;;;;;60576:25:0;;;;;:18;:25;;;;;;54565:13;60576:55;;60406:233::o;43317:103::-;42555:13;:11;:13::i;:::-;43382:30:::1;43409:1;43382:18;:30::i;:::-;43317:103::o:0;104979:341::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;42555:13:::1;:11;:13::i;:::-;105125:6:::2;:13;105104:10;:17;:34;105096:89;;;::::0;-1:-1:-1;;;105096:89:0;;23812:2:1;105096:89:0::2;::::0;::::2;23794:21:1::0;23851:2;23831:18;;;23824:30;23890:34;23870:18;;;23863:62;23961:13;23941:18;;;23934:41;23992:19;;105096:89:0::2;23610:407:1::0;105096:89:0::2;105201:9;105196:117;105218:10;:17;105216:1;:19;105196:117;;;105292:6;105299:1;105292:9;;;;;;;;:::i;:::-;;;;;;;105256:18;:33;105275:10;105286:1;105275:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;105256:33:0::2;-1:-1:-1::0;;;;;105256:33:0::2;;;;;;;;;;;;:45;;;;105237:3;;;;;:::i;:::-;;;;105196:117;;;-1:-1:-1::0;;1808:1:0;2762:7;:22;-1:-1:-1;104979:341:0:o;98995:858::-;42555:13;:11;:13::i;:::-;99133:22:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;99091:28;;;;::::1;::::0;99123:33;99091:65:::1;99088:758;;;99198:13;;99180:15;:31;99172:103;;;::::0;-1:-1:-1;;;99172:103:0;;29340:2:1;99172:103:0::1;::::0;::::1;29322:21:1::0;29379:2;29359:18;;;29352:30;29418:34;29398:18;;;29391:62;29489:29;29469:18;;;29462:57;29536:19;;99172:103:0::1;29138:423:1::0;99172:103:0::1;99290:13;:26:::0;-1:-1:-1;98161:106:0:o;99088:758::-:1;99380:26;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;99338:28;;;;::::1;::::0;99370:37;99338:69:::1;99334:512;;;99449:17;;99431:15;:35;99423:121;;;::::0;-1:-1:-1;;;99423:121:0;;18117:2:1;99423:121:0::1;::::0;::::1;18099:21:1::0;18156:2;18136:18;;;18129:30;18195:34;18175:18;;;18168:62;18266:34;18246:18;;;18239:62;18338:11;18317:19;;;18310:40;18367:19;;99423:121:0::1;17915:477:1::0;99423:121:0::1;99559:17;:30:::0;-1:-1:-1;98161:106:0:o;99334:512::-:1;99652:24;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;99610:28;;;;::::1;::::0;99642:35;99610:67:::1;99606:240;;;99719:15;;99701;:33;99693:98;;;::::0;-1:-1:-1;;;99693:98:0;;21787:2:1;99693:98:0::1;::::0;::::1;21769:21:1::0;21826:2;21806:18;;;21799:30;21865:34;21845:18;;;21838:62;21936:22;21916:18;;;21909:50;21976:19;;99693:98:0::1;21585:416:1::0;99693:98:0::1;99806:15;:28:::0;-1:-1:-1;98995:858:0:o;98047:106::-;42555:13;:11;:13::i;:::-;98123:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;102171:91::-:0;42555:13;:11;:13::i;:::-;102236:9:::1;:18:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;102171:91::o;38066:100::-;38117:7;38144;38152:5;38144:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;38144:14:0;;38066:100;-1:-1:-1;;38066:100:0:o;63647:104::-;63703:13;63736:7;63729:14;;;;;:::i;100427:625::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;100509:6:::1;::::0;::::1;;100508:7;100500:38;;;::::0;-1:-1:-1;;;100500:38:0;;24639:2:1;100500:38:0::1;::::0;::::1;24621:21:1::0;24678:2;24658:18;;;24651:30;24717:20;24697:18;;;24690:48;24755:18;;100500:38:0::1;24437:342:1::0;100500:38:0::1;100576:13;;100557:15;:32;;100549:90;;;::::0;-1:-1:-1;;;100549:90:0;;26248:2:1;100549:90:0::1;::::0;::::1;26230:21:1::0;26287:2;26267:18;;;26260:30;26326:34;26306:18;;;26299:62;26397:15;26377:18;;;26370:43;26430:19;;100549:90:0::1;26046:409:1::0;100549:90:0::1;100691:10;;100679:8;100674:1;100659:14;58964:7:::0;58991:13;;58909:103;100659:14:::1;:16;;;;:::i;:::-;100658:29;;;;:::i;:::-;:43;;100650:112;;;::::0;-1:-1:-1;;;100650:112:0;;32013:2:1;100650:112:0::1;::::0;::::1;31995:21:1::0;32052:2;32032:18;;;32025:30;32091:34;32071:18;;;32064:62;32162:26;32142:18;;;32135:54;32206:19;;100650:112:0::1;31811:420:1::0;100650:112:0::1;100806:8;100795;;:19;;;;:::i;:::-;100781:9;:34;;100773:68;;;::::0;-1:-1:-1;;;100773:68:0;;30466:2:1;100773:68:0::1;::::0;::::1;30448:21:1::0;30505:2;30485:18;;;30478:30;30544:23;30524:18;;;30517:51;30585:18;;100773:68:0::1;30264:345:1::0;100773:68:0::1;100872:18;;100860:8;:30;;100852:73;;;::::0;-1:-1:-1;;;100852:73:0;;27023:2:1;100852:73:0::1;::::0;::::1;27005:21:1::0;27062:2;27042:18;;;27035:30;27101:32;27081:18;;;27074:60;27151:18;;100852:73:0::1;26821:354:1::0;100852:73:0::1;100976:30;100997:8;100976:20;:30::i;:::-;101017:27;101023:10;101035:8;101017:5;:27::i;70512:308::-:0;-1:-1:-1;;;;;70611:31:0;;33081:10;70611:31;70607:61;;;70651:17;;;;;;;;;;;;;;70607:61;33081:10;70681:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;70681:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;70757:55;;16623:41:1;;;70681:49:0;;33081:10;70757:55;;16596:18:1;70757:55:0;;;;;;;70512:308;;:::o;38256:225::-;38314:7;38334:21;38382:15;36969:14;;;36896:95;38382:15;38358:39;;:21;:39;:::i;:::-;38334:63;;38415:58;38431:7;38440:13;38455:17;38464:7;-1:-1:-1;;;;;37645:18:0;37618:7;37645:18;;;:9;:18;;;;;;;37562:109;38455:17;38415:15;:58::i;:::-;38408:65;38256:225;-1:-1:-1;;;38256:225:0:o;95160:99::-;;;;;;;:::i;100048:114::-;42555:13;:11;:13::i;:::-;100125:18:::1;:29:::0;100048:114::o;108045:3793::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;108192:16:::1;::::0;::::1;;108184:69;;;::::0;-1:-1:-1;;;108184:69:0;;20205:2:1;108184:69:0::1;::::0;::::1;20187:21:1::0;20244:2;20224:18;;;20217:30;20283:34;20263:18;;;20256:62;20354:10;20334:18;;;20327:38;20382:19;;108184:69:0::1;20003:404:1::0;108184:69:0::1;108294:1;108273:12;:19;:22;108272:46;;;;;108317:1;108300:8;:15;:18;108272:46;108264:89;;;::::0;-1:-1:-1;;;108264:89:0;;31243:2:1;108264:89:0::1;::::0;::::1;31225:21:1::0;31282:2;31262:18;;;31255:30;31321:32;31301:18;;;31294:60;31371:18;;108264:89:0::1;31041:354:1::0;108264:89:0::1;108391:21;;108372:8;:15;:40;;108364:111;;;::::0;-1:-1:-1;;;108364:111:0;;25388:2:1;108364:111:0::1;::::0;::::1;25370:21:1::0;25427:2;25407:18;;;25400:30;25466:34;25446:18;;;25439:62;25537:28;25517:18;;;25510:56;25583:19;;108364:111:0::1;25186:422:1::0;108364:111:0::1;108517:29;;108494:12;:19;:52;;108486:129;;;::::0;;-1:-1:-1;;;108486:129:0;;25815:2:1;108486:129:0::1;::::0;::::1;25797:21:1::0;25834:18;;;25827:30;;;;25893:34;25873:18;;;25866:62;25964:34;25944:18;;;25937:62;26016:19;;108486:129:0::1;25613:428:1::0;108486:129:0::1;108641:9;108636:164;108660:8;:15;108656:1;:19;108636:164;;;108731:10;-1:-1:-1::0;;;;;108707:34:0::1;:20;108715:8;108724:1;108715:11;;;;;;;;:::i;:::-;;;;;;;108707:7;:20::i;:::-;-1:-1:-1::0;;;;;108707:34:0::1;;108699:89;;;::::0;-1:-1:-1;;;108699:89:0;;33574:2:1;108699:89:0::1;::::0;::::1;33556:21:1::0;33613:2;33593:18;;;33586:30;33652:34;33632:18;;;33625:62;33723:12;33703:18;;;33696:40;33753:19;;108699:89:0::1;33372:406:1::0;108699:89:0::1;108678:3:::0;::::1;::::0;::::1;:::i;:::-;;;;108636:164;;;;108815:9;108810:178;108834:12;:19;108830:1;:23;108810:178;;;108913:10;-1:-1:-1::0;;;;;108885:38:0::1;:24;108893:12;108906:1;108893:15;;;;;;;;:::i;108885:24::-;-1:-1:-1::0;;;;;108885:38:0::1;;108877:99;;;::::0;-1:-1:-1;;;108877:99:0;;17700:2:1;108877:99:0::1;::::0;::::1;17682:21:1::0;17739:2;17719:18;;;17712:30;17778:34;17758:18;;;17751:62;17849:18;17829;;;17822:46;17885:19;;108877:99:0::1;17498:412:1::0;108877:99:0::1;108856:3:::0;::::1;::::0;::::1;:::i;:::-;;;;108810:178;;;;109014:8;:15;109032:1;109014:19;109013:50;;;;;109039:12;:19;109061:1;109039:23;109013:50;109010:2613;;;109262:10;:23;109273:8;109282:1;109273:11;;;;;;;;:::i;:::-;;;;;;;109262:23;;;;;;;;;;;;109232:10;:27;109243:12;109256:1;109243:15;;;;;;;;:::i;:::-;;;;;;;109232:27;;;;;;;;;;;;109260:1;109232:29;;;;:::i;:::-;:53;;;;:::i;:::-;109202:10;:27;109213:12;109226:1;109213:15;;;;;;;;:::i;:::-;;;;;;;109202:27;;;;;;;;;;;:83;;;;109326:1;109300:10;:23;109311:8;109320:1;109311:11;;;;;;;;:::i;:::-;;;;;;;109300:23;;;;;;;;;;;:27;;;;109010:2613;;;109366:1;109349:8;:15;:18;109348:49;;;;;109373:12;:19;109395:1;109373:23;109348:49;109345:2278;;;109551:33;::::0;109599:178:::1;109623:8;:15;109619:1;:19;109599:178;;;109692:10;:23;109703:8;109712:1;109703:11;;;;;;;;:::i;:::-;;;;;;;109692:23;;;;;;;;;;;;109666:25;:49;;;;:::i;:::-;;109760:1;109734:10;:23;109745:8;109754:1;109745:11;;;;;;;;:::i;:::-;;;;;;;109734:23;;;;;;;;;;;:27;;;;109641:3;;;;;:::i;:::-;;;;109599:178;;;;109865:25;109849:8;:15;109821:10;:27;109832:12;109845:1;109832:15;;;;;;;;:::i;:::-;;;;;;;109821:27;;;;;;;;;;;;:43;;;;:::i;:::-;:69;;;;:::i;:::-;109791:10;:27;109802:12;109815:1;109802:15;;;;;;;;:::i;:::-;;;;;;;109791:27;;;;;;;;;;;:99;;;;109398:504;109345:2278;;;109931:1;109914:8;:15;:18;109913:48;;;;;109959:1;109938:12;:19;:22;109913:48;109908:1715;;;110005:12;:19;109986:8;:15;:38;109980:1394;;;110188:9;110183:230;110207:12;:19;110203:1;:23;110183:230;;;110320:10;:23;110331:8;110340:1;110331:11;;;;;;;;:::i;:::-;;;;;;;110320:23;;;;;;;;;;;;110288:10;:27;110299:12;110312:1;110299:15;;;;;;;;:::i;:::-;;;;;;;110288:27;;;;;;;;;;;;110316:1;110288:29;;;;:::i;:::-;:55;;;;:::i;:::-;110258:10;:27;110269:12;110282:1;110269:15;;;;;;;;:::i;:::-;;;;;;;110258:27;;;;;;;;;;;:85;;;;110392:1;110366:10;:23;110377:8;110386:1;110377:11;;;;;;;;:::i;:::-;;;;;;;110366:23;;;;;;;;;;;:27;;;;110229:3;;;;;:::i;:::-;;;;110183:230;;;;109908:1715;;109980:1394;110473:12;:19;110455:8;:15;:37;;;;:::i;:::-;110452:922;;110517:15;110551:12;:19;110535:8;:15;:35;;;;:::i;:::-;110517:53;;110594:9;110589:514;110613:12;:19;110609:1;:23;110589:514;;;110663:25;::::0;110711:264:::1;110745:10;110736:6;:19;110711:264;;;110834:10;:43;110845:8:::0;110862:12:::1;110864:10:::0;110862:1;:12:::1;:::i;:::-;110854:21;::::0;:6;:21:::1;:::i;:::-;110845:31;;;;;;;;:::i;:::-;;;;;;;110834:43;;;;;;;;;;;;110815:17;:62;;;;:::i;:::-;110795:82:::0;-1:-1:-1;110950:1:0::1;110904:10;110950:1:::0;110915:8;110932:12:::1;110934:10:::0;110932:1;:12:::1;:::i;:::-;110924:21;::::0;:6;:21:::1;:::i;:::-;110915:31;;;;;;;;:::i;:::-;;;;;;;110904:43;;;;;;;;;;;:47;;;;110758:8;;;;;:::i;:::-;;;;110711:264;;;;111066:17;111055:10;111027;:27;111038:12;111051:1;111038:15;;;;;;;;:::i;:::-;;;;;;;111027:27;;;;;;;;;;;;:38;;;;:::i;:::-;:56;;;;:::i;:::-;110997:10;:27;111008:12;111021:1;111008:15;;;;;;;;:::i;:::-;;;;;;;110997:27;;;;;;;;;;;:86;;;;110640:463;110635:3;;;;;:::i;:::-;;;;110589:514;;;;110498:637;109908:1715;;110452:922;111162:196;::::0;-1:-1:-1;;;111162:196:0;;28213:2:1;111162:196:0::1;::::0;::::1;28195:21:1::0;28252:3;28232:18;;;28225:31;28292:34;28272:18;;;28265:62;28363:34;28343:18;;;28336:62;28435:34;28414:19;;;28407:63;28507:34;28486:19;;;28479:63;28579:34;28558:19;;;28551:63;28651:28;28630:19;;;28623:57;28697:19;;111162:196:0::1;28011:711:1::0;109908:1715:0::1;111638:9;111633:104;111657:8;:15;111653:1;:19;111633:104;;;111696:29;111708:8;111717:1;111708:11;;;;;;;;:::i;:::-;;;;;;;111720:4;111696:11;:29::i;:::-;111675:3:::0;::::1;::::0;::::1;:::i;:::-;;;;111633:104;;;;111785:12;111752:78;;;;;;:::i;:::-;;;;;;;;111775:8;111752:78;;;;;;:::i;:::-;;;;;;;;111763:10;-1:-1:-1::0;;;;;111752:78:0::1;;111799:8;111809:12;111823:6;111752:78;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1808:1:0;2762:7;:22;-1:-1:-1;108045:3793:0:o;103872:1099::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;104022::::1;::::0;105660:28:::1;::::0;11435:66:1;105677:10:0::1;11422:2:1::0;11418:15;11414:88;105660:28:0::1;::::0;::::1;11402:101:1::0;104009:11:0;;;;105635:12:::1;::::0;11519::1;;105660:28:0::1;;;;;;;;;;;;105650:39;;;;;;105635:54;;105722:109;105759:11;;105722:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;105789:4:0;;-1:-1:-1;105812:4:0;;-1:-1:-1;105722:18:0::1;::::0;-1:-1:-1;105722:109:0:i:1;:::-;105700:191;;;::::0;-1:-1:-1;;;105700:191:0;;19016:2:1;105700:191:0::1;::::0;::::1;18998:21:1::0;;;19035:18;;;19028:30;19094:34;19074:18;;;19067:62;19146:18;;105700:191:0::1;18814:356:1::0;105700:191:0::1;104062:6:::2;::::0;::::2;;104061:7;104053:38;;;::::0;-1:-1:-1;;;104053:38:0;;24639:2:1;104053:38:0::2;::::0;::::2;24621:21:1::0;24678:2;24658:18;;;24651:30;24717:20;24697:18;;;24690:48;24755:18;;104053:38:0::2;24437:342:1::0;104053:38:0::2;104129:17;;104110:15;:36;;104102:97;;;::::0;-1:-1:-1;;;104102:97:0;;18599:2:1;104102:97:0::2;::::0;::::2;18581:21:1::0;18638:2;18618:18;;;18611:30;18677:34;18657:18;;;18650:62;18748:18;18728;;;18721:46;18784:19;;104102:97:0::2;18397:412:1::0;104102:97:0::2;104253:10;;104241:8;104236:1;104221:14;58964:7:::0;58991:13;;58909:103;104221:14:::2;:16;;;;:::i;:::-;104220:29;;;;:::i;:::-;:43;;104212:112;;;::::0;-1:-1:-1;;;104212:112:0;;32013:2:1;104212:112:0::2;::::0;::::2;31995:21:1::0;32052:2;32032:18;;;32025:30;32091:34;32071:18;;;32064:62;32162:26;32142:18;;;32135:54;32206:19;;104212:112:0::2;31811:420:1::0;104212:112:0::2;104407:10;104392:26;::::0;;;:14:::2;:26;::::0;;;;;104389:182:::2;;104491:10;104472:30;::::0;;;:18:::2;:30;::::0;;;;;:33;:87:::2;;104548:10;104529:30;::::0;;;:18:::2;:30;::::0;;;;;104472:87:::2;;;104508:18;;104472:87;104458:10;104439:30;::::0;;;:18:::2;:30;::::0;;;;:120;104389:182:::2;104697:10;104678:30;::::0;;;:18:::2;:30;::::0;;;;;;;;104639:14:::2;:26:::0;;;;;;;:35:::2;::::0;104666:8;;104639:35:::2;:::i;:::-;:69;;104631:128;;;::::0;-1:-1:-1;;;104631:128:0;;27798:2:1;104631:128:0::2;::::0;::::2;27780:21:1::0;27837:2;27817:18;;;27810:30;27876:34;27856:18;;;27849:62;27947:16;27927:18;;;27920:44;27981:19;;104631:128:0::2;27596:410:1::0;104631:128:0::2;104824:10;104809:26;::::0;;;:14:::2;:26;::::0;;;;;:35:::2;::::0;104836:8;;104809:35:::2;:::i;:::-;104795:10;104780:26;::::0;;;:14:::2;:26;::::0;;;;:64;104893:30:::2;104914:8:::0;104893:20:::2;:30::i;77357:399::-:0;77524:31;77537:4;77543:2;77547:7;77524:12;:31::i;:::-;-1:-1:-1;;;;;77570:14:0;;;:19;77566:183;;77609:56;77640:4;77646:2;77650:7;77659:5;77609:30;:56::i;:::-;77604:145;;77693:40;;;;;;;;;;;;;;77604:145;77357:399;;;;:::o;106723:560::-;106789:13;106822:8;106814:48;;;;-1:-1:-1;;;106814:48:0;;33217:2:1;106814:48:0;;;33199:21:1;33256:2;33236:18;;;33229:30;33295;33275:18;;;33268:58;33343:18;;106814:48:0;33015:352:1;106814:48:0;106885:5;106881:3;:9;106873:71;;;;-1:-1:-1;;;106873:71:0;;32798:2:1;106873:71:0;;;32780:21:1;32837:2;32817:18;;;32810:30;32876:34;32856:18;;;32849:62;32947:20;32927:18;;;32920:48;32985:19;;106873:71:0;32596:414:1;106873:71:0;106955:14;106988:1;106973:14;58964:7;58991:13;;58909:103;106973:14;:16;;;;:::i;:::-;106955:34;;107013:6;107008:3;:11;;107000:68;;;;-1:-1:-1;;;107000:68:0;;20966:2:1;107000:68:0;;;20948:21:1;21005:2;20985:18;;;20978:30;21044:34;21024:18;;;21017:62;21115:15;21095:18;;;21088:43;21148:19;;107000:68:0;20764:409:1;107000:68:0;107081:20;107119:9;107123:5;107119:3;:9;:::i;:::-;107118:13;;107130:1;107118:13;:::i;:::-;107104:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;107104:28:0;;107081:51;;107154:6;107149:96;107172:9;107176:5;107172:3;:9;:::i;:::-;107171:13;;107183:1;107171:13;:::i;:::-;107166:1;:19;107149:96;;;107216:6;:17;107224:7;107226:5;107224:1;:7;:::i;:::-;107216:17;;;;;;;;;;;;107207:3;107211:1;107207:6;;;;;;;;:::i;:::-;;;;;;;;;;:26;107187:3;;;;:::i;:::-;;;;107149:96;;38641:260;-1:-1:-1;;;;;37233:26:0;;38713:7;37233:26;;;:19;:26;;;;;;38713:7;;38757:30;;;;;38781:4;38757:30;;;14372:74:1;-1:-1:-1;;;;;38757:15:0;;;;;14345:18:1;;38757:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;37937:21:0;;;37910:7;37937:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;38733:77;;-1:-1:-1;38828:65:0;;38844:7;;38733:77;;38415:15;:58::i;38828:65::-;38821:72;38641:260;-1:-1:-1;;;;38641:260:0:o;98429:540::-;98503:13;98537:17;98545:8;98537:7;:17::i;:::-;98529:77;;;;-1:-1:-1;;;98529:77:0;;27382:2:1;98529:77:0;;;27364:21:1;27421:2;27401:18;;;27394:30;27460:34;27440:18;;;27433:62;27531:17;27511:18;;;27504:45;27566:19;;98529:77:0;27180:411:1;98529:77:0;98656:9;;;;;;;;:17;;:9;:17;:42;;;;;98689:8;;98678;:19;98656:42;98652:96;;;98719:17;98712:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98429:540;;;:::o;98652:96::-;98758:28;98789:9;98758:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98847:1;98822:14;98816:28;:32;:145;;;;;;;;;;;;;;;;;98917:16;;;;:6;:16;;;;;;98884:14;;98900:34;;:16;:34::i;:::-;98936:9;98867:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98809:152;98429:540;-1:-1:-1;;;98429:540:0:o;106054:182::-;42555:13;:11;:13::i;:::-;106154:1:::1;106142:11;:13;106134:48;;;::::0;-1:-1:-1;;;106134:48:0;;20614:2:1;106134:48:0::1;::::0;::::1;20596:21:1::0;20653:2;20633:18;;;20626:30;20692:25;20672:18;;;20665:53;20735:18;;106134:48:0::1;20412:347:1::0;106134:48:0::1;106193:21;:35:::0;106054:182::o;99952:88::-;42555:13;:11;:13::i;:::-;100016:8:::1;:16:::0;99952:88::o;101707:456::-;1852:1;2450:7;;:19;;2442:63;;;;-1:-1:-1;;;2442:63:0;;32438:2:1;2442:63:0;;;32420:21:1;32477:2;32457:18;;;32450:30;32516:33;32496:18;;;32489:61;32567:18;;2442:63:0;32236:355:1;2442:63:0;1852:1;2583:7;:18;42555:13:::1;:11;:13::i;:::-;101837:17:::2;;101818:15;:36;;101810:107;;;::::0;-1:-1:-1;;;101810:107:0;;30816:2:1;101810:107:0::2;::::0;::::2;30798:21:1::0;30855:2;30835:18;;;30828:30;30894:34;30874:18;;;30867:62;30965:28;30945:18;;;30938:56;31011:19;;101810:107:0::2;30614:422:1::0;101810:107:0::2;101969:10;;101957:8;101952:1;101937:14;58964:7:::0;58991:13;;58909:103;101937:14:::2;:16;;;;:::i;:::-;101936:29;;;;:::i;:::-;:43;;101928:112;;;::::0;-1:-1:-1;;;101928:112:0;;32013:2:1;101928:112:0::2;::::0;::::2;31995:21:1::0;32052:2;32032:18;;;32025:30;32091:34;32071:18;;;32064:62;32162:26;32142:18;;;32135:54;32206:19;;101928:112:0::2;31811:420:1::0;101928:112:0::2;102083:30;102104:8;102083:20;:30::i;:::-;102124;102134:9;102145:8;102124:9;:30::i;:::-;-1:-1:-1::0;;1808:1:0;2762:7;:22;101707:456::o;102320:104::-;42555:13;:11;:13::i;:::-;102392:16:::1;:24:::0;102320:104::o;43575:201::-;42555:13;:11;:13::i;:::-;-1:-1:-1;;;;;43664:22:0;::::1;43656:73;;;::::0;-1:-1:-1;;;43656:73:0;;19377:2:1;43656:73:0::1;::::0;::::1;19359:21:1::0;19416:2;19396:18;;;19389:30;19455:34;19435:18;;;19428:62;19526:8;19506:18;;;19499:36;19552:19;;43656:73:0::1;19175:402:1::0;43656:73:0::1;43740:28;43759:8;43740:18;:28::i;:::-;43575:201:::0;:::o;102432:110::-;42555:13;:11;:13::i;:::-;102507:18:::1;:27:::0;102432:110::o;95762:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71399:282::-;71464:4;71520:7;97596:1;71501:26;;:66;;;;;71554:13;;71544:7;:23;71501:66;:153;;;;-1:-1:-1;;71605:26:0;;;;:17;:26;;;;;;55341:8;71605:44;:49;;71399:282::o;22319:190::-;22444:4;22497;22468:25;22481:5;22488:4;22468:12;:25::i;:::-;:33;;22319:190;-1:-1:-1;;;;22319:190:0:o;100172:247::-;100255:1;100238:174;100261:10;:8;100270:1;100261:10;:::i;:::-;100258:1;:13;100238:174;;100292:14;:16;;;:14;:16;;;:::i;:::-;;;;-1:-1:-1;100349:51:0;;-1:-1:-1;100398:1:0;100368:29;100385:12;100368:15;:29;:::i;:::-;:31;;;;:::i;:::-;100349:18;:51::i;:::-;100330:14;;100323:22;;;;:6;:22;;;;;:77;100273:3;;;;:::i;:::-;;;;100238:174;;81018:2454;81091:20;81114:13;81142;81138:44;;81164:18;;;;;;;;;;;;;;81138:44;-1:-1:-1;;;;;81670:22:0;;;;;;:18;:22;;;;54703:2;81670:22;;;:71;;81708:32;81696:45;;81670:71;;;81984:31;;;:17;:31;;;;;-1:-1:-1;68684:15:0;;68658:24;68654:46;68253:11;68228:23;68224:41;68221:52;68211:63;;81984:173;;82219:23;;;;81984:31;;81670:22;;82718:25;81670:22;;82571:335;82986:1;82972:12;82968:20;82926:346;83027:3;83018:7;83015:16;82926:346;;83245:7;83235:8;83232:1;83205:25;83202:1;83199;83194:59;83080:1;83067:15;82926:346;;;-1:-1:-1;83305:13:0;83301:45;;83327:19;;;;;;;;;;;;;;83301:45;83363:13;:19;-1:-1:-1;76574:185:0;;;:::o;42834:132::-;42742:6;;-1:-1:-1;;;;;42742:6:0;33081:10;42898:23;42890:68;;;;-1:-1:-1;;;42890:68:0;;26662:2:1;42890:68:0;;;26644:21:1;;;26681:18;;;26674:30;26740:34;26720:18;;;26713:62;26792:18;;42890:68:0;26460:356:1;39101:453:0;-1:-1:-1;;;;;39177:16:0;;39196:1;39177:16;;;:7;:16;;;;;;39169:71;;;;-1:-1:-1;;;39169:71:0;;21380:2:1;39169:71:0;;;21362:21:1;21419:2;21399:18;;;21392:30;21458:34;21438:18;;;21431:62;21529:8;21509:18;;;21502:36;21555:19;;39169:71:0;21178:402:1;39169:71:0;39253:15;39271:19;39282:7;39271:10;:19::i;:::-;39253:37;-1:-1:-1;39311:12:0;39303:68;;;;-1:-1:-1;;;39303:68:0;;23400:2:1;39303:68:0;;;23382:21:1;23439:2;23419:18;;;23412:30;23478:34;23458:18;;;23451:62;23549:13;23529:18;;;23522:41;23580:19;;39303:68:0;23198:407:1;39303:68:0;-1:-1:-1;;;;;39384:18:0;;;;;;:9;:18;;;;;:29;;39406:7;;39384:18;:29;;39406:7;;39384:29;:::i;:::-;;;;;;;;39442:7;39424:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;39462:35:0;;-1:-1:-1;39480:7:0;39489;39462:17;:35::i;:::-;39513:33;;;-1:-1:-1;;;;;14657:55:1;;14639:74;;14744:2;14729:18;;14722:34;;;39513:33:0;;14612:18:1;39513:33:0;;;;;;;39158:396;39101:453;:::o;66019:1275::-;66086:7;66121;;97596:1;66170:23;66166:1061;;66223:13;;66216:4;:20;66212:1015;;;66261:14;66278:23;;;:17;:23;;;;;;55341:8;66367:24;;66363:845;;67032:113;67039:11;67032:113;;-1:-1:-1;67110:6:0;;67092:25;;;;:17;:25;;;;;;67032:113;;66363:845;66238:989;66212:1015;67255:31;;;;;;;;;;;;;;17310:211;17454:58;;;-1:-1:-1;;;;;14657:55:1;;17454:58:0;;;14639:74:1;14729:18;;;;14722:34;;;17454:58:0;;;;;;;;;;14612:18:1;;;;17454:58:0;;;;;;;;;;17477:23;17454:58;;;17427:86;;17447:5;;17427:19;:86::i;43936:191::-;44029:6;;;-1:-1:-1;;;;;44046:17:0;;;;;;;;;;;44079:40;;44029:6;;;44046:17;44029:6;;44079:40;;44010:16;;44079:40;43999:128;43936:191;:::o;40514:248::-;40724:12;;-1:-1:-1;;;;;40704:16:0;;40660:7;40704:16;;;:7;:16;;;;;;40660:7;;40739:15;;40688:32;;:13;:32;:::i;:::-;40687:49;;;;:::i;:::-;:67;;;;:::i;87694:3081::-;87774:27;87804;87823:7;87804:18;:27::i;:::-;87774:57;-1:-1:-1;87774:57:0;87844:12;;87966:35;87993:7;72664:27;72775:24;;;:15;:24;;;;;72997:26;;72775:24;;72562:479;87966:35;87909:92;;;;88018:13;88014:316;;;88139:68;88164:15;88181:4;33081:10;88187:19;33001:98;88139:68;88134:184;;88231:43;88248:4;33081:10;70977:164;:::i;88231:43::-;88226:92;;88283:35;;;;;;;;;;;;;;88226:92;88486:15;88483:160;;;88626:1;88605:19;88598:30;88483:160;-1:-1:-1;;;;;89245:24:0;;;;;;:18;:24;;;;;:60;;89273:32;89245:60;;;68253:11;68228:23;68224:41;68211:63;89633:43;68211:63;89543:26;;;;:17;:26;;;;;:205;55621:8;89868:47;;89864:627;;89973:1;89963:11;;89941:19;90096:30;;;:17;:30;;;;;;90092:384;;90234:13;;90219:11;:28;90215:242;;90381:30;;;;:17;:30;;;;;:52;;;90215:242;89922:569;89864:627;90519:35;;90546:7;;90542:1;;-1:-1:-1;;;;;90519:35:0;;;;;90542:1;;90519:35;-1:-1:-1;;90742:12:0;:14;;;;;;-1:-1:-1;;;;87694:3081:0:o;79840:716::-;80024:88;;;;;80003:4;;-1:-1:-1;;;;;80024:45:0;;;;;:88;;33081:10;;80091:4;;80097:7;;80106:5;;80024:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80024:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;80020:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80307:13:0;;80303:235;;80353:40;;;;;;;;;;;;;;80303:235;80496:6;80490:13;80481:6;80477:2;80473:15;80466:38;80020:529;80183:64;;80193:54;80183:64;;-1:-1:-1;79840:716:0;;;;;;:::o;30255:723::-;30311:13;30532:10;30528:53;;-1:-1:-1;;30559:10:0;;;;;;;;;;;;;;;;;;30255:723::o;30528:53::-;30606:5;30591:12;30647:78;30654:9;;30647:78;;30680:8;;;;:::i;:::-;;-1:-1:-1;30703:10:0;;-1:-1:-1;30711:2:0;30703:10;;:::i;:::-;;;30647:78;;;30735:19;30767:6;30757:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30757:17:0;;30735:39;;30785:154;30792:10;;30785:154;;30819:11;30829:1;30819:11;;:::i;:::-;;-1:-1:-1;30888:10:0;30896:2;30888:5;:10;:::i;:::-;30875:24;;:2;:24;:::i;:::-;30862:39;;30845:6;30852;30845:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;30916:11:0;30925:2;30916:11;;:::i;:::-;;;30785:154;;86997:112;87074:27;87084:2;87088:8;87074:27;;;;;;;;;;;;:9;:27::i;23186:296::-;23269:7;23312:4;23269:7;23327:118;23351:5;:12;23347:1;:16;23327:118;;;23400:33;23410:12;23424:5;23430:1;23424:8;;;;;;;;:::i;:::-;;;;;;;23400:9;:33::i;:::-;23385:48;-1:-1:-1;23365:3:0;;;;:::i;:::-;;;;23327:118;;;-1:-1:-1;23462:12:0;23186:296;-1:-1:-1;;;23186:296:0:o;97613:420::-;97724:5;:7;;97674:10;;;;97724:7;;;97674:10;97724:7;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;97711:20;;:10;:20;;;;:::i;:::-;97697:34;;97756:1;97750:3;:7;97742:31;;;;-1:-1:-1;;;97742:31:0;;30126:2:1;97742:31:0;;;30108:21:1;30165:2;30145:18;;;30138:30;30204:13;30184:18;;;30177:41;30235:18;;97742:31:0;29924:335:1;97742:31:0;97784:19;97806:12;97815:3;97806:6;:12;:::i;:::-;97784:34;;97844:3;97848:11;97844:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:54;;97887:11;97844:54;;;97868:3;97872:11;97868:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;97844:54;;;97839:59;-1:-1:-1;97935:3:0;97939:7;97945:1;97939:3;:7;:::i;:::-;97935:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:17;:42;;97965:3;97969:7;97975:1;97969:3;:7;:::i;:::-;97965:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;97935:42;;;;;97955:7;97961:1;97955:3;:7;:::i;:::-;97909:3;97913:11;97909:16;;;;;;;:::i;:::-;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;98004:1;97989:3;97999:1;97993:3;:7;;;;:::i;:::-;97989:12;;;;;;;:::i;:::-;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;98016:9;;97613:420;;;:::o;5293:317::-;5408:6;5383:21;:31;;5375:73;;;;-1:-1:-1;;;5375:73:0;;22635:2:1;5375:73:0;;;22617:21:1;22674:2;22654:18;;;22647:30;22713:31;22693:18;;;22686:59;22762:18;;5375:73:0;22433:353:1;5375:73:0;5462:12;5480:9;-1:-1:-1;;;;;5480:14:0;5502:6;5480:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5461:52;;;5532:7;5524:78;;;;-1:-1:-1;;;5524:78:0;;22208:2:1;5524:78:0;;;22190:21:1;22247:2;22227:18;;;22220:30;22286:34;22266:18;;;22259:62;22357:28;22337:18;;;22330:56;22403:19;;5524:78:0;22006:422:1;20377:716:0;20801:23;20827:69;20855:4;20827:69;;;;;;;;;;;;;;;;;20835:5;-1:-1:-1;;;;;20827:27:0;;;:69;;;;;:::i;:::-;20911:17;;20801:95;;-1:-1:-1;20911:21:0;20907:179;;21008:10;20997:30;;;;;;;;;;;;:::i;:::-;20989:85;;;;-1:-1:-1;;;20989:85:0;;31602:2:1;20989:85:0;;;31584:21:1;31641:2;31621:18;;;31614:30;31680:34;31660:18;;;31653:62;31751:12;31731:18;;;31724:40;31781:19;;20989:85:0;31400:406:1;86224:689:0;86355:19;86361:2;86365:8;86355:5;:19::i;:::-;-1:-1:-1;;;;;86416:14:0;;;:19;86412:483;;86456:11;86470:13;86518:14;;;86551:233;86582:62;86621:1;86625:2;86629:7;;;;;;86638:5;86582:30;:62::i;:::-;86577:167;;86680:40;;;;;;;;;;;;;;86577:167;86779:3;86771:5;:11;86551:233;;86866:3;86849:13;;:20;86845:34;;86871:8;;;86845:34;86437:458;;86224:689;;;:::o;29393:149::-;29456:7;29487:1;29483;:5;:51;;29618:13;29712:15;;;29748:4;29741:15;;;29795:4;29779:21;;29483:51;;;-1:-1:-1;29618:13:0;29712:15;;;29748:4;29741:15;29795:4;29779:21;;;29393:149::o;6777:229::-;6914:12;6946:52;6968:6;6976:4;6982:1;6985:12;6914;-1:-1:-1;;;;;4327:19:0;;;8184:60;;;;-1:-1:-1;;;8184:60:0;;29768:2:1;8184:60:0;;;29750:21:1;29807:2;29787:18;;;29780:30;29846:31;29826:18;;;29819:59;29895:18;;8184:60:0;29566:353:1;8184:60:0;8258:12;8272:23;8299:6;-1:-1:-1;;;;;8299:11:0;8318:5;8325:4;8299:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:73;;;;8348:51;8365:7;8374:10;8386:12;8348:16;:51::i;:::-;8341:58;7897:510;-1:-1:-1;;;;;;;7897:510:0:o;10583:762::-;10733:12;10762:7;10758:580;;;-1:-1:-1;10793:10:0;10786:17;;10758:580;10907:17;;:21;10903:424;;11155:10;11149:17;11216:15;11203:10;11199:2;11195:19;11188:44;10903:424;11298:12;11291:20;;-1:-1:-1;;;11291:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:673::-;538:5;591:3;584:4;576:6;572:17;568:27;558:55;;609:1;606;599:12;558:55;645:6;632:20;671:4;695:60;711:43;751:2;711:43;:::i;:::-;695:60;:::i;:::-;777:3;801:2;796:3;789:15;829:2;824:3;820:12;813:19;;864:2;856:6;852:15;916:3;911:2;905;902:1;898:10;890:6;886:23;882:32;879:41;876:61;;;933:1;930;923:12;876:61;955:1;965:163;979:2;976:1;973:9;965:163;;;1036:17;;1024:30;;1074:12;;;;1106;;;;997:1;990:9;965:163;;;-1:-1:-1;1146:5:1;;484:673;-1:-1:-1;;;;;;;484:673:1:o;1162:221::-;1205:5;1258:3;1251:4;1243:6;1239:17;1235:27;1225:55;;1276:1;1273;1266:12;1225:55;1298:79;1373:3;1364:6;1351:20;1344:4;1336:6;1332:17;1298:79;:::i;1388:247::-;1447:6;1500:2;1488:9;1479:7;1475:23;1471:32;1468:52;;;1516:1;1513;1506:12;1468:52;1555:9;1542:23;1574:31;1599:5;1574:31;:::i;1900:388::-;1968:6;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;2275:7;2265:17;;;1900:388;;;;;:::o;2293:456::-;2370:6;2378;2386;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2494:9;2481:23;2513:31;2538:5;2513:31;:::i;:::-;2563:5;-1:-1:-1;2620:2:1;2605:18;;2592:32;2633:33;2592:32;2633:33;:::i;:::-;2293:456;;2685:7;;-1:-1:-1;;;2739:2:1;2724:18;;;;2711:32;;2293:456::o;2754:794::-;2849:6;2857;2865;2873;2926:3;2914:9;2905:7;2901:23;2897:33;2894:53;;;2943:1;2940;2933:12;2894:53;2982:9;2969:23;3001:31;3026:5;3001:31;:::i;:::-;3051:5;-1:-1:-1;3108:2:1;3093:18;;3080:32;3121:33;3080:32;3121:33;:::i;:::-;3173:7;-1:-1:-1;3227:2:1;3212:18;;3199:32;;-1:-1:-1;3282:2:1;3267:18;;3254:32;3309:18;3298:30;;3295:50;;;3341:1;3338;3331:12;3295:50;3364:22;;3417:4;3409:13;;3405:27;-1:-1:-1;3395:55:1;;3446:1;3443;3436:12;3395:55;3469:73;3534:7;3529:2;3516:16;3511:2;3507;3503:11;3469:73;:::i;:::-;3459:83;;;2754:794;;;;;;;:::o;3553:382::-;3618:6;3626;3679:2;3667:9;3658:7;3654:23;3650:32;3647:52;;;3695:1;3692;3685:12;3647:52;3734:9;3721:23;3753:31;3778:5;3753:31;:::i;:::-;3803:5;-1:-1:-1;3860:2:1;3845:18;;3832:32;3873:30;3832:32;3873:30;:::i;3940:315::-;4008:6;4016;4069:2;4057:9;4048:7;4044:23;4040:32;4037:52;;;4085:1;4082;4075:12;4037:52;4124:9;4111:23;4143:31;4168:5;4143:31;:::i;:::-;4193:5;4245:2;4230:18;;;;4217:32;;-1:-1:-1;;;3940:315:1:o;4260:1226::-;4378:6;4386;4439:2;4427:9;4418:7;4414:23;4410:32;4407:52;;;4455:1;4452;4445:12;4407:52;4495:9;4482:23;4524:18;4565:2;4557:6;4554:14;4551:34;;;4581:1;4578;4571:12;4551:34;4619:6;4608:9;4604:22;4594:32;;4664:7;4657:4;4653:2;4649:13;4645:27;4635:55;;4686:1;4683;4676:12;4635:55;4722:2;4709:16;4744:4;4768:60;4784:43;4824:2;4784:43;:::i;4768:60::-;4850:3;4874:2;4869:3;4862:15;4902:2;4897:3;4893:12;4886:19;;4933:2;4929;4925:11;4981:7;4976:2;4970;4967:1;4963:10;4959:2;4955:19;4951:28;4948:41;4945:61;;;5002:1;4999;4992:12;4945:61;5024:1;5015:10;;5034:238;5048:2;5045:1;5042:9;5034:238;;;5119:3;5106:17;5136:31;5161:5;5136:31;:::i;:::-;5180:18;;5066:1;5059:9;;;;;5218:12;;;;5250;;5034:238;;;-1:-1:-1;5291:5:1;-1:-1:-1;;5334:18:1;;5321:32;;-1:-1:-1;;5365:16:1;;;5362:36;;;5394:1;5391;5384:12;5362:36;;5417:63;5472:7;5461:8;5450:9;5446:24;5417:63;:::i;:::-;5407:73;;;4260:1226;;;;;:::o;5491:689::-;5586:6;5594;5602;5655:2;5643:9;5634:7;5630:23;5626:32;5623:52;;;5671:1;5668;5661:12;5623:52;5711:9;5698:23;5740:18;5781:2;5773:6;5770:14;5767:34;;;5797:1;5794;5787:12;5767:34;5835:6;5824:9;5820:22;5810:32;;5880:7;5873:4;5869:2;5865:13;5861:27;5851:55;;5902:1;5899;5892:12;5851:55;5942:2;5929:16;5968:2;5960:6;5957:14;5954:34;;;5984:1;5981;5974:12;5954:34;6039:7;6032:4;6022:6;6019:1;6015:14;6011:2;6007:23;6003:34;6000:47;5997:67;;;6060:1;6057;6050:12;5997:67;6091:4;6083:13;;;;6115:6;;-1:-1:-1;6153:20:1;;;;6140:34;;5491:689;-1:-1:-1;;;;5491:689:1:o;6185:795::-;6322:6;6330;6338;6391:2;6379:9;6370:7;6366:23;6362:32;6359:52;;;6407:1;6404;6397:12;6359:52;6447:9;6434:23;6476:18;6517:2;6509:6;6506:14;6503:34;;;6533:1;6530;6523:12;6503:34;6556:61;6609:7;6600:6;6589:9;6585:22;6556:61;:::i;:::-;6546:71;;6670:2;6659:9;6655:18;6642:32;6626:48;;6699:2;6689:8;6686:16;6683:36;;;6715:1;6712;6705:12;6683:36;6738:63;6793:7;6782:8;6771:9;6767:24;6738:63;:::i;:::-;6728:73;;6854:2;6843:9;6839:18;6826:32;6810:48;;6883:2;6873:8;6870:16;6867:36;;;6899:1;6896;6889:12;6867:36;;6922:52;6966:7;6955:8;6944:9;6940:24;6922:52;:::i;:::-;6912:62;;;6185:795;;;;;:::o;6985:241::-;7041:6;7094:2;7082:9;7073:7;7069:23;7065:32;7062:52;;;7110:1;7107;7100:12;7062:52;7149:9;7136:23;7168:28;7190:5;7168:28;:::i;7231:245::-;7298:6;7351:2;7339:9;7330:7;7326:23;7322:32;7319:52;;;7367:1;7364;7357:12;7319:52;7399:9;7393:16;7418:28;7440:5;7418:28;:::i;7481:180::-;7540:6;7593:2;7581:9;7572:7;7568:23;7564:32;7561:52;;;7609:1;7606;7599:12;7561:52;-1:-1:-1;7632:23:1;;7481:180;-1:-1:-1;7481:180:1:o;7666:245::-;7724:6;7777:2;7765:9;7756:7;7752:23;7748:32;7745:52;;;7793:1;7790;7783:12;7745:52;7832:9;7819:23;7851:30;7875:5;7851:30;:::i;7916:249::-;7985:6;8038:2;8026:9;8017:7;8013:23;8009:32;8006:52;;;8054:1;8051;8044:12;8006:52;8086:9;8080:16;8105:30;8129:5;8105:30;:::i;8843:322::-;8912:6;8965:2;8953:9;8944:7;8940:23;8936:32;8933:52;;;8981:1;8978;8971:12;8933:52;9021:9;9008:23;9054:18;9046:6;9043:30;9040:50;;;9086:1;9083;9076:12;9040:50;9109;9151:7;9142:6;9131:9;9127:22;9109:50;:::i;9170:390::-;9248:6;9256;9309:2;9297:9;9288:7;9284:23;9280:32;9277:52;;;9325:1;9322;9315:12;9277:52;9365:9;9352:23;9398:18;9390:6;9387:30;9384:50;;;9430:1;9427;9420:12;9384:50;9453;9495:7;9486:6;9475:9;9471:22;9453:50;:::i;:::-;9443:60;9550:2;9535:18;;;;9522:32;;-1:-1:-1;;;;9170:390:1:o;9750:184::-;9820:6;9873:2;9861:9;9852:7;9848:23;9844:32;9841:52;;;9889:1;9886;9879:12;9841:52;-1:-1:-1;9912:16:1;;9750:184;-1:-1:-1;9750:184:1:o;9939:315::-;10007:6;10015;10068:2;10056:9;10047:7;10043:23;10039:32;10036:52;;;10084:1;10081;10074:12;10036:52;10120:9;10107:23;10097:33;;10180:2;10169:9;10165:18;10152:32;10193:31;10218:5;10193:31;:::i;10259:248::-;10327:6;10335;10388:2;10376:9;10367:7;10363:23;10359:32;10356:52;;;10404:1;10401;10394:12;10356:52;-1:-1:-1;;10427:23:1;;;10497:2;10482:18;;;10469:32;;-1:-1:-1;10259:248:1:o;10512:435::-;10565:3;10603:5;10597:12;10630:6;10625:3;10618:19;10656:4;10685:2;10680:3;10676:12;10669:19;;10722:2;10715:5;10711:14;10743:1;10753:169;10767:6;10764:1;10761:13;10753:169;;;10828:13;;10816:26;;10862:12;;;;10897:15;;;;10789:1;10782:9;10753:169;;;-1:-1:-1;10938:3:1;;10512:435;-1:-1:-1;;;;;10512:435:1:o;10952:316::-;10993:3;11031:5;11025:12;11058:6;11053:3;11046:19;11074:63;11130:6;11123:4;11118:3;11114:14;11107:4;11100:5;11096:16;11074:63;:::i;:::-;11182:2;11170:15;11187:66;11166:88;11157:98;;;;11257:4;11153:109;;10952:316;-1:-1:-1;;10952:316:1:o;11542:543::-;11760:13;;11703:3;;11734;;11813:4;11840:15;;;11703:3;11883:175;11897:6;11894:1;11891:13;11883:175;;;11960:13;;11946:28;;11996:14;;;;12033:15;;;;11919:1;11912:9;11883:175;;;-1:-1:-1;12074:5:1;;11542:543;-1:-1:-1;;;;;;11542:543:1:o;12090:274::-;12219:3;12257:6;12251:13;12273:53;12319:6;12314:3;12307:4;12299:6;12295:17;12273:53;:::i;:::-;12342:16;;;;;12090:274;-1:-1:-1;;12090:274:1:o;12369:1642::-;12593:3;12631:6;12625:13;12657:4;12670:51;12714:6;12709:3;12704:2;12696:6;12692:15;12670:51;:::i;:::-;12784:13;;12743:16;;;;12806:55;12784:13;12743:16;12828:15;;;12806:55;:::i;:::-;12950:13;;12883:20;;;12923:1;;13010;13032:18;;;;13085;;;;13112:93;;13190:4;13180:8;13176:19;13164:31;;13112:93;13253:2;13243:8;13240:16;13220:18;13217:40;13214:224;;;13292:77;13287:3;13280:90;13393:4;13390:1;13383:15;13423:4;13418:3;13411:17;13214:224;13454:18;13481:168;;;;13663:1;13658:328;;;;13447:539;;13481:168;13531:66;13520:9;13516:82;13509:5;13502:97;13630:8;13623:5;13619:20;13612:27;;13481:168;;13658:328;34758:1;34751:14;;;34795:4;34782:18;;13753:1;13767:169;13781:8;13778:1;13775:15;13767:169;;;13863:14;;13848:13;;;13841:37;13906:16;;;;13798:10;;13767:169;;;13771:3;;13967:8;13960:5;13956:20;13949:27;;13447:539;-1:-1:-1;14002:3:1;;12369:1642;-1:-1:-1;;;;;;;;;;;12369:1642:1:o;14767:511::-;14961:4;-1:-1:-1;;;;;15071:2:1;15063:6;15059:15;15048:9;15041:34;15123:2;15115:6;15111:15;15106:2;15095:9;15091:18;15084:43;;15163:6;15158:2;15147:9;15143:18;15136:34;15206:3;15201:2;15190:9;15186:18;15179:31;15227:45;15267:3;15256:9;15252:19;15244:6;15227:45;:::i;:::-;15219:53;14767:511;-1:-1:-1;;;;;;14767:511:1:o;15585:261::-;15764:2;15753:9;15746:21;15727:4;15784:56;15836:2;15825:9;15821:18;15813:6;15784:56;:::i;15851:627::-;16156:2;16145:9;16138:21;16119:4;16182:56;16234:2;16223:9;16219:18;16211:6;16182:56;:::i;:::-;16286:9;16278:6;16274:22;16269:2;16258:9;16254:18;16247:50;16320:44;16357:6;16349;16320:44;:::i;:::-;16306:58;;16412:9;16404:6;16400:22;16395:2;16384:9;16380:18;16373:50;16440:32;16465:6;16457;16440:32;:::i;16857:219::-;17006:2;16995:9;16988:21;16969:4;17026:44;17066:2;17055:9;17051:18;17043:6;17026:44;:::i;34158:334::-;34229:2;34223:9;34285:2;34275:13;;34290:66;34271:86;34259:99;;34388:18;34373:34;;34409:22;;;34370:62;34367:88;;;34435:18;;:::i;:::-;34471:2;34464:22;34158:334;;-1:-1:-1;34158:334:1:o;34497:183::-;34557:4;34590:18;34582:6;34579:30;34576:56;;;34612:18;;:::i;:::-;-1:-1:-1;34657:1:1;34653:14;34669:4;34649:25;;34497:183::o;34811:128::-;34851:3;34882:1;34878:6;34875:1;34872:13;34869:39;;;34888:18;;:::i;:::-;-1:-1:-1;34924:9:1;;34811:128::o;34944:120::-;34984:1;35010;35000:35;;35015:18;;:::i;:::-;-1:-1:-1;35049:9:1;;34944:120::o;35069:228::-;35109:7;35235:1;35167:66;35163:74;35160:1;35157:81;35152:1;35145:9;35138:17;35134:105;35131:131;;;35242:18;;:::i;:::-;-1:-1:-1;35282:9:1;;35069:228::o;35302:125::-;35342:4;35370:1;35367;35364:8;35361:34;;;35375:18;;:::i;:::-;-1:-1:-1;35412:9:1;;35302:125::o;35432:258::-;35504:1;35514:113;35528:6;35525:1;35522:13;35514:113;;;35604:11;;;35598:18;35585:11;;;35578:39;35550:2;35543:10;35514:113;;;35645:6;35642:1;35639:13;35636:48;;;-1:-1:-1;;35680:1:1;35662:16;;35655:27;35432:258::o;35695:437::-;35774:1;35770:12;;;;35817;;;35838:61;;35892:4;35884:6;35880:17;35870:27;;35838:61;35945:2;35937:6;35934:14;35914:18;35911:38;35908:218;;;35982:77;35979:1;35972:88;36083:4;36080:1;36073:15;36111:4;36108:1;36101:15;35908:218;;35695:437;;;:::o;36137:197::-;36175:3;36203:6;36244:2;36237:5;36233:14;36271:2;36262:7;36259:15;36256:41;;;36277:18;;:::i;:::-;36326:1;36313:15;;36137:197;-1:-1:-1;;;36137:197:1:o;36339:195::-;36378:3;36409:66;36402:5;36399:77;36396:103;;;36479:18;;:::i;:::-;-1:-1:-1;36526:1:1;36515:13;;36339:195::o;36539:112::-;36571:1;36597;36587:35;;36602:18;;:::i;:::-;-1:-1:-1;36636:9:1;;36539:112::o;36656:184::-;36708:77;36705:1;36698:88;36805:4;36802:1;36795:15;36829:4;36826:1;36819:15;36845:184;36897:77;36894:1;36887:88;36994:4;36991:1;36984:15;37018:4;37015:1;37008:15;37034:184;37086:77;37083:1;37076:88;37183:4;37180:1;37173:15;37207:4;37204:1;37197:15;37223:184;37275:77;37272:1;37265:88;37372:4;37369:1;37362:15;37396:4;37393:1;37386:15;37412:154;-1:-1:-1;;;;;37491:5:1;37487:54;37480:5;37477:65;37467:93;;37556:1;37553;37546:12;37571:118;37657:5;37650:13;37643:21;37636:5;37633:32;37623:60;;37679:1;37676;37669:12;37694:177;37779:66;37772:5;37768:78;37761:5;37758:89;37748:117;;37861:1;37858;37851:12

Swarm Source

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