ETH Price: $2,962.93 (-0.91%)
Gas: 9 Gwei

Token

Crypto Cloud Punks Cyborgs (CCPCY)
 

Overview

Max Total Supply

4,000 CCPCY

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
m2capital.eth
0x2F58aD6678E1AFB3d99E33478DA6CA30A6a3F46C
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
CCPCyborgs

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-13
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @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}
     */
    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.
     */
    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}
     */
    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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen - 1 != totalHashes) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen - 1 != totalHashes) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/interfaces/draft-IERC6093.sol


pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/StorageSlot.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Arrays.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Arrays.sol)

pragma solidity ^0.8.20;



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        uint256 low = 0;
        uint256 high = array.length;

        if (high == 0) {
            return 0;
        }

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds towards zero (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity ^0.8.20;

/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: contracts/Admins.sol


pragma solidity ^0.8.20;



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) and a project leader that can grant exclusive access to
 * specific functions.
 */
abstract contract Admins is Ownable {
    address public projectLeader;
    address[] public admins;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error AdminsUnauthorizedAccount(address account);

    event ProjectLeaderTransferred(address indexed previousLead, address indexed newLead);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) Ownable(initialOwner) {
        projectLeader = initialOwner;
    }

     /**
    @dev Throws if called by any account other than the owner or admin.
    */
    modifier onlyAdmins() {
        _checkAdmins();
        _;
    }

    /**
    @dev Internal function to check if the sender is an admin.
    */
    function _checkAdmins() internal view virtual {
        if (!checkIfAdmin()) {
            revert AdminsUnauthorizedAccount(_msgSender());
        }
    }

    /**
    @dev Checks if the sender is an admin.
    @return bool indicating whether the sender is an admin or not.
    */
    function checkIfAdmin() public view virtual returns(bool) {
        if (_msgSender() == owner() || _msgSender() == projectLeader){
            return true;
        }
        if(admins.length > 0){
            for (uint256 i = 0; i < admins.length; i++) {
                if(_msgSender() == admins[i]){
                    return true;
                }
            }
        }
        // Not an Admin
        return false;
    }

    /**
    @dev Owner and Project Leader can set the addresses as approved Admins.
    Example: ["0xADDRESS1", "0xADDRESS2", "0xADDRESS3"]
    */
    function setAdmins(address[] calldata _users) public virtual onlyAdmins {
        if (_msgSender() != owner() || _msgSender() != projectLeader) {
            revert AdminsUnauthorizedAccount(_msgSender());
        }
        delete admins;
        admins = _users;
    }

    /**
    @dev Owner or Project Leader can set the address as new Project Leader.
    */
    function setProjectLeader(address _user) public virtual onlyAdmins {
        if (_msgSender() != owner() || _msgSender() != projectLeader) {
            revert AdminsUnauthorizedAccount(_msgSender());
        }
        address oldPL = projectLeader;
        projectLeader = _user;
        emit ProjectLeaderTransferred(oldPL, _user);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.20;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

    /**
     * @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 have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 address zero.
     *
     * 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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.20;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface that must be implemented by smart contracts in order to receive
 * ERC-1155 token transfers.
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155Received} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `value` amount.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external;
}

// File: contracts/EasyLibrary.sol


pragma solidity ^0.8.20;





library EasyLibrary {
    error SkewedArrays();

    /**
    Batch contains a set amount of token IDs and details for minting and metadata uri structure.
    */
    struct Batch {
        uint[3] bRangeNext; //0 = start, 1 = end, 2 = nextToken to try mint
        string[2] bURI; //metadata uri 0 = prefix, 1 = suffix
        
        bool bRevealed; //revealed state
        bool bPaused; //pause state
        bool bBindOnMint; //bind on mint state, true = tokens cannot be moved after mint
        bool bMintInOrder; //state if tokens will be minted in numeric order

        bool bRollSwapAllow; //state if tokens can have it's roll swapped
        bool bRollInUse; //state if tokens will have a random roll when minted
        uint[2] bRollRange; //excluded Min & included Max of random roll
        uint bRollCost; //price for swapping roll
        
        uint bCost; //cost to mint each token
        uint bLimit; //max amount a wallet can mint, 0 = no limit
        uint bSupply; //supply of each token within the batch, 0 = no limit

        uint bTriggerPoint; //point to trigger next cost
        uint bNextCost; //cost is set to this after trigger point is met
        uint bMintStartDate; //date in unix timestamp to open mint
        
        uint[] bRequirementTokens; //tokens required to be held for minting
        uint[] bRequirementAmounts; //amount required for each token required
        address[] bRequirementAddresses; //address for the requirements
        bool[] bRequirementContractType; //true = ERC1155 , false = ERC721
    }

    /**
    Tier is a whitelist but active during public mint.
    - tLimit is the limited amount that tier is allowed
        a minter is then moved into the next tier when the limit is met
    - tCost is the cost for that tier
    - tRoot is the Merkle Root of the tier list
    */
    struct Tier {
        uint256 tLimit;
        uint256 tCost;
        bytes32 tRoot;
    }

    /**
    @dev Returns a random number between excluded rollLimitMin and included rollLimitMax for a given batch _fromBatch.
    @return A string representing the randomly selected roll within the specified range.
    */
    function randomRoll(uint256 seed, uint256 rollCounter, uint256 rollLimitMax, uint256 rollLimitMin) internal view returns (string memory) {
        uint256 random = uint256(keccak256(abi.encodePacked(
            seed,
            rollCounter,
            block.timestamp,
            msg.sender
        ))) % (rollLimitMax);

        if (random < rollLimitMin) {
            return Strings.toString(rollLimitMax - (random + 1));
        } else {
            return Strings.toString(random + 1);
        }
    }

    function validateRoll(uint256 _roll, bool rollSwapAllow, uint256 rollLimitMin, uint256 rollLimitMax, uint256 _balance, uint256 rollCost) internal view {
        require(rollSwapAllow, "!RR");
        require(_roll > rollLimitMin && _roll <= rollLimitMax, "!R");
        require(_balance > 0, "!O");
        require(msg.value >= (rollCost), "$?");
    }

    function validateTier(bytes32[] calldata proof, bytes32 leaf, Tier[] storage tiers) public view returns (bool, uint8) {
        if (tiers.length != 0) {
            for (uint8 i = 0; i < tiers.length; i++) {
                if (MerkleProof.verify(proof, tiers[i].tRoot, leaf)) {
                    return (true, i);
                }
            }
        }
        
        return (false, 0);
    }

    function hasSufficientTokens(address[] memory _tokenContract, address _account, uint256[] memory _tokens, uint256[] memory _amounts, bool[] memory _cType) internal view returns (bool) {
        if(_tokens.length != _amounts.length) {
            revert SkewedArrays();
        }
        
        for (uint256 i = 0; i < _tokens.length; i++) {
            if(_cType[i]) {
                IERC1155 tokenContract = IERC1155(_tokenContract[i]);
                uint256 _userTokenBalance = tokenContract.balanceOf(_account, _tokens[i]);
                if (_userTokenBalance < _amounts[i]) {
                    return false;
                }
            } else {
                IERC721 tokenContract = IERC721(_tokenContract[i]);
                address _tokenOwner = tokenContract.ownerOf(_tokens[i]);
                if (msg.sender != _tokenOwner) {
                    return false;
                }
            }
        }
        
        return true;
    }
}
// File: contracts/EasyInit.sol


pragma solidity ^0.8.20;



abstract contract EasyInit is Admins {
    string public name;
    string public symbol;
    uint256 public collectionEndID;

    constructor(address _newOwner) Admins(_newOwner){}

    /**
    @dev Returns the total number of tokens within the collection.
    */
    function totalSupply() public view virtual returns(uint256) {
        return collectionEndID;
    }

    /**
    @dev Allows admin to update the collectionEndID which is used to determine the end of the initial collection of NFTs.
    @param _newcollectionEndID The new collectionEndID to set.
    */
    function updateCollectionEndID(uint _newcollectionEndID) external virtual onlyAdmins {
        collectionEndID = _newcollectionEndID;
    }
}

// File: contracts/EasyBatcher.sol


pragma solidity ^0.8.20;



abstract contract EasyBatcher is EasyInit {
    using EasyLibrary for *;
    EasyLibrary.Batch[] public batchData;

    error DateAlreadyPast();
    error BatchOutOfRange();
    error MinMaxFlipped();

    constructor(){}

    function batchExists(uint _batchID) internal virtual {
        if (_batchID >= batchData.length) {
            revert BatchOutOfRange();
        }
    }

    /**
    @notice Creates a new batch of tokens with the specified parameters and adds it to the batch data.
    @param _newBatch The Batch struct containing the configuration details for the new batch.
    @dev This function can only be called by administrators.
    */
    function createBatch(EasyLibrary.Batch calldata _newBatch) public virtual onlyAdmins {
        //create a batch and push it to EasyLibrary.Batch[] public batchData;
        batchData.push(_newBatch);
    }

    /**
    @dev Admin can set the state of an OPTION for a batch.
    @param _option The OPTION to set the state of:
    0 = Set the PAUSED state of a batch.
    1 = Set the REVEALED state.
    2 = Set the USING ROLLS state allowing Mints to pick a roll randomly within a set range.
    3 = Set the MINT IN ORDER state.     
    4 = Set the BIND on mint state. Note: Bound tokens cannot be moved once minted.
    //5 = Set the PRESALE state.
    6 = Set ROLL SWAP ALLOW state.
    @param _state The new state of the option:
    true = revealed, on
    false = hidden, off
    @param _fromBatch The batch ID to update the state for.
    */
    function setStateOf(uint _option, bool _state, uint _fromBatch) public virtual onlyAdmins {
        if(_option == 0){
            batchData[_fromBatch].bPaused = _state;
        } else if(_option == 1){
            batchData[_fromBatch].bRevealed = _state;
        } else if(_option == 2){
            batchData[_fromBatch].bRollInUse = _state;
        } else if(_option == 3){
            batchData[_fromBatch].bMintInOrder = _state;
        } else if(_option == 4){
            batchData[_fromBatch].bBindOnMint = _state;
        // } else if(_option == 5){
        //     presaleBatch[_fromBatch] = _state;
        } else if(_option == 6){
            batchData[_fromBatch].bRollSwapAllow = _state;
        }
    }

    /**
    @dev Allows an admin to set a start date for minting tokens for a specific batch.
    Tokens can only be minted after this date has passed.
    @param _batch The ID of the batch to set the mint date for.
    @param _unixDate The Unix timestamp for the start date of minting.
    @notice The Unix timestamp must be in the future, otherwise the function will revert.
    */
    function setMintDate(uint256 _batch, uint _unixDate) public virtual onlyAdmins {
        batchExists(_batch);
        if (_unixDate <= block.timestamp) {
            revert DateAlreadyPast();
        }
        batchData[_batch].bMintStartDate = _unixDate;
    }

    /**
    @dev Sets the batch range and ID of the next token to be minted.
    @param _bRangeNext uint array [start_ID, end_ID, nextIDToMint].
    @param _fromBatch uint batch ID of the batch to edit.
    Requirements:
    Only accessible by admins.
    */
    function setBatchRangeNext(uint[3] memory _bRangeNext, uint _fromBatch) external virtual onlyAdmins {
        batchData[_fromBatch].bRangeNext = _bRangeNext;
    }

    /**
    @dev Admin can set the new public or presale cost for a specific batch in WEI. The cost is denominated in wei,
    where 1 ETH = 10^18 WEI. To convert ETH to WEI and vice versa, use a tool such as https://etherscan.io/unitconverter.
    @param _isRollCost bool indicating if setting a roll or batch cost.
    @param _newCost uint256 indicating the new cost for the batch in WEI.
    @param _fromBatch uint indicating the ID of the batch to which the new cost applies.
    Note:
    This also sets the batchNextCost to the new cost so if a setCostNextOnTrigger was set it will need to be reset again.
    Requirements:
    Only accessible by admins.
    */
    function setCost(bool _isRollCost, uint256 _newCost, uint _fromBatch) public virtual onlyAdmins {
        if (!_isRollCost) {
            batchData[_fromBatch].bCost = _newCost;
            batchData[_fromBatch].bNextCost = _newCost;
        } else {
            batchData[_fromBatch].bRollCost = _newCost;
        }
    }

    /**
    @dev Sets the cost for the next mint after a specific token is minted in a batch.
    Only accessible by admins.
    */
    function setCostNextOnTrigger(uint256 _nextCost, uint _triggerPointID, uint _fromBatch) public virtual onlyAdmins {
        batchData[_fromBatch].bTriggerPoint = _triggerPointID;
        batchData[_fromBatch].bNextCost = _nextCost;
    }

    /**
    @dev Allows the contract admin to set the requirement tokens and their corresponding amounts for a specific batch ID.
    @param _batchID The ID of the batch for which the requirement tokens and amounts will be set.
    @param _requiredIDS An array of token IDs that are required to be owned in order to aquire tokens from a batch.
    @param _amounts An array of amounts indicating how many of each token ID in `_requiredIDS` are required.
    @param _tAddress is the token address for each ID specified in _requiredIDS.
    */
    function setRequirementTokens(uint _batchID, uint[] calldata _requiredIDS, uint[] calldata _amounts, address[] calldata _tAddress,  bool[] calldata _tContractType) external virtual onlyAdmins {
        batchExists(_batchID);
        batchData[_batchID].bRequirementTokens = _requiredIDS;
        batchData[_batchID].bRequirementAmounts = _amounts;
        batchData[_batchID].bRequirementAddresses = _tAddress;
        batchData[_batchID].bRequirementContractType = _tContractType;
    }

    /**
    @dev Sets the minimum and maximum values for the roll limit for a given batch _fromBatch.
    @param _min The minimum value of the roll limit (excluded).
    @param _max The maximum value of the roll limit (included).
    @param _fromBatch The ID of the batch to set the roll limit for.
    */
    function rollLimitSet(uint _min, uint _max, uint _fromBatch) external virtual onlyAdmins {
        if(_min > _max) {
            revert MinMaxFlipped();
        }
        batchData[_fromBatch].bRollRange = [_min, _max];
    }

    /**
    @dev Allows admin to set the supplies or mint limit for a batch.
    @param _isSupplies The flag is supplies or mint limit.
    @param _value The new value to set.
    @param _fromBatch The index of the batch to set the value for.
    */
    function setSuppliesOrLimit(bool _isSupplies, uint256 _value, uint256 _fromBatch) public virtual onlyAdmins {
        if(!_isSupplies) {
            batchData[_fromBatch].bLimit = _value;
        } else {
            batchData[_fromBatch].bSupply = _value;
        }
    }

    function getFixedArrayFromBatch(uint _option, uint _batchID) external view returns (string memory) {
        if (_option == 0) {
            return string(abi.encodePacked("[", Strings.toString(batchData[_batchID].bRangeNext[0]), ",", Strings.toString(batchData[_batchID].bRangeNext[1]), ",", Strings.toString(batchData[_batchID].bRangeNext[2]), "]"));
        }
        else if (_option == 1) {
            return string(abi.encodePacked("[", batchData[_batchID].bURI[0], ",", batchData[_batchID].bURI[1], "]"));
        } 
        else if (_option == 8) {
            return string(abi.encodePacked("[", Strings.toString(batchData[_batchID].bRollRange[0]), ",", Strings.toString(batchData[_batchID].bRollRange[1]), "]"));
        } 
        
        return "";
    }

    function getArrayFromBatch(uint _option, uint _batchID) external view returns (uint[] memory) {
        if (_option == 16) {
            return batchData[_batchID].bRequirementTokens;
        }
        else if (_option == 17) {
            return batchData[_batchID].bRequirementAmounts;
        }

        return new uint[](0);
    }

    function getAddressArrayFromBatch(uint _option, uint _batchID) external view returns (address[] memory) {
        if (_option == 18) {
            return batchData[_batchID].bRequirementAddresses;
        }

        return new address[](0);
    }

    function getBoolArrayFromBatch(uint _option, uint _batchID) external view returns (bool[] memory) {
        if (_option == 19) {
            return batchData[_batchID].bRequirementContractType;
        }

        return new bool[](0);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


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

pragma solidity ^0.8.20;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.20;








/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 */
abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors {
    using Arrays for uint256[];
    using Arrays for address[];

    mapping(uint256 id => mapping(address account => uint256)) private _balances;

    mapping(address account => mapping(address operator => bool)) private _operatorApprovals;

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

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

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

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

    /**
     * @dev See {IERC1155-balanceOf}.
     */
    function balanceOf(address account, uint256 id) public view virtual returns (uint256) {
        return _balances[id][account];
    }

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeTransferFrom(from, to, id, value, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeBatchTransferFrom(from, to, ids, values, data);
    }

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from` (or `to`) is the zero address.
     *
     * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received}
     *   or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value.
     * - `ids` and `values` must have the same length.
     *
     * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead.
     */
    function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual {
        if (ids.length != values.length) {
            revert ERC1155InvalidArrayLength(ids.length, values.length);
        }

        address operator = _msgSender();

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids.unsafeMemoryAccess(i);
            uint256 value = values.unsafeMemoryAccess(i);

            if (from != address(0)) {
                uint256 fromBalance = _balances[id][from];
                if (fromBalance < value) {
                    revert ERC1155InsufficientBalance(from, fromBalance, value, id);
                }
                unchecked {
                    // Overflow not possible: value <= fromBalance
                    _balances[id][from] = fromBalance - value;
                }
            }

            if (to != address(0)) {
                _balances[id][to] += value;
            }
        }

        if (ids.length == 1) {
            uint256 id = ids.unsafeMemoryAccess(0);
            uint256 value = values.unsafeMemoryAccess(0);
            emit TransferSingle(operator, from, to, id, value);
        } else {
            emit TransferBatch(operator, from, to, ids, values);
        }
    }

    /**
     * @dev Version of {_update} that performs the token acceptance check by calling {IERC1155Receiver-onERC1155Received}
     * or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it contains code (eg. is a smart contract
     * at the moment of execution).
     *
     * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any
     * update to the contract state after this function would break the check-effect-interaction pattern. Consider
     * overriding {_update} instead.
     */
    function _updateWithAcceptanceCheck(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal virtual {
        _update(from, to, ids, values);
        if (to != address(0)) {
            address operator = _msgSender();
            if (ids.length == 1) {
                uint256 id = ids.unsafeMemoryAccess(0);
                uint256 value = values.unsafeMemoryAccess(0);
                _doSafeTransferAcceptanceCheck(operator, from, to, id, value, data);
            } else {
                _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, values, data);
            }
        }
    }

    /**
     * @dev Transfers a `value` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `value` amount.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, to, ids, values, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     * - `ids` and `values` must have the same length.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, to, ids, values, data);
    }

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

    /**
     * @dev Creates a `value` amount of tokens of type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address to, uint256 id, uint256 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory values, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev Destroys a `value` amount of tokens of type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     */
    function _burn(address from, uint256 id, uint256 value) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     * - `ids` and `values` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the zero address.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC1155InvalidOperator(address(0));
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Performs an acceptance check by calling {IERC1155-onERC1155Received} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 value,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Performs a batch acceptance check by calling {IERC1155-onERC1155BatchReceived} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Creates an array in memory with only one value for each of the elements provided.
     */
    function _asSingletonArrays(
        uint256 element1,
        uint256 element2
    ) private pure returns (uint256[] memory array1, uint256[] memory array2) {
        /// @solidity memory-safe-assembly
        assembly {
            // Load the free memory pointer
            array1 := mload(0x40)
            // Set array length to 1
            mstore(array1, 1)
            // Store the single element at the next word after the length (where content starts)
            mstore(add(array1, 0x20), element1)

            // Repeat for next array locating it right after the first array
            array2 := add(array1, 0x40)
            mstore(array2, 1)
            mstore(add(array2, 0x20), element2)

            // Update the free memory pointer by pointing after the second array
            mstore(0x40, add(array2, 0x40))
        }
    }
}

// File: contracts/EasyMintLogic.sol


pragma solidity ^0.8.20;




abstract contract EasyMintLogic is ERC1155, EasyBatcher {
    using EasyLibrary for *;
    uint256 public maxMintAmount;
    uint256 public randomCounter;

    bool public paused = true;

    mapping(uint256 => uint256) public currentSupply;
    mapping(uint256 => bool) public createdToken;

    mapping(address => mapping(uint256 => uint256)) public walletMinted;
    mapping(uint256 => string) public roll;

    bool tiersInUse;
    bool onlyTiers;
    EasyLibrary.Tier[] public tiers;
    string public tierURI;
    mapping(address => mapping(uint256 => uint256)) public tierMinted;

    error SkewedArrays();
    error InvalidMintType();
    error IncorrectBatch();
    error InvalidAmount();
    error InvalidID();
    error FailedMintCheck();
    error Paused();
    error NotMintDate();
    error Limited();
    error InsufficientFunds();
    error OutOfStock();
    error NotListed();

    constructor() ERC1155(""){}

    function checkMintType(uint _fromBatch, bool _beState) internal view virtual {
        if ((!_beState && batchData[_fromBatch].bMintInOrder) || (_beState && !batchData[_fromBatch].bMintInOrder)) {
            revert InvalidMintType();
        }
    }

    function checkAmounts(uint _minAmount, uint _maxAmount) internal view virtual {
        if (_minAmount > _maxAmount || _minAmount <= 0) {
            revert InvalidAmount();
        }
    }

     /**
    @dev Admin can set the PAUSE state for all or just a batch.
    @param _pauseAll Whether to pause all batches.
    @param _fromBatch The ID of the batch to pause.
    @param _state Whether to set the batch or all batches as paused or unpaused.
    true = closed to Admin Only
    false = open for Presale or Public
    */
    function pause(bool _pauseAll, uint _fromBatch, bool _state) public virtual onlyAdmins {
        if(_pauseAll){
            paused = _state;
        }
        else{
            setStateOf(0, _state, _fromBatch);
        }
    }

    function setTierUse(bool _inUse, bool _onlyUse) public virtual onlyAdmins {
        tiersInUse = _inUse;
        onlyTiers = _onlyUse;
    }

    /**
    @dev Returns the cost for minting a token from the specified batch ID.
    If the caller is not an Admin, the function will return the presale cost if the batch is a presale batch,
    otherwise it will return the regular batch cost. If the caller is an Admin, the function will return 0.
    */
    function _cost(uint _batchID, bool _onTierList, uint8 _tID) public view virtual returns(uint256){
        if (!checkIfAdmin()) {
            if(_onTierList){
                return tiers[_tID].tCost;
            }
            
            return batchData[_batchID].bCost;
        }
        return 0;
    }

    function checkOut(uint _amount, uint _batchID, bytes32[] calldata proof) private {
        if (!checkIfAdmin()) {
            if(paused || batchData[_batchID].bPaused) {
                revert Paused();
            }

            if (batchData[_batchID].bMintStartDate > 0) {
                if(block.timestamp < batchData[_batchID].bMintStartDate) {
                    revert NotMintDate();
                }
            }

            if(batchData[_batchID].bLimit != 0){
                if(walletMinted[msg.sender][_batchID] + _amount > batchData[_batchID].bLimit) {
                    revert Limited();
                }
                walletMinted[msg.sender][_batchID] += _amount;
            }

            (bool _onTierList, uint8 _tID) = isValidTier(proof, keccak256(abi.encodePacked(msg.sender)));
            if(_onTierList){
                if (tiers[_tID].tLimit != 0) {
                    if (tierMinted[msg.sender][_tID] + _amount <= tiers[_tID].tLimit) {
                        tierMinted[msg.sender][_tID] += _amount;
                    } else if (_tID < tiers.length - 1) {
                        _tID++;
                    }
                }
            } else {
                if(onlyTiers){
                    revert NotListed();
                }
            }
            
            if(msg.value < (_amount * _cost(_batchID, _onTierList, _tID))) {
                revert InsufficientFunds();
            }
        }
    }

    function checkOutScan(uint _id, uint _fromBatch) private{
        if (!exists(_id)) {
            createdToken[_id] = true;
            if(batchData[_fromBatch].bMintInOrder){
                currentSupply[_id] = 1;
            }
        }

        if(batchData[_fromBatch].bRollInUse){
            roll[_id] = randomRoll(_fromBatch);
        }

        if(batchData[_fromBatch].bCost != batchData[_fromBatch].bNextCost && batchData[_fromBatch].bRangeNext[2] >= batchData[_fromBatch].bTriggerPoint){
            batchData[_fromBatch].bCost = batchData[_fromBatch].bNextCost;
        }
        randomCounter++;
    }

    /**
    @dev Allows Admins, Whitelisters, and Public to mint NFTs in order from a collection batch.
    Admins can call this function even while the contract is paused.
    @param _to The address to mint the NFTs to.
    @param _numberOfTokensToMint The number of tokens to mint from the batch in order.
    @param _fromBatch The batch to mint the NFTs from.
    @param proof An array of Merkle tree proofs to validate the mint.
    */
    function _mintInOrder(address _to, uint _numberOfTokensToMint, uint _fromBatch, bytes32[] calldata proof) public virtual payable {
        checkMintType(_fromBatch, true);
        if(exists(batchData[_fromBatch].bRangeNext[1])) {
            revert OutOfStock();
        }
        if (_fromBatch >= batchData.length) {
            revert BatchOutOfRange();
        }
        checkAmounts(_numberOfTokensToMint + batchData[_fromBatch].bRangeNext[2] - 1, batchData[_fromBatch].bRangeNext[1]);

        checkOut(_numberOfTokensToMint, _fromBatch, proof);
        
        _mintBatchTo(_to, _numberOfTokensToMint, _fromBatch);
    }

    function _mintBatchTo(address _to, uint _numberOfTokensToMint, uint _fromBatch)private {
        uint256[] memory _ids = new uint256[](_numberOfTokensToMint);
        uint256[] memory _amounts = new uint256[](_numberOfTokensToMint);
        for (uint256 i = 0; i < _numberOfTokensToMint; i++) {
            uint256 _id = batchData[_fromBatch].bRangeNext[2];
            if(!canMintChecker(_id, 1, _fromBatch)) {
                revert FailedMintCheck();
            }
            
            checkOutScan(_id, _fromBatch);

            _ids[i] = batchData[_fromBatch].bRangeNext[2];
            _amounts[i] = 1;
            batchData[_fromBatch].bRangeNext[2]++;
        }
        
        _mintBatch(_to, _ids, _amounts, "");
    }

    /**
    @dev Allows Owner, Whitelisters, and Public to mint a single NFT with the given _id, _amount, and _fromBatch parameters for the specified _to address.
    @param _to The address to mint the NFT to.
    @param _id The ID of the NFT to mint.
    @param _amount The amount of NFTs to mint.
    @param _fromBatch The batch end ID that the NFT belongs to.
    @param proof The Merkle proof verifying the ownership of the tokens being minted.
    Requirements:
    - mintInOrder[_fromBatch] must be false.
    - _id must be within the batch specified by _fromBatch.
    - The total number of NFTs being minted across all batches cannot exceed maxMintAmount.
    - If the caller is not an admin, the contract must not be paused and the batch being minted from must not be paused.
    - The caller must have a valid Merkle proof for the tokens being minted.
    - The amount of tokens being minted must satisfy the canMintChecker function.
    - The ID being minted must not have reached its max supply.
    */
    function mint(address _to, uint _id, uint _amount, uint _fromBatch, bytes32[] calldata proof) public virtual payable {
        checkMintType(_fromBatch, false);
        if(!canMintChecker(_id, _amount, _fromBatch)) {
            revert FailedMintCheck();
        }

        checkOut(_amount, _fromBatch, proof);

        checkOutScan(_id, _fromBatch);
        currentSupply[_id] += _amount;
        
        _mint(_to, _id, _amount, "");
    }

    function canMintChecker(uint _id, uint _amount, uint _fromBatch) private view returns(bool){
        if(_id < batchData[_fromBatch].bRangeNext[0] || _id > batchData[_fromBatch].bRangeNext[1]) {
            revert IncorrectBatch();
        }
        checkAmounts(_amount, maxMintAmount);
        if(_id > collectionEndID) {
            revert InvalidID();
        }

        // checks if the id exceeded it's max supply limit that each id in the batch is assigned
        if(batchData[_fromBatch].bSupply != 0 && currentSupply[_id] + _amount > batchData[_fromBatch].bSupply){
            // CANNOT MINT 
            return false;
        }

        // checks if the batch (other than the original) that the id resides in needs requirement token(s)
        if(batchData[_fromBatch].bRequirementTokens.length > 0){
            if(EasyLibrary.hasSufficientTokens(batchData[_fromBatch].bRequirementAddresses, msg.sender, batchData[_fromBatch].bRequirementTokens, batchData[_fromBatch].bRequirementAmounts, batchData[_fromBatch].bRequirementContractType)){
                //CANNOT MINT: DOES NOT HAVE REQUIREMENT TOKEN(S) AMOUNTS
                return false;
            }
        }

        // CAN MINT
        return true;
    }

    /**
    @dev Allows Owner, Whitelisters, and Public to mint multiple NFTs at once, given a list of token IDs, their corresponding amounts,
    and the batch from which they are being minted. Checks if the caller has the required permissions and if the maximum allowed mint
    amount and maximum allowed batch mint amount are not exceeded. Also verifies that the specified token IDs are in the given batch,
    and that the caller has passed a valid proof of a transaction to checkOut.
    */
    function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts, uint _fromBatch, bytes32[] calldata proof) public virtual payable {
        checkMintType(_fromBatch, false);
        checkAmounts(_ids.length, maxMintAmount);
        if(_ids.length != _amounts.length) {
            revert SkewedArrays();
        }
        if(!canMintBatchChecker(_ids, _amounts, _fromBatch)) {
            revert FailedMintCheck();
        }

        uint256 _totalBatchAmount;
        for (uint256 i = 0; i < _amounts.length; i++) {
            _totalBatchAmount += _amounts[i];
        }
        if(_totalBatchAmount <= maxMintAmount) {
            revert Limited();
        }

        checkOut(_totalBatchAmount, _fromBatch, proof);

        for (uint256 k = 0; k < _ids.length; k++) {
            uint256 _id = _ids[k];
            checkOutScan(_id, _fromBatch);
            currentSupply[_ids[k]] += _amounts[k];
        }

        _mintBatch(_to, _ids, _amounts, "");
    }

    function canMintBatchChecker(uint[] memory _ids, uint[] memory _amounts, uint _fromBatch)private view returns(bool){
        for (uint256 i = 0; i < _ids.length; i++) {
            uint256 _id = _ids[i];
            uint256 _amount = _amounts[i];
            if(!canMintChecker(_id, _amount, _fromBatch)){
                // CANNOT MINT
                return false;
            }
        }

        return true;
    }

    /**
    @dev Allows User to DESTROY multiple tokens they own.
    */
    function burnBatch(uint[] memory _ids, uint[] memory _amounts) external virtual{
        _burnBatch(msg.sender, _ids, _amounts);
    }

    function randomRoll(uint _fromBatch) internal view virtual returns (string memory){
        return EasyLibrary.randomRoll(
            uint256(keccak256(abi.encodePacked(
                block.timestamp,
                block.prevrandao,
                msg.sender,
                randomCounter,
                roll[randomCounter - 1])
            )),
            randomCounter,
            batchData[_fromBatch].bRollRange[1],
            batchData[_fromBatch].bRollRange[0]
        );
    }

    /**
    @dev Sets the roll for a given token.
    @param _id The token ID.
    @param _roll The value of the roll.
    @param _fromBatch The ID of the batch to set the roll limit for.
    */
    function rollSet(uint256 _id, uint _roll, uint _fromBatch) public virtual payable {
        if (!checkIfAdmin()) {
            EasyLibrary.validateRoll(_roll, batchData[_fromBatch].bRollSwapAllow, batchData[_fromBatch].bRollRange[0], batchData[_fromBatch].bRollRange[1], balanceOf(msg.sender, _id), batchData[_fromBatch].bRollCost);
        }
        roll[_id] = Strings.toString(_roll);
    }

    /**
    @dev Returns the total number of tokens with a given ID that have been minted.
    @param _id The ID of the token.
    @return total number of tokens with the given ID.
    */
    function totalSupplyOfID(uint256 _id) public view virtual returns(uint256) {
        return currentSupply[_id];
    }

    /**
    @dev Returns true if a token with the given ID exists, otherwise returns false.
    @param _id The ID of the token.
    @return bool indicating whether the token with the given ID exists.
    */
    function exists(uint256 _id) public view virtual returns(bool) {
        return createdToken[_id];
    }

    /**
    @dev Returns the maximum supply of a token with the given ID.
    @param _batchID The ID of the batch.
    @return maximum supply of any token from batch. If it is 0, the supply is limitless.
    */
    function checkMaxSupply(uint256 _batchID) public view virtual returns(uint256) {
        return batchData[_batchID].bSupply;
    }

    /**
    @dev Allows admin to set the maximum amount of NFTs a user can mint in a single session.
    @param _newmaxMintAmount The new maximum amount of NFTs a user can mint in a single session.
    */
    function setMaxMintAmount(uint256 _newmaxMintAmount) public virtual onlyAdmins {
        maxMintAmount = _newmaxMintAmount;
    }

    /**
    * @dev Validates what tier a user is on for the Tierlist.
    */
    function isValidTier(bytes32[] calldata proof, bytes32 leaf) public view virtual returns (bool, uint8) {
        if (tiersInUse) {
            return EasyLibrary.validateTier(proof, leaf, tiers);
        }
        return (false, 0);
    }

    /**
    @dev Sets a new tier with the provided parameters or updates an existing tier.
    @param _create If true, creates a new tier with the provided parameters. If false, updates an existing tier.
    @param _tID The ID of the tier to be updated. Only applicable if _create is false.
    @param _tLimit The mint limit of the new tier or updated tier.
    @param _tCost The cost of the new tier or updated tier.
    @param _tRoot The Merkle root of the new tier or updated tier.
    Requirements:
    - Only admin addresses can call this function.
    - If _create is false, the ID provided must correspond to an existing tier.
    */
    function setTier(bool _create, uint8 _tID, uint256 _tLimit, uint256 _tCost, bytes32 _tRoot) external virtual onlyAdmins {
        // Define a new Tier struct with the provided cost and Merkle root.
        EasyLibrary.Tier memory newTier = EasyLibrary.Tier(
            _tLimit,
            _tCost,
            _tRoot
        );
        
        if(_create){
            // If _create is true, add the new tier to the end of the tiers array.
            tiers.push(newTier);
        }
        else{
            // If _create is false, update the existing tier at the specified ID.
            if(tiers.length <= 0 || _tID >= tiers.length) {
                revert InvalidID();
            }
            tiers[_tID] = newTier;
        }
    }
}

// File: contracts/CCPCyborgs.sol


pragma solidity ^0.8.20;




/// @author developer's website 🐸 https://www.halfsupershop.com/ 🐸
contract CCPCyborgs is EasyMintLogic {
    using EasyLibrary for *;
    string private hiddenURI;
    mapping(uint => string) private tokenToURI;

    address payable public payments;

    mapping(uint256 => bool) public flagged; //flagged tokens cannot be moved
    mapping(address => bool) public restricted; //restricted addresses cannot move tokens

    error Flagged();
    error Restricted();
    /* 
    address(0) = 0x0000000000000000000000000000000000000000
    */

    constructor() EasyInit(msg.sender){
        name = "Crypto Cloud Punks Cyborgs";
        symbol = "CCPCY";
    }

    /**
    @dev Sets the URI for a token or batch of tokens.
    @param _hidden Flag to determine if the URI should be set as the hidden URI.
    @param _tier Flag to determine if the URI should be set as the tier URI.
    @param _isBatch Flag to determine if a batch of tokens is being modified.
    @param _id ID of the token or batch of tokens being modified.
    @param _uriPS[] The new URI to be set 0 = Prefix, 1 = Suffix.
    */
    function setURI(bool _hidden, bool _tier, bool _isBatch, uint _id, string[2] memory _uriPS) external onlyAdmins {
        if (_hidden) {
            hiddenURI = _uriPS[0];
            return;
        }

        if (_tier) {
            tierURI = _uriPS[0];
            return;
        }

        if (!_isBatch) {
            tokenToURI[_id] = _uriPS[0];
            emit URI(_uriPS[0], _id);
        }
        else{
            //modify Batch URI
            batchData[_id].bURI = _uriPS;
        }
    }

    /**
    @dev Returns the URI for a given token ID. If the token is a collection,
    the URI may be batched. If the token batch has roll enabled, it will have
    a random roll id. If the token is not found, the URI defaults to a hidden URI.
    @param _id uint256 ID of the token to query the URI of
    @return string representing the URI for the given token ID
    */
    function uri(uint256 _id) override public view returns (string memory) {
        // Check if token is created
        if (!createdToken[_id] || _id > collectionEndID) {
            // Not found, default to hidden
            return hiddenURI;
        }

        // Check if URI is set for the token
        if (bytes(tokenToURI[_id]).length > 0) {
            return tokenToURI[_id];
        }

        // Iterate through batch IDs
        for (uint256 i = 0; i < batchData.length; i++) {
            if (_id >= batchData[i].bRangeNext[0] && _id <= batchData[i].bRangeNext[1]) {
                if (!batchData[i].bRevealed) {
                    return hiddenURI;
                }

                // Check if the token has a roll
                if (bytes(roll[_id]).length > 0) {
                    return string(abi.encodePacked(batchData[i].bURI[0], roll[_id], "/", Strings.toString(_id), batchData[i].bURI[1]));
                }

                // Token doesn't have a roll
                return string(abi.encodePacked(batchData[i].bURI[0], Strings.toString(_id), batchData[i].bURI[1]));
            }
        }

        // Token is beyond the last batch, return hidden URI
        return hiddenURI;
    }

    /**
    @dev Allows admin to set the payout address for the contract.
    @param _address The new payout address to set.
    Note: address can be a wallet or a payment splitter contract
    */
    function setPayoutAddress(address _address) external onlyOwner{
        payments = payable(_address);
    }

    /**
    @dev Admin can withdraw the contract's balance to the specified payout address.
    The `payments` address must be set before calling this function.
    The function will revert if `payments` address is not set or the transaction fails.
    */
    function withdraw() public onlyAdmins {
        require(payments != address(0), "Payout address not set");

        uint256 balance = address(this).balance;
        require(balance > 0, "No funds to withdraw");

        // Splitter
        (bool success, ) = payable(payments).call{ value: balance }("");
        require(success, "Withdrawal failed");
    }

    /**
    @dev Auto send funds to the payout address.
    Triggers only if funds were sent directly to this address.
    */
    receive() external payable {
        require(payments != address(0), "Payment address not set");
        uint256 payout = msg.value;
        payments.transfer(payout);
    }

    /**
    * @dev Owner or Project Leader can set the restricted state of an address.
    * Note: Restricted addresses are banned from moving tokens.
    */
    function restrictAddress(address _user, bool _state) external {
        require(msg.sender == owner() || msg.sender == projectLeader, "NOoPL");
        restricted[_user] = _state;
    }

    /**
    * @dev Owner or Project Leader can set the flag state of a token ID.
    * Note: Flagged tokens are locked and untransferable.
    */
    function flagID(uint256 _id, bool _state) external {
        require(msg.sender == owner() || msg.sender == projectLeader, "NOoPL");
        flagged[_id] = _state;
    }

    /**
    * @dev Check if an ID is in a bind on mint batch.
    */
    function bindOnMint(uint _id) public view returns(bool){
        uint256 _batchID;
        if (batchData.length > 0) {
            for (uint256 i = 0; i < batchData.length; i++) {
                if (_id >= batchData[i].bRangeNext[0] && _id <= batchData[i].bRangeNext[1]) {
                    _batchID = i;
                }
            }
            return batchData[_batchID].bBindOnMint;
        }
        return false;
    }

    /**
    * @dev Hook that is called for any token transfer. 
    * This includes minting and burning, as well as batched variants.
    */
    function _update(address from, address to, uint256[] memory ids, uint256[] memory amounts) internal virtual override {
        // ... before action here ...
        if (restricted[from] || restricted[to]) {
            revert Restricted();
        }

        for (uint256 i = 0; i < ids.length; i++) {
            if (flagged[ids[i]]) {
                revert Flagged(); //reverts if a token has been flagged
            }
        }
        
        super._update(from, to, ids, amounts); // Call parent hook

        // ... after action here ...
        for (uint256 i = 0; i < ids.length; i++) {
            if (bindOnMint(ids[i])) {
                flagged[ids[i]] = true;
            }

            if (to == address(0)) {
                //burned tokens
                uint256 _id = ids[i];
                currentSupply[_id] -= amounts[i];
            }
        }   
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AdminsUnauthorizedAccount","type":"error"},{"inputs":[],"name":"BatchOutOfRange","type":"error"},{"inputs":[],"name":"DateAlreadyPast","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[],"name":"FailedMintCheck","type":"error"},{"inputs":[],"name":"Flagged","type":"error"},{"inputs":[],"name":"IncorrectBatch","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidID","type":"error"},{"inputs":[],"name":"InvalidMintType","type":"error"},{"inputs":[],"name":"Limited","type":"error"},{"inputs":[],"name":"MinMaxFlipped","type":"error"},{"inputs":[],"name":"NotListed","type":"error"},{"inputs":[],"name":"NotMintDate","type":"error"},{"inputs":[],"name":"OutOfStock","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Paused","type":"error"},{"inputs":[],"name":"Restricted","type":"error"},{"inputs":[],"name":"SkewedArrays","type":"error"},{"inputs":[],"name":"SkewedArrays","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousLead","type":"address"},{"indexed":true,"internalType":"address","name":"newLead","type":"address"}],"name":"ProjectLeaderTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"_batchID","type":"uint256"},{"internalType":"bool","name":"_onTierList","type":"bool"},{"internalType":"uint8","name":"_tID","type":"uint8"}],"name":"_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokensToMint","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"_mintInOrder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"admins","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batchData","outputs":[{"internalType":"bool","name":"bRevealed","type":"bool"},{"internalType":"bool","name":"bPaused","type":"bool"},{"internalType":"bool","name":"bBindOnMint","type":"bool"},{"internalType":"bool","name":"bMintInOrder","type":"bool"},{"internalType":"bool","name":"bRollSwapAllow","type":"bool"},{"internalType":"bool","name":"bRollInUse","type":"bool"},{"internalType":"uint256","name":"bRollCost","type":"uint256"},{"internalType":"uint256","name":"bCost","type":"uint256"},{"internalType":"uint256","name":"bLimit","type":"uint256"},{"internalType":"uint256","name":"bSupply","type":"uint256"},{"internalType":"uint256","name":"bTriggerPoint","type":"uint256"},{"internalType":"uint256","name":"bNextCost","type":"uint256"},{"internalType":"uint256","name":"bMintStartDate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"bindOnMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkIfAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchID","type":"uint256"}],"name":"checkMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionEndID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[3]","name":"bRangeNext","type":"uint256[3]"},{"internalType":"string[2]","name":"bURI","type":"string[2]"},{"internalType":"bool","name":"bRevealed","type":"bool"},{"internalType":"bool","name":"bPaused","type":"bool"},{"internalType":"bool","name":"bBindOnMint","type":"bool"},{"internalType":"bool","name":"bMintInOrder","type":"bool"},{"internalType":"bool","name":"bRollSwapAllow","type":"bool"},{"internalType":"bool","name":"bRollInUse","type":"bool"},{"internalType":"uint256[2]","name":"bRollRange","type":"uint256[2]"},{"internalType":"uint256","name":"bRollCost","type":"uint256"},{"internalType":"uint256","name":"bCost","type":"uint256"},{"internalType":"uint256","name":"bLimit","type":"uint256"},{"internalType":"uint256","name":"bSupply","type":"uint256"},{"internalType":"uint256","name":"bTriggerPoint","type":"uint256"},{"internalType":"uint256","name":"bNextCost","type":"uint256"},{"internalType":"uint256","name":"bMintStartDate","type":"uint256"},{"internalType":"uint256[]","name":"bRequirementTokens","type":"uint256[]"},{"internalType":"uint256[]","name":"bRequirementAmounts","type":"uint256[]"},{"internalType":"address[]","name":"bRequirementAddresses","type":"address[]"},{"internalType":"bool[]","name":"bRequirementContractType","type":"bool[]"}],"internalType":"struct EasyLibrary.Batch","name":"_newBatch","type":"tuple"}],"name":"createBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"createdToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"flagID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"flagged","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"uint256","name":"_batchID","type":"uint256"}],"name":"getAddressArrayFromBatch","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"uint256","name":"_batchID","type":"uint256"}],"name":"getArrayFromBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"uint256","name":"_batchID","type":"uint256"}],"name":"getBoolArrayFromBatch","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"uint256","name":"_batchID","type":"uint256"}],"name":"getFixedArrayFromBatch","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidTier","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","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":"bool","name":"_pauseAll","type":"bool"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectLeader","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"restrictAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"roll","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"rollLimitSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_roll","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"rollSet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setAdmins","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":"uint256[3]","name":"_bRangeNext","type":"uint256[3]"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"setBatchRangeNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRollCost","type":"bool"},{"internalType":"uint256","name":"_newCost","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nextCost","type":"uint256"},{"internalType":"uint256","name":"_triggerPointID","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"setCostNextOnTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batch","type":"uint256"},{"internalType":"uint256","name":"_unixDate","type":"uint256"}],"name":"setMintDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"setProjectLeader","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchID","type":"uint256"},{"internalType":"uint256[]","name":"_requiredIDS","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"address[]","name":"_tAddress","type":"address[]"},{"internalType":"bool[]","name":"_tContractType","type":"bool[]"}],"name":"setRequirementTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"setStateOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSupplies","type":"bool"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_fromBatch","type":"uint256"}],"name":"setSuppliesOrLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_create","type":"bool"},{"internalType":"uint8","name":"_tID","type":"uint8"},{"internalType":"uint256","name":"_tLimit","type":"uint256"},{"internalType":"uint256","name":"_tCost","type":"uint256"},{"internalType":"bytes32","name":"_tRoot","type":"bytes32"}],"name":"setTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_inUse","type":"bool"},{"internalType":"bool","name":"_onlyUse","type":"bool"}],"name":"setTierUse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hidden","type":"bool"},{"internalType":"bool","name":"_tier","type":"bool"},{"internalType":"bool","name":"_isBatch","type":"bool"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string[2]","name":"_uriPS","type":"string[2]"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tierMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tierURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tiers","outputs":[{"internalType":"uint256","name":"tLimit","type":"uint256"},{"internalType":"uint256","name":"tCost","type":"uint256"},{"internalType":"bytes32","name":"tRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupplyOfID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcollectionEndID","type":"uint256"}],"name":"updateCollectionEndID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"walletMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805460ff191660011790553480156200001d575f80fd5b5033808060405180602001604052805f81525062000041816200011360201b60201c565b506001600160a01b0381166200007057604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200007b8162000125565b50600480546001600160a01b0319166001600160a01b03929092169190911790555060408051808201909152601a81527f43727970746f20436c6f75642050756e6b73204379626f7267730000000000006020820152600690620000e0908262000216565b50604080518082019091526005815264434350435960d81b60208201526007906200010c908262000216565b50620002de565b600262000121828262000216565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200019f57607f821691505b602082108103620001be57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000211575f81815260208120601f850160051c81016020861015620001ec5750805b601f850160051c820191505b818110156200020d57828155600101620001f8565b5050505b505050565b81516001600160401b0381111562000232576200023262000176565b6200024a816200024384546200018a565b84620001c4565b602080601f83116001811462000280575f8415620002685750858301515b5f19600386901b1c1916600185901b1785556200020d565b5f85815260208120601f198616915b82811015620002b0578886015182559484019460019091019084016200028f565b5085821015620002ce57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b615f1b80620002ec5f395ff3fe6080604052600436106103e1575f3560e01c80636c30a22f116101ff578063b4387f7f11610113578063d8d9d6bc116100a8578063ed00e65311610078578063ed00e65314610d18578063f242432a14610d2c578063f2fde38b14610d4b578063f5f59cd014610d6a578063fc2f0fd814610d89575f80fd5b8063d8d9d6bc14610c8d578063e5211d8b14610cbb578063e65d231514610cda578063e985e9c514610cf9575f80fd5b8063c622c8d1116100e3578063c622c8d114610c0e578063c6b1fe5814610c3a578063c848d6c714610c59578063ce59df8b14610c6e575f80fd5b8063b4387f7f14610b99578063b7bc15a214610bac578063c3e50ad214610bc1578063c40b3cc514610bef575f80fd5b806395d89b4111610194578063a5492f4411610164578063a5492f4414610afe578063a684c47114610b1d578063a6b431af14610b3c578063a6d23e1014610b5b578063accc1d5e14610b7a575f80fd5b806395d89b4114610a7e578063a22cb46514610a92578063a370c66814610ab1578063a4c2f65114610adf575f80fd5b80638413c6c9116101cf5780638413c6c914610a10578063881773db14610a2f5780638c0163b714610a4e5780638da5cb5b14610a61575f80fd5b80636c30a22f14610986578063715018a6146109a557806376b14935146109b957806383ca4b6f146109f1575f80fd5b80632bf4d099116102f65780634f558e791161028b5780635e114dce1161025b5780635e114dce146108df5780635fff9ad6146108fe57806366443b611461091d578063684d11f9146109485780636aec6a3714610967575f80fd5b80634f558e791461085a578063531a0155146108885780635b7460771461089b5780635c975abb146108c6575f80fd5b80634653d2cc116102c65780634653d2cc14610750578063468738631461077c57806347435153146107b25780634e1273f41461083b575f80fd5b80632bf4d099146106eb5780632eb2c2d6146106fe57806333ea51a81461071d5780633ccfd60b1461073c575f80fd5b806314bfd6d0116103775780631f7b4f30116103475780631f7b4f301461064d578063220b6a0b1461066c578063239c70ae1461068b578063281bda41146106a0578063290c7b6d146106bf575f80fd5b806314bfd6d0146105cf578063165da72a1461060657806318160ddd146106255780631acff68114610639575f80fd5b806306fdde03116103b257806306fdde031461053a578063088a4ed01461055b5780630e89341c1461057a57806314905abc14610599575f80fd5b8062fdd58e1461048057806301f611b1146104b257806301ffc9a7146104d1578063039af9eb14610500575f80fd5b3661047c576017546001600160a01b03166104435760405162461bcd60e51b815260206004820152601760248201527f5061796d656e742061646472657373206e6f742073657400000000000000000060448201526064015b60405180910390fd5b60175460405134916001600160a01b03169082156108fc029083905f818181858888f1935050505015801561047a573d5f803e3d5ffd5b005b5f80fd5b34801561048b575f80fd5b5061049f61049a36600461478d565b610da8565b6040519081526020015b60405180910390f35b3480156104bd575f80fd5b5061047a6104cc3660046147c4565b610dcf565b3480156104dc575f80fd5b506104f06104eb36600461480b565b610e35565b60405190151581526020016104a9565b34801561050b575f80fd5b5061051f61051a366004614826565b610e84565b604080519384526020840192909252908201526060016104a9565b348015610545575f80fd5b5061054e610eb5565b6040516104a9919061488a565b348015610566575f80fd5b5061047a610575366004614826565b610f41565b348015610585575f80fd5b5061054e610594366004614826565b610f4e565b3480156105a4575f80fd5b5061049f6105b336600461478d565b600f60209081525f928352604080842090915290825290205481565b3480156105da575f80fd5b506105ee6105e9366004614826565b6112b4565b6040516001600160a01b0390911681526020016104a9565b348015610611575f80fd5b506104f0610620366004614826565b6112dc565b348015610630575f80fd5b5060085461049f565b348015610644575f80fd5b5061054e6113a5565b348015610658575f80fd5b5061054e610667366004614826565b6113b2565b348015610677575f80fd5b5061047a6106863660046148aa565b6113ca565b348015610696575f80fd5b5061049f600a5481565b3480156106ab575f80fd5b5061047a6106ba3660046148f7565b611502565b3480156106ca575f80fd5b506106de6106d936600461492e565b61152e565b6040516104a99190614987565b61047a6106f9366004614999565b611643565b348015610709575f80fd5b5061047a610718366004614b2a565b611738565b348015610728575f80fd5b5061047a610737366004614bd0565b611797565b348015610747575f80fd5b5061047a6117c1565b34801561075b575f80fd5b5061076f61076a36600461492e565b6118f7565b6040516104a99190614beb565b348015610787575f80fd5b5061049f61079636600461478d565b601460209081525f928352604080842090915290825290205481565b3480156107bd575f80fd5b506107d16107cc366004614826565b611980565b604080519d15158e529b151560208e01529915159a8c019a909a5296151560608b015294151560808a015292151560a089015260c088019190915260e08701526101008601526101208501526101408401526101608301919091526101808201526101a0016104a9565b348015610846575f80fd5b506106de610855366004614c37565b611a0f565b348015610865575f80fd5b506104f0610874366004614826565b5f908152600e602052604090205460ff1690565b61047a610896366004614d39565b611ad9565b3480156108a6575f80fd5b5061049f6108b5366004614826565b600d6020525f908152604090205481565b3480156108d1575f80fd5b50600c546104f09060ff1681565b3480156108ea575f80fd5b5061047a6108f9366004614da6565b611b5f565b348015610909575f80fd5b5061049f610918366004614e8e565b611c2f565b348015610928575f80fd5b5061049f610937366004614826565b5f908152600d602052604090205490565b348015610953575f80fd5b5061047a610962366004614ecd565b611ca3565b348015610972575f80fd5b5061047a61098136600461492e565b611d87565b348015610991575f80fd5b5061047a6109a0366004614999565b611de3565b3480156109b0575f80fd5b5061047a611e3e565b3480156109c4575f80fd5b506109d86109d3366004614f92565b611e51565b60408051921515835260ff9091166020830152016104a9565b3480156109fc575f80fd5b5061047a610a0b366004614fd9565b611ef3565b348015610a1b575f80fd5b5061047a610a2a366004614999565b611efe565b348015610a3a575f80fd5b5061047a610a49366004615021565b611f6c565b61047a610a5c366004615056565b612118565b348015610a6c575f80fd5b506003546001600160a01b03166105ee565b348015610a89575f80fd5b5061054e612221565b348015610a9d575f80fd5b5061047a610aac3660046150ba565b61222e565b348015610abc575f80fd5b506104f0610acb366004614826565b60186020525f908152604090205460ff1681565b348015610aea575f80fd5b5061047a610af9366004614bd0565b612239565b348015610b09575f80fd5b5061047a610b183660046150ba565b6122ec565b348015610b28575f80fd5b506004546105ee906001600160a01b031681565b348015610b47575f80fd5b5061047a610b563660046147c4565b61236d565b348015610b66575f80fd5b506017546105ee906001600160a01b031681565b348015610b85575f80fd5b5061047a610b943660046150d6565b6123e1565b61047a610ba7366004615114565b612439565b348015610bb7575f80fd5b5061049f60085481565b348015610bcc575f80fd5b506104f0610bdb366004614826565b600e6020525f908152604090205460ff1681565b348015610bfa575f80fd5b5061047a610c093660046151a5565b6125d0565b348015610c19575f80fd5b50610c2d610c2836600461492e565b612618565b6040516104a991906151dc565b348015610c45575f80fd5b5061049f610c54366004614826565b6126b6565b348015610c64575f80fd5b5061049f600b5481565b348015610c79575f80fd5b5061054e610c8836600461492e565b6126e1565b348015610c98575f80fd5b506104f0610ca7366004614bd0565b60196020525f908152604090205460ff1681565b348015610cc6575f80fd5b5061047a610cd5366004615215565b61289c565b348015610ce5575f80fd5b5061047a610cf4366004615238565b612912565b348015610d04575f80fd5b506104f0610d133660046152b6565b612949565b348015610d23575f80fd5b506104f0612976565b348015610d37575f80fd5b5061047a610d463660046152e2565b612a28565b348015610d56575f80fd5b5061047a610d65366004614bd0565b612a87565b348015610d75575f80fd5b5061047a610d84366004614826565b612ac4565b348015610d94575f80fd5b5061047a610da3366004615345565b612ad1565b5f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b610dd7612aff565b82610e08578160098281548110610df057610df0615379565b905f5260205f209060130201600a0181905550505050565b8160098281548110610e1c57610e1c615379565b905f5260205f209060130201600b01819055505b505050565b5f6001600160e01b03198216636cdb3d1360e11b1480610e6557506001600160e01b031982166303a24d0760e21b145b80610dc957506301ffc9a760e01b6001600160e01b0319831614610dc9565b60128181548110610e93575f80fd5b5f91825260209091206003909102018054600182015460029092015490925083565b60068054610ec29061538d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eee9061538d565b8015610f395780601f10610f1057610100808354040283529160200191610f39565b820191905f5260205f20905b815481529060010190602001808311610f1c57829003601f168201915b505050505081565b610f49612aff565b600a55565b5f818152600e602052604090205460609060ff161580610f6f575060085482115b156110045760158054610f819061538d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad9061538d565b8015610ff85780601f10610fcf57610100808354040283529160200191610ff8565b820191905f5260205f20905b815481529060010190602001808311610fdb57829003601f168201915b50505050509050919050565b5f828152601660205260408120805461101c9061538d565b9050111561103c575f8281526016602052604090208054610f819061538d565b5f5b6009548110156112a6576009818154811061105b5761105b615379565b5f918252602082206013909102010154831015801561109f57506009818154811061108857611088615379565b5f9182526020909120601390910201600101548311155b1561129457600981815481106110b7576110b7615379565b5f91825260209091206005601390920201015460ff1661116257601580546110de9061538d565b80601f016020809104026020016040519081016040528092919081815260200182805461110a9061538d565b80156111555780601f1061112c57610100808354040283529160200191611155565b820191905f5260205f20905b81548152906001019060200180831161113857829003601f168201915b5050505050915050919050565b5f838152601060205260408120805461117a9061538d565b9050111561121f576009818154811061119557611195615379565b5f91825260208220600360139092020101905f8581526010602052604090209101906111c085612b11565b600984815481106111d3576111d3615379565b905f5260205f2090601302016003016001600281106111f4576111f4615379565b016040516020016112089493929190615434565b604051602081830303815290604052915050919050565b6009818154811061123257611232615379565b5f918252602082206003601390920201010161124d84612b11565b6009838154811061126057611260615379565b905f5260205f20906013020160030160016002811061128157611281615379565b016040516020016112089392919061547d565b8061129e816154c3565b91505061103e565b5060158054610f819061538d565b600581815481106112c3575f80fd5b5f918252602090912001546001600160a01b0316905081565b6009545f9081901561139d575f5b600954811015611366576009818154811061130757611307615379565b5f918252602082206013909102010154841015801561134b57506009818154811061133457611334615379565b5f9182526020909120601390910201600101548411155b15611354578091505b8061135e816154c3565b9150506112ea565b506009818154811061137a5761137a615379565b5f91825260209091206013909102016005015462010000900460ff169392505050565b505f92915050565b60138054610ec29061538d565b60106020525f908152604090208054610ec29061538d565b6113d2612aff565b6040805160608101825284815260208101849052908101829052851561148557601280546001810182555f9190915281517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344460039092029182015560208201517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344582015560408201517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3446909101556114fa565b6012541580611499575060125460ff861610155b156114b757604051637ae9080f60e11b815260040160405180910390fd5b8060128660ff16815481106114ce576114ce615379565b905f5260205f2090600302015f820151815f015560208201518160010155604082015181600201559050505b505050505050565b61150a612aff565b6011805461ffff191692151561ff0019169290921761010091151591909102179055565b6060826010036115ae576009828154811061154b5761154b615379565b905f5260205f209060130201600f018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905b81548152602001906001019080831161158e575b50505050509050610dc9565b8260110361162a57600982815481106115c9576115c9615379565b905f5260205f2090601302016010018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f209081548152602001906001019080831161158e5750505050509050610dc9565b604080515f80825260208201909252905b509392505050565b61164b612976565b61171157611711826009838154811061166657611666615379565b905f5260205f20906013020160050160049054906101000a900460ff166009848154811061169657611696615379565b5f918252602082206006601390920201010154600985815481106116bc576116bc615379565b905f5260205f2090601302016006016001600281106116dd576116dd615379565b01546116e93389610da8565b600987815481106116fc576116fc615379565b905f5260205f20906013020160080154612ba0565b61171a82612b11565b5f848152601060205260409020906117329082615526565b50505050565b336001600160a01b038616811480159061175957506117578682612949565b155b1561178a5760405163711bec9160e11b81526001600160a01b0380831660048301528716602482015260440161043a565b6114fa8686868686612c7c565b61179f612cda565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6117c9612aff565b6017546001600160a01b031661181a5760405162461bcd60e51b815260206004820152601660248201527514185e5bdd5d081859191c995cdcc81b9bdd081cd95d60521b604482015260640161043a565b478061185f5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b604482015260640161043a565b6017546040515f916001600160a01b03169083908381818185875af1925050503d805f81146118a9576040519150601f19603f3d011682016040523d82523d5f602084013e6118ae565b606091505b50509050806118f35760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161043a565b5050565b60608260120361162a576009828154811061191457611914615379565b905f5260205f2090601302016011018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116119575750505050509050610dc9565b6009818154811061198f575f80fd5b5f9182526020909120601390910201600581015460088201546009830154600a840154600b850154600c860154600d870154600e9097015460ff808816995061010088048116986201000089048216986301000000810483169864010000000082048416986501000000000090920490931696929590949293909291908d565b60608151835114611a405781518351604051635b05999160e01b81526004810192909252602482015260440161043a565b5f83516001600160401b03811115611a5a57611a5a6149c2565b604051908082528060200260200182016040528015611a83578160200160208202803683370190505b5090505f5b845181101561163b57602080820286010151611aac90602080840287010151610da8565b828281518110611abe57611abe615379565b6020908102919091010152611ad2816154c3565b9050611a88565b611ae3835f612d07565b611aee858585612d9f565b611b0b57604051636d4fb7eb60e11b815260040160405180910390fd5b611b17848484846130ed565b611b21858461340c565b5f858152600d602052604081208054869290611b3e9084906155e1565b925050819055506114fa86868660405180602001604052805f8152506135db565b611b67612aff565b8415611b82578051601590611b7c9082615526565b50611c28565b8315611b97578051601390611b7c9082615526565b82611bf75780515f83815260166020526040902090611bb69082615526565b50805160405183917f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b91611bea919061488a565b60405180910390a2611c28565b8060098381548110611c0b57611c0b615379565b905f5260205f2090601302016003019060026114fa929190614520565b5050505050565b5f611c38612976565b611c99578215611c6f5760128260ff1681548110611c5857611c58615379565b905f5260205f209060030201600101549050611c9c565b60098481548110611c8257611c82615379565b905f5260205f209060130201600901549050611c9c565b505f5b9392505050565b611cab612aff565b611cb489613636565b878760098b81548110611cc957611cc9615379565b905f5260205f209060130201600f019190611ce5929190614569565b50858560098b81548110611cfb57611cfb615379565b905f5260205f2090601302016010019190611d17929190614569565b50838360098b81548110611d2d57611d2d615379565b905f5260205f2090601302016011019190611d499291906145ae565b50818160098b81548110611d5f57611d5f615379565b905f5260205f2090601302016012019190611d7b9291906145ff565b50505050505050505050565b611d8f612aff565b611d9882613636565b428111611db8576040516358fadd0160e11b815260040160405180910390fd5b8060098381548110611dcc57611dcc615379565b905f5260205f209060130201600e01819055505050565b611deb612aff565b8160098281548110611dff57611dff615379565b905f5260205f209060130201600c01819055508260098281548110611e2657611e26615379565b905f5260205f209060130201600d0181905550505050565b611e46612cda565b611e4f5f613658565b565b6011545f90819060ff1615611ee55760405163f33f245d60e01b8152734bd57b26970926d71cb9a356941603dedda35da89063f33f245d90611e9e908890889088906012906004016155f4565b6040805180830381865af4158015611eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611edc9190615638565b91509150611eeb565b505f9050805b935093915050565b6118f33383836136a9565b611f06612aff565b81831115611f275760405163f142fb6160e01b815260040160405180910390fd5b60405180604001604052808481526020018381525060098281548110611f4f57611f4f615379565b905f5260205f20906013020160060190600261173292919061469c565b611f74612aff565b825f03611fba578160098281548110611f8f57611f8f615379565b905f5260205f20906013020160050160016101000a81548160ff021916908315150217905550505050565b82600103611ffc578160098281548110611fd657611fd6615379565b5f9182526020909120601390910201600501805460ff1916911515919091179055505050565b8260020361204357816009828154811061201857612018615379565b905f5260205f20906013020160050160056101000a81548160ff021916908315150217905550505050565b8260030361208a57816009828154811061205f5761205f615379565b905f5260205f20906013020160050160036101000a81548160ff021916908315150217905550505050565b826004036120d15781600982815481106120a6576120a6615379565b905f5260205f20906013020160050160026101000a81548160ff021916908315150217905550505050565b82600603610e305781600982815481106120ed576120ed615379565b905f5260205f20906013020160050160046101000a81548160ff021916908315150217905550505050565b612123836001612d07565b6121606009848154811061213957612139615379565b5f9182526020909120601390910201600101545f908152600e602052604090205460ff1690565b1561217e5760405163ade1cb4160e01b815260040160405180910390fd5b60095483106121a057604051637a02f9b760e01b815260040160405180910390fd5b61220a6001600985815481106121b8576121b8615379565b5f9182526020909120601390910201600201546121d590876155e1565b6121df9190615665565b600985815481106121f2576121f2615379565b5f9182526020909120601390910201600101546136ec565b612216848484846130ed565b611c28858585613716565b60078054610ec29061538d565b6118f33383836138ce565b612241612aff565b6003546001600160a01b03163314158061226f57506004546001600160a01b0316336001600160a01b031614155b1561229b57335b60405163117e92d360e01b81526001600160a01b03909116600482015260240161043a565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f2fdb009e73c3064815cc19c79e750359fe8123b1919695d5823aefd641afff52905f90a35050565b6003546001600160a01b031633148061230f57506004546001600160a01b031633145b6123435760405162461bcd60e51b81526020600482015260056024820152641393dbd41360da1b604482015260640161043a565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b612375612aff565b826123b557816009828154811061238e5761238e615379565b905f5260205f209060130201600901819055508160098281548110611e2657611e26615379565b81600982815481106123c9576123c9615379565b905f5260205f20906013020160080181905550505050565b6123e9612aff565b6003546001600160a01b03163314158061241757506004546001600160a01b0316336001600160a01b031614155b156124225733612276565b61242d60055f6146ca565b610e30600583836145ae565b612443835f612d07565b6124508551600a546136ec565b835185511461247257604051633df3e4f760e21b815260040160405180910390fd5b61247d858585613962565b61249a57604051636d4fb7eb60e11b815260040160405180910390fd5b5f805b85518110156124df578581815181106124b8576124b8615379565b6020026020010151826124cb91906155e1565b9150806124d7816154c3565b91505061249d565b50600a5481116125025760405163d2aca54760e01b815260040160405180910390fd5b61250e818585856130ed565b5f5b86518110156125ac575f87828151811061252c5761252c615379565b60200260200101519050612540818761340c565b86828151811061255257612552615379565b6020026020010151600d5f8a858151811061256f5761256f615379565b602002602001015181526020019081526020015f205f82825461259291906155e1565b909155508291506125a49050816154c3565b915050612510565b506125c787878760405180602001604052805f8152506139e2565b50505050505050565b6125d8612aff565b600980546001810182555f9190915281906013027f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01610e308282615a70565b60608260130361162a576009828154811061263557612635615379565b905f5260205f2090601302016012018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905f905b825461010083900a900460ff16151581526020600192830181810494850194909303909202910180841161267a57905050505050509050610dc9565b5f600982815481106126ca576126ca615379565b905f5260205f209060130201600b01549050919050565b6060825f03612797576127176009838154811061270057612700615379565b5f91825260208220601390910201905b0154612b11565b6127436009848154811061272d5761272d615379565b5f91825260209091206013909102016001612710565b61276f6009858154811061275957612759615379565b5f91825260209091206013909102016002612710565b60405160200161278193929190615c72565b6040516020818303038152906040529050610dc9565b8260010361280a57600982815481106127b2576127b2615379565b5f9182526020822060036013909202010101600983815481106127d7576127d7615379565b905f5260205f2090601302016003016001600281106127f8576127f8615379565b01604051602001612781929190615ce6565b826008036128875761283f6009838154811061282857612828615379565b5f9182526020822060066013909202010190612710565b6128766009848154811061285557612855615379565b905f5260205f20906013020160060160016002811061271057612710615379565b604051602001612781929190615d22565b5060408051602081019091525f815292915050565b6003546001600160a01b03163314806128bf57506004546001600160a01b031633145b6128f35760405162461bcd60e51b81526020600482015260056024820152641393dbd41360da1b604482015260640161043a565b5f91825260186020526040909120805460ff1916911515919091179055565b61291a612aff565b816009828154811061292e5761292e615379565b5f9182526020909120610e30926013909202019060036146e5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205460ff1690565b5f6129896003546001600160a01b031690565b6001600160a01b0316336001600160a01b031614806129bb57506004546001600160a01b0316336001600160a01b0316145b156129c65750600190565b60055415612a23575f5b600554811015612a2157600581815481106129ed576129ed615379565b5f918252602090912001546001600160a01b03163303612a0f57600191505090565b80612a19816154c3565b9150506129d0565b505b505f90565b336001600160a01b0386168114801590612a495750612a478682612949565b155b15612a7a5760405163711bec9160e11b81526001600160a01b0380831660048301528716602482015260440161043a565b6114fa8686868686613a18565b612a8f612cda565b6001600160a01b038116612ab857604051631e4fbdf760e01b81525f600482015260240161043a565b612ac181613658565b50565b612acc612aff565b600855565b612ad9612aff565b8215612af457600c805482151560ff19909116179055505050565b610e305f8284611f6c565b612b07612976565b611e4f5733612276565b60605f612b1d83613a9b565b60010190505f816001600160401b03811115612b3b57612b3b6149c2565b6040519080825280601f01601f191660200182016040528015612b65576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612b6f57509392505050565b84612bd35760405162461bcd60e51b815260206004820152600360248201526210a92960e91b604482015260640161043a565b8386118015612be25750828611155b612c135760405162461bcd60e51b815260206004820152600260248201526110a960f11b604482015260640161043a565b5f8211612c475760405162461bcd60e51b8152602060048201526002602482015261214f60f01b604482015260640161043a565b803410156114fa5760405162461bcd60e51b8152602060048201526002602482015261243f60f01b604482015260640161043a565b6001600160a01b038416612ca557604051632bfa23e760e11b81525f600482015260240161043a565b6001600160a01b038516612ccd57604051626a0d4560e21b81525f600482015260240161043a565b611c288585858585613b72565b6003546001600160a01b03163314611e4f5760405163118cdaa760e01b815233600482015260240161043a565b80158015612d41575060098281548110612d2357612d23615379565b905f5260205f20906013020160050160039054906101000a900460ff165b80612d815750808015612d81575060098281548110612d6257612d62615379565b905f5260205f20906013020160050160039054906101000a900460ff16155b156118f357604051631288c1f560e31b815260040160405180910390fd5b5f60098281548110612db357612db3615379565b5f918252602082206013909102010154841080612df4575060098281548110612dde57612dde615379565b5f91825260209091206013909102016001015484115b15612e1257604051632e06b04b60e11b815260040160405180910390fd5b612e1e83600a546136ec565b600854841115612e4157604051637ae9080f60e11b815260040160405180910390fd5b60098281548110612e5457612e54615379565b905f5260205f209060130201600b01545f14158015612eb0575060098281548110612e8157612e81615379565b905f5260205f209060130201600b015483600d5f8781526020019081526020015f2054612eae91906155e1565b115b15612ebc57505f611c9c565b5f60098381548110612ed057612ed0615379565b905f5260205f209060130201600f018054905011156130e3576130d760098381548110612eff57612eff615379565b905f5260205f209060130201601101805480602002602001604051908101604052809291908181526020018280548015612f6057602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311612f42575b50505050503360098581548110612f7957612f79615379565b905f5260205f209060130201600f01805480602002602001604051908101604052809291908181526020018280548015612fd057602002820191905f5260205f20905b815481526020019060010190808311612fbc575b505050505060098681548110612fe857612fe8615379565b905f5260205f20906013020160100180548060200260200160405190810160405280929190818152602001828054801561303f57602002820191905f5260205f20905b81548152602001906001019080831161302b575b50505050506009878154811061305757613057615379565b905f5260205f2090601302016012018054806020026020016040519081016040528092919081815260200182805480156130cd57602002820191905f5260205f20905f905b825461010083900a900460ff16151581526020600192830181810494850194909303909202910180841161309c5790505b5050505050613bc5565b156130e357505f611c9c565b5060019392505050565b6130f5612976565b61173257600c5460ff168061313657506009838154811061311857613118615379565b905f5260205f20906013020160050160019054906101000a900460ff165b15613154576040516313d0ff5960e31b815260040160405180910390fd5b5f6009848154811061316857613168615379565b905f5260205f209060130201600e015411156131c1576009838154811061319157613191615379565b905f5260205f209060130201600e01544210156131c1576040516301f8564360e31b815260040160405180910390fd5b600983815481106131d4576131d4615379565b905f5260205f209060130201600a01545f1461328157600983815481106131fd576131fd615379565b5f9182526020808320600a6013909302019190910154338352600f825260408084208785529092529120546132339086906155e1565b11156132525760405163d2aca54760e01b815260040160405180910390fd5b335f908152600f602090815260408083208684529091528120805486929061327b9084906155e1565b90915550505b6040516bffffffffffffffffffffffff193360601b1660208201525f9081906132c6908590859060340160405160208183030381529060405280519060200120611e51565b9150915081156133ae5760128160ff16815481106132e6576132e6615379565b905f5260205f2090600302015f01545f146133a95760128160ff168154811061331157613311615379565b5f918252602080832060039092029091015433835260148252604080842060ff861685529092529120546133469088906155e1565b1161338257335f90815260146020908152604080832060ff85168452909152812080548892906133779084906155e1565b909155506133a99050565b60125461339190600190615665565b8160ff1610156133a957806133a581615d78565b9150505b6133d7565b601154610100900460ff16156133d75760405163665c1c5760e01b815260040160405180910390fd5b6133e2858383611c2f565b6133ec9087615678565b3410156114fa5760405163356680b760e01b815260040160405180910390fd5b5f828152600e602052604090205460ff16613481575f828152600e60205260409020805460ff19166001179055600980548290811061344d5761344d615379565b905f5260205f20906013020160050160039054906101000a900460ff1615613481575f828152600d60205260409020600190555b6009818154811061349457613494615379565b905f5260205f20906013020160050160059054906101000a900460ff16156134d9576134bf81613de3565b5f838152601060205260409020906134d79082615526565b505b600981815481106134ec576134ec615379565b905f5260205f209060130201600d01546009828154811061350f5761350f615379565b905f5260205f209060130201600901541415801561357457506009818154811061353b5761353b615379565b905f5260205f209060130201600c01546009828154811061355e5761355e615379565b5f91825260209091206013909102016002015410155b156135c3576009818154811061358c5761358c615379565b905f5260205f209060130201600d0154600982815481106135af576135af615379565b905f5260205f209060130201600901819055505b600b8054905f6135d2836154c3565b91905055505050565b6001600160a01b03841661360457604051632bfa23e760e11b81525f600482015260240161043a565b604080516001808252602082018690528183019081526060820185905260808201909252906114fa5f87848487613b72565b6009548110612ac157604051637a02f9b760e01b815260040160405180910390fd5b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166136d157604051626a0d4560e21b81525f600482015260240161043a565b610e30835f848460405180602001604052805f815250613b72565b808211806136f8575081155b156118f35760405163162908e360e11b815260040160405180910390fd5b5f826001600160401b0381111561372f5761372f6149c2565b604051908082528060200260200182016040528015613758578160200160208202803683370190505b5090505f836001600160401b03811115613774576137746149c2565b60405190808252806020026020018201604052801561379d578160200160208202803683370190505b5090505f5b848110156138b3575f600985815481106137be576137be615379565b5f91825260209091206013909102016002015490506137df81600187612d9f565b6137fc57604051636d4fb7eb60e11b815260040160405180910390fd5b613806818661340c565b6009858154811061381957613819615379565b5f91825260209091206013909102016002015484838151811061383e5761383e615379565b602002602001018181525050600183838151811061385e5761385e615379565b6020026020010181815250506009858154811061387d5761387d615379565b5f9182526020822060026013909202010180549161389a836154c3565b91905055505080806138ab906154c3565b9150506137a2565b50611c2885838360405180602001604052805f8152506139e2565b6001600160a01b0382166138f65760405162ced3e160e81b81525f600482015260240161043a565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b5f805b84518110156139d7575f85828151811061398157613981615379565b602002602001015190505f85838151811061399e5761399e615379565b602002602001015190506139b3828287612d9f565b6139c2575f9350505050611c9c565b505080806139cf906154c3565b915050613965565b506001949350505050565b6001600160a01b038416613a0b57604051632bfa23e760e11b81525f600482015260240161043a565b6117325f85858585613b72565b6001600160a01b038416613a4157604051632bfa23e760e11b81525f600482015260240161043a565b6001600160a01b038516613a6957604051626a0d4560e21b81525f600482015260240161043a565b604080516001808252602082018690528183019081526060820185905260808201909252906125c78787848487613b72565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613ad95772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613b05576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310613b2357662386f26fc10000830492506010015b6305f5e1008310613b3b576305f5e100830492506008015b6127108310613b4f57612710830492506004015b60648310613b61576064830492506002015b600a8310610dc95760010192915050565b613b7e85858585613e9d565b6001600160a01b03841615611c285782513390600103613bb75760208481015190840151613bb0838989858589614064565b50506114fa565b6114fa818787878787614185565b5f8251845114613be857604051633df3e4f760e21b815260040160405180910390fd5b5f5b8451811015613dd457828181518110613c0557613c05615379565b602002602001015115613cfe575f878281518110613c2557613c25615379565b602002602001015190505f816001600160a01b031662fdd58e89898681518110613c5157613c51615379565b60200260200101516040518363ffffffff1660e01b8152600401613c8a9291906001600160a01b03929092168252602082015260400190565b602060405180830381865afa158015613ca5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cc99190615d96565b9050858381518110613cdd57613cdd615379565b6020026020010151811015613cf7575f9350505050613dda565b5050613dc2565b5f878281518110613d1157613d11615379565b602002602001015190505f816001600160a01b0316636352211e888581518110613d3d57613d3d615379565b60200260200101516040518263ffffffff1660e01b8152600401613d6391815260200190565b602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da29190615dad565b9050336001600160a01b03821614613dbf575f9350505050613dda565b50505b80613dcc816154c3565b915050613bea565b50600190505b95945050505050565b6060610dc9424433600b5460105f6001600b54613e009190615665565b81526020019081526020015f20604051602001613e21959493929190615dc8565b604051602081830303815290604052805190602001205f1c600b5460098581548110613e4f57613e4f615379565b905f5260205f209060130201600601600160028110613e7057613e70615379565b015460098681548110613e8557613e85615379565b5f91825260208220600660139092020101015461426c565b6001600160a01b0384165f9081526019602052604090205460ff1680613eda57506001600160a01b0383165f9081526019602052604090205460ff165b15613ef85760405163ccc0891360e01b815260040160405180910390fd5b5f5b8251811015613f655760185f848381518110613f1857613f18615379565b60209081029190910181015182528101919091526040015f205460ff1615613f535760405163e8e3a25960e01b815260040160405180910390fd5b80613f5d816154c3565b915050613efa565b50613f7284848484614308565b5f5b8251811015611c2857613f9f838281518110613f9257613f92615379565b60200260200101516112dc565b15613fe757600160185f858481518110613fbb57613fbb615379565b602002602001015181526020019081526020015f205f6101000a81548160ff0219169083151502179055505b6001600160a01b038416614052575f83828151811061400857614008615379565b6020026020010151905082828151811061402457614024615379565b6020026020010151600d5f8381526020019081526020015f205f82825461404b9190615665565b9091555050505b8061405c816154c3565b915050613f74565b6001600160a01b0384163b156114fa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906140a89089908990889088908890600401615dfd565b6020604051808303815f875af19250505080156140e2575060408051601f3d908101601f191682019092526140df91810190615e36565b60015b614149573d80801561410f576040519150601f19603f3d011682016040523d82523d5f602084013e614114565b606091505b5080515f0361414157604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b805181602001fd5b6001600160e01b0319811663f23a6e6160e01b146125c757604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b6001600160a01b0384163b156114fa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906141c99089908990889088908890600401615e51565b6020604051808303815f875af1925050508015614203575060408051601f3d908101601f1916820190925261420091810190615e36565b60015b614230573d80801561410f576040519150601f19603f3d011682016040523d82523d5f602084013e614114565b6001600160e01b0319811663bc197c8160e01b146125c757604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b6040805160208082018790528183018690524260608084019190915233811b6bffffffffffffffffffffffff1916608084015283516074818503018152609490930190935281519101205f906142c3908590615ea2565b9050828110156142f2576142ea6142db8260016155e1565b6142e59086615665565b612b11565b915050614300565b6142ea6142e58260016155e1565b949350505050565b80518251146143375781518151604051635b05999160e01b81526004810192909252602482015260440161043a565b335f5b8351811015614442576020818102858101820151908501909101516001600160a01b038816156143eb575f828152602081815260408083206001600160a01b038c168452909152902054818110156143c5576040516303dee4c560e01b81526001600160a01b038a16600482015260248101829052604481018390526064810184905260840161043a565b5f838152602081815260408083206001600160a01b038d16845290915290209082900390555b6001600160a01b0387161561442f575f828152602081815260408083206001600160a01b038b168452909152812080548392906144299084906155e1565b90915550505b50508061443b906154c3565b905061433a565b5082516001036144c25760208301515f906020840151909150856001600160a01b0316876001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516144b3929190918252602082015260400190565b60405180910390a45050611c28565b836001600160a01b0316856001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051614511929190615ec1565b60405180910390a45050505050565b8260028101928215614559579160200282015b8281111561455957825182906145499082615526565b5091602001919060010190614533565b50614565929150614712565b5090565b828054828255905f5260205f209081019282156145a2579160200282015b828111156145a2578235825591602001919060010190614587565b5061456592915061472e565b828054828255905f5260205f209081019282156145a2579160200282015b828111156145a25781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906145cc565b828054828255905f5260205f2090601f016020900481019282156145a2579160200282015f5b83821115614663578335151583826101000a81548160ff02191690831515021790555092602001926001016020815f01049283019260010302614625565b801561468f5782816101000a81549060ff02191690556001016020815f01049283019260010302614663565b505061456592915061472e565b82600281019282156145a2579160200282015b828111156145a25782518255916020019190600101906146af565b5080545f8255905f5260205f2090810190612ac1919061472e565b82600381019282156145a257916020028201828111156145a25782518255916020019190600101906146af565b80821115614565575f6147258282614742565b50600101614712565b5b80821115614565575f815560010161472f565b50805461474e9061538d565b5f825580601f1061475d575050565b601f0160209004905f5260205f2090810190612ac1919061472e565b6001600160a01b0381168114612ac1575f80fd5b5f806040838503121561479e575f80fd5b82356147a981614779565b946020939093013593505050565b8015158114612ac1575f80fd5b5f805f606084860312156147d6575f80fd5b83356147e1816147b7565b95602085013595506040909401359392505050565b6001600160e01b031981168114612ac1575f80fd5b5f6020828403121561481b575f80fd5b8135611c9c816147f6565b5f60208284031215614836575f80fd5b5035919050565b5f5b8381101561485757818101518382015260200161483f565b50505f910152565b5f815180845261487681602086016020860161483d565b601f01601f19169290920160200192915050565b602081525f611c9c602083018461485f565b60ff81168114612ac1575f80fd5b5f805f805f60a086880312156148be575f80fd5b85356148c9816147b7565b945060208601356148d98161489c565b94979496505050506040830135926060810135926080909101359150565b5f8060408385031215614908575f80fd5b8235614913816147b7565b91506020830135614923816147b7565b809150509250929050565b5f806040838503121561493f575f80fd5b50508035926020909101359150565b5f8151808452602080850194508084015f5b8381101561497c57815187529582019590820190600101614960565b509495945050505050565b602081525f611c9c602083018461494e565b5f805f606084860312156149ab575f80fd5b505081359360208301359350604090920135919050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156149f8576149f86149c2565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614a2657614a266149c2565b604052919050565b5f6001600160401b03821115614a4657614a466149c2565b5060051b60200190565b5f82601f830112614a5f575f80fd5b81356020614a74614a6f83614a2e565b6149fe565b82815260059290921b84018101918181019086841115614a92575f80fd5b8286015b84811015614aad5780358352918301918301614a96565b509695505050505050565b5f6001600160401b03831115614ad057614ad06149c2565b614ae3601f8401601f19166020016149fe565b9050828152838383011115614af6575f80fd5b828260208301375f602084830101529392505050565b5f82601f830112614b1b575f80fd5b611c9c83833560208501614ab8565b5f805f805f60a08688031215614b3e575f80fd5b8535614b4981614779565b94506020860135614b5981614779565b935060408601356001600160401b0380821115614b74575f80fd5b614b8089838a01614a50565b94506060880135915080821115614b95575f80fd5b614ba189838a01614a50565b93506080880135915080821115614bb6575f80fd5b50614bc388828901614b0c565b9150509295509295909350565b5f60208284031215614be0575f80fd5b8135611c9c81614779565b602080825282518282018190525f9190848201906040850190845b81811015614c2b5783516001600160a01b031683529284019291840191600101614c06565b50909695505050505050565b5f8060408385031215614c48575f80fd5b82356001600160401b0380821115614c5e575f80fd5b818501915085601f830112614c71575f80fd5b81356020614c81614a6f83614a2e565b82815260059290921b84018101918181019089841115614c9f575f80fd5b948201945b83861015614cc6578535614cb781614779565b82529482019490820190614ca4565b96505086013592505080821115614cdb575f80fd5b50614ce885828601614a50565b9150509250929050565b5f8083601f840112614d02575f80fd5b5081356001600160401b03811115614d18575f80fd5b6020830191508360208260051b8501011115614d32575f80fd5b9250929050565b5f805f805f8060a08789031215614d4e575f80fd5b8635614d5981614779565b955060208701359450604087013593506060870135925060808701356001600160401b03811115614d88575f80fd5b614d9489828a01614cf2565b979a9699509497509295939492505050565b5f805f805f60a08688031215614dba575f80fd5b8535614dc5816147b7565b9450602086810135614dd6816147b7565b94506040870135614de6816147b7565b93506060870135925060808701356001600160401b0380821115614e08575f80fd5b818901915089601f830112614e1b575f80fd5b614e236149d6565b80604084018c811115614e34575f80fd5b845b81811015614e7a57803585811115614e4d575f8081fd5b8601601f81018f13614e5e575f8081fd5b614e6c8f82358a8401614ab8565b855250928601928601614e36565b505080955050505050509295509295909350565b5f805f60608486031215614ea0575f80fd5b833592506020840135614eb2816147b7565b91506040840135614ec28161489c565b809150509250925092565b5f805f805f805f805f60a08a8c031215614ee5575f80fd5b8935985060208a01356001600160401b0380821115614f02575f80fd5b614f0e8d838e01614cf2565b909a50985060408c0135915080821115614f26575f80fd5b614f328d838e01614cf2565b909850965060608c0135915080821115614f4a575f80fd5b614f568d838e01614cf2565b909650945060808c0135915080821115614f6e575f80fd5b50614f7b8c828d01614cf2565b915080935050809150509295985092959850929598565b5f805f60408486031215614fa4575f80fd5b83356001600160401b03811115614fb9575f80fd5b614fc586828701614cf2565b909790965060209590950135949350505050565b5f8060408385031215614fea575f80fd5b82356001600160401b0380821115615000575f80fd5b61500c86838701614a50565b93506020850135915080821115614cdb575f80fd5b5f805f60608486031215615033575f80fd5b833592506020840135615045816147b7565b929592945050506040919091013590565b5f805f805f6080868803121561506a575f80fd5b853561507581614779565b9450602086013593506040860135925060608601356001600160401b0381111561509d575f80fd5b6150a988828901614cf2565b969995985093965092949392505050565b5f80604083850312156150cb575f80fd5b823561491381614779565b5f80602083850312156150e7575f80fd5b82356001600160401b038111156150fc575f80fd5b61510885828601614cf2565b90969095509350505050565b5f805f805f8060a08789031215615129575f80fd5b863561513481614779565b955060208701356001600160401b038082111561514f575f80fd5b61515b8a838b01614a50565b96506040890135915080821115615170575f80fd5b61517c8a838b01614a50565b9550606089013594506080890135915080821115615198575f80fd5b50614d9489828a01614cf2565b5f602082840312156151b5575f80fd5b81356001600160401b038111156151ca575f80fd5b82016102e08185031215611c9c575f80fd5b602080825282518282018190525f9190848201906040850190845b81811015614c2b5783511515835292840192918401916001016151f7565b5f8060408385031215615226575f80fd5b823591506020830135614923816147b7565b5f8060808385031215615249575f80fd5b83601f840112615257575f80fd5b604051606081018181106001600160401b0382111715615279576152796149c2565b60405280606085018681111561528d575f80fd5b855b818110156152a757803583526020928301920161528f565b50919691359550909350505050565b5f80604083850312156152c7575f80fd5b82356152d281614779565b9150602083013561492381614779565b5f805f805f60a086880312156152f6575f80fd5b853561530181614779565b9450602086013561531181614779565b9350604086013592506060860135915060808601356001600160401b03811115615339575f80fd5b614bc388828901614b0c565b5f805f60608486031215615357575f80fd5b8335615362816147b7565b9250602084013591506040840135614ec2816147b7565b634e487b7160e01b5f52603260045260245ffd5b600181811c908216806153a157607f821691505b6020821081036153bf57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f81546153d18161538d565b600182811680156153e957600181146153fe5761542a565b60ff198416875282151583028701945061542a565b855f526020805f205f5b858110156154215781548a820152908401908201615408565b50505082870194505b5050505092915050565b5f61544861544283886153c5565b866153c5565b602f60f81b8152845161546281600184016020890161483d565b615471600182840101866153c5565b98975050505050505050565b5f61548882866153c5565b845161549881836020890161483d565b6154a4818301866153c5565b979650505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016154d4576154d46154af565b5060010190565b5b818110156118f3575f81556001016154dc565b601f821115610e3057805f5260205f20601f840160051c810160208510156155145750805b611c28601f850160051c8301826154db565b81516001600160401b0381111561553f5761553f6149c2565b6155538161554d845461538d565b846154ef565b602080601f831160018114615586575f841561556f5750858301515b5f19600386901b1c1916600185901b1785556114fa565b5f85815260208120601f198616915b828110156155b457888601518255948401946001909101908401615595565b50858210156155d157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610dc957610dc96154af565b606080825281018490525f6001600160fb1b03851115615612575f80fd5b8460051b8087608085013760208301949094525060408101919091520160800192915050565b5f8060408385031215615649575f80fd5b8251615654816147b7565b60208401519092506149238161489c565b81810381811115610dc957610dc96154af565b8082028115828204841417610dc957610dc96154af565b815f5b600381101561173257813583820155602090910190600101615692565b5f8235603e198336030181126156c3575f80fd5b9190910192915050565b81815f5b6002811015611c28578235601e198636030181126156ed575f80fd5b850180356001600160401b03811115615704575f80fd5b60208136038184011315615716575f80fd5b61572a82615724875461538d565b876154ef565b5f601f83116001811461575d575f841561574657508482018301355b5f19600386901b1c1916600185901b1787556157b7565b5f87815260209020601f19851690835b8281101561578e57878501860135825593850193600190910190850161576d565b50858210156157ac575f1960f88760031b161c198585890101351681555b5050600184811b0187555b505094909401935050600191820191016156d1565b5f8135610dc9816147b7565b815f5b6002811015611732578135838201556020909101906001016157db565b5f808335601e1984360301811261580d575f80fd5b8301803591506001600160401b03821115615826575f80fd5b6020019150600581901b3603821315614d32575f80fd5b81831015610e3057805f5260205f206117328382018583016154db565b6001600160401b03831115615871576158716149c2565b600160401b831115615885576158856149c2565b805483825561589584828461583d565b5081815f526020805f205f5b868110156125c757833582820155928201926001016158a1565b6001600160401b038311156158d2576158d26149c2565b600160401b8311156158e6576158e66149c2565b80548382556158f684828461583d565b5081815f526020805f205f5b868110156125c757833561591581614779565b8282015592820192600101615902565b600160401b821115615939576159396149c2565b805482825580831015610e3057815f5260205f20601f840160051c8101601f85168015615976575f198083018054828460200360031b1c16815550505b50611c28601f840160051c8301826154db565b6001600160401b038311156159a0576159a06149c2565b6159aa8382615925565b5f8181526020902082908460051c5f5b81811015615a11575f805b60208082106159d45750615a04565b6159f76159e0886157cc565b60ff908116600385901b90811b91901b1985161790565b96019591506001016159c5565b50838201556001016159ba565b50601f198616808703818814615a66575f805b82811015615a6057615a4f615a38886157cc565b60ff908116600384901b90811b91901b1984161790565b602097909701969150600101615a24565b50848401555b5050505050505050565b615a7a828261568f565b615a93615a8a60608401846156af565b600383016156cd565b60058101615aba615aa6608085016157cc565b825490151560ff1660ff1991909116178255565b615ae3615ac960a085016157cc565b82805461ff00191691151560081b61ff0016919091179055565b615b0e615af260c085016157cc565b82805462ff0000191691151560101b62ff000016919091179055565b615b3b615b1d60e085016157cc565b82805463ff000000191691151560181b63ff00000016919091179055565b615b6b615b4b61010085016157cc565b82805464ff00000000191691151560201b64ff0000000016919091179055565b615b9d615b7b61012085016157cc565b82805465ff0000000000191691151560281b65ff000000000016919091179055565b50615baf6101408301600683016157d8565b61018082013560088201556101a082013560098201556101c0820135600a8201556101e0820135600b820155610200820135600c820155610220820135600d820155610240820135600e820155615c0a6102608301836157f8565b615c188183600f860161585a565b5050615c286102808301836157f8565b615c3681836010860161585a565b5050615c466102a08301836157f8565b615c548183601186016158bb565b5050615c646102c08301836157f8565b611732818360128601615989565b605b60f81b81525f8451615c8d81600185016020890161483d565b8083019050600b60fa1b8060018301528551615cb0816002850160208a0161483d565b60029201918201528351615ccb81600384016020880161483d565b605d60f81b6003929091019182015260040195945050505050565b605b60f81b81525f615cfb60018301856153c5565b600b60fa1b8152615d0f60018201856153c5565b605d60f81b815260010195945050505050565b605b60f81b81525f8351615d3d81600185016020880161483d565b600b60fa1b6001918401918201528351615d5e81600284016020880161483d565b605d60f81b60029290910191820152600301949350505050565b5f60ff821660ff8103615d8d57615d8d6154af565b60010192915050565b5f60208284031215615da6575f80fd5b5051919050565b5f60208284031215615dbd575f80fd5b8151611c9c81614779565b8581528460208201526bffffffffffffffffffffffff198460601b1660408201528260548201525f6154a460748301846153c5565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f906154a49083018461485f565b5f60208284031215615e46575f80fd5b8151611c9c816147f6565b6001600160a01b0386811682528516602082015260a0604082018190525f90615e7c9083018661494e565b8281036060840152615e8e818661494e565b90508281036080840152615471818561485f565b5f82615ebc57634e487b7160e01b5f52601260045260245ffd5b500690565b604081525f615ed3604083018561494e565b8281036020840152613dda818561494e56fea2646970667358221220eb6e167524d02c41d182d00105cc81c44ab965b084196aa632ea48f1cabc0faf64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103e1575f3560e01c80636c30a22f116101ff578063b4387f7f11610113578063d8d9d6bc116100a8578063ed00e65311610078578063ed00e65314610d18578063f242432a14610d2c578063f2fde38b14610d4b578063f5f59cd014610d6a578063fc2f0fd814610d89575f80fd5b8063d8d9d6bc14610c8d578063e5211d8b14610cbb578063e65d231514610cda578063e985e9c514610cf9575f80fd5b8063c622c8d1116100e3578063c622c8d114610c0e578063c6b1fe5814610c3a578063c848d6c714610c59578063ce59df8b14610c6e575f80fd5b8063b4387f7f14610b99578063b7bc15a214610bac578063c3e50ad214610bc1578063c40b3cc514610bef575f80fd5b806395d89b4111610194578063a5492f4411610164578063a5492f4414610afe578063a684c47114610b1d578063a6b431af14610b3c578063a6d23e1014610b5b578063accc1d5e14610b7a575f80fd5b806395d89b4114610a7e578063a22cb46514610a92578063a370c66814610ab1578063a4c2f65114610adf575f80fd5b80638413c6c9116101cf5780638413c6c914610a10578063881773db14610a2f5780638c0163b714610a4e5780638da5cb5b14610a61575f80fd5b80636c30a22f14610986578063715018a6146109a557806376b14935146109b957806383ca4b6f146109f1575f80fd5b80632bf4d099116102f65780634f558e791161028b5780635e114dce1161025b5780635e114dce146108df5780635fff9ad6146108fe57806366443b611461091d578063684d11f9146109485780636aec6a3714610967575f80fd5b80634f558e791461085a578063531a0155146108885780635b7460771461089b5780635c975abb146108c6575f80fd5b80634653d2cc116102c65780634653d2cc14610750578063468738631461077c57806347435153146107b25780634e1273f41461083b575f80fd5b80632bf4d099146106eb5780632eb2c2d6146106fe57806333ea51a81461071d5780633ccfd60b1461073c575f80fd5b806314bfd6d0116103775780631f7b4f30116103475780631f7b4f301461064d578063220b6a0b1461066c578063239c70ae1461068b578063281bda41146106a0578063290c7b6d146106bf575f80fd5b806314bfd6d0146105cf578063165da72a1461060657806318160ddd146106255780631acff68114610639575f80fd5b806306fdde03116103b257806306fdde031461053a578063088a4ed01461055b5780630e89341c1461057a57806314905abc14610599575f80fd5b8062fdd58e1461048057806301f611b1146104b257806301ffc9a7146104d1578063039af9eb14610500575f80fd5b3661047c576017546001600160a01b03166104435760405162461bcd60e51b815260206004820152601760248201527f5061796d656e742061646472657373206e6f742073657400000000000000000060448201526064015b60405180910390fd5b60175460405134916001600160a01b03169082156108fc029083905f818181858888f1935050505015801561047a573d5f803e3d5ffd5b005b5f80fd5b34801561048b575f80fd5b5061049f61049a36600461478d565b610da8565b6040519081526020015b60405180910390f35b3480156104bd575f80fd5b5061047a6104cc3660046147c4565b610dcf565b3480156104dc575f80fd5b506104f06104eb36600461480b565b610e35565b60405190151581526020016104a9565b34801561050b575f80fd5b5061051f61051a366004614826565b610e84565b604080519384526020840192909252908201526060016104a9565b348015610545575f80fd5b5061054e610eb5565b6040516104a9919061488a565b348015610566575f80fd5b5061047a610575366004614826565b610f41565b348015610585575f80fd5b5061054e610594366004614826565b610f4e565b3480156105a4575f80fd5b5061049f6105b336600461478d565b600f60209081525f928352604080842090915290825290205481565b3480156105da575f80fd5b506105ee6105e9366004614826565b6112b4565b6040516001600160a01b0390911681526020016104a9565b348015610611575f80fd5b506104f0610620366004614826565b6112dc565b348015610630575f80fd5b5060085461049f565b348015610644575f80fd5b5061054e6113a5565b348015610658575f80fd5b5061054e610667366004614826565b6113b2565b348015610677575f80fd5b5061047a6106863660046148aa565b6113ca565b348015610696575f80fd5b5061049f600a5481565b3480156106ab575f80fd5b5061047a6106ba3660046148f7565b611502565b3480156106ca575f80fd5b506106de6106d936600461492e565b61152e565b6040516104a99190614987565b61047a6106f9366004614999565b611643565b348015610709575f80fd5b5061047a610718366004614b2a565b611738565b348015610728575f80fd5b5061047a610737366004614bd0565b611797565b348015610747575f80fd5b5061047a6117c1565b34801561075b575f80fd5b5061076f61076a36600461492e565b6118f7565b6040516104a99190614beb565b348015610787575f80fd5b5061049f61079636600461478d565b601460209081525f928352604080842090915290825290205481565b3480156107bd575f80fd5b506107d16107cc366004614826565b611980565b604080519d15158e529b151560208e01529915159a8c019a909a5296151560608b015294151560808a015292151560a089015260c088019190915260e08701526101008601526101208501526101408401526101608301919091526101808201526101a0016104a9565b348015610846575f80fd5b506106de610855366004614c37565b611a0f565b348015610865575f80fd5b506104f0610874366004614826565b5f908152600e602052604090205460ff1690565b61047a610896366004614d39565b611ad9565b3480156108a6575f80fd5b5061049f6108b5366004614826565b600d6020525f908152604090205481565b3480156108d1575f80fd5b50600c546104f09060ff1681565b3480156108ea575f80fd5b5061047a6108f9366004614da6565b611b5f565b348015610909575f80fd5b5061049f610918366004614e8e565b611c2f565b348015610928575f80fd5b5061049f610937366004614826565b5f908152600d602052604090205490565b348015610953575f80fd5b5061047a610962366004614ecd565b611ca3565b348015610972575f80fd5b5061047a61098136600461492e565b611d87565b348015610991575f80fd5b5061047a6109a0366004614999565b611de3565b3480156109b0575f80fd5b5061047a611e3e565b3480156109c4575f80fd5b506109d86109d3366004614f92565b611e51565b60408051921515835260ff9091166020830152016104a9565b3480156109fc575f80fd5b5061047a610a0b366004614fd9565b611ef3565b348015610a1b575f80fd5b5061047a610a2a366004614999565b611efe565b348015610a3a575f80fd5b5061047a610a49366004615021565b611f6c565b61047a610a5c366004615056565b612118565b348015610a6c575f80fd5b506003546001600160a01b03166105ee565b348015610a89575f80fd5b5061054e612221565b348015610a9d575f80fd5b5061047a610aac3660046150ba565b61222e565b348015610abc575f80fd5b506104f0610acb366004614826565b60186020525f908152604090205460ff1681565b348015610aea575f80fd5b5061047a610af9366004614bd0565b612239565b348015610b09575f80fd5b5061047a610b183660046150ba565b6122ec565b348015610b28575f80fd5b506004546105ee906001600160a01b031681565b348015610b47575f80fd5b5061047a610b563660046147c4565b61236d565b348015610b66575f80fd5b506017546105ee906001600160a01b031681565b348015610b85575f80fd5b5061047a610b943660046150d6565b6123e1565b61047a610ba7366004615114565b612439565b348015610bb7575f80fd5b5061049f60085481565b348015610bcc575f80fd5b506104f0610bdb366004614826565b600e6020525f908152604090205460ff1681565b348015610bfa575f80fd5b5061047a610c093660046151a5565b6125d0565b348015610c19575f80fd5b50610c2d610c2836600461492e565b612618565b6040516104a991906151dc565b348015610c45575f80fd5b5061049f610c54366004614826565b6126b6565b348015610c64575f80fd5b5061049f600b5481565b348015610c79575f80fd5b5061054e610c8836600461492e565b6126e1565b348015610c98575f80fd5b506104f0610ca7366004614bd0565b60196020525f908152604090205460ff1681565b348015610cc6575f80fd5b5061047a610cd5366004615215565b61289c565b348015610ce5575f80fd5b5061047a610cf4366004615238565b612912565b348015610d04575f80fd5b506104f0610d133660046152b6565b612949565b348015610d23575f80fd5b506104f0612976565b348015610d37575f80fd5b5061047a610d463660046152e2565b612a28565b348015610d56575f80fd5b5061047a610d65366004614bd0565b612a87565b348015610d75575f80fd5b5061047a610d84366004614826565b612ac4565b348015610d94575f80fd5b5061047a610da3366004615345565b612ad1565b5f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b610dd7612aff565b82610e08578160098281548110610df057610df0615379565b905f5260205f209060130201600a0181905550505050565b8160098281548110610e1c57610e1c615379565b905f5260205f209060130201600b01819055505b505050565b5f6001600160e01b03198216636cdb3d1360e11b1480610e6557506001600160e01b031982166303a24d0760e21b145b80610dc957506301ffc9a760e01b6001600160e01b0319831614610dc9565b60128181548110610e93575f80fd5b5f91825260209091206003909102018054600182015460029092015490925083565b60068054610ec29061538d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eee9061538d565b8015610f395780601f10610f1057610100808354040283529160200191610f39565b820191905f5260205f20905b815481529060010190602001808311610f1c57829003601f168201915b505050505081565b610f49612aff565b600a55565b5f818152600e602052604090205460609060ff161580610f6f575060085482115b156110045760158054610f819061538d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad9061538d565b8015610ff85780601f10610fcf57610100808354040283529160200191610ff8565b820191905f5260205f20905b815481529060010190602001808311610fdb57829003601f168201915b50505050509050919050565b5f828152601660205260408120805461101c9061538d565b9050111561103c575f8281526016602052604090208054610f819061538d565b5f5b6009548110156112a6576009818154811061105b5761105b615379565b5f918252602082206013909102010154831015801561109f57506009818154811061108857611088615379565b5f9182526020909120601390910201600101548311155b1561129457600981815481106110b7576110b7615379565b5f91825260209091206005601390920201015460ff1661116257601580546110de9061538d565b80601f016020809104026020016040519081016040528092919081815260200182805461110a9061538d565b80156111555780601f1061112c57610100808354040283529160200191611155565b820191905f5260205f20905b81548152906001019060200180831161113857829003601f168201915b5050505050915050919050565b5f838152601060205260408120805461117a9061538d565b9050111561121f576009818154811061119557611195615379565b5f91825260208220600360139092020101905f8581526010602052604090209101906111c085612b11565b600984815481106111d3576111d3615379565b905f5260205f2090601302016003016001600281106111f4576111f4615379565b016040516020016112089493929190615434565b604051602081830303815290604052915050919050565b6009818154811061123257611232615379565b5f918252602082206003601390920201010161124d84612b11565b6009838154811061126057611260615379565b905f5260205f20906013020160030160016002811061128157611281615379565b016040516020016112089392919061547d565b8061129e816154c3565b91505061103e565b5060158054610f819061538d565b600581815481106112c3575f80fd5b5f918252602090912001546001600160a01b0316905081565b6009545f9081901561139d575f5b600954811015611366576009818154811061130757611307615379565b5f918252602082206013909102010154841015801561134b57506009818154811061133457611334615379565b5f9182526020909120601390910201600101548411155b15611354578091505b8061135e816154c3565b9150506112ea565b506009818154811061137a5761137a615379565b5f91825260209091206013909102016005015462010000900460ff169392505050565b505f92915050565b60138054610ec29061538d565b60106020525f908152604090208054610ec29061538d565b6113d2612aff565b6040805160608101825284815260208101849052908101829052851561148557601280546001810182555f9190915281517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344460039092029182015560208201517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344582015560408201517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3446909101556114fa565b6012541580611499575060125460ff861610155b156114b757604051637ae9080f60e11b815260040160405180910390fd5b8060128660ff16815481106114ce576114ce615379565b905f5260205f2090600302015f820151815f015560208201518160010155604082015181600201559050505b505050505050565b61150a612aff565b6011805461ffff191692151561ff0019169290921761010091151591909102179055565b6060826010036115ae576009828154811061154b5761154b615379565b905f5260205f209060130201600f018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905b81548152602001906001019080831161158e575b50505050509050610dc9565b8260110361162a57600982815481106115c9576115c9615379565b905f5260205f2090601302016010018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f209081548152602001906001019080831161158e5750505050509050610dc9565b604080515f80825260208201909252905b509392505050565b61164b612976565b61171157611711826009838154811061166657611666615379565b905f5260205f20906013020160050160049054906101000a900460ff166009848154811061169657611696615379565b5f918252602082206006601390920201010154600985815481106116bc576116bc615379565b905f5260205f2090601302016006016001600281106116dd576116dd615379565b01546116e93389610da8565b600987815481106116fc576116fc615379565b905f5260205f20906013020160080154612ba0565b61171a82612b11565b5f848152601060205260409020906117329082615526565b50505050565b336001600160a01b038616811480159061175957506117578682612949565b155b1561178a5760405163711bec9160e11b81526001600160a01b0380831660048301528716602482015260440161043a565b6114fa8686868686612c7c565b61179f612cda565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6117c9612aff565b6017546001600160a01b031661181a5760405162461bcd60e51b815260206004820152601660248201527514185e5bdd5d081859191c995cdcc81b9bdd081cd95d60521b604482015260640161043a565b478061185f5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b604482015260640161043a565b6017546040515f916001600160a01b03169083908381818185875af1925050503d805f81146118a9576040519150601f19603f3d011682016040523d82523d5f602084013e6118ae565b606091505b50509050806118f35760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161043a565b5050565b60608260120361162a576009828154811061191457611914615379565b905f5260205f2090601302016011018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116119575750505050509050610dc9565b6009818154811061198f575f80fd5b5f9182526020909120601390910201600581015460088201546009830154600a840154600b850154600c860154600d870154600e9097015460ff808816995061010088048116986201000089048216986301000000810483169864010000000082048416986501000000000090920490931696929590949293909291908d565b60608151835114611a405781518351604051635b05999160e01b81526004810192909252602482015260440161043a565b5f83516001600160401b03811115611a5a57611a5a6149c2565b604051908082528060200260200182016040528015611a83578160200160208202803683370190505b5090505f5b845181101561163b57602080820286010151611aac90602080840287010151610da8565b828281518110611abe57611abe615379565b6020908102919091010152611ad2816154c3565b9050611a88565b611ae3835f612d07565b611aee858585612d9f565b611b0b57604051636d4fb7eb60e11b815260040160405180910390fd5b611b17848484846130ed565b611b21858461340c565b5f858152600d602052604081208054869290611b3e9084906155e1565b925050819055506114fa86868660405180602001604052805f8152506135db565b611b67612aff565b8415611b82578051601590611b7c9082615526565b50611c28565b8315611b97578051601390611b7c9082615526565b82611bf75780515f83815260166020526040902090611bb69082615526565b50805160405183917f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b91611bea919061488a565b60405180910390a2611c28565b8060098381548110611c0b57611c0b615379565b905f5260205f2090601302016003019060026114fa929190614520565b5050505050565b5f611c38612976565b611c99578215611c6f5760128260ff1681548110611c5857611c58615379565b905f5260205f209060030201600101549050611c9c565b60098481548110611c8257611c82615379565b905f5260205f209060130201600901549050611c9c565b505f5b9392505050565b611cab612aff565b611cb489613636565b878760098b81548110611cc957611cc9615379565b905f5260205f209060130201600f019190611ce5929190614569565b50858560098b81548110611cfb57611cfb615379565b905f5260205f2090601302016010019190611d17929190614569565b50838360098b81548110611d2d57611d2d615379565b905f5260205f2090601302016011019190611d499291906145ae565b50818160098b81548110611d5f57611d5f615379565b905f5260205f2090601302016012019190611d7b9291906145ff565b50505050505050505050565b611d8f612aff565b611d9882613636565b428111611db8576040516358fadd0160e11b815260040160405180910390fd5b8060098381548110611dcc57611dcc615379565b905f5260205f209060130201600e01819055505050565b611deb612aff565b8160098281548110611dff57611dff615379565b905f5260205f209060130201600c01819055508260098281548110611e2657611e26615379565b905f5260205f209060130201600d0181905550505050565b611e46612cda565b611e4f5f613658565b565b6011545f90819060ff1615611ee55760405163f33f245d60e01b8152734bd57b26970926d71cb9a356941603dedda35da89063f33f245d90611e9e908890889088906012906004016155f4565b6040805180830381865af4158015611eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611edc9190615638565b91509150611eeb565b505f9050805b935093915050565b6118f33383836136a9565b611f06612aff565b81831115611f275760405163f142fb6160e01b815260040160405180910390fd5b60405180604001604052808481526020018381525060098281548110611f4f57611f4f615379565b905f5260205f20906013020160060190600261173292919061469c565b611f74612aff565b825f03611fba578160098281548110611f8f57611f8f615379565b905f5260205f20906013020160050160016101000a81548160ff021916908315150217905550505050565b82600103611ffc578160098281548110611fd657611fd6615379565b5f9182526020909120601390910201600501805460ff1916911515919091179055505050565b8260020361204357816009828154811061201857612018615379565b905f5260205f20906013020160050160056101000a81548160ff021916908315150217905550505050565b8260030361208a57816009828154811061205f5761205f615379565b905f5260205f20906013020160050160036101000a81548160ff021916908315150217905550505050565b826004036120d15781600982815481106120a6576120a6615379565b905f5260205f20906013020160050160026101000a81548160ff021916908315150217905550505050565b82600603610e305781600982815481106120ed576120ed615379565b905f5260205f20906013020160050160046101000a81548160ff021916908315150217905550505050565b612123836001612d07565b6121606009848154811061213957612139615379565b5f9182526020909120601390910201600101545f908152600e602052604090205460ff1690565b1561217e5760405163ade1cb4160e01b815260040160405180910390fd5b60095483106121a057604051637a02f9b760e01b815260040160405180910390fd5b61220a6001600985815481106121b8576121b8615379565b5f9182526020909120601390910201600201546121d590876155e1565b6121df9190615665565b600985815481106121f2576121f2615379565b5f9182526020909120601390910201600101546136ec565b612216848484846130ed565b611c28858585613716565b60078054610ec29061538d565b6118f33383836138ce565b612241612aff565b6003546001600160a01b03163314158061226f57506004546001600160a01b0316336001600160a01b031614155b1561229b57335b60405163117e92d360e01b81526001600160a01b03909116600482015260240161043a565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f2fdb009e73c3064815cc19c79e750359fe8123b1919695d5823aefd641afff52905f90a35050565b6003546001600160a01b031633148061230f57506004546001600160a01b031633145b6123435760405162461bcd60e51b81526020600482015260056024820152641393dbd41360da1b604482015260640161043a565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b612375612aff565b826123b557816009828154811061238e5761238e615379565b905f5260205f209060130201600901819055508160098281548110611e2657611e26615379565b81600982815481106123c9576123c9615379565b905f5260205f20906013020160080181905550505050565b6123e9612aff565b6003546001600160a01b03163314158061241757506004546001600160a01b0316336001600160a01b031614155b156124225733612276565b61242d60055f6146ca565b610e30600583836145ae565b612443835f612d07565b6124508551600a546136ec565b835185511461247257604051633df3e4f760e21b815260040160405180910390fd5b61247d858585613962565b61249a57604051636d4fb7eb60e11b815260040160405180910390fd5b5f805b85518110156124df578581815181106124b8576124b8615379565b6020026020010151826124cb91906155e1565b9150806124d7816154c3565b91505061249d565b50600a5481116125025760405163d2aca54760e01b815260040160405180910390fd5b61250e818585856130ed565b5f5b86518110156125ac575f87828151811061252c5761252c615379565b60200260200101519050612540818761340c565b86828151811061255257612552615379565b6020026020010151600d5f8a858151811061256f5761256f615379565b602002602001015181526020019081526020015f205f82825461259291906155e1565b909155508291506125a49050816154c3565b915050612510565b506125c787878760405180602001604052805f8152506139e2565b50505050505050565b6125d8612aff565b600980546001810182555f9190915281906013027f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01610e308282615a70565b60608260130361162a576009828154811061263557612635615379565b905f5260205f2090601302016012018054806020026020016040519081016040528092919081815260200182805480156115a257602002820191905f5260205f20905f905b825461010083900a900460ff16151581526020600192830181810494850194909303909202910180841161267a57905050505050509050610dc9565b5f600982815481106126ca576126ca615379565b905f5260205f209060130201600b01549050919050565b6060825f03612797576127176009838154811061270057612700615379565b5f91825260208220601390910201905b0154612b11565b6127436009848154811061272d5761272d615379565b5f91825260209091206013909102016001612710565b61276f6009858154811061275957612759615379565b5f91825260209091206013909102016002612710565b60405160200161278193929190615c72565b6040516020818303038152906040529050610dc9565b8260010361280a57600982815481106127b2576127b2615379565b5f9182526020822060036013909202010101600983815481106127d7576127d7615379565b905f5260205f2090601302016003016001600281106127f8576127f8615379565b01604051602001612781929190615ce6565b826008036128875761283f6009838154811061282857612828615379565b5f9182526020822060066013909202010190612710565b6128766009848154811061285557612855615379565b905f5260205f20906013020160060160016002811061271057612710615379565b604051602001612781929190615d22565b5060408051602081019091525f815292915050565b6003546001600160a01b03163314806128bf57506004546001600160a01b031633145b6128f35760405162461bcd60e51b81526020600482015260056024820152641393dbd41360da1b604482015260640161043a565b5f91825260186020526040909120805460ff1916911515919091179055565b61291a612aff565b816009828154811061292e5761292e615379565b5f9182526020909120610e30926013909202019060036146e5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205460ff1690565b5f6129896003546001600160a01b031690565b6001600160a01b0316336001600160a01b031614806129bb57506004546001600160a01b0316336001600160a01b0316145b156129c65750600190565b60055415612a23575f5b600554811015612a2157600581815481106129ed576129ed615379565b5f918252602090912001546001600160a01b03163303612a0f57600191505090565b80612a19816154c3565b9150506129d0565b505b505f90565b336001600160a01b0386168114801590612a495750612a478682612949565b155b15612a7a5760405163711bec9160e11b81526001600160a01b0380831660048301528716602482015260440161043a565b6114fa8686868686613a18565b612a8f612cda565b6001600160a01b038116612ab857604051631e4fbdf760e01b81525f600482015260240161043a565b612ac181613658565b50565b612acc612aff565b600855565b612ad9612aff565b8215612af457600c805482151560ff19909116179055505050565b610e305f8284611f6c565b612b07612976565b611e4f5733612276565b60605f612b1d83613a9b565b60010190505f816001600160401b03811115612b3b57612b3b6149c2565b6040519080825280601f01601f191660200182016040528015612b65576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612b6f57509392505050565b84612bd35760405162461bcd60e51b815260206004820152600360248201526210a92960e91b604482015260640161043a565b8386118015612be25750828611155b612c135760405162461bcd60e51b815260206004820152600260248201526110a960f11b604482015260640161043a565b5f8211612c475760405162461bcd60e51b8152602060048201526002602482015261214f60f01b604482015260640161043a565b803410156114fa5760405162461bcd60e51b8152602060048201526002602482015261243f60f01b604482015260640161043a565b6001600160a01b038416612ca557604051632bfa23e760e11b81525f600482015260240161043a565b6001600160a01b038516612ccd57604051626a0d4560e21b81525f600482015260240161043a565b611c288585858585613b72565b6003546001600160a01b03163314611e4f5760405163118cdaa760e01b815233600482015260240161043a565b80158015612d41575060098281548110612d2357612d23615379565b905f5260205f20906013020160050160039054906101000a900460ff165b80612d815750808015612d81575060098281548110612d6257612d62615379565b905f5260205f20906013020160050160039054906101000a900460ff16155b156118f357604051631288c1f560e31b815260040160405180910390fd5b5f60098281548110612db357612db3615379565b5f918252602082206013909102010154841080612df4575060098281548110612dde57612dde615379565b5f91825260209091206013909102016001015484115b15612e1257604051632e06b04b60e11b815260040160405180910390fd5b612e1e83600a546136ec565b600854841115612e4157604051637ae9080f60e11b815260040160405180910390fd5b60098281548110612e5457612e54615379565b905f5260205f209060130201600b01545f14158015612eb0575060098281548110612e8157612e81615379565b905f5260205f209060130201600b015483600d5f8781526020019081526020015f2054612eae91906155e1565b115b15612ebc57505f611c9c565b5f60098381548110612ed057612ed0615379565b905f5260205f209060130201600f018054905011156130e3576130d760098381548110612eff57612eff615379565b905f5260205f209060130201601101805480602002602001604051908101604052809291908181526020018280548015612f6057602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311612f42575b50505050503360098581548110612f7957612f79615379565b905f5260205f209060130201600f01805480602002602001604051908101604052809291908181526020018280548015612fd057602002820191905f5260205f20905b815481526020019060010190808311612fbc575b505050505060098681548110612fe857612fe8615379565b905f5260205f20906013020160100180548060200260200160405190810160405280929190818152602001828054801561303f57602002820191905f5260205f20905b81548152602001906001019080831161302b575b50505050506009878154811061305757613057615379565b905f5260205f2090601302016012018054806020026020016040519081016040528092919081815260200182805480156130cd57602002820191905f5260205f20905f905b825461010083900a900460ff16151581526020600192830181810494850194909303909202910180841161309c5790505b5050505050613bc5565b156130e357505f611c9c565b5060019392505050565b6130f5612976565b61173257600c5460ff168061313657506009838154811061311857613118615379565b905f5260205f20906013020160050160019054906101000a900460ff165b15613154576040516313d0ff5960e31b815260040160405180910390fd5b5f6009848154811061316857613168615379565b905f5260205f209060130201600e015411156131c1576009838154811061319157613191615379565b905f5260205f209060130201600e01544210156131c1576040516301f8564360e31b815260040160405180910390fd5b600983815481106131d4576131d4615379565b905f5260205f209060130201600a01545f1461328157600983815481106131fd576131fd615379565b5f9182526020808320600a6013909302019190910154338352600f825260408084208785529092529120546132339086906155e1565b11156132525760405163d2aca54760e01b815260040160405180910390fd5b335f908152600f602090815260408083208684529091528120805486929061327b9084906155e1565b90915550505b6040516bffffffffffffffffffffffff193360601b1660208201525f9081906132c6908590859060340160405160208183030381529060405280519060200120611e51565b9150915081156133ae5760128160ff16815481106132e6576132e6615379565b905f5260205f2090600302015f01545f146133a95760128160ff168154811061331157613311615379565b5f918252602080832060039092029091015433835260148252604080842060ff861685529092529120546133469088906155e1565b1161338257335f90815260146020908152604080832060ff85168452909152812080548892906133779084906155e1565b909155506133a99050565b60125461339190600190615665565b8160ff1610156133a957806133a581615d78565b9150505b6133d7565b601154610100900460ff16156133d75760405163665c1c5760e01b815260040160405180910390fd5b6133e2858383611c2f565b6133ec9087615678565b3410156114fa5760405163356680b760e01b815260040160405180910390fd5b5f828152600e602052604090205460ff16613481575f828152600e60205260409020805460ff19166001179055600980548290811061344d5761344d615379565b905f5260205f20906013020160050160039054906101000a900460ff1615613481575f828152600d60205260409020600190555b6009818154811061349457613494615379565b905f5260205f20906013020160050160059054906101000a900460ff16156134d9576134bf81613de3565b5f838152601060205260409020906134d79082615526565b505b600981815481106134ec576134ec615379565b905f5260205f209060130201600d01546009828154811061350f5761350f615379565b905f5260205f209060130201600901541415801561357457506009818154811061353b5761353b615379565b905f5260205f209060130201600c01546009828154811061355e5761355e615379565b5f91825260209091206013909102016002015410155b156135c3576009818154811061358c5761358c615379565b905f5260205f209060130201600d0154600982815481106135af576135af615379565b905f5260205f209060130201600901819055505b600b8054905f6135d2836154c3565b91905055505050565b6001600160a01b03841661360457604051632bfa23e760e11b81525f600482015260240161043a565b604080516001808252602082018690528183019081526060820185905260808201909252906114fa5f87848487613b72565b6009548110612ac157604051637a02f9b760e01b815260040160405180910390fd5b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166136d157604051626a0d4560e21b81525f600482015260240161043a565b610e30835f848460405180602001604052805f815250613b72565b808211806136f8575081155b156118f35760405163162908e360e11b815260040160405180910390fd5b5f826001600160401b0381111561372f5761372f6149c2565b604051908082528060200260200182016040528015613758578160200160208202803683370190505b5090505f836001600160401b03811115613774576137746149c2565b60405190808252806020026020018201604052801561379d578160200160208202803683370190505b5090505f5b848110156138b3575f600985815481106137be576137be615379565b5f91825260209091206013909102016002015490506137df81600187612d9f565b6137fc57604051636d4fb7eb60e11b815260040160405180910390fd5b613806818661340c565b6009858154811061381957613819615379565b5f91825260209091206013909102016002015484838151811061383e5761383e615379565b602002602001018181525050600183838151811061385e5761385e615379565b6020026020010181815250506009858154811061387d5761387d615379565b5f9182526020822060026013909202010180549161389a836154c3565b91905055505080806138ab906154c3565b9150506137a2565b50611c2885838360405180602001604052805f8152506139e2565b6001600160a01b0382166138f65760405162ced3e160e81b81525f600482015260240161043a565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b5f805b84518110156139d7575f85828151811061398157613981615379565b602002602001015190505f85838151811061399e5761399e615379565b602002602001015190506139b3828287612d9f565b6139c2575f9350505050611c9c565b505080806139cf906154c3565b915050613965565b506001949350505050565b6001600160a01b038416613a0b57604051632bfa23e760e11b81525f600482015260240161043a565b6117325f85858585613b72565b6001600160a01b038416613a4157604051632bfa23e760e11b81525f600482015260240161043a565b6001600160a01b038516613a6957604051626a0d4560e21b81525f600482015260240161043a565b604080516001808252602082018690528183019081526060820185905260808201909252906125c78787848487613b72565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613ad95772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613b05576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310613b2357662386f26fc10000830492506010015b6305f5e1008310613b3b576305f5e100830492506008015b6127108310613b4f57612710830492506004015b60648310613b61576064830492506002015b600a8310610dc95760010192915050565b613b7e85858585613e9d565b6001600160a01b03841615611c285782513390600103613bb75760208481015190840151613bb0838989858589614064565b50506114fa565b6114fa818787878787614185565b5f8251845114613be857604051633df3e4f760e21b815260040160405180910390fd5b5f5b8451811015613dd457828181518110613c0557613c05615379565b602002602001015115613cfe575f878281518110613c2557613c25615379565b602002602001015190505f816001600160a01b031662fdd58e89898681518110613c5157613c51615379565b60200260200101516040518363ffffffff1660e01b8152600401613c8a9291906001600160a01b03929092168252602082015260400190565b602060405180830381865afa158015613ca5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cc99190615d96565b9050858381518110613cdd57613cdd615379565b6020026020010151811015613cf7575f9350505050613dda565b5050613dc2565b5f878281518110613d1157613d11615379565b602002602001015190505f816001600160a01b0316636352211e888581518110613d3d57613d3d615379565b60200260200101516040518263ffffffff1660e01b8152600401613d6391815260200190565b602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da29190615dad565b9050336001600160a01b03821614613dbf575f9350505050613dda565b50505b80613dcc816154c3565b915050613bea565b50600190505b95945050505050565b6060610dc9424433600b5460105f6001600b54613e009190615665565b81526020019081526020015f20604051602001613e21959493929190615dc8565b604051602081830303815290604052805190602001205f1c600b5460098581548110613e4f57613e4f615379565b905f5260205f209060130201600601600160028110613e7057613e70615379565b015460098681548110613e8557613e85615379565b5f91825260208220600660139092020101015461426c565b6001600160a01b0384165f9081526019602052604090205460ff1680613eda57506001600160a01b0383165f9081526019602052604090205460ff165b15613ef85760405163ccc0891360e01b815260040160405180910390fd5b5f5b8251811015613f655760185f848381518110613f1857613f18615379565b60209081029190910181015182528101919091526040015f205460ff1615613f535760405163e8e3a25960e01b815260040160405180910390fd5b80613f5d816154c3565b915050613efa565b50613f7284848484614308565b5f5b8251811015611c2857613f9f838281518110613f9257613f92615379565b60200260200101516112dc565b15613fe757600160185f858481518110613fbb57613fbb615379565b602002602001015181526020019081526020015f205f6101000a81548160ff0219169083151502179055505b6001600160a01b038416614052575f83828151811061400857614008615379565b6020026020010151905082828151811061402457614024615379565b6020026020010151600d5f8381526020019081526020015f205f82825461404b9190615665565b9091555050505b8061405c816154c3565b915050613f74565b6001600160a01b0384163b156114fa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906140a89089908990889088908890600401615dfd565b6020604051808303815f875af19250505080156140e2575060408051601f3d908101601f191682019092526140df91810190615e36565b60015b614149573d80801561410f576040519150601f19603f3d011682016040523d82523d5f602084013e614114565b606091505b5080515f0361414157604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b805181602001fd5b6001600160e01b0319811663f23a6e6160e01b146125c757604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b6001600160a01b0384163b156114fa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906141c99089908990889088908890600401615e51565b6020604051808303815f875af1925050508015614203575060408051601f3d908101601f1916820190925261420091810190615e36565b60015b614230573d80801561410f576040519150601f19603f3d011682016040523d82523d5f602084013e614114565b6001600160e01b0319811663bc197c8160e01b146125c757604051632bfa23e760e11b81526001600160a01b038616600482015260240161043a565b6040805160208082018790528183018690524260608084019190915233811b6bffffffffffffffffffffffff1916608084015283516074818503018152609490930190935281519101205f906142c3908590615ea2565b9050828110156142f2576142ea6142db8260016155e1565b6142e59086615665565b612b11565b915050614300565b6142ea6142e58260016155e1565b949350505050565b80518251146143375781518151604051635b05999160e01b81526004810192909252602482015260440161043a565b335f5b8351811015614442576020818102858101820151908501909101516001600160a01b038816156143eb575f828152602081815260408083206001600160a01b038c168452909152902054818110156143c5576040516303dee4c560e01b81526001600160a01b038a16600482015260248101829052604481018390526064810184905260840161043a565b5f838152602081815260408083206001600160a01b038d16845290915290209082900390555b6001600160a01b0387161561442f575f828152602081815260408083206001600160a01b038b168452909152812080548392906144299084906155e1565b90915550505b50508061443b906154c3565b905061433a565b5082516001036144c25760208301515f906020840151909150856001600160a01b0316876001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516144b3929190918252602082015260400190565b60405180910390a45050611c28565b836001600160a01b0316856001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051614511929190615ec1565b60405180910390a45050505050565b8260028101928215614559579160200282015b8281111561455957825182906145499082615526565b5091602001919060010190614533565b50614565929150614712565b5090565b828054828255905f5260205f209081019282156145a2579160200282015b828111156145a2578235825591602001919060010190614587565b5061456592915061472e565b828054828255905f5260205f209081019282156145a2579160200282015b828111156145a25781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906145cc565b828054828255905f5260205f2090601f016020900481019282156145a2579160200282015f5b83821115614663578335151583826101000a81548160ff02191690831515021790555092602001926001016020815f01049283019260010302614625565b801561468f5782816101000a81549060ff02191690556001016020815f01049283019260010302614663565b505061456592915061472e565b82600281019282156145a2579160200282015b828111156145a25782518255916020019190600101906146af565b5080545f8255905f5260205f2090810190612ac1919061472e565b82600381019282156145a257916020028201828111156145a25782518255916020019190600101906146af565b80821115614565575f6147258282614742565b50600101614712565b5b80821115614565575f815560010161472f565b50805461474e9061538d565b5f825580601f1061475d575050565b601f0160209004905f5260205f2090810190612ac1919061472e565b6001600160a01b0381168114612ac1575f80fd5b5f806040838503121561479e575f80fd5b82356147a981614779565b946020939093013593505050565b8015158114612ac1575f80fd5b5f805f606084860312156147d6575f80fd5b83356147e1816147b7565b95602085013595506040909401359392505050565b6001600160e01b031981168114612ac1575f80fd5b5f6020828403121561481b575f80fd5b8135611c9c816147f6565b5f60208284031215614836575f80fd5b5035919050565b5f5b8381101561485757818101518382015260200161483f565b50505f910152565b5f815180845261487681602086016020860161483d565b601f01601f19169290920160200192915050565b602081525f611c9c602083018461485f565b60ff81168114612ac1575f80fd5b5f805f805f60a086880312156148be575f80fd5b85356148c9816147b7565b945060208601356148d98161489c565b94979496505050506040830135926060810135926080909101359150565b5f8060408385031215614908575f80fd5b8235614913816147b7565b91506020830135614923816147b7565b809150509250929050565b5f806040838503121561493f575f80fd5b50508035926020909101359150565b5f8151808452602080850194508084015f5b8381101561497c57815187529582019590820190600101614960565b509495945050505050565b602081525f611c9c602083018461494e565b5f805f606084860312156149ab575f80fd5b505081359360208301359350604090920135919050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156149f8576149f86149c2565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614a2657614a266149c2565b604052919050565b5f6001600160401b03821115614a4657614a466149c2565b5060051b60200190565b5f82601f830112614a5f575f80fd5b81356020614a74614a6f83614a2e565b6149fe565b82815260059290921b84018101918181019086841115614a92575f80fd5b8286015b84811015614aad5780358352918301918301614a96565b509695505050505050565b5f6001600160401b03831115614ad057614ad06149c2565b614ae3601f8401601f19166020016149fe565b9050828152838383011115614af6575f80fd5b828260208301375f602084830101529392505050565b5f82601f830112614b1b575f80fd5b611c9c83833560208501614ab8565b5f805f805f60a08688031215614b3e575f80fd5b8535614b4981614779565b94506020860135614b5981614779565b935060408601356001600160401b0380821115614b74575f80fd5b614b8089838a01614a50565b94506060880135915080821115614b95575f80fd5b614ba189838a01614a50565b93506080880135915080821115614bb6575f80fd5b50614bc388828901614b0c565b9150509295509295909350565b5f60208284031215614be0575f80fd5b8135611c9c81614779565b602080825282518282018190525f9190848201906040850190845b81811015614c2b5783516001600160a01b031683529284019291840191600101614c06565b50909695505050505050565b5f8060408385031215614c48575f80fd5b82356001600160401b0380821115614c5e575f80fd5b818501915085601f830112614c71575f80fd5b81356020614c81614a6f83614a2e565b82815260059290921b84018101918181019089841115614c9f575f80fd5b948201945b83861015614cc6578535614cb781614779565b82529482019490820190614ca4565b96505086013592505080821115614cdb575f80fd5b50614ce885828601614a50565b9150509250929050565b5f8083601f840112614d02575f80fd5b5081356001600160401b03811115614d18575f80fd5b6020830191508360208260051b8501011115614d32575f80fd5b9250929050565b5f805f805f8060a08789031215614d4e575f80fd5b8635614d5981614779565b955060208701359450604087013593506060870135925060808701356001600160401b03811115614d88575f80fd5b614d9489828a01614cf2565b979a9699509497509295939492505050565b5f805f805f60a08688031215614dba575f80fd5b8535614dc5816147b7565b9450602086810135614dd6816147b7565b94506040870135614de6816147b7565b93506060870135925060808701356001600160401b0380821115614e08575f80fd5b818901915089601f830112614e1b575f80fd5b614e236149d6565b80604084018c811115614e34575f80fd5b845b81811015614e7a57803585811115614e4d575f8081fd5b8601601f81018f13614e5e575f8081fd5b614e6c8f82358a8401614ab8565b855250928601928601614e36565b505080955050505050509295509295909350565b5f805f60608486031215614ea0575f80fd5b833592506020840135614eb2816147b7565b91506040840135614ec28161489c565b809150509250925092565b5f805f805f805f805f60a08a8c031215614ee5575f80fd5b8935985060208a01356001600160401b0380821115614f02575f80fd5b614f0e8d838e01614cf2565b909a50985060408c0135915080821115614f26575f80fd5b614f328d838e01614cf2565b909850965060608c0135915080821115614f4a575f80fd5b614f568d838e01614cf2565b909650945060808c0135915080821115614f6e575f80fd5b50614f7b8c828d01614cf2565b915080935050809150509295985092959850929598565b5f805f60408486031215614fa4575f80fd5b83356001600160401b03811115614fb9575f80fd5b614fc586828701614cf2565b909790965060209590950135949350505050565b5f8060408385031215614fea575f80fd5b82356001600160401b0380821115615000575f80fd5b61500c86838701614a50565b93506020850135915080821115614cdb575f80fd5b5f805f60608486031215615033575f80fd5b833592506020840135615045816147b7565b929592945050506040919091013590565b5f805f805f6080868803121561506a575f80fd5b853561507581614779565b9450602086013593506040860135925060608601356001600160401b0381111561509d575f80fd5b6150a988828901614cf2565b969995985093965092949392505050565b5f80604083850312156150cb575f80fd5b823561491381614779565b5f80602083850312156150e7575f80fd5b82356001600160401b038111156150fc575f80fd5b61510885828601614cf2565b90969095509350505050565b5f805f805f8060a08789031215615129575f80fd5b863561513481614779565b955060208701356001600160401b038082111561514f575f80fd5b61515b8a838b01614a50565b96506040890135915080821115615170575f80fd5b61517c8a838b01614a50565b9550606089013594506080890135915080821115615198575f80fd5b50614d9489828a01614cf2565b5f602082840312156151b5575f80fd5b81356001600160401b038111156151ca575f80fd5b82016102e08185031215611c9c575f80fd5b602080825282518282018190525f9190848201906040850190845b81811015614c2b5783511515835292840192918401916001016151f7565b5f8060408385031215615226575f80fd5b823591506020830135614923816147b7565b5f8060808385031215615249575f80fd5b83601f840112615257575f80fd5b604051606081018181106001600160401b0382111715615279576152796149c2565b60405280606085018681111561528d575f80fd5b855b818110156152a757803583526020928301920161528f565b50919691359550909350505050565b5f80604083850312156152c7575f80fd5b82356152d281614779565b9150602083013561492381614779565b5f805f805f60a086880312156152f6575f80fd5b853561530181614779565b9450602086013561531181614779565b9350604086013592506060860135915060808601356001600160401b03811115615339575f80fd5b614bc388828901614b0c565b5f805f60608486031215615357575f80fd5b8335615362816147b7565b9250602084013591506040840135614ec2816147b7565b634e487b7160e01b5f52603260045260245ffd5b600181811c908216806153a157607f821691505b6020821081036153bf57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f81546153d18161538d565b600182811680156153e957600181146153fe5761542a565b60ff198416875282151583028701945061542a565b855f526020805f205f5b858110156154215781548a820152908401908201615408565b50505082870194505b5050505092915050565b5f61544861544283886153c5565b866153c5565b602f60f81b8152845161546281600184016020890161483d565b615471600182840101866153c5565b98975050505050505050565b5f61548882866153c5565b845161549881836020890161483d565b6154a4818301866153c5565b979650505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016154d4576154d46154af565b5060010190565b5b818110156118f3575f81556001016154dc565b601f821115610e3057805f5260205f20601f840160051c810160208510156155145750805b611c28601f850160051c8301826154db565b81516001600160401b0381111561553f5761553f6149c2565b6155538161554d845461538d565b846154ef565b602080601f831160018114615586575f841561556f5750858301515b5f19600386901b1c1916600185901b1785556114fa565b5f85815260208120601f198616915b828110156155b457888601518255948401946001909101908401615595565b50858210156155d157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610dc957610dc96154af565b606080825281018490525f6001600160fb1b03851115615612575f80fd5b8460051b8087608085013760208301949094525060408101919091520160800192915050565b5f8060408385031215615649575f80fd5b8251615654816147b7565b60208401519092506149238161489c565b81810381811115610dc957610dc96154af565b8082028115828204841417610dc957610dc96154af565b815f5b600381101561173257813583820155602090910190600101615692565b5f8235603e198336030181126156c3575f80fd5b9190910192915050565b81815f5b6002811015611c28578235601e198636030181126156ed575f80fd5b850180356001600160401b03811115615704575f80fd5b60208136038184011315615716575f80fd5b61572a82615724875461538d565b876154ef565b5f601f83116001811461575d575f841561574657508482018301355b5f19600386901b1c1916600185901b1787556157b7565b5f87815260209020601f19851690835b8281101561578e57878501860135825593850193600190910190850161576d565b50858210156157ac575f1960f88760031b161c198585890101351681555b5050600184811b0187555b505094909401935050600191820191016156d1565b5f8135610dc9816147b7565b815f5b6002811015611732578135838201556020909101906001016157db565b5f808335601e1984360301811261580d575f80fd5b8301803591506001600160401b03821115615826575f80fd5b6020019150600581901b3603821315614d32575f80fd5b81831015610e3057805f5260205f206117328382018583016154db565b6001600160401b03831115615871576158716149c2565b600160401b831115615885576158856149c2565b805483825561589584828461583d565b5081815f526020805f205f5b868110156125c757833582820155928201926001016158a1565b6001600160401b038311156158d2576158d26149c2565b600160401b8311156158e6576158e66149c2565b80548382556158f684828461583d565b5081815f526020805f205f5b868110156125c757833561591581614779565b8282015592820192600101615902565b600160401b821115615939576159396149c2565b805482825580831015610e3057815f5260205f20601f840160051c8101601f85168015615976575f198083018054828460200360031b1c16815550505b50611c28601f840160051c8301826154db565b6001600160401b038311156159a0576159a06149c2565b6159aa8382615925565b5f8181526020902082908460051c5f5b81811015615a11575f805b60208082106159d45750615a04565b6159f76159e0886157cc565b60ff908116600385901b90811b91901b1985161790565b96019591506001016159c5565b50838201556001016159ba565b50601f198616808703818814615a66575f805b82811015615a6057615a4f615a38886157cc565b60ff908116600384901b90811b91901b1984161790565b602097909701969150600101615a24565b50848401555b5050505050505050565b615a7a828261568f565b615a93615a8a60608401846156af565b600383016156cd565b60058101615aba615aa6608085016157cc565b825490151560ff1660ff1991909116178255565b615ae3615ac960a085016157cc565b82805461ff00191691151560081b61ff0016919091179055565b615b0e615af260c085016157cc565b82805462ff0000191691151560101b62ff000016919091179055565b615b3b615b1d60e085016157cc565b82805463ff000000191691151560181b63ff00000016919091179055565b615b6b615b4b61010085016157cc565b82805464ff00000000191691151560201b64ff0000000016919091179055565b615b9d615b7b61012085016157cc565b82805465ff0000000000191691151560281b65ff000000000016919091179055565b50615baf6101408301600683016157d8565b61018082013560088201556101a082013560098201556101c0820135600a8201556101e0820135600b820155610200820135600c820155610220820135600d820155610240820135600e820155615c0a6102608301836157f8565b615c188183600f860161585a565b5050615c286102808301836157f8565b615c3681836010860161585a565b5050615c466102a08301836157f8565b615c548183601186016158bb565b5050615c646102c08301836157f8565b611732818360128601615989565b605b60f81b81525f8451615c8d81600185016020890161483d565b8083019050600b60fa1b8060018301528551615cb0816002850160208a0161483d565b60029201918201528351615ccb81600384016020880161483d565b605d60f81b6003929091019182015260040195945050505050565b605b60f81b81525f615cfb60018301856153c5565b600b60fa1b8152615d0f60018201856153c5565b605d60f81b815260010195945050505050565b605b60f81b81525f8351615d3d81600185016020880161483d565b600b60fa1b6001918401918201528351615d5e81600284016020880161483d565b605d60f81b60029290910191820152600301949350505050565b5f60ff821660ff8103615d8d57615d8d6154af565b60010192915050565b5f60208284031215615da6575f80fd5b5051919050565b5f60208284031215615dbd575f80fd5b8151611c9c81614779565b8581528460208201526bffffffffffffffffffffffff198460601b1660408201528260548201525f6154a460748301846153c5565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f906154a49083018461485f565b5f60208284031215615e46575f80fd5b8151611c9c816147f6565b6001600160a01b0386811682528516602082015260a0604082018190525f90615e7c9083018661494e565b8281036060840152615e8e818661494e565b90508281036080840152615471818561485f565b5f82615ebc57634e487b7160e01b5f52601260045260245ffd5b500690565b604081525f615ed3604083018561494e565b8281036020840152613dda818561494e56fea2646970667358221220eb6e167524d02c41d182d00105cc81c44ab965b084196aa632ea48f1cabc0faf64736f6c63430008140033

Libraries Used


Deployed Bytecode Sourcemap

115393:6761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119754:8;;-1:-1:-1;;;;;119754:8:0;119746:58;;;;-1:-1:-1;;;119746:58:0;;216:2:1;119746:58:0;;;198:21:1;255:2;235:18;;;228:30;294:25;274:18;;;267:53;337:18;;119746:58:0;;;;;;;;;119852:8;;:25;;119832:9;;-1:-1:-1;;;;;119852:8:0;;:25;;;;;119832:9;;119815:14;119852:25;119815:14;119852:25;119832:9;119852:8;:25;;;;;;;;;;;;;;;;;;;;;115393:6761;;;;84144:134;;;;;;;;;;-1:-1:-1;84144:134:0;;;;;:::i;:::-;;:::i;:::-;;;968:25:1;;;956:2;941:18;84144:134:0;;;;;;;;79465:278;;;;;;;;;;-1:-1:-1;79465:278:0;;;;;:::i;:::-;;:::i;83253:310::-;;;;;;;;;;-1:-1:-1;83253:310:0;;;;;:::i;:::-;;:::i;:::-;;;2156:14:1;;2149:22;2131:41;;2119:2;2104:18;83253:310:0;1991:187:1;99775:31:0;;;;;;;;;;-1:-1:-1;99775:31:0;;;;;:::i;:::-;;:::i;:::-;;;;2570:25:1;;;2626:2;2611:18;;2604:34;;;;2654:18;;;2647:34;2558:2;2543:18;99775:31:0;2368:319:1;72047:18:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;113357:131::-;;;;;;;;;;-1:-1:-1;113357:131:0;;;;;:::i;:::-;;:::i;117369:1247::-;;;;;;;;;;-1:-1:-1;117369:1247:0;;;;;:::i;:::-;;:::i;99611:67::-;;;;;;;;;;-1:-1:-1;99611:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;50402:23;;;;;;;;;;-1:-1:-1;50402:23:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3612:32:1;;;3594:51;;3582:2;3567:18;50402:23:0;3448:203:1;120653:440:0;;;;;;;;;;-1:-1:-1;120653:440:0;;;;;:::i;:::-;;:::i;72281:101::-;;;;;;;;;;-1:-1:-1;72359:15:0;;72281:101;;99813:21;;;;;;;;;;;;;:::i;99685:38::-;;;;;;;;;;-1:-1:-1;99685:38:0;;;;;:::i;:::-;;:::i;114479:760::-;;;;;;;;;;-1:-1:-1;114479:760:0;;;;;:::i;:::-;;:::i;99397:28::-;;;;;;;;;;;;;;;;101318:143;;;;;;;;;;-1:-1:-1;101318:143:0;;;;;:::i;:::-;;:::i;80539:343::-;;;;;;;;;;-1:-1:-1;80539:343:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;111740:398::-;;;;;;:::i;:::-;;:::i;85967:441::-;;;;;;;;;;-1:-1:-1;85967:441:0;;;;;:::i;:::-;;:::i;118826:109::-;;;;;;;;;;-1:-1:-1;118826:109:0;;;;;:::i;:::-;;:::i;119204:366::-;;;;;;;;;;;;;:::i;80890:252::-;;;;;;;;;;-1:-1:-1;80890:252:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;99841:65::-;;;;;;;;;;-1:-1:-1;99841:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;72893:36;;;;;;;;;;-1:-1:-1;72893:36:0;;;;;:::i;:::-;;:::i;:::-;;;;10651:14:1;;10644:22;10626:41;;10710:14;;10703:22;10698:2;10683:18;;10676:50;10769:14;;10762:22;10742:18;;;10735:50;;;;10828:14;;10821:22;10816:2;10801:18;;10794:50;1965:13;;1958:21;10892:3;10877:19;;1946:34;1965:13;;1958:21;10945:3;10930:19;;1946:34;10981:3;10966:19;;10959:35;;;;11025:3;11010:19;;11003:35;11069:3;11054:19;;11047:35;11113:3;11098:19;;11091:35;11157:3;11142:19;;11135:36;11202:3;11187:19;;11180:36;;;;11247:3;11232:19;;11225:36;10613:3;10598:19;72893:36:0;10176:1091:1;84444:567:0;;;;;;;;;;-1:-1:-1;84444:567:0;;;;;:::i;:::-;;:::i;112678:106::-;;;;;;;;;;-1:-1:-1;112678:106:0;;;;;:::i;:::-;112735:4;112759:17;;;:12;:17;;;;;;;;;112678:106;107133:455;;;;;;:::i;:::-;;:::i;99503:48::-;;;;;;;;;;-1:-1:-1;99503:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;99469:25;;;;;;;;;;-1:-1:-1;99469:25:0;;;;;;;;116456:523;;;;;;;;;;-1:-1:-1;116456:523:0;;;;;:::i;:::-;;:::i;101782:315::-;;;;;;;;;;-1:-1:-1;101782:315:0;;;;;:::i;:::-;;:::i;112339:119::-;;;;;;;;;;-1:-1:-1;112339:119:0;;;;;:::i;:::-;112405:7;112432:18;;;:13;:18;;;;;;;112339:119;78158:493;;;;;;;;;;-1:-1:-1;78158:493:0;;;;;:::i;:::-;;:::i;75496:267::-;;;;;;;;;;-1:-1:-1;75496:267:0;;;;;:::i;:::-;;:::i;77362:240::-;;;;;;;;;;-1:-1:-1;77362:240:0;;;;;:::i;:::-;;:::i;49216:103::-;;;;;;;;;;;;;:::i;113576:243::-;;;;;;;;;;-1:-1:-1;113576:243:0;;;;;:::i;:::-;;:::i;:::-;;;;17924:14:1;;17917:22;17899:41;;17988:4;17976:17;;;17971:2;17956:18;;17949:45;17872:18;113576:243:0;17735:265:1;110880:136:0;;;;;;;;;;-1:-1:-1;110880:136:0;;;;;:::i;:::-;;:::i;78971:230::-;;;;;;;;;;-1:-1:-1;78971:230:0;;;;;:::i;:::-;;:::i;74364:733::-;;;;;;;;;;-1:-1:-1;74364:733:0;;;;;:::i;:::-;;:::i;104695:641::-;;;;;;:::i;:::-;;:::i;48541:87::-;;;;;;;;;;-1:-1:-1;48614:6:0;;-1:-1:-1;;;;;48614:6:0;48541:87;;72072:20;;;;;;;;;;;;;:::i;85084:146::-;;;;;;;;;;-1:-1:-1;85084:146:0;;;;;:::i;:::-;;:::i;115589:39::-;;;;;;;;;;-1:-1:-1;115589:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52431:346;;;;;;;;;;-1:-1:-1;52431:346:0;;;;;:::i;:::-;;:::i;120055:188::-;;;;;;;;;;-1:-1:-1;120055:188:0;;;;;:::i;:::-;;:::i;50367:28::-;;;;;;;;;;-1:-1:-1;50367:28:0;;;;-1:-1:-1;;;;;50367:28:0;;;76889:329;;;;;;;;;;-1:-1:-1;76889:329:0;;;;;:::i;:::-;;:::i;115549:31::-;;;;;;;;;;-1:-1:-1;115549:31:0;;;;-1:-1:-1;;;;;115549:31:0;;;52054:275;;;;;;;;;;-1:-1:-1;52054:275:0;;;;;:::i;:::-;;:::i;109358:1001::-;;;;;;:::i;:::-;;:::i;72099:30::-;;;;;;;;;;;;;;;;99558:44;;;;;;;;;;-1:-1:-1;99558:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;73493:208;;;;;;;;;;-1:-1:-1;73493:208:0;;;;;:::i;:::-;;:::i;81150:246::-;;;;;;;;;;-1:-1:-1;81150:246:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;113008:132::-;;;;;;;;;;-1:-1:-1;113008:132:0;;;;;:::i;:::-;;:::i;99432:28::-;;;;;;;;;;;;;;;;79751:780;;;;;;;;;;-1:-1:-1;79751:780:0;;;;;:::i;:::-;;:::i;115668:42::-;;;;;;;;;;-1:-1:-1;115668:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;120401:172;;;;;;;;;;-1:-1:-1;120401:172:0;;;;;:::i;:::-;;:::i;76037:165::-;;;;;;;;;;-1:-1:-1;76037:165:0;;;;;:::i;:::-;;:::i;85302:159::-;;;;;;;;;;-1:-1:-1;85302:159:0;;;;;:::i;:::-;;:::i;51454:441::-;;;;;;;;;;;;;:::i;85533:357::-;;;;;;;;;;-1:-1:-1;85533:357:0;;;;;:::i;:::-;;:::i;49474:220::-;;;;;;;;;;-1:-1:-1;49474:220:0;;;;;:::i;:::-;;:::i;72594:141::-;;;;;;;;;;-1:-1:-1;72594:141:0;;;;;:::i;:::-;;:::i;101076:234::-;;;;;;;;;;-1:-1:-1;101076:234:0;;;;;:::i;:::-;;:::i;84144:134::-;84221:7;84248:13;;;;;;;;;;;-1:-1:-1;;;;;84248:22:0;;;;;;;;;;84144:134;;;;;:::o;79465:278::-;51036:14;:12;:14::i;:::-;79588:11:::1;79584:152;;79647:6;79616:9;79626:10;79616:21;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;:37;;;;79465:278:::0;;;:::o;79584:152::-:1;79718:6;79686:9;79696:10;79686:21;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;:38;;;;79584:152;79465:278:::0;;;:::o;83253:310::-;83355:4;-1:-1:-1;;;;;;83392:41:0;;-1:-1:-1;;;83392:41:0;;:110;;-1:-1:-1;;;;;;;83450:52:0;;-1:-1:-1;;;83450:52:0;83392:110;:163;;;-1:-1:-1;;;;;;;;;;59726:40:0;;;83519:36;59626:148;99775:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;99775:31:0;:::o;72047:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;113357:131::-;51036:14;:12;:14::i;:::-;113447:13:::1;:33:::0;113357:131::o;117369:1247::-;117494:17;;;;:12;:17;;;;;;117425:13;;117494:17;;117493:18;;:43;;;117521:15;;117515:3;:21;117493:43;117489:137;;;117605:9;117598:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117369:1247;;;:::o;117489:137::-;117720:1;117694:15;;;:10;:15;;;;;117688:29;;;;;:::i;:::-;;;:33;117684:88;;;117745:15;;;;:10;:15;;;;;117738:22;;;;;:::i;117684:88::-;117827:9;117822:696;117846:9;:16;117842:20;;117822:696;;;117895:9;117905:1;117895:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;:26;;117888:3;:33;;:70;;;;;117932:9;117942:1;117932:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;117956:1;117932:26;;117925:3;:33;;117888:70;117884:623;;;117984:9;117994:1;117984:12;;;;;;;;:::i;:::-;;;;;;;;;:22;:12;;;;;:22;;;;117979:88;;118038:9;118031:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117369:1247;;;:::o;117979:88::-;118167:1;118147:9;;;:4;:9;;;;;118141:23;;;;;:::i;:::-;;;:27;118137:190;;;118224:9;118234:1;118224:12;;;;;;;;:::i;:::-;;;;;;;;:17;:12;;;;;:17;;118246:9;;;;:4;:9;;;;;118224:20;;;118262:21;118251:3;118262:16;:21::i;:::-;118285:9;118295:1;118285:12;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;118303:1;118285:20;;;;;;;:::i;:::-;;118207:99;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;118193:114;;;117369:1247;;;:::o;118137:190::-;118424:9;118434:1;118424:12;;;;;;;;:::i;:::-;;;;;;;;:17;:12;;;;;:17;:20;118446:21;118463:3;118446:16;:21::i;:::-;118469:9;118479:1;118469:12;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;118487:1;118469:20;;;;;;;:::i;:::-;;118407:83;;;;;;;;;;:::i;117884:623::-;117864:3;;;;:::i;:::-;;;;117822:696;;;;118599:9;118592:16;;;;;:::i;50402:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50402:23:0;;-1:-1:-1;50402:23:0;:::o;120653:440::-;120750:9;:16;120703:4;;;;120750:20;120746:317;;120792:9;120787:212;120811:9;:16;120807:20;;120787:212;;;120864:9;120874:1;120864:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;:26;;120857:3;:33;;:70;;;;;120901:9;120911:1;120901:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;120925:1;120901:26;;120894:3;:33;;120857:70;120853:131;;;120963:1;120952:12;;120853:131;120829:3;;;;:::i;:::-;;;;120787:212;;;;121020:9;121030:8;121020:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:31;;;;;;;;;;-1:-1:-1;;;120653:440:0:o;120746:317::-;-1:-1:-1;121080:5:0;;120653:440;-1:-1:-1;;120653:440:0:o;99813:21::-;;;;;;;:::i;99685:38::-;;;;;;;;;;;;;;;;:::i;114479:760::-;51036:14;:12;:14::i;:::-;114721:91:::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;114833:399;::::1;;;114943:5;:19:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;114943:19:0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;114833:399:::1;;;115089:5;:12:::0;:17;;:41:::1;;-1:-1:-1::0;115118:5:0::1;:12:::0;115110:20:::1;::::0;::::1;;;115089:41;115086:99;;;115158:11;;-1:-1:-1::0;;;115158:11:0::1;;;;;;;;;;;115086:99;115213:7;115199:5;115205:4;115199:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;114833:399;114599:640;114479:760:::0;;;;;:::o;101318:143::-;51036:14;:12;:14::i;:::-;101403:10:::1;:19:::0;;-1:-1:-1;;101433:20:0;101403:19;::::1;;-1:-1:-1::0;;101433:20:0;;;;;101403:19:::1;101433:20:::0;::::1;;::::0;;;::::1;;::::0;;101318:143::o;80539:343::-;80618:13;80648:7;80659:2;80648:13;80644:198;;80685:9;80695:8;80685:19;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;80678:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80644:198;80754:7;80765:2;80754:13;80750:92;;80791:9;80801:8;80791:19;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;80784:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80750:92;80861:13;;;80872:1;80861:13;;;;;;;;;;;-1:-1:-1;80854:20:0;80539:343;-1:-1:-1;;;80539:343:0:o;111740:398::-;111838:14;:12;:14::i;:::-;111833:252;;111869:204;111894:5;111901:9;111911:10;111901:21;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;;;;;;;;;;;111939:9;111949:10;111939:21;;;;;;;;:::i;:::-;;;;;;;;:32;:21;;;;;:32;:35;;111976:9;111986:10;111976:21;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;112009:1;111976:35;;;;;;;:::i;:::-;;;112013:26;112023:10;112035:3;112013:9;:26::i;:::-;112041:9;112051:10;112041:21;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;;111869:24;:204::i;:::-;112107:23;112124:5;112107:16;:23::i;:::-;112095:9;;;;:4;:9;;;;;;:35;;:9;:35;:::i;:::-;;111740:398;;;:::o;85967:441::-;46684:10;-1:-1:-1;;;;;86212:14:0;;;;;;;:49;;;86231:30;86248:4;86254:6;86231:16;:30::i;:::-;86230:31;86212:49;86208:131;;;86285:42;;-1:-1:-1;;;86285:42:0;;-1:-1:-1;;;;;30769:15:1;;;86285:42:0;;;30751:34:1;30821:15;;30801:18;;;30794:43;30686:18;;86285:42:0;30539:304:1;86208:131:0;86349:51;86372:4;86378:2;86382:3;86387:6;86395:4;86349:22;:51::i;118826:109::-;48427:13;:11;:13::i;:::-;118899:8:::1;:28:::0;;-1:-1:-1;;;;;;118899:28:0::1;-1:-1:-1::0;;;;;118899:28:0;;;::::1;::::0;;;::::1;::::0;;118826:109::o;119204:366::-;51036:14;:12;:14::i;:::-;119261:8:::1;::::0;-1:-1:-1;;;;;119261:8:0::1;119253:57;;;::::0;-1:-1:-1;;;119253:57:0;;31050:2:1;119253:57:0::1;::::0;::::1;31032:21:1::0;31089:2;31069:18;;;31062:30;-1:-1:-1;;;31108:18:1;;;31101:52;31170:18;;119253:57:0::1;30848:346:1::0;119253:57:0::1;119341:21;119381:11:::0;119373:44:::1;;;::::0;-1:-1:-1;;;119373:44:0;;31401:2:1;119373:44:0::1;::::0;::::1;31383:21:1::0;31440:2;31420:18;;;31413:30;-1:-1:-1;;;31459:18:1;;;31452:50;31519:18;;119373:44:0::1;31199:344:1::0;119373:44:0::1;119478:8;::::0;119470:44:::1;::::0;119452:12:::1;::::0;-1:-1:-1;;;;;119478:8:0::1;::::0;119501:7;;119452:12;119470:44;119452:12;119470:44;119501:7;119478:8;119470:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119451:63;;;119533:7;119525:37;;;::::0;-1:-1:-1;;;119525:37:0;;31960:2:1;119525:37:0::1;::::0;::::1;31942:21:1::0;31999:2;31979:18;;;31972:30;-1:-1:-1;;;32018:18:1;;;32011:47;32075:18;;119525:37:0::1;31758:341:1::0;119525:37:0::1;119242:328;;119204:366::o:0;80890:252::-;80976:16;81009:7;81020:2;81009:13;81005:94;;81046:9;81056:8;81046:19;;;;;;;;:::i;:::-;;;;;;;;;;;:41;;81039:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;81039:48:0;;;;;;;;;;;;;;;;;;;;;;;;72893:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72893:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84444:567::-;84571:16;84623:3;:10;84604:8;:15;:29;84600:123;;84683:10;;84695:15;;84657:54;;-1:-1:-1;;;84657:54:0;;;;;32278:25:1;;;;32319:18;;;32312:34;32251:18;;84657:54:0;32104:248:1;84600:123:0;84735:30;84782:8;:15;-1:-1:-1;;;;;84768:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84768:30:0;;84735:63;;84816:9;84811:160;84835:8;:15;84831:1;:19;84811:160;;;45839:4;45830:14;;;45810:35;;;45804:42;84891:68;;45839:4;45830:14;;;45810:35;;;45804:42;84144:134;:::i;84891:68::-;84872:13;84886:1;84872:16;;;;;;;;:::i;:::-;;;;;;;;;;:87;84852:3;;;:::i;:::-;;;84811:160;;107133:455;107261:32;107275:10;107287:5;107261:13;:32::i;:::-;107308:40;107323:3;107328:7;107337:10;107308:14;:40::i;:::-;107304:97;;107372:17;;-1:-1:-1;;;107372:17:0;;;;;;;;;;;107304:97;107413:36;107422:7;107431:10;107443:5;;107413:8;:36::i;:::-;107462:29;107475:3;107480:10;107462:12;:29::i;:::-;107502:18;;;;:13;:18;;;;;:29;;107524:7;;107502:18;:29;;107524:7;;107502:29;:::i;:::-;;;;;;;;107552:28;107558:3;107563;107568:7;107552:28;;;;;;;;;;;;:5;:28::i;116456:523::-;51036:14;:12;:14::i;:::-;116583:7:::1;116579:82;;;116619:9:::0;;116607::::1;::::0;:21:::1;::::0;:9;:21:::1;:::i;:::-;;116643:7;;116579:82;116677:5;116673:78;;;116709:9:::0;;116699:7:::1;::::0;:19:::1;::::0;:7;:19:::1;:::i;116673:78::-;116768:8;116763:209;;116811:9:::0;;116818:1:::1;116793:15:::0;;;:10:::1;116811:9;116793:15:::0;;;;;:27:::1;::::0;:15;:27:::1;:::i;:::-;-1:-1:-1::0;116844:9:0;;116840:19:::1;::::0;116855:3;;116840:19:::1;::::0;::::1;::::0;116844:9;116840:19:::1;:::i;:::-;;;;;;;;116763:209;;;116954:6;116932:9;116942:3;116932:14;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;:28;;;;;;;:::i;116763:209::-;116456:523:::0;;;;;:::o;101782:315::-;101870:7;101894:14;:12;:14::i;:::-;101889:182;;101928:11;101925:74;;;101966:5;101972:4;101966:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;;101959:24;;;;101925:74;102034:9;102044:8;102034:19;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;;102027:32;;;;101889:182;-1:-1:-1;102088:1:0;101782:315;;;;;;:::o;78158:493::-;51036:14;:12;:14::i;:::-;78361:21:::1;78373:8;78361:11;:21::i;:::-;78434:12;;78393:9;78403:8;78393:19;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;:53;;;;;;;:::i;:::-;;78499:8;;78457:9;78467:8;78457:19;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;:50;;;;;;;:::i;:::-;;78562:9;;78518;78528:8;78518:19;;;;;;;;:::i;:::-;;;;;;;;;;;:41;;:53;;;;;;;:::i;:::-;;78629:14;;78582:9;78592:8;78582:19;;;;;;;;:::i;:::-;;;;;;;;;;;:44;;:61;;;;;;;:::i;:::-;;78158:493:::0;;;;;;;;;:::o;75496:267::-;51036:14;:12;:14::i;:::-;75586:19:::1;75598:6;75586:11;:19::i;:::-;75633:15;75620:9;:28;75616:85;;75672:17;;-1:-1:-1::0;;;75672:17:0::1;;;;;;;;;;;75616:85;75746:9;75711;75721:6;75711:17;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;:44;;;;75496:267:::0;;:::o;77362:240::-;51036:14;:12;:14::i;:::-;77525:15:::1;77487:9;77497:10;77487:21;;;;;;;;:::i;:::-;;;;;;;;;;;:35;;:53;;;;77585:9;77551;77561:10;77551:21;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;:43;;;;77362:240:::0;;;:::o;49216:103::-;48427:13;:11;:13::i;:::-;49281:30:::1;49308:1;49281:18;:30::i;:::-;49216:103::o:0;113576:243::-;113694:10;;113666:4;;;;113694:10;;113690:94;;;113728:44;;-1:-1:-1;;;113728:44:0;;:11;;:24;;:44;;113753:5;;;;113760:4;;113766:5;;113728:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;113721:51;;;;;;113690:94;-1:-1:-1;113802:5:0;;-1:-1:-1;113802:5:0;113576:243;;;;;;;:::o;110880:136::-;110970:38;110981:10;110993:4;110999:8;110970:10;:38::i;78971:230::-;51036:14;:12;:14::i;:::-;79081:4:::1;79074;:11;79071:65;;;79109:15;;-1:-1:-1::0;;;79109:15:0::1;;;;;;;;;;;79071:65;79146:47;;;;;;;;79182:4;79146:47;;;;79188:4;79146:47;;::::0;:9:::1;79156:10;79146:21;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;:47;;;;;;;:::i;74364:733::-:0;51036:14;:12;:14::i;:::-;74468:7:::1;74479:1;74468:12:::0;74465:625:::1;;74528:6;74496:9;74506:10;74496:21;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;:38;;;;;;;;;;;;;;;;;;79465:278:::0;;;:::o;74465:625::-:1;74555:7;74566:1;74555:12:::0;74552:538:::1;;74617:6;74583:9;74593:10;74583:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:31;;:40:::0;;-1:-1:-1;;74583:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;;79465:278:0:o;74552:538::-:1;74644:7;74655:1;74644:12:::0;74641:449:::1;;74707:6;74672:9;74682:10;74672:21;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;:41;;;;;;;;;;;;;;;;;;79465:278:::0;;;:::o;74641:449::-:1;74734:7;74745:1;74734:12:::0;74731:359:::1;;74799:6;74762:9;74772:10;74762:21;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;:43;;;;;;;;;;;;;;;;;;79465:278:::0;;;:::o;74731:359::-:1;74826:7;74837:1;74826:12:::0;74823:267:::1;;74890:6;74854:9;74864:10;74854:21;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;:42;;;;;;;;;;;;;;;;;;79465:278:::0;;;:::o;74823:267::-:1;75005:7;75016:1;75005:12:::0;75002:88:::1;;75072:6;75033:9;75043:10;75033:21;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;;:45;;;;;;;;;;;;;;;;;;74364:733:::0;;;:::o;104695:641::-;104835:31;104849:10;104861:4;104835:13;:31::i;:::-;104880:43;104887:9;104897:10;104887:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;104920:1;104887:35;;112735:4;112759:17;;;:12;:17;;;;;;;;;112678:106;104880:43;104877:94;;;104947:12;;-1:-1:-1;;;104947:12:0;;;;;;;;;;;104877:94;104999:9;:16;104985:30;;104981:87;;105039:17;;-1:-1:-1;;;105039:17:0;;;;;;;;;;;104981:87;105078:114;105153:1;105115:9;105125:10;105115:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;105148:1;105115:35;;105091:59;;:21;:59;:::i;:::-;:63;;;;:::i;:::-;105156:9;105166:10;105156:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;105189:1;105156:35;;105078:12;:114::i;:::-;105205:50;105214:21;105237:10;105249:5;;105205:8;:50::i;:::-;105276:52;105289:3;105294:21;105317:10;105276:12;:52::i;72072:20::-;;;;;;;:::i;85084:146::-;85170:52;46684:10;85203:8;85213;85170:18;:52::i;52431:346::-;51036:14;:12;:14::i;:::-;48614:6;;-1:-1:-1;;;;;48614:6:0;46684:10;52513:23:::1;;::::0;:56:::1;;-1:-1:-1::0;52556:13:0::1;::::0;-1:-1:-1;;;;;52556:13:0::1;46684:10:::0;-1:-1:-1;;;;;52540:29:0::1;;;52513:56;52509:135;;;46684:10:::0;52619:12:::1;52593:39;::::0;-1:-1:-1;;;52593:39:0;;-1:-1:-1;;;;;3612:32:1;;;52593:39:0::1;::::0;::::1;3594:51:1::0;3567:18;;52593:39:0::1;3448:203:1::0;52509:135:0::1;52670:13;::::0;;-1:-1:-1;;;;;52694:21:0;;::::1;-1:-1:-1::0;;;;;;52694:21:0;::::1;::::0;::::1;::::0;;;52731:38:::1;::::0;52670:13;::::1;::::0;52694:21;52670:13;;52731:38:::1;::::0;52654:13:::1;::::0;52731:38:::1;52498:279;52431:346:::0;:::o;120055:188::-;48614:6;;-1:-1:-1;;;;;48614:6:0;120136:10;:21;;:52;;-1:-1:-1;120175:13:0;;-1:-1:-1;;;;;120175:13:0;120161:10;:27;120136:52;120128:70;;;;-1:-1:-1;;;120128:70:0;;33845:2:1;120128:70:0;;;33827:21:1;33884:1;33864:18;;;33857:29;-1:-1:-1;;;33902:18:1;;;33895:35;33947:18;;120128:70:0;33643:328:1;120128:70:0;-1:-1:-1;;;;;120209:17:0;;;;;;;;:10;:17;;;;;:26;;-1:-1:-1;;120209:26:0;;;;;;;;;;120055:188::o;76889:329::-;51036:14;:12;:14::i;:::-;77001:11:::1;76996:215;;77059:8;77029:9;77039:10;77029:21;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;:38;;;;77116:8;77082:9;77092:10;77082:21;;;;;;;;:::i;76996:215::-;77191:8;77157:9;77167:10;77157:21;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;:42;;;;76889:329:::0;;;:::o;52054:275::-;51036:14;:12;:14::i;:::-;48614:6;;-1:-1:-1;;;;;48614:6:0;46684:10;52141:23:::1;;::::0;:56:::1;;-1:-1:-1::0;52184:13:0::1;::::0;-1:-1:-1;;;;;52184:13:0::1;46684:10:::0;-1:-1:-1;;;;;52168:29:0::1;;;52141:56;52137:135;;;46684:10:::0;52247:12:::1;46604:98:::0;52137:135:::1;52282:13;52289:6;;52282:13;:::i;:::-;52306:15;:6;52315::::0;;52306:15:::1;:::i;109358:1001::-:0;109511:32;109525:10;109537:5;109511:13;:32::i;:::-;109554:40;109567:4;:11;109580:13;;109554:12;:40::i;:::-;109623:8;:15;109608:4;:11;:30;109605:83;;109662:14;;-1:-1:-1;;;109662:14:0;;;;;;;;;;;109605:83;109702:47;109722:4;109728:8;109738:10;109702:19;:47::i;:::-;109698:104;;109773:17;;-1:-1:-1;;;109773:17:0;;;;;;;;;;;109698:104;109814:25;;109850:105;109874:8;:15;109870:1;:19;109850:105;;;109932:8;109941:1;109932:11;;;;;;;;:::i;:::-;;;;;;;109911:32;;;;;:::i;:::-;;-1:-1:-1;109891:3:0;;;;:::i;:::-;;;;109850:105;;;;109989:13;;109968:17;:34;109965:82;;110026:9;;-1:-1:-1;;;110026:9:0;;;;;;;;;;;109965:82;110059:46;110068:17;110087:10;110099:5;;110059:8;:46::i;:::-;110123:9;110118:186;110142:4;:11;110138:1;:15;110118:186;;;110175:11;110189:4;110194:1;110189:7;;;;;;;;:::i;:::-;;;;;;;110175:21;;110211:29;110224:3;110229:10;110211:12;:29::i;:::-;110281:8;110290:1;110281:11;;;;;;;;:::i;:::-;;;;;;;110255:13;:22;110269:4;110274:1;110269:7;;;;;;;;:::i;:::-;;;;;;;110255:22;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;110155:3:0;;-1:-1:-1;110155:3:0;;-1:-1:-1;110155:3:0;;:::i;:::-;;;;110118:186;;;;110316:35;110327:3;110332:4;110338:8;110316:35;;;;;;;;;;;;:10;:35::i;:::-;109500:859;109358:1001;;;;;;:::o;73493:208::-;51036:14;:12;:14::i;:::-;73668:9:::1;:25:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;73668:25:0;;;;73683:9;;73668:25:::1;;::::0;::::1;;73683:9:::0;73668:25;::::1;:::i;81150:246::-:0;81233:13;81263:7;81274:2;81263:13;81259:97;;81300:9;81310:8;81300:19;;;;;;;;:::i;:::-;;;;;;;;;;;:44;;81293:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113008:132;113078:7;113105:9;113115:8;113105:19;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;113098:34;;113008:132;;;:::o;79751:780::-;79835:13;79865:7;79876:1;79865:12;79861:632;;79930:51;79947:9;79957:8;79947:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:33;;;79930:16;:51::i;:::-;79988;80005:9;80015:8;80005:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;80036:1;80005:33;;79988:51;80046;80063:9;80073:8;80063:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;80094:1;80063:33;;80046:51;79908:195;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79894:210;;;;79861:632;80135:7;80146:1;80135:12;80131:362;;80200:9;80210:8;80200:19;;;;;;;;:::i;:::-;;;;;;;;:24;:19;;;;;:24;:27;80234:9;80244:8;80234:19;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;80259:1;80234:27;;;;;;;:::i;:::-;;80178:89;;;;;;;;;:::i;80131:362::-;80300:7;80311:1;80300:12;80296:197;;80365:51;80382:9;80392:8;80382:19;;;;;;;;:::i;:::-;;;;;;;;:30;:19;;;;;:30;;:33;;80365:51;80423;80440:9;80450:8;80440:19;;;;;;;;:::i;:::-;;;;;;;;;;;:30;;80471:1;80440:33;;;;;;;:::i;80423:51::-;80343:137;;;;;;;;;:::i;80296:197::-;-1:-1:-1;80514:9:0;;;;;;;;;-1:-1:-1;80514:9:0;;79751:780;;;;:::o;120401:172::-;48614:6;;-1:-1:-1;;;;;48614:6:0;120471:10;:21;;:52;;-1:-1:-1;120510:13:0;;-1:-1:-1;;;;;120510:13:0;120496:10;:27;120471:52;120463:70;;;;-1:-1:-1;;;120463:70:0;;33845:2:1;120463:70:0;;;33827:21:1;33884:1;33864:18;;;33857:29;-1:-1:-1;;;33902:18:1;;;33895:35;33947:18;;120463:70:0;33643:328:1;120463:70:0;120544:12;;;;:7;:12;;;;;;:21;;-1:-1:-1;;120544:21:0;;;;;;;;;;120401:172::o;76037:165::-;51036:14;:12;:14::i;:::-;76183:11:::1;76148:9;76158:10;76148:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:46:::1;::::0;:21:::1;::::0;;::::1;;::::0;:46:::1;;:::i;85302:159::-:0;-1:-1:-1;;;;;85416:27:0;;;85392:4;85416:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;85302:159::o;51454:441::-;51506:4;51543:7;48614:6;;-1:-1:-1;;;;;48614:6:0;;48541:87;51543:7;-1:-1:-1;;;;;51527:23:0;46684:10;-1:-1:-1;;;;;51527:23:0;;:56;;;-1:-1:-1;51570:13:0;;-1:-1:-1;;;;;51570:13:0;46684:10;-1:-1:-1;;;;;51554:29:0;;51527:56;51523:99;;;-1:-1:-1;51606:4:0;;51454:441::o;51523:99::-;51635:6;:13;:17;51632:208;;51673:9;51668:161;51692:6;:13;51688:17;;51668:161;;;51750:6;51757:1;51750:9;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51750:9:0;46684:10;51734:25;51731:83;;51790:4;51783:11;;;51454:441;:::o;51731:83::-;51707:3;;;;:::i;:::-;;;;51668:161;;;;51632:208;-1:-1:-1;51882:5:0;;51454:441::o;85533:357::-;46684:10;-1:-1:-1;;;;;85701:14:0;;;;;;;:49;;;85720:30;85737:4;85743:6;85720:16;:30::i;:::-;85719:31;85701:49;85697:131;;;85774:42;;-1:-1:-1;;;85774:42:0;;-1:-1:-1;;;;;30769:15:1;;;85774:42:0;;;30751:34:1;30821:15;;30801:18;;;30794:43;30686:18;;85774:42:0;30539:304:1;85697:131:0;85838:44;85856:4;85862:2;85866;85870:5;85877:4;85838:17;:44::i;49474:220::-;48427:13;:11;:13::i;:::-;-1:-1:-1;;;;;49559:22:0;::::1;49555:93;;49605:31;::::0;-1:-1:-1;;;49605:31:0;;49633:1:::1;49605:31;::::0;::::1;3594:51:1::0;3567:18;;49605:31:0::1;3448:203:1::0;49555:93:0::1;49658:28;49677:8;49658:18;:28::i;:::-;49474:220:::0;:::o;72594:141::-;51036:14;:12;:14::i;:::-;72690:15:::1;:37:::0;72594:141::o;101076:234::-;51036:14;:12;:14::i;:::-;101177:9:::1;101174:129;;;101202:6;:15:::0;;;::::1;;-1:-1:-1::0;;101202:15:0;;::::1;;::::0;;79465:278;;;:::o;101174:129::-:1;101258:33;101269:1;101272:6;101280:10;101258;:33::i;51159:158::-:0;51221:14;:12;:14::i;:::-;51216:94;;46684:10;51285:12;46604:98;34274:718;34330:13;34381:14;34398:17;34409:5;34398:10;:17::i;:::-;34418:1;34398:21;34381:38;;34434:20;34468:6;-1:-1:-1;;;;;34457:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34457:18:0;-1:-1:-1;34434:41:0;-1:-1:-1;34599:28:0;;;34615:2;34599:28;34656:290;-1:-1:-1;;34688:5:0;-1:-1:-1;;;34825:2:0;34814:14;;34809:32;34688:5;34796:46;34888:2;34879:11;;;-1:-1:-1;34909:21:0;34656:290;34909:21;-1:-1:-1;34967:6:0;34274:718;-1:-1:-1;;;34274:718:0:o;70163:357::-;70333:13;70325:29;;;;-1:-1:-1;;;70325:29:0;;49023:2:1;70325:29:0;;;49005:21:1;49062:1;49042:18;;;49035:29;-1:-1:-1;;;49080:18:1;;;49073:33;49123:18;;70325:29:0;48821:326:1;70325:29:0;70381:12;70373:5;:20;:45;;;;;70406:12;70397:5;:21;;70373:45;70365:60;;;;-1:-1:-1;;;70365:60:0;;49354:2:1;70365:60:0;;;49336:21:1;49393:1;49373:18;;;49366:29;-1:-1:-1;;;49411:18:1;;;49404:32;49453:18;;70365:60:0;49152:325:1;70365:60:0;70455:1;70444:8;:12;70436:27;;;;-1:-1:-1;;;70436:27:0;;49684:2:1;70436:27:0;;;49666:21:1;49723:1;49703:18;;;49696:29;-1:-1:-1;;;49741:18:1;;;49734:32;49783:18;;70436:27:0;49482:325:1;70436:27:0;70496:8;70482:9;:23;;70474:38;;;;-1:-1:-1;;;70474:38:0;;50014:2:1;70474:38:0;;;49996:21:1;50053:1;50033:18;;;50026:29;-1:-1:-1;;;50071:18:1;;;50064:32;50113:18;;70474:38:0;49812:325:1;91087:459:0;-1:-1:-1;;;;;91287:16:0;;91283:90;;91327:34;;-1:-1:-1;;;91327:34:0;;91358:1;91327:34;;;3594:51:1;3567:18;;91327:34:0;3448:203:1;91283:90:0;-1:-1:-1;;;;;91387:18:0;;91383:90;;91429:32;;-1:-1:-1;;;91429:32:0;;91458:1;91429:32;;;3594:51:1;3567:18;;91429:32:0;3448:203:1;91383:90:0;91483:55;91510:4;91516:2;91520:3;91525:6;91533:4;91483:26;:55::i;48706:166::-;48614:6;;-1:-1:-1;;;;;48614:6:0;46684:10;48766:23;48762:103;;48813:40;;-1:-1:-1;;;48813:40:0;;46684:10;48813:40;;;3594:51:1;3567:18;;48813:40:0;3448:203:1;100270:254:0;100364:8;100363:9;:47;;;;;100376:9;100386:10;100376:21;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;;;;;;;;;;100363:47;100362:102;;;;100416:8;:47;;;;;100429:9;100439:10;100429:21;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;;;;;;;;;;100428:35;100416:47;100358:159;;;100488:17;;-1:-1:-1;;;100488:17:0;;;;;;;;;;;107596:1251;107682:4;107707:9;107717:10;107707:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;107701:3;:41;:86;;;;107752:9;107762:10;107752:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;107785:1;107752:35;;107746:3;:41;107701:86;107698:141;;;107811:16;;-1:-1:-1;;;107811:16:0;;;;;;;;;;;107698:141;107849:36;107862:7;107871:13;;107849:12;:36::i;:::-;107905:15;;107899:3;:21;107896:71;;;107944:11;;-1:-1:-1;;;107944:11:0;;;;;;;;;;;107896:71;108080:9;108090:10;108080:21;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;108113:1;108080:34;;:98;;;;;108149:9;108159:10;108149:21;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;108139:7;108118:13;:18;108132:3;108118:18;;;;;;;;;;;;:28;;;;:::i;:::-;:60;108080:98;108077:170;;;-1:-1:-1;108230:5:0;108223:12;;108077:170;108420:1;108370:9;108380:10;108370:21;;;;;;;;:::i;:::-;;;;;;;;;;;:40;;:47;;;;:51;108367:428;;;108440:221;108472:9;108482:10;108472:21;;;;;;;;:::i;:::-;;;;;;;;;;;:43;;108440:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;108440:221:0;;;;;;;;;;;;;;;;;;;;;108517:10;108529:9;108539:10;108529:21;;;;;;;;:::i;:::-;;;;;;;;;;;:40;;108440:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108571:9;108581:10;108571:21;;;;;;;;:::i;:::-;;;;;;;;;;;:41;;108440:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108614:9;108624:10;108614:21;;;;;;;;:::i;:::-;;;;;;;;;;;:46;;108440:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;:221::i;:::-;108437:347;;;-1:-1:-1;108763:5:0;108756:12;;108437:347;-1:-1:-1;108835:4:0;107596:1251;;;;;:::o;102105:1495::-;102202:14;:12;:14::i;:::-;102197:1396;;102236:6;;;;;:37;;;102246:9;102256:8;102246:19;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;;;;;;;;;;102236:37;102233:92;;;102301:8;;-1:-1:-1;;;102301:8:0;;;;;;;;;;;102233:92;102382:1;102345:9;102355:8;102345:19;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;:38;102341:198;;;102425:9;102435:8;102425:19;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;102407:15;:52;102404:120;;;102491:13;;-1:-1:-1;;;102491:13:0;;;;;;;;;;;102404:120;102558:9;102568:8;102558:19;;;;;;;;:::i;:::-;;;;;;;;;;;:26;;;102588:1;102558:31;102555:270;;102659:9;102669:8;102659:19;;;;;;;;:::i;:::-;;;;;;;;;:26;:19;;;;;:26;;;;;102625:10;102612:24;;:12;:24;;;;;;:34;;;;;;;;;:44;;102649:7;;102612:44;:::i;:::-;:73;102609:137;;;102717:9;;-1:-1:-1;;;102717:9:0;;;;;;;;;;;102609:137;102777:10;102764:24;;;;:12;:24;;;;;;;;:34;;;;;;;;:45;;102802:7;;102764:24;:45;;102802:7;;102764:45;:::i;:::-;;;;-1:-1:-1;;102555:270:0;102903:28;;-1:-1:-1;;102920:10:0;50291:2:1;50287:15;50283:53;102903:28:0;;;50271:66:1;102842:16:0;;;;102874:59;;102886:5;;;;50353:12:1;;102903:28:0;;;;;;;;;;;;102893:39;;;;;;102874:11;:59::i;:::-;102841:92;;;;102951:11;102948:482;;;102986:5;102992:4;102986:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;:18;;;103008:1;102986:23;102982:319;;103080:5;103086:4;103080:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:18;103049:10;103038:22;;:10;:22;;;;;;:28;;;;;;;;;;;:38;;103069:7;;103038:38;:::i;:::-;:60;103034:248;;103138:10;103127:22;;;;:10;:22;;;;;;;;:28;;;;;;;;;;:39;;103159:7;;103127:22;:39;;103159:7;;103127:39;:::i;:::-;;;;-1:-1:-1;103034:248:0;;-1:-1:-1;103034:248:0;;103207:5;:12;:16;;103222:1;;103207:16;:::i;:::-;103200:4;:23;;;103196:86;;;103252:6;;;;:::i;:::-;;;;103196:86;102948:482;;;103344:9;;;;;;;103341:74;;;103384:11;;-1:-1:-1;;;103384:11:0;;;;;;;;;;;103341:74;103484:34;103490:8;103500:11;103513:4;103484:5;:34::i;:::-;103474:44;;:7;:44;:::i;:::-;103461:9;:58;103458:124;;;103547:19;;-1:-1:-1;;;103547:19:0;;;;;;;;;;;103608:631;112735:4;112759:17;;;:12;:17;;;;;;;;103675:178;;103708:17;;;;:12;:17;;;;;:24;;-1:-1:-1;;103708:24:0;103728:4;103708:24;;;103750:9;:21;;103760:10;;103750:21;;;;;;:::i;:::-;;;;;;;;;;;:34;;;;;;;;;;;;103747:95;;;103804:18;;;;:13;:18;;;;;103825:1;103804:22;;103747:95;103868:9;103878:10;103868:21;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;;;;;;;;;;103865:97;;;103928:22;103939:10;103928;:22::i;:::-;103916:9;;;;:4;:9;;;;;;:34;;:9;:34;:::i;:::-;;103865:97;104008:9;104018:10;104008:21;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;;103977:9;103987:10;103977:21;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;:62;;:140;;;;;104082:9;104092:10;104082:21;;;;;;;;:::i;:::-;;;;;;;;;;;:35;;;104043:9;104053:10;104043:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;104076:1;104043:35;;:74;;103977:140;103974:232;;;104163:9;104173:10;104163:21;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;;104133:9;104143:10;104133:21;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;:61;;;;103974:232;104216:13;:15;;;:13;:15;;;:::i;:::-;;;;;;103608:631;;:::o;92868:352::-;-1:-1:-1;;;;;92965:16:0;;92961:90;;93005:34;;-1:-1:-1;;;93005:34:0;;93036:1;93005:34;;;3594:51:1;3567:18;;93005:34:0;3448:203:1;92961:90:0;98652:4;98646:11;;98724:1;98709:17;;;98857:4;98845:17;;98838:35;;;98977:17;;;99008;;;98462:23;99046:17;;99039:35;;;99185:17;;;99172:31;;;98646:11;93151:61;-1:-1:-1;93190:2:0;98646:11;98977:17;93207:4;93151:26;:61::i;73051:156::-;73131:9;:16;73119:28;;73115:85;;73171:17;;-1:-1:-1;;;73171:17:0;;;;;;;;;;;49854:191;49947:6;;;-1:-1:-1;;;;;49964:17:0;;;-1:-1:-1;;;;;;49964:17:0;;;;;;;49997:40;;49947:6;;;49964:17;49947:6;;49997:40;;49928:16;;49997:40;49917:128;49854:191;:::o;94962:270::-;-1:-1:-1;;;;;95067:18:0;;95063:90;;95109:32;;-1:-1:-1;;;95109:32:0;;95138:1;95109:32;;;3594:51:1;3567:18;;95109:32:0;3448:203:1;95063:90:0;95163:61;95190:4;95204:1;95208:3;95213:6;95163:61;;;;;;;;;;;;:26;:61::i;100532:193::-;100638:10;100625;:23;:42;;;-1:-1:-1;100652:15:0;;100625:42;100621:97;;;100691:15;;-1:-1:-1;;;100691:15:0;;;;;;;;;;;105344:750;105442:21;105480;-1:-1:-1;;;;;105466:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;105466:36:0;;105442:60;;105513:25;105555:21;-1:-1:-1;;;;;105541:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;105541:36:0;;105513:64;;105593:9;105588:443;105612:21;105608:1;:25;105588:443;;;105655:11;105669:9;105679:10;105669:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;105702:1;105669:35;;105655:49;;105723:34;105738:3;105743:1;105746:10;105723:14;:34::i;:::-;105719:99;;105785:17;;-1:-1:-1;;;105785:17:0;;;;;;;;;;;105719:99;105846:29;105859:3;105864:10;105846:12;:29::i;:::-;105902:9;105912:10;105902:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;105935:1;105902:35;;105892:4;105897:1;105892:7;;;;;;;;:::i;:::-;;;;;;:45;;;;;105966:1;105952:8;105961:1;105952:11;;;;;;;;:::i;:::-;;;;;;:15;;;;;105982:9;105992:10;105982:21;;;;;;;;:::i;:::-;;;;;;;;106015:1;105982:21;;;;;:35;:37;;;;;;:::i;:::-;;;;;;105640:391;105635:3;;;;;:::i;:::-;;;;105588:443;;;;106051:35;106062:3;106067:4;106073:8;106051:35;;;;;;;;;;;;:10;:35::i;95462:321::-;-1:-1:-1;;;;;95570:22:0;;95566:96;;95616:34;;-1:-1:-1;;;95616:34:0;;95647:1;95616:34;;;3594:51:1;3567:18;;95616:34:0;3448:203:1;95566:96:0;-1:-1:-1;;;;;95672:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;95672:46:0;;;;;;;;;;95734:41;;2131::1;;;95734::0;;2104:18:1;95734:41:0;;;;;;;95462:321;;;:::o;110367:429::-;110477:4;;110493:272;110517:4;:11;110513:1;:15;110493:272;;;110550:11;110564:4;110569:1;110564:7;;;;;;;;:::i;:::-;;;;;;;110550:21;;110586:15;110604:8;110613:1;110604:11;;;;;;;;:::i;:::-;;;;;;;110586:29;;110634:40;110649:3;110654:7;110663:10;110634:14;:40::i;:::-;110630:124;;110733:5;110726:12;;;;;;;110630:124;110535:230;;110530:3;;;;;:::i;:::-;;;;110493:272;;;-1:-1:-1;110784:4:0;;110367:429;-1:-1:-1;;;;110367:429:0:o;93665:287::-;-1:-1:-1;;;;;93787:16:0;;93783:90;;93827:34;;-1:-1:-1;;;93827:34:0;;93858:1;93827:34;;;3594:51:1;3567:18;;93827:34:0;3448:203:1;93783:90:0;93883:61;93918:1;93922:2;93926:3;93931:6;93939:4;93883:26;:61::i;90201:472::-;-1:-1:-1;;;;;90324:16:0;;90320:90;;90364:34;;-1:-1:-1;;;90364:34:0;;90395:1;90364:34;;;3594:51:1;3567:18;;90364:34:0;3448:203:1;90320:90:0;-1:-1:-1;;;;;90424:18:0;;90420:90;;90466:32;;-1:-1:-1;;;90466:32:0;;90495:1;90466:32;;;3594:51:1;3567:18;;90466:32:0;3448:203:1;90420:90:0;98652:4;98646:11;;98724:1;98709:17;;;98857:4;98845:17;;98838:35;;;98977:17;;;99008;;;98462:23;99046:17;;99039:35;;;99185:17;;;99172:31;;;98646:11;90610:55;90637:4;90643:2;98646:11;98977:17;90660:4;90610:26;:55::i;30625:948::-;30678:7;;-1:-1:-1;;;30756:17:0;;30752:106;;-1:-1:-1;;;30794:17:0;;;-1:-1:-1;30840:2:0;30830:12;30752:106;30885:8;30876:5;:17;30872:106;;30923:8;30914:17;;;-1:-1:-1;30960:2:0;30950:12;30872:106;31005:8;30996:5;:17;30992:106;;31043:8;31034:17;;;-1:-1:-1;31080:2:0;31070:12;30992:106;31125:7;31116:5;:16;31112:103;;31162:7;31153:16;;;-1:-1:-1;31198:1:0;31188:11;31112:103;31242:7;31233:5;:16;31229:103;;31279:7;31270:16;;;-1:-1:-1;31315:1:0;31305:11;31229:103;31359:7;31350:5;:16;31346:103;;31396:7;31387:16;;;-1:-1:-1;31432:1:0;31422:11;31346:103;31476:7;31467:5;:16;31463:68;;31514:1;31504:11;31559:6;30625:948;-1:-1:-1;;30625:948:0:o;89022:708::-;89230:30;89238:4;89244:2;89248:3;89253:6;89230:7;:30::i;:::-;-1:-1:-1;;;;;89275:16:0;;;89271:452;;89358:10;;46684;;89372:1;89358:15;89354:358;;45839:4;45810:35;;;45804:42;45810:35;;;45804:42;89514:67;89545:8;89555:4;89561:2;45804:42;;89576:4;89514:30;:67::i;:::-;89375:222;;89354:358;;;89622:74;89658:8;89668:4;89674:2;89678:3;89683:6;89691:4;89622:35;:74::i;70946:983::-;71124:4;71162:8;:15;71144:7;:14;:33;71141:86;;71201:14;;-1:-1:-1;;;71201:14:0;;;;;;;;;;;71141:86;71252:9;71247:643;71271:7;:14;71267:1;:18;71247:643;;;71310:6;71317:1;71310:9;;;;;;;;:::i;:::-;;;;;;;71307:572;;;71340:22;71374:14;71389:1;71374:17;;;;;;;;:::i;:::-;;;;;;;71340:52;;71411:25;71439:13;-1:-1:-1;;;;;71439:23:0;;71463:8;71473:7;71481:1;71473:10;;;;;;;;:::i;:::-;;;;;;;71439:45;;;;;;;;;;;;;;;-1:-1:-1;;;;;50748:32:1;;;;50730:51;;50812:2;50797:18;;50790:34;50718:2;50703:18;;50556:274;71439:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71411:73;;71527:8;71536:1;71527:11;;;;;;;;:::i;:::-;;;;;;;71507:17;:31;71503:92;;;71570:5;71563:12;;;;;;;71503:92;71321:289;;71307:572;;;71635:21;71667:14;71682:1;71667:17;;;;;;;;:::i;:::-;;;;;;;71635:50;;71704:19;71726:13;-1:-1:-1;;;;;71726:21:0;;71748:7;71756:1;71748:10;;;;;;;;:::i;:::-;;;;;;;71726:33;;;;;;;;;;;;;968:25:1;;956:2;941:18;;822:177;71726:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71704:55;-1:-1:-1;71782:10:0;-1:-1:-1;;;;;71782:25:0;;;71778:86;;71839:5;71832:12;;;;;;;71778:86;71616:263;;71307:572;71287:3;;;;:::i;:::-;;;;71247:643;;;;71917:4;71910:11;;70946:983;;;;;;;;:::o;111024:507::-;111092:13;111124:399;111214:15;111248:16;111283:10;111312:13;;111344:4;:23;111365:1;111349:13;;:17;;;;:::i;:::-;111344:23;;;;;;;;;;;111179:189;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;111169:214;;;;;;111161:223;;111399:13;;111427:9;111437:10;111427:21;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;111460:1;111427:35;;;;;;;:::i;:::-;;;111477:9;111487:10;111477:21;;;;;;;;:::i;:::-;;;;;;;;:32;:21;;;;;:32;:35;;111124:22;:399::i;121246:905::-;-1:-1:-1;;;;;121417:16:0;;;;;;:10;:16;;;;;;;;;:34;;-1:-1:-1;;;;;;121437:14:0;;;;;;:10;:14;;;;;;;;121417:34;121413:86;;;121475:12;;-1:-1:-1;;;121475:12:0;;;;;;;;;;;121413:86;121516:9;121511:177;121535:3;:10;121531:1;:14;121511:177;;;121571:7;:15;121579:3;121583:1;121579:6;;;;;;;;:::i;:::-;;;;;;;;;;;;121571:15;;;;;;;;;;-1:-1:-1;121571:15:0;;;;121567:110;;;121614:9;;-1:-1:-1;;;121614:9:0;;;;;;;;;;;121567:110;121547:3;;;;:::i;:::-;;;;121511:177;;;;121708:37;121722:4;121728:2;121732:3;121737:7;121708:13;:37::i;:::-;121821:9;121816:325;121840:3;:10;121836:1;:14;121816:325;;;121876:18;121887:3;121891:1;121887:6;;;;;;;;:::i;:::-;;;;;;;121876:10;:18::i;:::-;121872:81;;;121933:4;121915:7;:15;121923:3;121927:1;121923:6;;;;;;;;:::i;:::-;;;;;;;121915:15;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;121872:81;-1:-1:-1;;;;;121973:16:0;;121969:161;;122043:11;122057:3;122061:1;122057:6;;;;;;;;:::i;:::-;;;;;;;122043:20;;122104:7;122112:1;122104:10;;;;;;;;:::i;:::-;;;;;;;122082:13;:18;122096:3;122082:18;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;;;121969:161:0;121852:3;;;;:::i;:::-;;;;121816:325;;95967:1000;-1:-1:-1;;;;;96181:14:0;;;:18;96177:783;;96220:71;;-1:-1:-1;;;96220:71:0;;-1:-1:-1;;;;;96220:38:0;;;;;:71;;96259:8;;96269:4;;96275:2;;96279:5;;96286:4;;96220:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;96220:71:0;;;;;;;;-1:-1:-1;;96220:71:0;;;;;;;;;;;;:::i;:::-;;;96216:733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96581:6;:13;96598:1;96581:18;96577:357;;96687:26;;-1:-1:-1;;;96687:26:0;;-1:-1:-1;;;;;3612:32:1;;96687:26:0;;;3594:51:1;3567:18;;96687:26:0;3448:203:1;96577:357:0;96884:6;96878:13;96869:6;96865:2;96861:15;96854:38;96216:733;-1:-1:-1;;;;;;96341:55:0;;-1:-1:-1;;;96341:55:0;96337:177;;96468:26;;-1:-1:-1;;;96468:26:0;;-1:-1:-1;;;;;3612:32:1;;96468:26:0;;;3594:51:1;3567:18;;96468:26:0;3448:203:1;97161:1069:0;-1:-1:-1;;;;;97400:14:0;;;:18;97396:827;;97439:78;;-1:-1:-1;;;97439:78:0;;-1:-1:-1;;;;;97439:43:0;;;;;:78;;97483:8;;97493:4;;97499:3;;97504:6;;97512:4;;97439:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;97439:78:0;;;;;;;;-1:-1:-1;;97439:78:0;;;;;;;;;;;;:::i;:::-;;;97435:777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;97599:60:0;;-1:-1:-1;;;97599:60:0;97595:182;;97731:26;;-1:-1:-1;;;97731:26:0;;-1:-1:-1;;;;;3612:32:1;;97731:26:0;;;3594:51:1;3567:18;;97731:26:0;3448:203:1;69632:523:0;69815:127;;;;;;;53655:19:1;;;53690:12;;;53683:28;;;69891:15:0;69754:13;53727:12:1;;;53720:28;;;;69921:10:0;53782:15:1;;-1:-1:-1;;53778:53:1;53764:12;;;53757:75;69815:127:0;;;;;;;;;53848:13:1;;;;69815:127:0;;;69805:138;;;;;-1:-1:-1;;69797:164:0;;69948:12;;69797:164;:::i;:::-;69780:181;;69987:12;69978:6;:21;69974:174;;;70023:45;70056:10;:6;70065:1;70056:10;:::i;:::-;70040:27;;:12;:27;:::i;:::-;70023:16;:45::i;:::-;70016:52;;;;;69974:174;70108:28;70125:10;:6;70134:1;70125:10;:::i;69632:523::-;;;;;;;:::o;87117:1315::-;87253:6;:13;87239:3;:10;:27;87235:119;;87316:10;;87328:13;;87290:52;;-1:-1:-1;;;87290:52:0;;;;;32278:25:1;;;;32319:18;;;32312:34;32251:18;;87290:52:0;32104:248:1;87235:119:0;46684:10;87366:16;87410:709;87434:3;:10;87430:1;:14;87410:709;;;45839:4;45830:14;;;45810:35;;;;;45804:42;45810:35;;;;;;45804:42;-1:-1:-1;;;;;87584:18:0;;;87580:429;;87623:19;87645:13;;;;;;;;;;;-1:-1:-1;;;;;87645:19:0;;;;;;;;;;87687;;;87683:131;;;87738:56;;-1:-1:-1;;;87738:56:0;;-1:-1:-1;;;;;54335:32:1;;87738:56:0;;;54317:51:1;54384:18;;;54377:34;;;54427:18;;;54420:34;;;54470:18;;;54463:34;;;54289:19;;87738:56:0;54086:417:1;87683:131:0;87933:9;:13;;;;;;;;;;;-1:-1:-1;;;;;87933:19:0;;;;;;;;;87955;;;;87933:41;;87580:429;-1:-1:-1;;;;;88029:16:0;;;88025:83;;88066:9;:13;;;;;;;;;;;-1:-1:-1;;;;;88066:17:0;;;;;;;;;:26;;88087:5;;88066:9;:26;;88087:5;;88066:26;:::i;:::-;;;;-1:-1:-1;;88025:83:0;87451:668;;87446:3;;;;:::i;:::-;;;87410:709;;;;88135:3;:10;88149:1;88135:15;88131:294;;45839:4;45810:35;;45804:42;88167:10;;45839:4;45810:35;;45804:42;88167:38;;-1:-1:-1;88315:2:0;-1:-1:-1;;;;;88284:45:0;88309:4;-1:-1:-1;;;;;88284:45:0;88299:8;-1:-1:-1;;;;;88284:45:0;;88319:2;88323:5;88284:45;;;;;;32278:25:1;;;32334:2;32319:18;;32312:34;32266:2;32251:18;;32104:248;88284:45:0;;;;;;;;88152:189;;88131:294;;;88397:2;-1:-1:-1;;;;;88367:46:0;88391:4;-1:-1:-1;;;;;88367:46:0;88381:8;-1:-1:-1;;;;;88367:46:0;;88401:3;88406:6;88367:46;;;;;;;:::i;:::-;;;;;;;;87224:1208;87117:1315;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;366:131:1:-;-1:-1:-1;;;;;441:31:1;;431:42;;421:70;;487:1;484;477:12;502:315;570:6;578;631:2;619:9;610:7;606:23;602:32;599:52;;;647:1;644;637:12;599:52;686:9;673:23;705:31;730:5;705:31;:::i;:::-;755:5;807:2;792:18;;;;779:32;;-1:-1:-1;;;502:315:1:o;1004:118::-;1090:5;1083:13;1076:21;1069:5;1066:32;1056:60;;1112:1;1109;1102:12;1127:377;1201:6;1209;1217;1270:2;1258:9;1249:7;1245:23;1241:32;1238:52;;;1286:1;1283;1276:12;1238:52;1325:9;1312:23;1344:28;1366:5;1344:28;:::i;:::-;1391:5;1443:2;1428:18;;1415:32;;-1:-1:-1;1494:2:1;1479:18;;;1466:32;;1127:377;-1:-1:-1;;;1127:377:1:o;1509:131::-;-1:-1:-1;;;;;;1583:32:1;;1573:43;;1563:71;;1630:1;1627;1620:12;1645:245;1703:6;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;1811:9;1798:23;1830:30;1854:5;1830:30;:::i;2183:180::-;2242:6;2295:2;2283:9;2274:7;2270:23;2266:32;2263:52;;;2311:1;2308;2301:12;2263:52;-1:-1:-1;2334:23:1;;2183:180;-1:-1:-1;2183:180:1:o;2692:250::-;2777:1;2787:113;2801:6;2798:1;2795:13;2787:113;;;2877:11;;;2871:18;2858:11;;;2851:39;2823:2;2816:10;2787:113;;;-1:-1:-1;;2934:1:1;2916:16;;2909:27;2692:250::o;2947:271::-;2989:3;3027:5;3021:12;3054:6;3049:3;3042:19;3070:76;3139:6;3132:4;3127:3;3123:14;3116:4;3109:5;3105:16;3070:76;:::i;:::-;3200:2;3179:15;-1:-1:-1;;3175:29:1;3166:39;;;;3207:4;3162:50;;2947:271;-1:-1:-1;;2947:271:1:o;3223:220::-;3372:2;3361:9;3354:21;3335:4;3392:45;3433:2;3422:9;3418:18;3410:6;3392:45;:::i;3656:114::-;3740:4;3733:5;3729:16;3722:5;3719:27;3709:55;;3760:1;3757;3750:12;3775:584;3865:6;3873;3881;3889;3897;3950:3;3938:9;3929:7;3925:23;3921:33;3918:53;;;3967:1;3964;3957:12;3918:53;4006:9;3993:23;4025:28;4047:5;4025:28;:::i;:::-;4072:5;-1:-1:-1;4129:2:1;4114:18;;4101:32;4142:31;4101:32;4142:31;:::i;:::-;3775:584;;4192:7;;-1:-1:-1;;;;4246:2:1;4231:18;;4218:32;;4297:2;4282:18;;4269:32;;4348:3;4333:19;;;4320:33;;-1:-1:-1;3775:584:1:o;4364:376::-;4426:6;4434;4487:2;4475:9;4466:7;4462:23;4458:32;4455:52;;;4503:1;4500;4493:12;4455:52;4542:9;4529:23;4561:28;4583:5;4561:28;:::i;:::-;4608:5;-1:-1:-1;4665:2:1;4650:18;;4637:32;4678:30;4637:32;4678:30;:::i;:::-;4727:7;4717:17;;;4364:376;;;;;:::o;4745:248::-;4813:6;4821;4874:2;4862:9;4853:7;4849:23;4845:32;4842:52;;;4890:1;4887;4880:12;4842:52;-1:-1:-1;;4913:23:1;;;4983:2;4968:18;;;4955:32;;-1:-1:-1;4745:248:1:o;4998:435::-;5051:3;5089:5;5083:12;5116:6;5111:3;5104:19;5142:4;5171:2;5166:3;5162:12;5155:19;;5208:2;5201:5;5197:14;5229:1;5239:169;5253:6;5250:1;5247:13;5239:169;;;5314:13;;5302:26;;5348:12;;;;5383:15;;;;5275:1;5268:9;5239:169;;;-1:-1:-1;5424:3:1;;4998:435;-1:-1:-1;;;;;4998:435:1:o;5438:261::-;5617:2;5606:9;5599:21;5580:4;5637:56;5689:2;5678:9;5674:18;5666:6;5637:56;:::i;5704:316::-;5781:6;5789;5797;5850:2;5838:9;5829:7;5825:23;5821:32;5818:52;;;5866:1;5863;5856:12;5818:52;-1:-1:-1;;5889:23:1;;;5959:2;5944:18;;5931:32;;-1:-1:-1;6010:2:1;5995:18;;;5982:32;;5704:316;-1:-1:-1;5704:316:1:o;6025:127::-;6086:10;6081:3;6077:20;6074:1;6067:31;6117:4;6114:1;6107:15;6141:4;6138:1;6131:15;6157:252;6230:2;6224:9;;;6260:15;;-1:-1:-1;;;;;6290:34:1;;6326:22;;;6287:62;6284:88;;;6352:18;;:::i;:::-;6388:2;6381:22;6157:252;:::o;6414:275::-;6485:2;6479:9;6550:2;6531:13;;-1:-1:-1;;6527:27:1;6515:40;;-1:-1:-1;;;;;6570:34:1;;6606:22;;;6567:62;6564:88;;;6632:18;;:::i;:::-;6668:2;6661:22;6414:275;;-1:-1:-1;6414:275:1:o;6694:183::-;6754:4;-1:-1:-1;;;;;6779:6:1;6776:30;6773:56;;;6809:18;;:::i;:::-;-1:-1:-1;6854:1:1;6850:14;6866:4;6846:25;;6694:183::o;6882:662::-;6936:5;6989:3;6982:4;6974:6;6970:17;6966:27;6956:55;;7007:1;7004;6997:12;6956:55;7043:6;7030:20;7069:4;7093:60;7109:43;7149:2;7109:43;:::i;:::-;7093:60;:::i;:::-;7187:15;;;7273:1;7269:10;;;;7257:23;;7253:32;;;7218:12;;;;7297:15;;;7294:35;;;7325:1;7322;7315:12;7294:35;7361:2;7353:6;7349:15;7373:142;7389:6;7384:3;7381:15;7373:142;;;7455:17;;7443:30;;7493:12;;;;7406;;7373:142;;;-1:-1:-1;7533:5:1;6882:662;-1:-1:-1;;;;;;6882:662:1:o;7549:406::-;7613:5;-1:-1:-1;;;;;7639:6:1;7636:30;7633:56;;;7669:18;;:::i;:::-;7707:57;7752:2;7731:15;;-1:-1:-1;;7727:29:1;7758:4;7723:40;7707:57;:::i;:::-;7698:66;;7787:6;7780:5;7773:21;7827:3;7818:6;7813:3;7809:16;7806:25;7803:45;;;7844:1;7841;7834:12;7803:45;7893:6;7888:3;7881:4;7874:5;7870:16;7857:43;7947:1;7940:4;7931:6;7924:5;7920:18;7916:29;7909:40;7549:406;;;;;:::o;7960:220::-;8002:5;8055:3;8048:4;8040:6;8036:17;8032:27;8022:55;;8073:1;8070;8063:12;8022:55;8095:79;8170:3;8161:6;8148:20;8141:4;8133:6;8129:17;8095:79;:::i;8185:1071::-;8339:6;8347;8355;8363;8371;8424:3;8412:9;8403:7;8399:23;8395:33;8392:53;;;8441:1;8438;8431:12;8392:53;8480:9;8467:23;8499:31;8524:5;8499:31;:::i;:::-;8549:5;-1:-1:-1;8606:2:1;8591:18;;8578:32;8619:33;8578:32;8619:33;:::i;:::-;8671:7;-1:-1:-1;8729:2:1;8714:18;;8701:32;-1:-1:-1;;;;;8782:14:1;;;8779:34;;;8809:1;8806;8799:12;8779:34;8832:61;8885:7;8876:6;8865:9;8861:22;8832:61;:::i;:::-;8822:71;;8946:2;8935:9;8931:18;8918:32;8902:48;;8975:2;8965:8;8962:16;8959:36;;;8991:1;8988;8981:12;8959:36;9014:63;9069:7;9058:8;9047:9;9043:24;9014:63;:::i;:::-;9004:73;;9130:3;9119:9;9115:19;9102:33;9086:49;;9160:2;9150:8;9147:16;9144:36;;;9176:1;9173;9166:12;9144:36;;9199:51;9242:7;9231:8;9220:9;9216:24;9199:51;:::i;:::-;9189:61;;;8185:1071;;;;;;;;:::o;9261:247::-;9320:6;9373:2;9361:9;9352:7;9348:23;9344:32;9341:52;;;9389:1;9386;9379:12;9341:52;9428:9;9415:23;9447:31;9472:5;9447:31;:::i;9513:658::-;9684:2;9736:21;;;9806:13;;9709:18;;;9828:22;;;9655:4;;9684:2;9907:15;;;;9881:2;9866:18;;;9655:4;9950:195;9964:6;9961:1;9958:13;9950:195;;;10029:13;;-1:-1:-1;;;;;10025:39:1;10013:52;;10120:15;;;;10085:12;;;;10061:1;9979:9;9950:195;;;-1:-1:-1;10162:3:1;;9513:658;-1:-1:-1;;;;;;9513:658:1:o;11272:1215::-;11390:6;11398;11451:2;11439:9;11430:7;11426:23;11422:32;11419:52;;;11467:1;11464;11457:12;11419:52;11507:9;11494:23;-1:-1:-1;;;;;11577:2:1;11569:6;11566:14;11563:34;;;11593:1;11590;11583:12;11563:34;11631:6;11620:9;11616:22;11606:32;;11676:7;11669:4;11665:2;11661:13;11657:27;11647:55;;11698:1;11695;11688:12;11647:55;11734:2;11721:16;11756:4;11780:60;11796:43;11836:2;11796:43;:::i;11780:60::-;11874:15;;;11956:1;11952:10;;;;11944:19;;11940:28;;;11905:12;;;;11980:19;;;11977:39;;;12012:1;12009;12002:12;11977:39;12036:11;;;;12056:217;12072:6;12067:3;12064:15;12056:217;;;12152:3;12139:17;12169:31;12194:5;12169:31;:::i;:::-;12213:18;;12089:12;;;;12251;;;;12056:217;;;12292:5;-1:-1:-1;;12335:18:1;;12322:32;;-1:-1:-1;;12366:16:1;;;12363:36;;;12395:1;12392;12385:12;12363:36;;12418:63;12473:7;12462:8;12451:9;12447:24;12418:63;:::i;:::-;12408:73;;;11272:1215;;;;;:::o;12492:367::-;12555:8;12565:6;12619:3;12612:4;12604:6;12600:17;12596:27;12586:55;;12637:1;12634;12627:12;12586:55;-1:-1:-1;12660:20:1;;-1:-1:-1;;;;;12692:30:1;;12689:50;;;12735:1;12732;12725:12;12689:50;12772:4;12764:6;12760:17;12748:29;;12832:3;12825:4;12815:6;12812:1;12808:14;12800:6;12796:27;12792:38;12789:47;12786:67;;;12849:1;12846;12839:12;12786:67;12492:367;;;;;:::o;12864:778::-;12986:6;12994;13002;13010;13018;13026;13079:3;13067:9;13058:7;13054:23;13050:33;13047:53;;;13096:1;13093;13086:12;13047:53;13135:9;13122:23;13154:31;13179:5;13154:31;:::i;:::-;13204:5;-1:-1:-1;13256:2:1;13241:18;;13228:32;;-1:-1:-1;13307:2:1;13292:18;;13279:32;;-1:-1:-1;13358:2:1;13343:18;;13330:32;;-1:-1:-1;13413:3:1;13398:19;;13385:33;-1:-1:-1;;;;;13430:30:1;;13427:50;;;13473:1;13470;13463:12;13427:50;13512:70;13574:7;13565:6;13554:9;13550:22;13512:70;:::i;:::-;12864:778;;;;-1:-1:-1;12864:778:1;;-1:-1:-1;12864:778:1;;13601:8;;12864:778;-1:-1:-1;;;12864:778:1:o;13647:1647::-;13766:6;13774;13782;13790;13798;13851:3;13839:9;13830:7;13826:23;13822:33;13819:53;;;13868:1;13865;13858:12;13819:53;13907:9;13894:23;13926:28;13948:5;13926:28;:::i;:::-;13973:5;-1:-1:-1;13997:2:1;14036:18;;;14023:32;14064:30;14023:32;14064:30;:::i;:::-;14113:7;-1:-1:-1;14172:2:1;14157:18;;14144:32;14185:30;14144:32;14185:30;:::i;:::-;14234:7;-1:-1:-1;14288:2:1;14273:18;;14260:32;;-1:-1:-1;14343:3:1;14328:19;;14315:33;-1:-1:-1;;;;;14397:14:1;;;14394:34;;;14424:1;14421;14414:12;14394:34;14462:6;14451:9;14447:22;14437:32;;14507:7;14500:4;14496:2;14492:13;14488:27;14478:55;;14529:1;14526;14519:12;14478:55;14553:23;;:::i;:::-;14598:3;14632:2;14628;14624:11;14658:7;14650:6;14647:19;14644:39;;;14679:1;14676;14669:12;14644:39;14703:2;14714:550;14730:6;14725:3;14722:15;14714:550;;;14816:3;14803:17;14852:2;14839:11;14836:19;14833:109;;;14896:1;14925:2;14921;14914:14;14833:109;14965:20;;15020:4;15012:13;;15008:27;-1:-1:-1;14998:125:1;;15077:1;15106:2;15102;15095:14;14998:125;15148:73;15213:7;15208:2;15195:16;15190:2;15186;15182:11;15148:73;:::i;:::-;15136:86;;-1:-1:-1;15242:12:1;;;;14747;;14714:550;;;14718:3;;15283:5;15273:15;;;;;;;13647:1647;;;;;;;;:::o;15299:446::-;15371:6;15379;15387;15440:2;15428:9;15419:7;15415:23;15411:32;15408:52;;;15456:1;15453;15446:12;15408:52;15492:9;15479:23;15469:33;;15552:2;15541:9;15537:18;15524:32;15565:28;15587:5;15565:28;:::i;:::-;15612:5;-1:-1:-1;15669:2:1;15654:18;;15641:32;15682:31;15641:32;15682:31;:::i;:::-;15732:7;15722:17;;;15299:446;;;;;:::o;15750:1470::-;15950:6;15958;15966;15974;15982;15990;15998;16006;16014;16067:3;16055:9;16046:7;16042:23;16038:33;16035:53;;;16084:1;16081;16074:12;16035:53;16120:9;16107:23;16097:33;;16181:2;16170:9;16166:18;16153:32;-1:-1:-1;;;;;16245:2:1;16237:6;16234:14;16231:34;;;16261:1;16258;16251:12;16231:34;16300:70;16362:7;16353:6;16342:9;16338:22;16300:70;:::i;:::-;16389:8;;-1:-1:-1;16274:96:1;-1:-1:-1;16477:2:1;16462:18;;16449:32;;-1:-1:-1;16493:16:1;;;16490:36;;;16522:1;16519;16512:12;16490:36;16561:72;16625:7;16614:8;16603:9;16599:24;16561:72;:::i;:::-;16652:8;;-1:-1:-1;16535:98:1;-1:-1:-1;16740:2:1;16725:18;;16712:32;;-1:-1:-1;16756:16:1;;;16753:36;;;16785:1;16782;16775:12;16753:36;16824:72;16888:7;16877:8;16866:9;16862:24;16824:72;:::i;:::-;16915:8;;-1:-1:-1;16798:98:1;-1:-1:-1;17003:3:1;16988:19;;16975:33;;-1:-1:-1;17020:16:1;;;17017:36;;;17049:1;17046;17039:12;17017:36;;17088:72;17152:7;17141:8;17130:9;17126:24;17088:72;:::i;:::-;17062:98;;17179:8;17169:18;;;17206:8;17196:18;;;15750:1470;;;;;;;;;;;:::o;17225:505::-;17320:6;17328;17336;17389:2;17377:9;17368:7;17364:23;17360:32;17357:52;;;17405:1;17402;17395:12;17357:52;17445:9;17432:23;-1:-1:-1;;;;;17470:6:1;17467:30;17464:50;;;17510:1;17507;17500:12;17464:50;17549:70;17611:7;17602:6;17591:9;17587:22;17549:70;:::i;:::-;17638:8;;17523:96;;-1:-1:-1;17720:2:1;17705:18;;;;17692:32;;17225:505;-1:-1:-1;;;;17225:505:1:o;18005:595::-;18123:6;18131;18184:2;18172:9;18163:7;18159:23;18155:32;18152:52;;;18200:1;18197;18190:12;18152:52;18240:9;18227:23;-1:-1:-1;;;;;18310:2:1;18302:6;18299:14;18296:34;;;18326:1;18323;18316:12;18296:34;18349:61;18402:7;18393:6;18382:9;18378:22;18349:61;:::i;:::-;18339:71;;18463:2;18452:9;18448:18;18435:32;18419:48;;18492:2;18482:8;18479:16;18476:36;;;18508:1;18505;18498:12;18605:377;18679:6;18687;18695;18748:2;18736:9;18727:7;18723:23;18719:32;18716:52;;;18764:1;18761;18754:12;18716:52;18800:9;18787:23;18777:33;;18860:2;18849:9;18845:18;18832:32;18873:28;18895:5;18873:28;:::i;:::-;18605:377;;18920:5;;-1:-1:-1;;;18972:2:1;18957:18;;;;18944:32;;18605:377::o;18987:709::-;19100:6;19108;19116;19124;19132;19185:3;19173:9;19164:7;19160:23;19156:33;19153:53;;;19202:1;19199;19192:12;19153:53;19241:9;19228:23;19260:31;19285:5;19260:31;:::i;:::-;19310:5;-1:-1:-1;19362:2:1;19347:18;;19334:32;;-1:-1:-1;19413:2:1;19398:18;;19385:32;;-1:-1:-1;19468:2:1;19453:18;;19440:32;-1:-1:-1;;;;;19484:30:1;;19481:50;;;19527:1;19524;19517:12;19481:50;19566:70;19628:7;19619:6;19608:9;19604:22;19566:70;:::i;:::-;18987:709;;;;-1:-1:-1;18987:709:1;;-1:-1:-1;19655:8:1;;19540:96;18987:709;-1:-1:-1;;;18987:709:1:o;19701:382::-;19766:6;19774;19827:2;19815:9;19806:7;19802:23;19798:32;19795:52;;;19843:1;19840;19833:12;19795:52;19882:9;19869:23;19901:31;19926:5;19901:31;:::i;20312:437::-;20398:6;20406;20459:2;20447:9;20438:7;20434:23;20430:32;20427:52;;;20475:1;20472;20465:12;20427:52;20515:9;20502:23;-1:-1:-1;;;;;20540:6:1;20537:30;20534:50;;;20580:1;20577;20570:12;20534:50;20619:70;20681:7;20672:6;20661:9;20657:22;20619:70;:::i;:::-;20708:8;;20593:96;;-1:-1:-1;20312:437:1;-1:-1:-1;;;;20312:437:1:o;20754:1115::-;20926:6;20934;20942;20950;20958;20966;21019:3;21007:9;20998:7;20994:23;20990:33;20987:53;;;21036:1;21033;21026:12;20987:53;21075:9;21062:23;21094:31;21119:5;21094:31;:::i;:::-;21144:5;-1:-1:-1;21200:2:1;21185:18;;21172:32;-1:-1:-1;;;;;21253:14:1;;;21250:34;;;21280:1;21277;21270:12;21250:34;21303:61;21356:7;21347:6;21336:9;21332:22;21303:61;:::i;:::-;21293:71;;21417:2;21406:9;21402:18;21389:32;21373:48;;21446:2;21436:8;21433:16;21430:36;;;21462:1;21459;21452:12;21430:36;21485:63;21540:7;21529:8;21518:9;21514:24;21485:63;:::i;:::-;21475:73;;21595:2;21584:9;21580:18;21567:32;21557:42;;21652:3;21641:9;21637:19;21624:33;21608:49;;21682:2;21672:8;21669:16;21666:36;;;21698:1;21695;21688:12;21666:36;;21737:72;21801:7;21790:8;21779:9;21775:24;21737:72;:::i;21874:385::-;21958:6;22011:2;21999:9;21990:7;21986:23;21982:32;21979:52;;;22027:1;22024;22017:12;21979:52;22067:9;22054:23;-1:-1:-1;;;;;22092:6:1;22089:30;22086:50;;;22132:1;22129;22122:12;22086:50;22155:22;;22211:3;22193:16;;;22189:26;22186:46;;;22228:1;22225;22218:12;22264:642;22429:2;22481:21;;;22551:13;;22454:18;;;22573:22;;;22400:4;;22429:2;22652:15;;;;22626:2;22611:18;;;22400:4;22695:185;22709:6;22706:1;22703:13;22695:185;;;22784:13;;22777:21;22770:29;22758:42;;22855:15;;;;22820:12;;;;22731:1;22724:9;22695:185;;22911:309;22976:6;22984;23037:2;23025:9;23016:7;23012:23;23008:32;23005:52;;;23053:1;23050;23043:12;23005:52;23089:9;23076:23;23066:33;;23149:2;23138:9;23134:18;23121:32;23162:28;23184:5;23162:28;:::i;23225:815::-;23316:6;23324;23377:3;23365:9;23356:7;23352:23;23348:33;23345:53;;;23394:1;23391;23384:12;23345:53;23443:7;23436:4;23425:9;23421:20;23417:34;23407:62;;23465:1;23462;23455:12;23407:62;23498:2;23492:9;23540:2;23532:6;23528:15;23609:6;23597:10;23594:22;-1:-1:-1;;;;;23561:10:1;23558:34;23555:62;23552:88;;;23620:18;;:::i;:::-;23656:2;23649:22;23691:6;23735:2;23720:18;;23750:19;;;23747:39;;;23782:1;23779;23772:12;23747:39;23806:9;23824:146;23840:6;23835:3;23832:15;23824:146;;;23908:17;;23896:30;;23955:4;23946:14;;;;23857;23824:146;;;-1:-1:-1;23989:6:1;;24014:20;;;-1:-1:-1;23225:815:1;;-1:-1:-1;;;;23225:815:1:o;24045:388::-;24113:6;24121;24174:2;24162:9;24153:7;24149:23;24145:32;24142:52;;;24190:1;24187;24180:12;24142:52;24229:9;24216:23;24248:31;24273:5;24248:31;:::i;:::-;24298:5;-1:-1:-1;24355:2:1;24340:18;;24327:32;24368:33;24327:32;24368:33;:::i;24438:734::-;24542:6;24550;24558;24566;24574;24627:3;24615:9;24606:7;24602:23;24598:33;24595:53;;;24644:1;24641;24634:12;24595:53;24683:9;24670:23;24702:31;24727:5;24702:31;:::i;:::-;24752:5;-1:-1:-1;24809:2:1;24794:18;;24781:32;24822:33;24781:32;24822:33;:::i;:::-;24874:7;-1:-1:-1;24928:2:1;24913:18;;24900:32;;-1:-1:-1;24979:2:1;24964:18;;24951:32;;-1:-1:-1;25034:3:1;25019:19;;25006:33;-1:-1:-1;;;;;25051:30:1;;25048:50;;;25094:1;25091;25084:12;25048:50;25117:49;25158:7;25149:6;25138:9;25134:22;25117:49;:::i;25177:444::-;25248:6;25256;25264;25317:2;25305:9;25296:7;25292:23;25288:32;25285:52;;;25333:1;25330;25323:12;25285:52;25372:9;25359:23;25391:28;25413:5;25391:28;:::i;:::-;25438:5;-1:-1:-1;25490:2:1;25475:18;;25462:32;;-1:-1:-1;25546:2:1;25531:18;;25518:32;25559:30;25518:32;25559:30;:::i;25626:127::-;25687:10;25682:3;25678:20;25675:1;25668:31;25718:4;25715:1;25708:15;25742:4;25739:1;25732:15;25758:380;25837:1;25833:12;;;;25880;;;25901:61;;25955:4;25947:6;25943:17;25933:27;;25901:61;26008:2;26000:6;25997:14;25977:18;25974:38;25971:161;;26054:10;26049:3;26045:20;26042:1;26035:31;26089:4;26086:1;26079:15;26117:4;26114:1;26107:15;25971:161;;25758:380;;;:::o;26269:722::-;26319:3;26360:5;26354:12;26389:36;26415:9;26389:36;:::i;:::-;26444:1;26461:18;;;26488:133;;;;26635:1;26630:355;;;;26454:531;;26488:133;-1:-1:-1;;26521:24:1;;26509:37;;26594:14;;26587:22;26575:35;;26566:45;;;-1:-1:-1;26488:133:1;;26630:355;26661:5;26658:1;26651:16;26690:4;26735:2;26732:1;26722:16;26760:1;26774:165;26788:6;26785:1;26782:13;26774:165;;;26866:14;;26853:11;;;26846:35;26909:16;;;;26803:10;;26774:165;;;26778:3;;;26968:6;26963:3;26959:16;26952:23;;26454:531;;;;;26269:722;;;;:::o;26996:690::-;27363:3;27391:73;27425:38;27459:3;27451:6;27425:38;:::i;:::-;27417:6;27391:73;:::i;:::-;-1:-1:-1;;;27480:2:1;27473:15;27517:6;27511:13;27533:73;27599:6;27595:1;27591:2;27587:10;27580:4;27572:6;27568:17;27533:73;:::i;:::-;27622:58;27677:1;27668:6;27664:2;27660:15;27656:23;27648:6;27622:58;:::i;:::-;27615:65;26996:690;-1:-1:-1;;;;;;;;26996:690:1:o;27691:469::-;27912:3;27940:38;27974:3;27966:6;27940:38;:::i;:::-;28007:6;28001:13;28023:65;28081:6;28077:2;28070:4;28062:6;28058:17;28023:65;:::i;:::-;28104:50;28146:6;28142:2;28138:15;28130:6;28104:50;:::i;:::-;28097:57;27691:469;-1:-1:-1;;;;;;;27691:469:1:o;28165:127::-;28226:10;28221:3;28217:20;28214:1;28207:31;28257:4;28254:1;28247:15;28281:4;28278:1;28271:15;28297:135;28336:3;28357:17;;;28354:43;;28377:18;;:::i;:::-;-1:-1:-1;28424:1:1;28413:13;;28297:135::o;28437:146::-;28499:78;28517:3;28510:5;28507:14;28499:78;;;28573:1;28559:16;;28544:1;28533:13;28499:78;;28588:418;28690:2;28685:3;28682:11;28679:321;;;28726:5;28723:1;28716:16;28770:4;28767:1;28757:18;28840:2;28828:10;28824:19;28821:1;28817:27;28811:4;28807:38;28876:4;28864:10;28861:20;28858:47;;;-1:-1:-1;28899:4:1;28858:47;28918:72;28984:2;28979:3;28975:12;28972:1;28968:20;28962:4;28958:31;28945:11;28918:72;:::i;29182:1352::-;29308:3;29302:10;-1:-1:-1;;;;;29327:6:1;29324:30;29321:56;;;29357:18;;:::i;:::-;29386:97;29476:6;29436:38;29468:4;29462:11;29436:38;:::i;:::-;29430:4;29386:97;:::i;:::-;29538:4;;29602:2;29591:14;;29619:1;29614:663;;;;30321:1;30338:6;30335:89;;;-1:-1:-1;30390:19:1;;;30384:26;30335:89;-1:-1:-1;;29139:1:1;29135:11;;;29131:24;29127:29;29117:40;29163:1;29159:11;;;29114:57;30437:81;;29584:944;;29614:663;26216:1;26209:14;;;26253:4;26240:18;;-1:-1:-1;;29650:20:1;;;29768:236;29782:7;29779:1;29776:14;29768:236;;;29871:19;;;29865:26;29850:42;;29963:27;;;;29931:1;29919:14;;;;29798:19;;29768:236;;;29772:3;30032:6;30023:7;30020:19;30017:201;;;30093:19;;;30087:26;-1:-1:-1;;30176:1:1;30172:14;;;30188:3;30168:24;30164:37;30160:42;30145:58;30130:74;;30017:201;-1:-1:-1;;;;;30264:1:1;30248:14;;;30244:22;30231:36;;-1:-1:-1;29182:1352:1:o;32357:125::-;32422:9;;;32443:10;;;32440:36;;;32456:18;;:::i;32487:638::-;32781:2;32763:21;;;32800:18;;32793:34;;;-1:-1:-1;;;;;;32839:31:1;;32836:51;;;32883:1;32880;32873:12;32836:51;32917:6;32914:1;32910:14;32975:6;32967;32961:3;32950:9;32946:19;32933:49;33062:4;33047:20;;33040:36;;;;-1:-1:-1;33107:2:1;33092:18;;33085:34;;;;33003:22;33027:3;32999:32;;32487:638;-1:-1:-1;;32487:638:1:o;33130:375::-;33204:6;33212;33265:2;33253:9;33244:7;33240:23;33236:32;33233:52;;;33281:1;33278;33271:12;33233:52;33313:9;33307:16;33332:28;33354:5;33332:28;:::i;:::-;33429:2;33414:18;;33408:25;33379:5;;-1:-1:-1;33442:31:1;33408:25;33442:31;:::i;33510:128::-;33577:9;;;33598:11;;;33595:37;;;33612:18;;:::i;33976:168::-;34049:9;;;34080;;34097:15;;;34091:22;;34077:37;34067:71;;34118:18;;:::i;34149:323::-;34260:3;34281:1;34291:175;34305:4;34302:1;34299:11;34291:175;;;34362:20;;34440:11;;;34433:23;34417:2;34405:15;;;;34325:1;34318:9;34291:175;;34477:318;34564:4;34622:11;34609:25;34716:2;34712:7;34701:8;34685:14;34681:29;34677:43;34657:18;34653:68;34643:96;;34735:1;34732;34725:12;34643:96;34756:33;;;;;34477:318;-1:-1:-1;;34477:318:1:o;34800:2044::-;34924:5;34957:4;34979:1;34989:1849;35003:4;35000:1;34997:11;34989:1849;;;35089:6;35076:20;35179:2;35175:7;35167:5;35151:14;35147:26;35143:40;35123:18;35119:65;35109:93;;35198:1;35195;35188:12;35109:93;35227:30;;35284:18;;-1:-1:-1;;;;;35318:30:1;;35315:50;;;35361:1;35358;35351:12;35315:50;35388:4;35447:6;35431:14;35427:27;35422:2;35416:4;35412:13;35408:47;35405:67;;;35468:1;35465;35458:12;35405:67;35485:111;35589:6;35542:45;35574:11;35568:18;35542:45;:::i;:::-;35529:11;35485:111;:::i;:::-;35626:1;35658:2;35650:6;35647:14;35679:1;35674:756;;;;36484:1;36505:6;36502:120;;;-1:-1:-1;36578:20:1;;;36574:29;;36561:43;36502:120;-1:-1:-1;;29139:1:1;29135:11;;;29131:24;29127:29;29117:40;29163:1;29159:11;;;29114:57;36639:90;;35640:1103;;35674:756;26216:1;26209:14;;;26253:4;26240:18;;-1:-1:-1;;35714:20:1;;;35835:9;35861:261;35877:7;35872:3;35869:16;35861:261;;;35980:20;;;35976:29;;35963:43;35948:59;;36086:18;;;;36050:1;36038:14;;;;35895:12;;35861:261;;;35865:3;36154:6;36145:7;36142:19;36139:187;;;36302:1;36298:6;36292:3;36283:6;36280:1;36276:14;36272:24;36268:37;36264:42;36258:2;36246:9;36240:4;36236:20;36232:29;36219:43;36215:92;36207:6;36200:108;36139:187;-1:-1:-1;;36353:1:1;36395:15;;;36391:24;36371:45;;35640:1103;-1:-1:-1;;36766:15:1;;;;;-1:-1:-1;;36826:1:1;36809:19;;;;35016:9;34989:1849;;36849:170;36891:11;36943:3;36930:17;36956:28;36978:5;36956:28;:::i;38278:327::-;38393:3;38414:1;38424:175;38438:4;38435:1;38432:11;38424:175;;;38495:20;;38573:11;;;38566:23;38550:2;38538:15;;;;38458:1;38451:9;38424:175;;38610:535;38693:4;38699:6;38759:11;38746:25;38853:2;38849:7;38838:8;38822:14;38818:29;38814:43;38794:18;38790:68;38780:96;;38872:1;38869;38862:12;38780:96;38899:33;;38951:20;;;-1:-1:-1;;;;;;38983:30:1;;38980:50;;;39026:1;39023;39016:12;38980:50;39059:4;39047:17;;-1:-1:-1;39110:1:1;39106:14;;;39090;39086:35;39076:46;;39073:66;;;39135:1;39132;39125:12;39150:289;39259:3;39247:10;39244:19;39241:192;;;39296:5;39293:1;39286:16;39340:4;39337:1;39327:18;39358:65;39418:3;39412:4;39408:14;39395:10;39389:4;39385:21;39358:65;:::i;39444:676::-;-1:-1:-1;;;;;39563:3:1;39560:27;39557:53;;;39590:18;;:::i;:::-;-1:-1:-1;;;39625:3:1;39622:29;39619:55;;;39654:18;;:::i;:::-;39703:3;39697:10;39728:3;39723;39716:16;39741:61;39798:3;39790:6;39785:3;39741:61;:::i;:::-;;39825:3;39847;39844:1;39837:14;39870:4;39908:2;39905:1;39895:16;39929:1;39939:175;39953:3;39950:1;39947:10;39939:175;;;40009:20;;40087:12;;;40080:24;40052:15;;;;39972:1;39965:9;39939:175;;40125:726;-1:-1:-1;;;;;40244:3:1;40241:27;40238:53;;;40271:18;;:::i;:::-;-1:-1:-1;;;40306:3:1;40303:29;40300:55;;;40335:18;;:::i;:::-;40384:3;40378:10;40409:3;40404;40397:16;40422:61;40479:3;40471:6;40466:3;40422:61;:::i;:::-;;40506:3;40528;40525:1;40518:14;40551:4;40589:2;40586:1;40576:16;40610:1;40620:225;40634:3;40631:1;40628:10;40620:225;;;40706:6;40693:20;40726:31;40751:5;40726:31;:::i;:::-;40815:12;;;40808:27;40780:15;;;;40653:1;40646:9;40620:225;;40856:734;-1:-1:-1;;;40936:6:1;40933:32;40930:58;;;40968:18;;:::i;:::-;41017:5;41011:12;41046:6;41039:5;41032:21;41076:6;41068;41065:18;41062:522;;;41116:5;41113:1;41106:16;41160:4;41157:1;41147:18;41226:2;41218:6;41214:15;41211:1;41207:23;41201:4;41197:34;41266:2;41258:6;41254:15;41299:2;41292:10;41282:204;;41348:1;41344:6;41394:2;41381:11;41377:20;41467:2;41461:9;41456:2;41450;41444:4;41440:13;41437:1;41433:21;41429:30;41425:46;41421:2;41414:58;;;41282:204;;41499:75;41568:2;41560:6;41556:15;41553:1;41549:23;41543:4;41539:34;41526:11;41499:75;:::i;41825:1349::-;-1:-1:-1;;;;;41938:3:1;41935:27;41932:53;;;41965:18;;:::i;:::-;41994:45;42035:3;42030;41994:45;:::i;:::-;26216:1;26209:14;;;26253:4;26240:18;;42062:3;;42156;42153:1;42149:11;42178:1;42188:481;42202:9;42199:1;42196:16;42188:481;;;42274:1;42297:12;42322:287;42394:2;42429;42426:1;42423:9;42413:30;;42436:5;;;42413:30;42476:77;42520:32;42545:6;42520:32;:::i;:::-;41808:3;41794:18;;;41705:1;41701:18;;;41779:34;;;41756:19;;;41752:24;41741:36;;41738:76;;41595:225;42476:77;42580:15;;;42460:93;-1:-1:-1;42349:1:1;42342:9;42322:287;;;-1:-1:-1;42629:15:1;;;42622:37;42227:1;42220:9;42188:481;;;-1:-1:-1;;;42688:17:1;;42727:12;;;42758:11;;;42748:420;;42815:1;42840:14;42867:231;42883:5;42878:3;42875:14;42867:231;;;42961:81;43009:32;43034:6;43009:32;:::i;:::-;41808:3;41794:18;;;41705:1;41701:18;;;41779:34;;;41756:19;;;41752:24;41741:36;;41738:76;;41595:225;42961:81;43081:2;43069:15;;;;;42943:99;-1:-1:-1;42908:1:1;42899:11;42867:231;;;-1:-1:-1;43118:23:1;;;43111:47;42748:420;;;;;;41825:1349;;;:::o;43179:2564::-;43312:76;43382:5;43376:4;43312:76;:::i;:::-;43397:163;43485:74;43555:2;43548:5;43544:14;43537:5;43485:74;:::i;:::-;43481:1;43475:4;43471:12;43397:163;:::i;:::-;43597:1;43591:4;43587:12;43608:98;43664:41;43700:3;43693:5;43689:15;43664:41;:::i;:::-;37123:11;;37190:13;;37183:21;37140:3;37179:31;-1:-1:-1;;37119:26:1;;;;37167:44;37154:58;;37024:194;43608:98;43715:96;43769:41;43805:3;43798:5;43794:15;43769:41;:::i;:::-;43757:10;37311:11;;-1:-1:-1;;37347:19:1;37386:13;;37379:21;37376:1;37372:29;37403:5;37368:41;37344:66;;;;37331:80;;37223:194;43715:96;43820:98;43876:41;43912:3;43905:5;43901:15;43876:41;:::i;:::-;43864:10;37512:11;;-1:-1:-1;;37548:22:1;37591:13;;37584:21;37580:2;37576:30;37608:8;37572:45;37545:73;;;;37532:87;;37422:203;43820:98;43927;43983:41;44019:3;44012:5;44008:15;43983:41;:::i;:::-;43971:10;37720:11;;-1:-1:-1;;37756:24:1;37801:13;;37794:21;37790:2;37786:30;37818:10;37782:47;37753:77;;;;37740:91;;37630:207;43927:98;44034;44090:41;44126:3;44119:5;44115:15;44090:41;:::i;:::-;44078:10;37932:11;;-1:-1:-1;;37968:26:1;38015:13;;38008:21;38004:2;38000:30;38032:12;37996:49;37965:81;;;;37952:95;;37842:211;44034:98;44141;44197:41;44233:3;44226:5;44222:15;44197:41;:::i;:::-;44185:10;38148:11;;-1:-1:-1;;38184:28:1;38233:13;;38226:21;38222:2;38218:30;38250:14;38214:51;38181:85;;;;38168:99;;38058:215;44141:98;;44248;44341:3;44334:5;44330:15;44326:1;44320:4;44316:12;44248:98;:::i;:::-;44400:3;44393:5;44389:15;44376:29;44372:1;44366:4;44362:12;44355:51;44460:3;44453:5;44449:15;44436:29;44432:1;44426:4;44422:12;44415:51;44521:3;44514:5;44510:15;44497:29;44492:2;44486:4;44482:13;44475:52;44582:3;44575:5;44571:15;44558:29;44553:2;44547:4;44543:13;44536:52;44643:3;44636:5;44632:15;44619:29;44614:2;44608:4;44604:13;44597:52;44704:3;44697:5;44693:15;44680:29;44675:2;44669:4;44665:13;44658:52;44765:3;44758:5;44754:15;44741:29;44736:2;44730:4;44726:13;44719:52;44814:71;44880:3;44873:5;44869:15;44862:5;44814:71;:::i;:::-;44894:117;44997:13;44984:11;44979:2;44973:4;44969:13;44894:117;:::i;:::-;;;45056:71;45122:3;45115:5;45111:15;45104:5;45056:71;:::i;:::-;45136:119;45241:13;45226;45221:2;45215:4;45211:13;45136:119;:::i;:::-;;;45300:71;45366:3;45359:5;45355:15;45348:5;45300:71;:::i;:::-;45380:119;45485:13;45470;45465:2;45459:4;45455:13;45380:119;:::i;:::-;;;45544:71;45610:3;45603:5;45599:15;45592:5;45544:71;:::i;:::-;45624:113;45723:13;45708;45703:2;45697:4;45693:13;45624:113;:::i;45748:1283::-;-1:-1:-1;;;46404:3:1;46397:16;46379:3;46442:6;46436:13;46458:74;46525:6;46521:1;46516:3;46512:11;46505:4;46497:6;46493:17;46458:74;:::i;:::-;46560:6;46555:3;46551:16;46541:26;;-1:-1:-1;;;46617:2:1;46613:1;46609:2;46605:10;46598:22;46651:6;46645:13;46667:75;46733:8;46729:1;46725:2;46721:10;46714:4;46706:6;46702:17;46667:75;:::i;:::-;46802:1;46761:17;;46794:10;;;46787:22;46834:13;;46856:75;46834:13;46918:1;46910:10;;46903:4;46891:17;;46856:75;:::i;:::-;-1:-1:-1;;;46991:1:1;46950:17;;;;46983:10;;;46976:23;47023:1;47015:10;;45748:1283;-1:-1:-1;;;;;45748:1283:1:o;47036:719::-;-1:-1:-1;;;47537:3:1;47530:16;47512:3;47565:46;47608:1;47603:3;47599:11;47591:6;47565:46;:::i;:::-;-1:-1:-1;;;47627:2:1;47620:15;47654:45;47696:1;47692:2;47688:10;47680:6;47654:45;:::i;:::-;-1:-1:-1;;;47708:15:1;;47747:1;47739:10;;47036:719;-1:-1:-1;;;;;47036:719:1:o;47760:924::-;-1:-1:-1;;;48267:3:1;48260:16;48242:3;48305:6;48299:13;48321:74;48388:6;48384:1;48379:3;48375:11;48368:4;48360:6;48356:17;48321:74;:::i;:::-;-1:-1:-1;;;48454:1:1;48414:16;;;48446:10;;;48439:23;48487:13;;48509:75;48487:13;48571:1;48563:10;;48556:4;48544:17;;48509:75;:::i;:::-;-1:-1:-1;;;48644:1:1;48603:17;;;;48636:10;;;48629:23;48676:1;48668:10;;47760:924;-1:-1:-1;;;;47760:924:1:o;50376:175::-;50413:3;50457:4;50450:5;50446:16;50486:4;50477:7;50474:17;50471:43;;50494:18;;:::i;:::-;50543:1;50530:15;;50376:175;-1:-1:-1;;50376:175:1:o;50835:184::-;50905:6;50958:2;50946:9;50937:7;50933:23;50929:32;50926:52;;;50974:1;50971;50964:12;50926:52;-1:-1:-1;50997:16:1;;50835:184;-1:-1:-1;50835:184:1:o;51024:251::-;51094:6;51147:2;51135:9;51126:7;51122:23;51118:32;51115:52;;;51163:1;51160;51153:12;51115:52;51195:9;51189:16;51214:31;51239:5;51214:31;:::i;51280:505::-;51550:6;51545:3;51538:19;51587:6;51582:2;51577:3;51573:12;51566:28;51649:26;51645:31;51636:6;51632:2;51628:15;51624:53;51619:2;51614:3;51610:12;51603:75;51708:6;51703:2;51698:3;51694:12;51687:28;51520:3;51731:48;51774:3;51769;51765:13;51757:6;51731:48;:::i;51790:561::-;-1:-1:-1;;;;;52087:15:1;;;52069:34;;52139:15;;52134:2;52119:18;;52112:43;52186:2;52171:18;;52164:34;;;52229:2;52214:18;;52207:34;;;52049:3;52272;52257:19;;52250:32;;;52012:4;;52299:46;;52325:19;;52317:6;52299:46;:::i;52356:249::-;52425:6;52478:2;52466:9;52457:7;52453:23;52449:32;52446:52;;;52494:1;52491;52484:12;52446:52;52526:9;52520:16;52545:30;52569:5;52545:30;:::i;52610:827::-;-1:-1:-1;;;;;53007:15:1;;;52989:34;;53059:15;;53054:2;53039:18;;53032:43;52969:3;53106:2;53091:18;;53084:31;;;52932:4;;53138:57;;53175:19;;53167:6;53138:57;:::i;:::-;53243:9;53235:6;53231:22;53226:2;53215:9;53211:18;53204:50;53277:44;53314:6;53306;53277:44;:::i;:::-;53263:58;;53370:9;53362:6;53358:22;53352:3;53341:9;53337:19;53330:51;53398:33;53424:6;53416;53398:33;:::i;53872:209::-;53904:1;53930;53920:132;;53974:10;53969:3;53965:20;53962:1;53955:31;54009:4;54006:1;53999:15;54037:4;54034:1;54027:15;53920:132;-1:-1:-1;54066:9:1;;53872:209::o;54508:465::-;54765:2;54754:9;54747:21;54728:4;54791:56;54843:2;54832:9;54828:18;54820:6;54791:56;:::i;:::-;54895:9;54887:6;54883:22;54878:2;54867:9;54863:18;54856:50;54923:44;54960:6;54952;54923:44;:::i

Swarm Source

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