ETH Price: $2,876.00 (-9.21%)
Gas: 9 Gwei

Token

I AM WHO I AM (SYMBOL)
 

Overview

Max Total Supply

1,010 SYMBOL

Holders

203

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mushmuffin.eth
Balance
5 SYMBOL
0xe0a749772f7512983759a8a7dee2f5a39d9ad14c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IAMWHOIAM

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

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


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

pragma solidity ^0.8.0;

/**
 * @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 Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be 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.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: contracts/MyToken.sol


pragma solidity ^0.8.9;




contract IAMWHOIAM is ERC721, Ownable {

    using Strings for uint256;

    uint private constant MAX_TOKENS = 1010;
    uint private constant TOKENS_RESERVED = 3;
    uint256 public price = 6000000000000000; //16ge0 0.06eth
    uint256 public whitePrice = 0;
    uint256 public constant MAX_MINT_PER_TX = 5;
    uint256 public freeAcount = 200;

    uint256 public totalSupply = 0;
    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    bytes32 public root;

    constructor() ERC721("I AM WHO I AM", "SYMBOL") {
        baseUri = "ipfs://QmVZHjiqq7YA36U4c1hk6k5qQFkw1HjbrGUzQcNzqkqpdy/";
        root = 0x98e2dafd4fd09ea921ec0715baa4c55b787265d32dc825afe8e033457bd90a5c;

        uint256 curTotalSupply = totalSupply;
        for(uint256 i = 1; i < 21; i++) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        totalSupply += 20;
    }

    // Public Functions
    function mint(uint256 _numTokens, bytes32[] calldata proof) external payable {
        require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        if(MerkleProof.verify(proof, root , leaf)) {
            require(_numTokens * whitePrice <= msg.value, "white Insufficient funds.");
        } else {

            if(curTotalSupply < freeAcount && curTotalSupply + _numTokens <= freeAcount) {

            
            } else if(curTotalSupply < freeAcount && curTotalSupply + _numTokens > freeAcount) {

                require(((_numTokens + curTotalSupply - freeAcount) * price) <= msg.value, "Insufficient funds");
            } else {
                require(_numTokens * price <= msg.value, "Insufficient funds.");
            }
        }

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += _numTokens;
        totalSupply += _numTokens;
    }

    function mint1(bytes32[] memory proof) external payable {
        require(1 <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        require(mintedPerWallet[msg.sender] + 1 <= MAX_MINT_PER_TX, "You cannot mint that many total.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + 1 <= MAX_TOKENS, "Exceeds total supply.");

        if(isValid(proof)) {

            require(1 * whitePrice <= msg.value, "white Insufficient funds.");
        } else {

            require(1 * price <= msg.value, "Insufficient funds.");
        }

        for(uint256 i = 1; i <= 1; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += 1;
        totalSupply += 1;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setFreeAcount(uint256 _freeAccount) external onlyOwner {
        freeAcount = _freeAccount;
    }

    function setWhiteListPrice(uint256 _whitePrice) external onlyOwner {
        whitePrice = _whitePrice;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        ( bool transferOne, ) = payable(0x06B7e5DDE9056cF007b65585B9A14ce200b672B3).call{value: balance}("");
        require(transferOne, "Transfer failed.");
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }

    function isValid(bytes32[] memory proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(proof));
        return MerkleProof.verify(proof, root, leaf);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAcount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint1","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeAccount","type":"uint256"}],"name":"setFreeAcount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitePrice","type":"uint256"}],"name":"setWhiteListPrice","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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052661550f7dca70000600755600060085560c86009556000600a556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200006b92919062000946565b503480156200007957600080fd5b506040518060400160405280600d81526020017f4920414d2057484f204920414d000000000000000000000000000000000000008152506040518060400160405280600681526020017f53594d424f4c00000000000000000000000000000000000000000000000000008152508160009080519060200190620000fe92919062000946565b5080600190805190602001906200011792919062000946565b5050506200013a6200012e6200020760201b60201c565b6200020f60201b60201c565b6040518060600160405280603681526020016200524760369139600c90805190602001906200016b92919062000946565b507f98e2dafd4fd09ea921ec0715baa4c55b787265d32dc825afe8e033457bd90a5c60001b600e819055506000600a5490506000600190505b6015811015620001e357620001cd338284620001c1919062000a2f565b620002d560201b60201c565b8080620001da9062000a8c565b915050620001a4565b506014600a6000828254620001f9919062000a2f565b925050819055505062000ee9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f7828260405180602001604052806000815250620002fb60201b60201c565b5050565b6200030d83836200036960201b60201c565b620003226000848484620005b060201b60201c565b62000364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035b9062000b61565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d39062000bd3565b60405180910390fd5b620003ed816200076a60201b60201c565b1562000430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004279062000c45565b60405180910390fd5b62000446600083836001620007b360201b60201c565b62000457816200076a60201b60201c565b156200049a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004919062000c45565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005ac600083836001620008e060201b60201c565b5050565b6000620005de8473ffffffffffffffffffffffffffffffffffffffff16620008e660201b620018271760201c565b156200075d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006106200020760201b60201c565b8786866040518563ffffffff1660e01b815260040162000634949392919062000d61565b602060405180830381600087803b1580156200064f57600080fd5b505af19250505080156200068357506040513d601f19601f8201168201806040525081019062000680919062000e17565b60015b6200070c573d8060008114620006b6576040519150601f19603f3d011682016040523d82523d6000602084013e620006bb565b606091505b5060008151141562000704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb9062000b61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000762565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff1662000794836200090960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115620008da57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146200084b5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000843919062000e49565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008d95780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008d1919062000a2f565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b828054620009549062000eb3565b90600052602060002090601f016020900481019282620009785760008555620009c4565b82601f106200099357805160ff1916838001178555620009c4565b82800160010185558215620009c4579182015b82811115620009c3578251825591602001919060010190620009a6565b5b509050620009d39190620009d7565b5090565b5b80821115620009f2576000816000905550600101620009d8565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a3c82620009f6565b915062000a4983620009f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a815762000a8062000a00565b5b828201905092915050565b600062000a9982620009f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000acf5762000ace62000a00565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000b4960328362000ada565b915062000b568262000aeb565b604082019050919050565b6000602082019050818103600083015262000b7c8162000b3a565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000bbb60208362000ada565b915062000bc88262000b83565b602082019050919050565b6000602082019050818103600083015262000bee8162000bac565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000c2d601c8362000ada565b915062000c3a8262000bf5565b602082019050919050565b6000602082019050818103600083015262000c608162000c1e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c948262000c67565b9050919050565b62000ca68162000c87565b82525050565b62000cb781620009f6565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000cf957808201518184015260208101905062000cdc565b8381111562000d09576000848401525b50505050565b6000601f19601f8301169050919050565b600062000d2d8262000cbd565b62000d39818562000cc8565b935062000d4b81856020860162000cd9565b62000d568162000d0f565b840191505092915050565b600060808201905062000d78600083018762000c9b565b62000d87602083018662000c9b565b62000d96604083018562000cac565b818103606083015262000daa818462000d20565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000df18162000dba565b811462000dfd57600080fd5b50565b60008151905062000e118162000de6565b92915050565b60006020828403121562000e305762000e2f62000db5565b5b600062000e408482850162000e00565b91505092915050565b600062000e5682620009f6565b915062000e6383620009f6565b92508282101562000e795762000e7862000a00565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ecc57607f821691505b6020821081141562000ee35762000ee262000e84565b5b50919050565b61434e8062000ef96000396000f3fe6080604052600436106101ee5760003560e01c80639abc83201161010d578063c6682862116100a0578063e85026971161006f578063e8502697146106a9578063e985e9c5146106c5578063ebf0c71714610702578063f2fde38b1461072d578063f56f516f14610756576101ee565b8063c6682862146105ed578063c87b56dd14610618578063d876d1aa14610655578063dab5f34014610680576101ee565b8063a22cb465116100dc578063a22cb46514610556578063b88d4fde1461057f578063ba41b0c6146105a8578063beafc89b146105c4576101ee565b80639abc8320146104ae5780639adc5bbe146104d9578063a035b1fe14610502578063a0bcfc7f1461052d576101ee565b80636352211e116101855780638da5cb5b116101545780638da5cb5b146104045780638ecad7211461042f57806391b7f5ed1461045a57806395d89b4114610483576101ee565b80636352211e1461036957806370a08231146103a6578063715018a6146103e3578063853828b6146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633b7f55fb1461031557806342842e0e14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612aaf565b610793565b6040516102279190612af7565b60405180910390f35b34801561023c57600080fd5b50610245610875565b6040516102529190612bab565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612c03565b610907565b60405161028f9190612c71565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612cb8565b61094d565b005b3480156102cd57600080fd5b506102d6610a65565b6040516102e39190612d07565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612d22565b610a6b565b005b34801561032157600080fd5b5061032a610acb565b6040516103379190612d07565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612d22565b610ad1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612c03565b610af1565b60405161039d9190612c71565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190612d75565b610b78565b6040516103da9190612d07565b60405180910390f35b3480156103ef57600080fd5b506103f8610c30565b005b610402610c44565b005b34801561041057600080fd5b50610419610d15565b6040516104269190612c71565b60405180910390f35b34801561043b57600080fd5b50610444610d3f565b6040516104519190612d07565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612c03565b610d44565b005b34801561048f57600080fd5b50610498610d56565b6040516104a59190612bab565b60405180910390f35b3480156104ba57600080fd5b506104c3610de8565b6040516104d09190612bab565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612c03565b610e76565b005b34801561050e57600080fd5b50610517610e88565b6040516105249190612d07565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ed7565b610e8e565b005b34801561056257600080fd5b5061057d60048036038101906105789190612f4c565b610eb0565b005b34801561058b57600080fd5b506105a660048036038101906105a1919061302d565b610ec6565b005b6105c260048036038101906105bd9190613110565b610f28565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612c03565b6112d9565b005b3480156105f957600080fd5b506106026112eb565b60405161060f9190612bab565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612c03565b611379565b60405161064c9190612bab565b60405180910390f35b34801561066157600080fd5b5061066a611423565b6040516106779190612d07565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a291906131a6565b611429565b005b6106c360048036038101906106be9190613296565b61143b565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906132df565b6116c8565b6040516106f99190612af7565b60405180910390f35b34801561070e57600080fd5b5061071761175c565b604051610724919061332e565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612d75565b611762565b005b34801561076257600080fd5b5061077d60048036038101906107789190613296565b6117e6565b60405161078a9190612af7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e575061086d8261184a565b5b9050919050565b60606000805461088490613378565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613378565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000610912826118b4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095882610af1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c09061341c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e86118ff565b73ffffffffffffffffffffffffffffffffffffffff161480610a175750610a1681610a116118ff565b6116c8565b5b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d906134ae565b60405180910390fd5b610a608383611907565b505050565b600a5481565b610a7c610a766118ff565b826119c0565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613540565b60405180910390fd5b610ac6838383611a55565b505050565b60085481565b610aec83838360405180602001604052806000815250610ec6565b505050565b600080610afd83611d4f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906135ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061363e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c38611d8c565b610c426000611e0a565b565b610c4c611d8c565b600047905060007306b7e5dde9056cf007b65585b9a14ce200b672b373ffffffffffffffffffffffffffffffffffffffff1682604051610c8b9061368f565b60006040518083038185875af1925050503d8060008114610cc8576040519150601f19603f3d011682016040523d82523d6000602084013e610ccd565b606091505b5050905080610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906136f0565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b610d4c611d8c565b8060078190555050565b606060018054610d6590613378565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9190613378565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b5050505050905090565b600c8054610df590613378565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2190613378565b8015610e6e5780601f10610e4357610100808354040283529160200191610e6e565b820191906000526020600020905b815481529060010190602001808311610e5157829003601f168201915b505050505081565b610e7e611d8c565b8060098190555050565b60075481565b610e96611d8c565b80600c9080519060200190610eac9291906129a0565b5050565b610ec2610ebb6118ff565b8383611ed0565b5050565b610ed7610ed16118ff565b836119c0565b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613540565b60405180910390fd5b610f228484848461203d565b50505050565b6005831115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613782565b60405180910390fd5b600583600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb991906137d1565b1115610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613873565b60405180910390fd5b6000600a5490506103f2848261101091906137d1565b1115611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906138df565b60405180910390fd5b6000336040516020016110649190613947565b6040516020818303038152906040528051906020012090506110ca848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612099565b156111245734600854866110de9190613962565b111561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613a08565b60405180910390fd5b61122e565b600954821080156111425750600954858361113f91906137d1565b11155b1561114c5761122d565b600954821080156111695750600954858361116791906137d1565b115b156111db5734600754600954848861118191906137d1565b61118b9190613a28565b6111959190613962565b11156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613aa8565b60405180910390fd5b61122c565b34600754866111ea9190613962565b111561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613b14565b60405180910390fd5b5b5b5b6000600190505b8581116112625761125133828561124c91906137d1565b6120b0565b8061125b90613b34565b9050611235565b5084600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b291906137d1565b9250508190555084600a60008282546112cb91906137d1565b925050819055505050505050565b6112e1611d8c565b8060088190555050565b600d80546112f890613378565b80601f016020809104026020016040519081016040528092919081815260200182805461132490613378565b80156113715780601f1061134657610100808354040283529160200191611371565b820191906000526020600020905b81548152906001019060200180831161135457829003601f168201915b505050505081565b6060611384826120ce565b6113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613bef565b60405180910390fd5b60006113cd61210f565b905060008151116113ed576040518060200160405280600081525061141b565b806113f7846121a1565b600d60405160200161140b93929190613cdf565b6040516020818303038152906040525b915050919050565b60095481565b611431611d8c565b80600e8190555050565b600560011115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613782565b60405180910390fd5b60056001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ce91906137d1565b111561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613873565b60405180910390fd5b6000600a5490506103f260018261152691906137d1565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906138df565b60405180910390fd5b611570826117e6565b156115cb573460085460016115859190613962565b11156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613a08565b60405180910390fd5b61161d565b3460075460016115db9190613962565b111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613b14565b60405180910390fd5b5b6000600190505b600181116116525761164133828461163c91906137d1565b6120b0565b8061164b90613b34565b9050611624565b506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a391906137d1565b925050819055506001600a60008282546116bd91906137d1565b925050819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61176a611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613d82565b60405180910390fd5b6117e381611e0a565b50565b600080826040516020016117fa9190613e5a565b60405160208183030381529060405280519060200120905061181f83600e5483612099565b915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118bd816120ce565b6118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906135ac565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197a83610af1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119cc83610af1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a0e5750611a0d81856116c8565b5b80611a4c57508373ffffffffffffffffffffffffffffffffffffffff16611a3484610907565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7582610af1565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613f75565b60405180910390fd5b611b488383836001612279565b8273ffffffffffffffffffffffffffffffffffffffff16611b6882610af1565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613ee3565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d4a838383600161239f565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611d946118ff565b73ffffffffffffffffffffffffffffffffffffffff16611db2610d15565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613fe1565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f369061404d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120309190612af7565b60405180910390a3505050565b612048848484611a55565b612054848484846123a5565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906140df565b60405180910390fd5b50505050565b6000826120a6858461253c565b1490509392505050565b6120ca828260405180602001604052806000815250612592565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166120f083611d4f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461211e90613378565b80601f016020809104026020016040519081016040528092919081815260200182805461214a90613378565b80156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b6060600060016121b0846125ed565b01905060008167ffffffffffffffff8111156121cf576121ce612dac565b5b6040519080825280601f01601f1916602001820160405280156122015781602001600182028036833780820191505090505b509050600082602001820190505b60011561226e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612258576122576140ff565b5b04945060008514156122695761226e565b61220f565b819350505050919050565b600181111561239957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461230d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123059190613a28565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123985780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239091906137d1565b925050819055505b5b50505050565b50505050565b60006123c68473ffffffffffffffffffffffffffffffffffffffff16611827565b1561252f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ef6118ff565b8786866040518563ffffffff1660e01b81526004016124119493929190614183565b602060405180830381600087803b15801561242b57600080fd5b505af192505050801561245c57506040513d601f19601f8201168201806040525081019061245991906141e4565b60015b6124df573d806000811461248c576040519150601f19603f3d011682016040523d82523d6000602084013e612491565b606091505b506000815114156124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906140df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612534565b600190505b949350505050565b60008082905060005b8451811015612587576125728286838151811061256557612564614211565b5b6020026020010151612740565b9150808061257f90613b34565b915050612545565b508091505092915050565b61259c838361276b565b6125a960008484846123a5565b6125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125df906140df565b60405180910390fd5b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061264b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612641576126406140ff565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612688576d04ee2d6d415b85acef8100000000838161267e5761267d6140ff565b5b0492506020810190505b662386f26fc1000083106126b757662386f26fc1000083816126ad576126ac6140ff565b5b0492506010810190505b6305f5e10083106126e0576305f5e10083816126d6576126d56140ff565b5b0492506008810190505b61271083106127055761271083816126fb576126fa6140ff565b5b0492506004810190505b60648310612728576064838161271e5761271d6140ff565b5b0492506002810190505b600a8310612737576001810190505b80915050919050565b6000818310612758576127538284612989565b612763565b6127628383612989565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d29061428c565b60405180910390fd5b6127e4816120ce565b15612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b906142f8565b60405180910390fd5b612832600083836001612279565b61283b816120ce565b1561287b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612872906142f8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298560008383600161239f565b5050565b600082600052816020526040600020905092915050565b8280546129ac90613378565b90600052602060002090601f0160209004810192826129ce5760008555612a15565b82601f106129e757805160ff1916838001178555612a15565b82800160010185558215612a15579182015b82811115612a145782518255916020019190600101906129f9565b5b509050612a229190612a26565b5090565b5b80821115612a3f576000816000905550600101612a27565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8c81612a57565b8114612a9757600080fd5b50565b600081359050612aa981612a83565b92915050565b600060208284031215612ac557612ac4612a4d565b5b6000612ad384828501612a9a565b91505092915050565b60008115159050919050565b612af181612adc565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b4c578082015181840152602081019050612b31565b83811115612b5b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b7d82612b12565b612b878185612b1d565b9350612b97818560208601612b2e565b612ba081612b61565b840191505092915050565b60006020820190508181036000830152612bc58184612b72565b905092915050565b6000819050919050565b612be081612bcd565b8114612beb57600080fd5b50565b600081359050612bfd81612bd7565b92915050565b600060208284031215612c1957612c18612a4d565b5b6000612c2784828501612bee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5b82612c30565b9050919050565b612c6b81612c50565b82525050565b6000602082019050612c866000830184612c62565b92915050565b612c9581612c50565b8114612ca057600080fd5b50565b600081359050612cb281612c8c565b92915050565b60008060408385031215612ccf57612cce612a4d565b5b6000612cdd85828601612ca3565b9250506020612cee85828601612bee565b9150509250929050565b612d0181612bcd565b82525050565b6000602082019050612d1c6000830184612cf8565b92915050565b600080600060608486031215612d3b57612d3a612a4d565b5b6000612d4986828701612ca3565b9350506020612d5a86828701612ca3565b9250506040612d6b86828701612bee565b9150509250925092565b600060208284031215612d8b57612d8a612a4d565b5b6000612d9984828501612ca3565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612de482612b61565b810181811067ffffffffffffffff82111715612e0357612e02612dac565b5b80604052505050565b6000612e16612a43565b9050612e228282612ddb565b919050565b600067ffffffffffffffff821115612e4257612e41612dac565b5b612e4b82612b61565b9050602081019050919050565b82818337600083830152505050565b6000612e7a612e7584612e27565b612e0c565b905082815260208101848484011115612e9657612e95612da7565b5b612ea1848285612e58565b509392505050565b600082601f830112612ebe57612ebd612da2565b5b8135612ece848260208601612e67565b91505092915050565b600060208284031215612eed57612eec612a4d565b5b600082013567ffffffffffffffff811115612f0b57612f0a612a52565b5b612f1784828501612ea9565b91505092915050565b612f2981612adc565b8114612f3457600080fd5b50565b600081359050612f4681612f20565b92915050565b60008060408385031215612f6357612f62612a4d565b5b6000612f7185828601612ca3565b9250506020612f8285828601612f37565b9150509250929050565b600067ffffffffffffffff821115612fa757612fa6612dac565b5b612fb082612b61565b9050602081019050919050565b6000612fd0612fcb84612f8c565b612e0c565b905082815260208101848484011115612fec57612feb612da7565b5b612ff7848285612e58565b509392505050565b600082601f83011261301457613013612da2565b5b8135613024848260208601612fbd565b91505092915050565b6000806000806080858703121561304757613046612a4d565b5b600061305587828801612ca3565b945050602061306687828801612ca3565b935050604061307787828801612bee565b925050606085013567ffffffffffffffff81111561309857613097612a52565b5b6130a487828801612fff565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126130d0576130cf612da2565b5b8235905067ffffffffffffffff8111156130ed576130ec6130b0565b5b602083019150836020820283011115613109576131086130b5565b5b9250929050565b60008060006040848603121561312957613128612a4d565b5b600061313786828701612bee565b935050602084013567ffffffffffffffff81111561315857613157612a52565b5b613164868287016130ba565b92509250509250925092565b6000819050919050565b61318381613170565b811461318e57600080fd5b50565b6000813590506131a08161317a565b92915050565b6000602082840312156131bc576131bb612a4d565b5b60006131ca84828501613191565b91505092915050565b600067ffffffffffffffff8211156131ee576131ed612dac565b5b602082029050602081019050919050565b600061321261320d846131d3565b612e0c565b90508083825260208201905060208402830185811115613235576132346130b5565b5b835b8181101561325e578061324a8882613191565b845260208401935050602081019050613237565b5050509392505050565b600082601f83011261327d5761327c612da2565b5b813561328d8482602086016131ff565b91505092915050565b6000602082840312156132ac576132ab612a4d565b5b600082013567ffffffffffffffff8111156132ca576132c9612a52565b5b6132d684828501613268565b91505092915050565b600080604083850312156132f6576132f5612a4d565b5b600061330485828601612ca3565b925050602061331585828601612ca3565b9150509250929050565b61332881613170565b82525050565b6000602082019050613343600083018461331f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339057607f821691505b602082108114156133a4576133a3613349565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613406602183612b1d565b9150613411826133aa565b604082019050919050565b60006020820190508181036000830152613435816133f9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613498603d83612b1d565b91506134a38261343c565b604082019050919050565b600060208201905081810360008301526134c78161348b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061352a602d83612b1d565b9150613535826134ce565b604082019050919050565b600060208201905081810360008301526135598161351d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613596601883612b1d565b91506135a182613560565b602082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613628602983612b1d565b9150613633826135cc565b604082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b600081905092915050565b50565b600061367960008361365e565b915061368482613669565b600082019050919050565b600061369a8261366c565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006136da601083612b1d565b91506136e5826136a4565b602082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b600061376c602d83612b1d565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137dc82612bcd565b91506137e783612bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381c5761381b6137a2565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b600061385d602083612b1d565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b60006138c9601583612b1d565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b60008160601b9050919050565b6000613917826138ff565b9050919050565b60006139298261390c565b9050919050565b61394161393c82612c50565b61391e565b82525050565b60006139538284613930565b60148201915081905092915050565b600061396d82612bcd565b915061397883612bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b1576139b06137a2565b5b828202905092915050565b7f776869746520496e73756666696369656e742066756e64732e00000000000000600082015250565b60006139f2601983612b1d565b91506139fd826139bc565b602082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b6000613a3382612bcd565b9150613a3e83612bcd565b925082821015613a5157613a506137a2565b5b828203905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613a92601283612b1d565b9150613a9d82613a5c565b602082019050919050565b60006020820190508181036000830152613ac181613a85565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000613afe601383612b1d565b9150613b0982613ac8565b602082019050919050565b60006020820190508181036000830152613b2d81613af1565b9050919050565b6000613b3f82612bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7257613b716137a2565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bd9602f83612b1d565b9150613be482613b7d565b604082019050919050565b60006020820190508181036000830152613c0881613bcc565b9050919050565b600081905092915050565b6000613c2582612b12565b613c2f8185613c0f565b9350613c3f818560208601612b2e565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613c6d81613378565b613c778186613c0f565b94506001821660008114613c925760018114613ca357613cd6565b60ff19831686528186019350613cd6565b613cac85613c4b565b60005b83811015613cce57815481890152600182019150602081019050613caf565b838801955050505b50505092915050565b6000613ceb8286613c1a565b9150613cf78285613c1a565b9150613d038284613c60565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6c602683612b1d565b9150613d7782613d10565b604082019050919050565b60006020820190508181036000830152613d9b81613d5f565b9050919050565b600081519050919050565b600081905092915050565b6000819050602082019050919050565b613dd181613170565b82525050565b6000613de38383613dc8565b60208301905092915050565b6000602082019050919050565b6000613e0782613da2565b613e118185613dad565b9350613e1c83613db8565b8060005b83811015613e4d578151613e348882613dd7565b9750613e3f83613def565b925050600181019050613e20565b5085935050505092915050565b6000613e668284613dfc565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613ecd602583612b1d565b9150613ed882613e71565b604082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f5f602483612b1d565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fcb602083612b1d565b9150613fd682613f95565b602082019050919050565b60006020820190508181036000830152613ffa81613fbe565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614037601983612b1d565b915061404282614001565b602082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140c9603283612b1d565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006141558261412e565b61415f8185614139565b935061416f818560208601612b2e565b61417881612b61565b840191505092915050565b60006080820190506141986000830187612c62565b6141a56020830186612c62565b6141b26040830185612cf8565b81810360608301526141c4818461414a565b905095945050505050565b6000815190506141de81612a83565b92915050565b6000602082840312156141fa576141f9612a4d565b5b6000614208848285016141cf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614276602083612b1d565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142e2601c83612b1d565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b905091905056fea2646970667358221220c4e8f2d9ad7f00ab068ae53be66b6095198505d675fe0bef0285d843618c535964736f6c63430008090033697066733a2f2f516d565a486a697171375941333655346331686b366b357151466b7731486a627247557a51634e7a716b717064792f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80639abc83201161010d578063c6682862116100a0578063e85026971161006f578063e8502697146106a9578063e985e9c5146106c5578063ebf0c71714610702578063f2fde38b1461072d578063f56f516f14610756576101ee565b8063c6682862146105ed578063c87b56dd14610618578063d876d1aa14610655578063dab5f34014610680576101ee565b8063a22cb465116100dc578063a22cb46514610556578063b88d4fde1461057f578063ba41b0c6146105a8578063beafc89b146105c4576101ee565b80639abc8320146104ae5780639adc5bbe146104d9578063a035b1fe14610502578063a0bcfc7f1461052d576101ee565b80636352211e116101855780638da5cb5b116101545780638da5cb5b146104045780638ecad7211461042f57806391b7f5ed1461045a57806395d89b4114610483576101ee565b80636352211e1461036957806370a08231146103a6578063715018a6146103e3578063853828b6146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633b7f55fb1461031557806342842e0e14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612aaf565b610793565b6040516102279190612af7565b60405180910390f35b34801561023c57600080fd5b50610245610875565b6040516102529190612bab565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612c03565b610907565b60405161028f9190612c71565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612cb8565b61094d565b005b3480156102cd57600080fd5b506102d6610a65565b6040516102e39190612d07565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612d22565b610a6b565b005b34801561032157600080fd5b5061032a610acb565b6040516103379190612d07565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612d22565b610ad1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612c03565b610af1565b60405161039d9190612c71565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190612d75565b610b78565b6040516103da9190612d07565b60405180910390f35b3480156103ef57600080fd5b506103f8610c30565b005b610402610c44565b005b34801561041057600080fd5b50610419610d15565b6040516104269190612c71565b60405180910390f35b34801561043b57600080fd5b50610444610d3f565b6040516104519190612d07565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612c03565b610d44565b005b34801561048f57600080fd5b50610498610d56565b6040516104a59190612bab565b60405180910390f35b3480156104ba57600080fd5b506104c3610de8565b6040516104d09190612bab565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612c03565b610e76565b005b34801561050e57600080fd5b50610517610e88565b6040516105249190612d07565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ed7565b610e8e565b005b34801561056257600080fd5b5061057d60048036038101906105789190612f4c565b610eb0565b005b34801561058b57600080fd5b506105a660048036038101906105a1919061302d565b610ec6565b005b6105c260048036038101906105bd9190613110565b610f28565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612c03565b6112d9565b005b3480156105f957600080fd5b506106026112eb565b60405161060f9190612bab565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612c03565b611379565b60405161064c9190612bab565b60405180910390f35b34801561066157600080fd5b5061066a611423565b6040516106779190612d07565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a291906131a6565b611429565b005b6106c360048036038101906106be9190613296565b61143b565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906132df565b6116c8565b6040516106f99190612af7565b60405180910390f35b34801561070e57600080fd5b5061071761175c565b604051610724919061332e565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612d75565b611762565b005b34801561076257600080fd5b5061077d60048036038101906107789190613296565b6117e6565b60405161078a9190612af7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e575061086d8261184a565b5b9050919050565b60606000805461088490613378565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613378565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000610912826118b4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095882610af1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c09061341c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e86118ff565b73ffffffffffffffffffffffffffffffffffffffff161480610a175750610a1681610a116118ff565b6116c8565b5b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d906134ae565b60405180910390fd5b610a608383611907565b505050565b600a5481565b610a7c610a766118ff565b826119c0565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613540565b60405180910390fd5b610ac6838383611a55565b505050565b60085481565b610aec83838360405180602001604052806000815250610ec6565b505050565b600080610afd83611d4f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906135ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061363e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c38611d8c565b610c426000611e0a565b565b610c4c611d8c565b600047905060007306b7e5dde9056cf007b65585b9a14ce200b672b373ffffffffffffffffffffffffffffffffffffffff1682604051610c8b9061368f565b60006040518083038185875af1925050503d8060008114610cc8576040519150601f19603f3d011682016040523d82523d6000602084013e610ccd565b606091505b5050905080610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906136f0565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b610d4c611d8c565b8060078190555050565b606060018054610d6590613378565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9190613378565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b5050505050905090565b600c8054610df590613378565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2190613378565b8015610e6e5780601f10610e4357610100808354040283529160200191610e6e565b820191906000526020600020905b815481529060010190602001808311610e5157829003601f168201915b505050505081565b610e7e611d8c565b8060098190555050565b60075481565b610e96611d8c565b80600c9080519060200190610eac9291906129a0565b5050565b610ec2610ebb6118ff565b8383611ed0565b5050565b610ed7610ed16118ff565b836119c0565b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613540565b60405180910390fd5b610f228484848461203d565b50505050565b6005831115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613782565b60405180910390fd5b600583600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb991906137d1565b1115610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613873565b60405180910390fd5b6000600a5490506103f2848261101091906137d1565b1115611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906138df565b60405180910390fd5b6000336040516020016110649190613947565b6040516020818303038152906040528051906020012090506110ca848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612099565b156111245734600854866110de9190613962565b111561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613a08565b60405180910390fd5b61122e565b600954821080156111425750600954858361113f91906137d1565b11155b1561114c5761122d565b600954821080156111695750600954858361116791906137d1565b115b156111db5734600754600954848861118191906137d1565b61118b9190613a28565b6111959190613962565b11156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613aa8565b60405180910390fd5b61122c565b34600754866111ea9190613962565b111561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613b14565b60405180910390fd5b5b5b5b6000600190505b8581116112625761125133828561124c91906137d1565b6120b0565b8061125b90613b34565b9050611235565b5084600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b291906137d1565b9250508190555084600a60008282546112cb91906137d1565b925050819055505050505050565b6112e1611d8c565b8060088190555050565b600d80546112f890613378565b80601f016020809104026020016040519081016040528092919081815260200182805461132490613378565b80156113715780601f1061134657610100808354040283529160200191611371565b820191906000526020600020905b81548152906001019060200180831161135457829003601f168201915b505050505081565b6060611384826120ce565b6113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613bef565b60405180910390fd5b60006113cd61210f565b905060008151116113ed576040518060200160405280600081525061141b565b806113f7846121a1565b600d60405160200161140b93929190613cdf565b6040516020818303038152906040525b915050919050565b60095481565b611431611d8c565b80600e8190555050565b600560011115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613782565b60405180910390fd5b60056001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ce91906137d1565b111561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613873565b60405180910390fd5b6000600a5490506103f260018261152691906137d1565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906138df565b60405180910390fd5b611570826117e6565b156115cb573460085460016115859190613962565b11156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613a08565b60405180910390fd5b61161d565b3460075460016115db9190613962565b111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613b14565b60405180910390fd5b5b6000600190505b600181116116525761164133828461163c91906137d1565b6120b0565b8061164b90613b34565b9050611624565b506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a391906137d1565b925050819055506001600a60008282546116bd91906137d1565b925050819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61176a611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613d82565b60405180910390fd5b6117e381611e0a565b50565b600080826040516020016117fa9190613e5a565b60405160208183030381529060405280519060200120905061181f83600e5483612099565b915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118bd816120ce565b6118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906135ac565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197a83610af1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119cc83610af1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a0e5750611a0d81856116c8565b5b80611a4c57508373ffffffffffffffffffffffffffffffffffffffff16611a3484610907565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7582610af1565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613f75565b60405180910390fd5b611b488383836001612279565b8273ffffffffffffffffffffffffffffffffffffffff16611b6882610af1565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613ee3565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d4a838383600161239f565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611d946118ff565b73ffffffffffffffffffffffffffffffffffffffff16611db2610d15565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613fe1565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f369061404d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120309190612af7565b60405180910390a3505050565b612048848484611a55565b612054848484846123a5565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906140df565b60405180910390fd5b50505050565b6000826120a6858461253c565b1490509392505050565b6120ca828260405180602001604052806000815250612592565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166120f083611d4f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461211e90613378565b80601f016020809104026020016040519081016040528092919081815260200182805461214a90613378565b80156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b6060600060016121b0846125ed565b01905060008167ffffffffffffffff8111156121cf576121ce612dac565b5b6040519080825280601f01601f1916602001820160405280156122015781602001600182028036833780820191505090505b509050600082602001820190505b60011561226e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612258576122576140ff565b5b04945060008514156122695761226e565b61220f565b819350505050919050565b600181111561239957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461230d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123059190613a28565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123985780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239091906137d1565b925050819055505b5b50505050565b50505050565b60006123c68473ffffffffffffffffffffffffffffffffffffffff16611827565b1561252f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ef6118ff565b8786866040518563ffffffff1660e01b81526004016124119493929190614183565b602060405180830381600087803b15801561242b57600080fd5b505af192505050801561245c57506040513d601f19601f8201168201806040525081019061245991906141e4565b60015b6124df573d806000811461248c576040519150601f19603f3d011682016040523d82523d6000602084013e612491565b606091505b506000815114156124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906140df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612534565b600190505b949350505050565b60008082905060005b8451811015612587576125728286838151811061256557612564614211565b5b6020026020010151612740565b9150808061257f90613b34565b915050612545565b508091505092915050565b61259c838361276b565b6125a960008484846123a5565b6125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125df906140df565b60405180910390fd5b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061264b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612641576126406140ff565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612688576d04ee2d6d415b85acef8100000000838161267e5761267d6140ff565b5b0492506020810190505b662386f26fc1000083106126b757662386f26fc1000083816126ad576126ac6140ff565b5b0492506010810190505b6305f5e10083106126e0576305f5e10083816126d6576126d56140ff565b5b0492506008810190505b61271083106127055761271083816126fb576126fa6140ff565b5b0492506004810190505b60648310612728576064838161271e5761271d6140ff565b5b0492506002810190505b600a8310612737576001810190505b80915050919050565b6000818310612758576127538284612989565b612763565b6127628383612989565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d29061428c565b60405180910390fd5b6127e4816120ce565b15612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b906142f8565b60405180910390fd5b612832600083836001612279565b61283b816120ce565b1561287b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612872906142f8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298560008383600161239f565b5050565b600082600052816020526040600020905092915050565b8280546129ac90613378565b90600052602060002090601f0160209004810192826129ce5760008555612a15565b82601f106129e757805160ff1916838001178555612a15565b82800160010185558215612a15579182015b82811115612a145782518255916020019190600101906129f9565b5b509050612a229190612a26565b5090565b5b80821115612a3f576000816000905550600101612a27565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8c81612a57565b8114612a9757600080fd5b50565b600081359050612aa981612a83565b92915050565b600060208284031215612ac557612ac4612a4d565b5b6000612ad384828501612a9a565b91505092915050565b60008115159050919050565b612af181612adc565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b4c578082015181840152602081019050612b31565b83811115612b5b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b7d82612b12565b612b878185612b1d565b9350612b97818560208601612b2e565b612ba081612b61565b840191505092915050565b60006020820190508181036000830152612bc58184612b72565b905092915050565b6000819050919050565b612be081612bcd565b8114612beb57600080fd5b50565b600081359050612bfd81612bd7565b92915050565b600060208284031215612c1957612c18612a4d565b5b6000612c2784828501612bee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5b82612c30565b9050919050565b612c6b81612c50565b82525050565b6000602082019050612c866000830184612c62565b92915050565b612c9581612c50565b8114612ca057600080fd5b50565b600081359050612cb281612c8c565b92915050565b60008060408385031215612ccf57612cce612a4d565b5b6000612cdd85828601612ca3565b9250506020612cee85828601612bee565b9150509250929050565b612d0181612bcd565b82525050565b6000602082019050612d1c6000830184612cf8565b92915050565b600080600060608486031215612d3b57612d3a612a4d565b5b6000612d4986828701612ca3565b9350506020612d5a86828701612ca3565b9250506040612d6b86828701612bee565b9150509250925092565b600060208284031215612d8b57612d8a612a4d565b5b6000612d9984828501612ca3565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612de482612b61565b810181811067ffffffffffffffff82111715612e0357612e02612dac565b5b80604052505050565b6000612e16612a43565b9050612e228282612ddb565b919050565b600067ffffffffffffffff821115612e4257612e41612dac565b5b612e4b82612b61565b9050602081019050919050565b82818337600083830152505050565b6000612e7a612e7584612e27565b612e0c565b905082815260208101848484011115612e9657612e95612da7565b5b612ea1848285612e58565b509392505050565b600082601f830112612ebe57612ebd612da2565b5b8135612ece848260208601612e67565b91505092915050565b600060208284031215612eed57612eec612a4d565b5b600082013567ffffffffffffffff811115612f0b57612f0a612a52565b5b612f1784828501612ea9565b91505092915050565b612f2981612adc565b8114612f3457600080fd5b50565b600081359050612f4681612f20565b92915050565b60008060408385031215612f6357612f62612a4d565b5b6000612f7185828601612ca3565b9250506020612f8285828601612f37565b9150509250929050565b600067ffffffffffffffff821115612fa757612fa6612dac565b5b612fb082612b61565b9050602081019050919050565b6000612fd0612fcb84612f8c565b612e0c565b905082815260208101848484011115612fec57612feb612da7565b5b612ff7848285612e58565b509392505050565b600082601f83011261301457613013612da2565b5b8135613024848260208601612fbd565b91505092915050565b6000806000806080858703121561304757613046612a4d565b5b600061305587828801612ca3565b945050602061306687828801612ca3565b935050604061307787828801612bee565b925050606085013567ffffffffffffffff81111561309857613097612a52565b5b6130a487828801612fff565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126130d0576130cf612da2565b5b8235905067ffffffffffffffff8111156130ed576130ec6130b0565b5b602083019150836020820283011115613109576131086130b5565b5b9250929050565b60008060006040848603121561312957613128612a4d565b5b600061313786828701612bee565b935050602084013567ffffffffffffffff81111561315857613157612a52565b5b613164868287016130ba565b92509250509250925092565b6000819050919050565b61318381613170565b811461318e57600080fd5b50565b6000813590506131a08161317a565b92915050565b6000602082840312156131bc576131bb612a4d565b5b60006131ca84828501613191565b91505092915050565b600067ffffffffffffffff8211156131ee576131ed612dac565b5b602082029050602081019050919050565b600061321261320d846131d3565b612e0c565b90508083825260208201905060208402830185811115613235576132346130b5565b5b835b8181101561325e578061324a8882613191565b845260208401935050602081019050613237565b5050509392505050565b600082601f83011261327d5761327c612da2565b5b813561328d8482602086016131ff565b91505092915050565b6000602082840312156132ac576132ab612a4d565b5b600082013567ffffffffffffffff8111156132ca576132c9612a52565b5b6132d684828501613268565b91505092915050565b600080604083850312156132f6576132f5612a4d565b5b600061330485828601612ca3565b925050602061331585828601612ca3565b9150509250929050565b61332881613170565b82525050565b6000602082019050613343600083018461331f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339057607f821691505b602082108114156133a4576133a3613349565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613406602183612b1d565b9150613411826133aa565b604082019050919050565b60006020820190508181036000830152613435816133f9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613498603d83612b1d565b91506134a38261343c565b604082019050919050565b600060208201905081810360008301526134c78161348b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061352a602d83612b1d565b9150613535826134ce565b604082019050919050565b600060208201905081810360008301526135598161351d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613596601883612b1d565b91506135a182613560565b602082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613628602983612b1d565b9150613633826135cc565b604082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b600081905092915050565b50565b600061367960008361365e565b915061368482613669565b600082019050919050565b600061369a8261366c565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006136da601083612b1d565b91506136e5826136a4565b602082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b600061376c602d83612b1d565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137dc82612bcd565b91506137e783612bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381c5761381b6137a2565b5b828201905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b600061385d602083612b1d565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b60006138c9601583612b1d565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b60008160601b9050919050565b6000613917826138ff565b9050919050565b60006139298261390c565b9050919050565b61394161393c82612c50565b61391e565b82525050565b60006139538284613930565b60148201915081905092915050565b600061396d82612bcd565b915061397883612bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b1576139b06137a2565b5b828202905092915050565b7f776869746520496e73756666696369656e742066756e64732e00000000000000600082015250565b60006139f2601983612b1d565b91506139fd826139bc565b602082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b6000613a3382612bcd565b9150613a3e83612bcd565b925082821015613a5157613a506137a2565b5b828203905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613a92601283612b1d565b9150613a9d82613a5c565b602082019050919050565b60006020820190508181036000830152613ac181613a85565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000613afe601383612b1d565b9150613b0982613ac8565b602082019050919050565b60006020820190508181036000830152613b2d81613af1565b9050919050565b6000613b3f82612bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7257613b716137a2565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bd9602f83612b1d565b9150613be482613b7d565b604082019050919050565b60006020820190508181036000830152613c0881613bcc565b9050919050565b600081905092915050565b6000613c2582612b12565b613c2f8185613c0f565b9350613c3f818560208601612b2e565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613c6d81613378565b613c778186613c0f565b94506001821660008114613c925760018114613ca357613cd6565b60ff19831686528186019350613cd6565b613cac85613c4b565b60005b83811015613cce57815481890152600182019150602081019050613caf565b838801955050505b50505092915050565b6000613ceb8286613c1a565b9150613cf78285613c1a565b9150613d038284613c60565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6c602683612b1d565b9150613d7782613d10565b604082019050919050565b60006020820190508181036000830152613d9b81613d5f565b9050919050565b600081519050919050565b600081905092915050565b6000819050602082019050919050565b613dd181613170565b82525050565b6000613de38383613dc8565b60208301905092915050565b6000602082019050919050565b6000613e0782613da2565b613e118185613dad565b9350613e1c83613db8565b8060005b83811015613e4d578151613e348882613dd7565b9750613e3f83613def565b925050600181019050613e20565b5085935050505092915050565b6000613e668284613dfc565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613ecd602583612b1d565b9150613ed882613e71565b604082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f5f602483612b1d565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fcb602083612b1d565b9150613fd682613f95565b602082019050919050565b60006020820190508181036000830152613ffa81613fbe565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614037601983612b1d565b915061404282614001565b602082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140c9603283612b1d565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006141558261412e565b61415f8185614139565b935061416f818560208601612b2e565b61417881612b61565b840191505092915050565b60006080820190506141986000830187612c62565b6141a56020830186612c62565b6141b26040830185612cf8565b81810360608301526141c4818461414a565b905095945050505050565b6000815190506141de81612a83565b92915050565b6000602082840312156141fa576141f9612a4d565b5b6000614208848285016141cf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614276602083612b1d565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142e2601c83612b1d565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b905091905056fea2646970667358221220c4e8f2d9ad7f00ab068ae53be66b6095198505d675fe0bef0285d843618c535964736f6c63430008090033

Deployed Bytecode Sourcemap

64014:4641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45405:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46333:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47845:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47363:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64377:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48545:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64251:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48951:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46043:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45774:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63128:103;;;;;;;;;;;;;:::i;:::-;;67659:270;;;:::i;:::-;;62480:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64287:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67241:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46502:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64474:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67335:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64189:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67133:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48088:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49207:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65013:1325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67451:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64502:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67937:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64337:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67569:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66346:779;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48314:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64548:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63386:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68459:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45405:305;45507:4;45559:25;45544:40;;;:11;:40;;;;:105;;;;45616:33;45601:48;;;:11;:48;;;;45544:105;:158;;;;45666:36;45690:11;45666:23;:36::i;:::-;45544:158;45524:178;;45405:305;;;:::o;46333:100::-;46387:13;46420:5;46413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46333:100;:::o;47845:171::-;47921:7;47941:23;47956:7;47941:14;:23::i;:::-;47984:15;:24;48000:7;47984:24;;;;;;;;;;;;;;;;;;;;;47977:31;;47845:171;;;:::o;47363:416::-;47444:13;47460:23;47475:7;47460:14;:23::i;:::-;47444:39;;47508:5;47502:11;;:2;:11;;;;47494:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47602:5;47586:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47611:37;47628:5;47635:12;:10;:12::i;:::-;47611:16;:37::i;:::-;47586:62;47564:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;47750:21;47759:2;47763:7;47750:8;:21::i;:::-;47433:346;47363:416;;:::o;64377:30::-;;;;:::o;48545:335::-;48740:41;48759:12;:10;:12::i;:::-;48773:7;48740:18;:41::i;:::-;48732:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48844:28;48854:4;48860:2;48864:7;48844:9;:28::i;:::-;48545:335;;;:::o;64251:29::-;;;;:::o;48951:185::-;49089:39;49106:4;49112:2;49116:7;49089:39;;;;;;;;;;;;:16;:39::i;:::-;48951:185;;;:::o;46043:223::-;46115:7;46135:13;46151:17;46160:7;46151:8;:17::i;:::-;46135:33;;46204:1;46187:19;;:5;:19;;;;46179:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;46253:5;46246:12;;;46043:223;;;:::o;45774:207::-;45846:7;45891:1;45874:19;;:5;:19;;;;45866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45957:9;:16;45967:5;45957:16;;;;;;;;;;;;;;;;45950:23;;45774:207;;;:::o;63128:103::-;62366:13;:11;:13::i;:::-;63193:30:::1;63220:1;63193:18;:30::i;:::-;63128:103::o:0;67659:270::-;62366:13;:11;:13::i;:::-;67720:15:::1;67738:21;67720:39;;67772:16;67802:42;67794:56;;67858:7;67794:76;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67770:100;;;67889:11;67881:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;67709:220;;67659:270::o:0;62480:87::-;62526:7;62553:6;;;;;;;;;;;62546:13;;62480:87;:::o;64287:43::-;64329:1;64287:43;:::o;67241:86::-;62366:13;:11;:13::i;:::-;67313:6:::1;67305:5;:14;;;;67241:86:::0;:::o;46502:104::-;46558:13;46591:7;46584:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46502:104;:::o;64474:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67335:108::-;62366:13;:11;:13::i;:::-;67423:12:::1;67410:10;:25;;;;67335:108:::0;:::o;64189:39::-;;;;:::o;67133:100::-;62366:13;:11;:13::i;:::-;67217:8:::1;67207:7;:18;;;;;;;;;;;;:::i;:::-;;67133:100:::0;:::o;48088:155::-;48183:52;48202:12;:10;:12::i;:::-;48216:8;48226;48183:18;:52::i;:::-;48088:155;;:::o;49207:322::-;49381:41;49400:12;:10;:12::i;:::-;49414:7;49381:18;:41::i;:::-;49373:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;49483:38;49497:4;49503:2;49507:7;49516:4;49483:13;:38::i;:::-;49207:322;;;;:::o;65013:1325::-;64329:1;65109:10;:29;;65101:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;64329:1;65237:10;65207:15;:27;65223:10;65207:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;65199:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;65314:22;65339:11;;65314:36;;64130:4;65386:10;65369:14;:27;;;;:::i;:::-;:41;;65361:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;65449:12;65491:10;65474:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;65464:39;;;;;;65449:54;;65519:38;65538:5;;65519:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65545:4;;65552;65519:18;:38::i;:::-;65516:606;;;65609:9;65595:10;;65582;:23;;;;:::i;:::-;:36;;65574:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;65516:606;;;65703:10;;65686:14;:27;:72;;;;;65748:10;;65734;65717:14;:27;;;;:::i;:::-;:41;;65686:72;65683:428;;;;;;65818:10;;65801:14;:27;:71;;;;;65862:10;;65849;65832:14;:27;;;;:::i;:::-;:40;65801:71;65798:313;;;65959:9;65949:5;;65935:10;;65918:14;65905:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;65904:50;;;;:::i;:::-;65903:65;;65895:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;65798:313;;;66062:9;66053:5;;66040:10;:18;;;;:::i;:::-;:31;;66032:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;65798:313;65683:428;65516:606;66138:9;66150:1;66138:13;;66134:109;66158:10;66153:1;:15;66134:109;;66190:41;66200:10;66229:1;66212:14;:18;;;;:::i;:::-;66190:9;:41::i;:::-;66170:3;;;;:::i;:::-;;;66134:109;;;;66284:10;66253:15;:27;66269:10;66253:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;66320:10;66305:11;;:25;;;;;;;:::i;:::-;;;;;;;;65090:1248;;65013:1325;;;:::o;67451:110::-;62366:13;:11;:13::i;:::-;67542:11:::1;67529:10;:24;;;;67451:110:::0;:::o;64502:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67937:397::-;68010:13;68044:16;68052:7;68044;:16::i;:::-;68036:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;68126:28;68157:10;:8;:10::i;:::-;68126:41;;68216:1;68191:14;68185:28;:32;:141;;;;;;;;;;;;;;;;;68257:14;68273:18;:7;:16;:18::i;:::-;68293:13;68240:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68185:141;68178:148;;;67937:397;;;:::o;64337:31::-;;;;:::o;67569:82::-;62366:13;:11;:13::i;:::-;67638:5:::1;67631:4;:12;;;;67569:82:::0;:::o;66346:779::-;64329:1;66421;:20;;66413:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64329:1;66540;66510:15;:27;66526:10;66510:27;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:50;;66502:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;66608:22;66633:11;;66608:36;;64130:4;66680:1;66663:14;:18;;;;:::i;:::-;:32;;66655:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;66737:14;66745:5;66737:7;:14::i;:::-;66734:202;;;66796:9;66782:10;;66778:1;:14;;;;:::i;:::-;:27;;66770:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;66734:202;;;66891:9;66882:5;;66878:1;:9;;;;:::i;:::-;:22;;66870:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66734:202;66952:9;66964:1;66952:13;;66948:100;66972:1;66967;:6;66948:100;;66995:41;67005:10;67034:1;67017:14;:18;;;;:::i;:::-;66995:9;:41::i;:::-;66975:3;;;;:::i;:::-;;;66948:100;;;;67089:1;67058:15;:27;67074:10;67058:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;67116:1;67101:11;;:16;;;;;;;:::i;:::-;;;;;;;;66402:723;66346:779;:::o;48314:164::-;48411:4;48435:18;:25;48454:5;48435:25;;;;;;;;;;;;;;;:35;48461:8;48435:35;;;;;;;;;;;;;;;;;;;;;;;;;48428:42;;48314:164;;;;:::o;64548:19::-;;;;:::o;63386:201::-;62366:13;:11;:13::i;:::-;63495:1:::1;63475:22;;:8;:22;;;;63467:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63551:28;63570:8;63551:18;:28::i;:::-;63386:201:::0;:::o;68459:191::-;68521:4;68538:12;68580:5;68563:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;68553:34;;;;;;68538:49;;68605:37;68624:5;68631:4;;68637;68605:18;:37::i;:::-;68598:44;;;68459:191;;;:::o;25993:326::-;26053:4;26310:1;26288:7;:19;;;:23;26281:30;;25993:326;;;:::o;37024:157::-;37109:4;37148:25;37133:40;;;:11;:40;;;;37126:47;;37024:157;;;:::o;57664:135::-;57746:16;57754:7;57746;:16::i;:::-;57738:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57664:135;:::o;43784:98::-;43837:7;43864:10;43857:17;;43784:98;:::o;56943:174::-;57045:2;57018:15;:24;57034:7;57018:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57101:7;57097:2;57063:46;;57072:23;57087:7;57072:14;:23::i;:::-;57063:46;;;;;;;;;;;;56943:174;;:::o;51562:264::-;51655:4;51672:13;51688:23;51703:7;51688:14;:23::i;:::-;51672:39;;51741:5;51730:16;;:7;:16;;;:52;;;;51750:32;51767:5;51774:7;51750:16;:32::i;:::-;51730:52;:87;;;;51810:7;51786:31;;:20;51798:7;51786:11;:20::i;:::-;:31;;;51730:87;51722:96;;;51562:264;;;;:::o;55561:1263::-;55720:4;55693:31;;:23;55708:7;55693:14;:23::i;:::-;:31;;;55685:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55799:1;55785:16;;:2;:16;;;;55777:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55855:42;55876:4;55882:2;55886:7;55895:1;55855:20;:42::i;:::-;56027:4;56000:31;;:23;56015:7;56000:14;:23::i;:::-;:31;;;55992:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56145:15;:24;56161:7;56145:24;;;;;;;;;;;;56138:31;;;;;;;;;;;56640:1;56621:9;:15;56631:4;56621:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;56673:1;56656:9;:13;56666:2;56656:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;56715:2;56696:7;:16;56704:7;56696:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56754:7;56750:2;56735:27;;56744:4;56735:27;;;;;;;;;;;;56775:41;56795:4;56801:2;56805:7;56814:1;56775:19;:41::i;:::-;55561:1263;;;:::o;50837:117::-;50903:7;50930;:16;50938:7;50930:16;;;;;;;;;;;;;;;;;;;;;50923:23;;50837:117;;;:::o;62645:132::-;62720:12;:10;:12::i;:::-;62709:23;;:7;:5;:7::i;:::-;:23;;;62701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62645:132::o;63747:191::-;63821:16;63840:6;;;;;;;;;;;63821:25;;63866:8;63857:6;;:17;;;;;;;;;;;;;;;;;;63921:8;63890:40;;63911:8;63890:40;;;;;;;;;;;;63810:128;63747:191;:::o;57260:315::-;57415:8;57406:17;;:5;:17;;;;57398:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57502:8;57464:18;:25;57483:5;57464:25;;;;;;;;;;;;;;;:35;57490:8;57464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57548:8;57526:41;;57541:5;57526:41;;;57558:8;57526:41;;;;;;:::i;:::-;;;;;;;;57260:315;;;:::o;50410:313::-;50566:28;50576:4;50582:2;50586:7;50566:9;:28::i;:::-;50613:47;50636:4;50642:2;50646:7;50655:4;50613:22;:47::i;:::-;50605:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50410:313;;;;:::o;1222:190::-;1347:4;1400;1371:25;1384:5;1391:4;1371:12;:25::i;:::-;:33;1364:40;;1222:190;;;;;:::o;52168:110::-;52244:26;52254:2;52258:7;52244:26;;;;;;;;;;;;:9;:26::i;:::-;52168:110;;:::o;51267:128::-;51332:4;51385:1;51356:31;;:17;51365:7;51356:8;:17::i;:::-;:31;;;;51349:38;;51267:128;;;:::o;68343:108::-;68403:13;68436:7;68429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68343:108;:::o;22866:716::-;22922:13;22973:14;23010:1;22990:17;23001:5;22990:10;:17::i;:::-;:21;22973:38;;23026:20;23060:6;23049:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23026:41;;23082:11;23211:6;23207:2;23203:15;23195:6;23191:28;23184:35;;23248:288;23255:4;23248:288;;;23280:5;;;;;;;;23422:8;23417:2;23410:5;23406:14;23401:30;23396:3;23388:44;23478:2;23469:11;;;;;;:::i;:::-;;;;;23512:1;23503:5;:10;23499:21;;;23515:5;;23499:21;23248:288;;;23557:6;23550:13;;;;;22866:716;;;:::o;59948:410::-;60138:1;60126:9;:13;60122:229;;;60176:1;60160:18;;:4;:18;;;60156:87;;60218:9;60199;:15;60209:4;60199:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;60156:87;60275:1;60261:16;;:2;:16;;;60257:83;;60315:9;60298;:13;60308:2;60298:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;60257:83;60122:229;59948:410;;;;:::o;61080:158::-;;;;;:::o;58363:853::-;58517:4;58538:15;:2;:13;;;:15::i;:::-;58534:675;;;58590:2;58574:36;;;58611:12;:10;:12::i;:::-;58625:4;58631:7;58640:4;58574:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58570:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58832:1;58815:6;:13;:18;58811:328;;;58858:60;;;;;;;;;;:::i;:::-;;;;;;;;58811:328;59089:6;59083:13;59074:6;59070:2;59066:15;59059:38;58570:584;58706:41;;;58696:51;;;:6;:51;;;;58689:58;;;;;58534:675;59193:4;59186:11;;58363:853;;;;;;;:::o;2089:296::-;2172:7;2192:20;2215:4;2192:27;;2235:9;2230:118;2254:5;:12;2250:1;:16;2230:118;;;2303:33;2313:12;2327:5;2333:1;2327:8;;;;;;;;:::i;:::-;;;;;;;;2303:9;:33::i;:::-;2288:48;;2268:3;;;;;:::i;:::-;;;;2230:118;;;;2365:12;2358:19;;;2089:296;;;;:::o;52505:319::-;52634:18;52640:2;52644:7;52634:5;:18::i;:::-;52685:53;52716:1;52720:2;52724:7;52733:4;52685:22;:53::i;:::-;52663:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;52505:319;;;:::o;19732:922::-;19785:7;19805:14;19822:1;19805:18;;19872:6;19863:5;:15;19859:102;;19908:6;19899:15;;;;;;:::i;:::-;;;;;19943:2;19933:12;;;;19859:102;19988:6;19979:5;:15;19975:102;;20024:6;20015:15;;;;;;:::i;:::-;;;;;20059:2;20049:12;;;;19975:102;20104:6;20095:5;:15;20091:102;;20140:6;20131:15;;;;;;:::i;:::-;;;;;20175:2;20165:12;;;;20091:102;20220:5;20211;:14;20207:99;;20255:5;20246:14;;;;;;:::i;:::-;;;;;20289:1;20279:11;;;;20207:99;20333:5;20324;:14;20320:99;;20368:5;20359:14;;;;;;:::i;:::-;;;;;20402:1;20392:11;;;;20320:99;20446:5;20437;:14;20433:99;;20481:5;20472:14;;;;;;:::i;:::-;;;;;20515:1;20505:11;;;;20433:99;20559:5;20550;:14;20546:66;;20595:1;20585:11;;;;20546:66;20640:6;20633:13;;;19732:922;;;:::o;9129:149::-;9192:7;9223:1;9219;:5;:51;;9250:20;9265:1;9268;9250:14;:20::i;:::-;9219:51;;;9227:20;9242:1;9245;9227:14;:20::i;:::-;9219:51;9212:58;;9129:149;;;;:::o;53160:942::-;53254:1;53240:16;;:2;:16;;;;53232:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53313:16;53321:7;53313;:16::i;:::-;53312:17;53304:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53375:48;53404:1;53408:2;53412:7;53421:1;53375:20;:48::i;:::-;53522:16;53530:7;53522;:16::i;:::-;53521:17;53513:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53937:1;53920:9;:13;53930:2;53920:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53981:2;53962:7;:16;53970:7;53962:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54026:7;54022:2;54001:33;;54018:1;54001:33;;;;;;;;;;;;54047:47;54075:1;54079:2;54083:7;54092:1;54047:19;:47::i;:::-;53160:942;;:::o;9286:268::-;9354:13;9461:1;9455:4;9448:15;9490:1;9484:4;9477:15;9531:4;9525;9515:21;9506:30;;9286:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:117::-;11750:1;11747;11740:12;11764:117;11873:1;11870;11863:12;11904:568;11977:8;11987:6;12037:3;12030:4;12022:6;12018:17;12014:27;12004:122;;12045:79;;:::i;:::-;12004:122;12158:6;12145:20;12135:30;;12188:18;12180:6;12177:30;12174:117;;;12210:79;;:::i;:::-;12174:117;12324:4;12316:6;12312:17;12300:29;;12378:3;12370:4;12362:6;12358:17;12348:8;12344:32;12341:41;12338:128;;;12385:79;;:::i;:::-;12338:128;11904:568;;;;;:::o;12478:704::-;12573:6;12581;12589;12638:2;12626:9;12617:7;12613:23;12609:32;12606:119;;;12644:79;;:::i;:::-;12606:119;12764:1;12789:53;12834:7;12825:6;12814:9;12810:22;12789:53;:::i;:::-;12779:63;;12735:117;12919:2;12908:9;12904:18;12891:32;12950:18;12942:6;12939:30;12936:117;;;12972:79;;:::i;:::-;12936:117;13085:80;13157:7;13148:6;13137:9;13133:22;13085:80;:::i;:::-;13067:98;;;;12862:313;12478:704;;;;;:::o;13188:77::-;13225:7;13254:5;13243:16;;13188:77;;;:::o;13271:122::-;13344:24;13362:5;13344:24;:::i;:::-;13337:5;13334:35;13324:63;;13383:1;13380;13373:12;13324:63;13271:122;:::o;13399:139::-;13445:5;13483:6;13470:20;13461:29;;13499:33;13526:5;13499:33;:::i;:::-;13399:139;;;;:::o;13544:329::-;13603:6;13652:2;13640:9;13631:7;13627:23;13623:32;13620:119;;;13658:79;;:::i;:::-;13620:119;13778:1;13803:53;13848:7;13839:6;13828:9;13824:22;13803:53;:::i;:::-;13793:63;;13749:117;13544:329;;;;:::o;13879:311::-;13956:4;14046:18;14038:6;14035:30;14032:56;;;14068:18;;:::i;:::-;14032:56;14118:4;14110:6;14106:17;14098:25;;14178:4;14172;14168:15;14160:23;;13879:311;;;:::o;14213:710::-;14309:5;14334:81;14350:64;14407:6;14350:64;:::i;:::-;14334:81;:::i;:::-;14325:90;;14435:5;14464:6;14457:5;14450:21;14498:4;14491:5;14487:16;14480:23;;14551:4;14543:6;14539:17;14531:6;14527:30;14580:3;14572:6;14569:15;14566:122;;;14599:79;;:::i;:::-;14566:122;14714:6;14697:220;14731:6;14726:3;14723:15;14697:220;;;14806:3;14835:37;14868:3;14856:10;14835:37;:::i;:::-;14830:3;14823:50;14902:4;14897:3;14893:14;14886:21;;14773:144;14757:4;14752:3;14748:14;14741:21;;14697:220;;;14701:21;14315:608;;14213:710;;;;;:::o;14946:370::-;15017:5;15066:3;15059:4;15051:6;15047:17;15043:27;15033:122;;15074:79;;:::i;:::-;15033:122;15191:6;15178:20;15216:94;15306:3;15298:6;15291:4;15283:6;15279:17;15216:94;:::i;:::-;15207:103;;15023:293;14946:370;;;;:::o;15322:539::-;15406:6;15455:2;15443:9;15434:7;15430:23;15426:32;15423:119;;;15461:79;;:::i;:::-;15423:119;15609:1;15598:9;15594:17;15581:31;15639:18;15631:6;15628:30;15625:117;;;15661:79;;:::i;:::-;15625:117;15766:78;15836:7;15827:6;15816:9;15812:22;15766:78;:::i;:::-;15756:88;;15552:302;15322:539;;;;:::o;15867:474::-;15935:6;15943;15992:2;15980:9;15971:7;15967:23;15963:32;15960:119;;;15998:79;;:::i;:::-;15960:119;16118:1;16143:53;16188:7;16179:6;16168:9;16164:22;16143:53;:::i;:::-;16133:63;;16089:117;16245:2;16271:53;16316:7;16307:6;16296:9;16292:22;16271:53;:::i;:::-;16261:63;;16216:118;15867:474;;;;;:::o;16347:118::-;16434:24;16452:5;16434:24;:::i;:::-;16429:3;16422:37;16347:118;;:::o;16471:222::-;16564:4;16602:2;16591:9;16587:18;16579:26;;16615:71;16683:1;16672:9;16668:17;16659:6;16615:71;:::i;:::-;16471:222;;;;:::o;16699:180::-;16747:77;16744:1;16737:88;16844:4;16841:1;16834:15;16868:4;16865:1;16858:15;16885:320;16929:6;16966:1;16960:4;16956:12;16946:22;;17013:1;17007:4;17003:12;17034:18;17024:81;;17090:4;17082:6;17078:17;17068:27;;17024:81;17152:2;17144:6;17141:14;17121:18;17118:38;17115:84;;;17171:18;;:::i;:::-;17115:84;16936:269;16885:320;;;:::o;17211:220::-;17351:34;17347:1;17339:6;17335:14;17328:58;17420:3;17415:2;17407:6;17403:15;17396:28;17211:220;:::o;17437:366::-;17579:3;17600:67;17664:2;17659:3;17600:67;:::i;:::-;17593:74;;17676:93;17765:3;17676:93;:::i;:::-;17794:2;17789:3;17785:12;17778:19;;17437:366;;;:::o;17809:419::-;17975:4;18013:2;18002:9;17998:18;17990:26;;18062:9;18056:4;18052:20;18048:1;18037:9;18033:17;18026:47;18090:131;18216:4;18090:131;:::i;:::-;18082:139;;17809:419;;;:::o;18234:248::-;18374:34;18370:1;18362:6;18358:14;18351:58;18443:31;18438:2;18430:6;18426:15;18419:56;18234:248;:::o;18488:366::-;18630:3;18651:67;18715:2;18710:3;18651:67;:::i;:::-;18644:74;;18727:93;18816:3;18727:93;:::i;:::-;18845:2;18840:3;18836:12;18829:19;;18488:366;;;:::o;18860:419::-;19026:4;19064:2;19053:9;19049:18;19041:26;;19113:9;19107:4;19103:20;19099:1;19088:9;19084:17;19077:47;19141:131;19267:4;19141:131;:::i;:::-;19133:139;;18860:419;;;:::o;19285:232::-;19425:34;19421:1;19413:6;19409:14;19402:58;19494:15;19489:2;19481:6;19477:15;19470:40;19285:232;:::o;19523:366::-;19665:3;19686:67;19750:2;19745:3;19686:67;:::i;:::-;19679:74;;19762:93;19851:3;19762:93;:::i;:::-;19880:2;19875:3;19871:12;19864:19;;19523:366;;;:::o;19895:419::-;20061:4;20099:2;20088:9;20084:18;20076:26;;20148:9;20142:4;20138:20;20134:1;20123:9;20119:17;20112:47;20176:131;20302:4;20176:131;:::i;:::-;20168:139;;19895:419;;;:::o;20320:174::-;20460:26;20456:1;20448:6;20444:14;20437:50;20320:174;:::o;20500:366::-;20642:3;20663:67;20727:2;20722:3;20663:67;:::i;:::-;20656:74;;20739:93;20828:3;20739:93;:::i;:::-;20857:2;20852:3;20848:12;20841:19;;20500:366;;;:::o;20872:419::-;21038:4;21076:2;21065:9;21061:18;21053:26;;21125:9;21119:4;21115:20;21111:1;21100:9;21096:17;21089:47;21153:131;21279:4;21153:131;:::i;:::-;21145:139;;20872:419;;;:::o;21297:228::-;21437:34;21433:1;21425:6;21421:14;21414:58;21506:11;21501:2;21493:6;21489:15;21482:36;21297:228;:::o;21531:366::-;21673:3;21694:67;21758:2;21753:3;21694:67;:::i;:::-;21687:74;;21770:93;21859:3;21770:93;:::i;:::-;21888:2;21883:3;21879:12;21872:19;;21531:366;;;:::o;21903:419::-;22069:4;22107:2;22096:9;22092:18;22084:26;;22156:9;22150:4;22146:20;22142:1;22131:9;22127:17;22120:47;22184:131;22310:4;22184:131;:::i;:::-;22176:139;;21903:419;;;:::o;22328:147::-;22429:11;22466:3;22451:18;;22328:147;;;;:::o;22481:114::-;;:::o;22601:398::-;22760:3;22781:83;22862:1;22857:3;22781:83;:::i;:::-;22774:90;;22873:93;22962:3;22873:93;:::i;:::-;22991:1;22986:3;22982:11;22975:18;;22601:398;;;:::o;23005:379::-;23189:3;23211:147;23354:3;23211:147;:::i;:::-;23204:154;;23375:3;23368:10;;23005:379;;;:::o;23390:166::-;23530:18;23526:1;23518:6;23514:14;23507:42;23390:166;:::o;23562:366::-;23704:3;23725:67;23789:2;23784:3;23725:67;:::i;:::-;23718:74;;23801:93;23890:3;23801:93;:::i;:::-;23919:2;23914:3;23910:12;23903:19;;23562:366;;;:::o;23934:419::-;24100:4;24138:2;24127:9;24123:18;24115:26;;24187:9;24181:4;24177:20;24173:1;24162:9;24158:17;24151:47;24215:131;24341:4;24215:131;:::i;:::-;24207:139;;23934:419;;;:::o;24359:232::-;24499:34;24495:1;24487:6;24483:14;24476:58;24568:15;24563:2;24555:6;24551:15;24544:40;24359:232;:::o;24597:366::-;24739:3;24760:67;24824:2;24819:3;24760:67;:::i;:::-;24753:74;;24836:93;24925:3;24836:93;:::i;:::-;24954:2;24949:3;24945:12;24938:19;;24597:366;;;:::o;24969:419::-;25135:4;25173:2;25162:9;25158:18;25150:26;;25222:9;25216:4;25212:20;25208:1;25197:9;25193:17;25186:47;25250:131;25376:4;25250:131;:::i;:::-;25242:139;;24969:419;;;:::o;25394:180::-;25442:77;25439:1;25432:88;25539:4;25536:1;25529:15;25563:4;25560:1;25553:15;25580:305;25620:3;25639:20;25657:1;25639:20;:::i;:::-;25634:25;;25673:20;25691:1;25673:20;:::i;:::-;25668:25;;25827:1;25759:66;25755:74;25752:1;25749:81;25746:107;;;25833:18;;:::i;:::-;25746:107;25877:1;25874;25870:9;25863:16;;25580:305;;;;:::o;25891:182::-;26031:34;26027:1;26019:6;26015:14;26008:58;25891:182;:::o;26079:366::-;26221:3;26242:67;26306:2;26301:3;26242:67;:::i;:::-;26235:74;;26318:93;26407:3;26318:93;:::i;:::-;26436:2;26431:3;26427:12;26420:19;;26079:366;;;:::o;26451:419::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:171::-;27016:23;27012:1;27004:6;27000:14;26993:47;26876:171;:::o;27053:366::-;27195:3;27216:67;27280:2;27275:3;27216:67;:::i;:::-;27209:74;;27292:93;27381:3;27292:93;:::i;:::-;27410:2;27405:3;27401:12;27394:19;;27053:366;;;:::o;27425:419::-;27591:4;27629:2;27618:9;27614:18;27606:26;;27678:9;27672:4;27668:20;27664:1;27653:9;27649:17;27642:47;27706:131;27832:4;27706:131;:::i;:::-;27698:139;;27425:419;;;:::o;27850:94::-;27883:8;27931:5;27927:2;27923:14;27902:35;;27850:94;;;:::o;27950:::-;27989:7;28018:20;28032:5;28018:20;:::i;:::-;28007:31;;27950:94;;;:::o;28050:100::-;28089:7;28118:26;28138:5;28118:26;:::i;:::-;28107:37;;28050:100;;;:::o;28156:157::-;28261:45;28281:24;28299:5;28281:24;:::i;:::-;28261:45;:::i;:::-;28256:3;28249:58;28156:157;;:::o;28319:256::-;28431:3;28446:75;28517:3;28508:6;28446:75;:::i;:::-;28546:2;28541:3;28537:12;28530:19;;28566:3;28559:10;;28319:256;;;;:::o;28581:348::-;28621:7;28644:20;28662:1;28644:20;:::i;:::-;28639:25;;28678:20;28696:1;28678:20;:::i;:::-;28673:25;;28866:1;28798:66;28794:74;28791:1;28788:81;28783:1;28776:9;28769:17;28765:105;28762:131;;;28873:18;;:::i;:::-;28762:131;28921:1;28918;28914:9;28903:20;;28581:348;;;;:::o;28935:175::-;29075:27;29071:1;29063:6;29059:14;29052:51;28935:175;:::o;29116:366::-;29258:3;29279:67;29343:2;29338:3;29279:67;:::i;:::-;29272:74;;29355:93;29444:3;29355:93;:::i;:::-;29473:2;29468:3;29464:12;29457:19;;29116:366;;;:::o;29488:419::-;29654:4;29692:2;29681:9;29677:18;29669:26;;29741:9;29735:4;29731:20;29727:1;29716:9;29712:17;29705:47;29769:131;29895:4;29769:131;:::i;:::-;29761:139;;29488:419;;;:::o;29913:191::-;29953:4;29973:20;29991:1;29973:20;:::i;:::-;29968:25;;30007:20;30025:1;30007:20;:::i;:::-;30002:25;;30046:1;30043;30040:8;30037:34;;;30051:18;;:::i;:::-;30037:34;30096:1;30093;30089:9;30081:17;;29913:191;;;;:::o;30110:168::-;30250:20;30246:1;30238:6;30234:14;30227:44;30110:168;:::o;30284:366::-;30426:3;30447:67;30511:2;30506:3;30447:67;:::i;:::-;30440:74;;30523:93;30612:3;30523:93;:::i;:::-;30641:2;30636:3;30632:12;30625:19;;30284:366;;;:::o;30656:419::-;30822:4;30860:2;30849:9;30845:18;30837:26;;30909:9;30903:4;30899:20;30895:1;30884:9;30880:17;30873:47;30937:131;31063:4;30937:131;:::i;:::-;30929:139;;30656:419;;;:::o;31081:169::-;31221:21;31217:1;31209:6;31205:14;31198:45;31081:169;:::o;31256:366::-;31398:3;31419:67;31483:2;31478:3;31419:67;:::i;:::-;31412:74;;31495:93;31584:3;31495:93;:::i;:::-;31613:2;31608:3;31604:12;31597:19;;31256:366;;;:::o;31628:419::-;31794:4;31832:2;31821:9;31817:18;31809:26;;31881:9;31875:4;31871:20;31867:1;31856:9;31852:17;31845:47;31909:131;32035:4;31909:131;:::i;:::-;31901:139;;31628:419;;;:::o;32053:233::-;32092:3;32115:24;32133:5;32115:24;:::i;:::-;32106:33;;32161:66;32154:5;32151:77;32148:103;;;32231:18;;:::i;:::-;32148:103;32278:1;32271:5;32267:13;32260:20;;32053:233;;;:::o;32292:234::-;32432:34;32428:1;32420:6;32416:14;32409:58;32501:17;32496:2;32488:6;32484:15;32477:42;32292:234;:::o;32532:366::-;32674:3;32695:67;32759:2;32754:3;32695:67;:::i;:::-;32688:74;;32771:93;32860:3;32771:93;:::i;:::-;32889:2;32884:3;32880:12;32873:19;;32532:366;;;:::o;32904:419::-;33070:4;33108:2;33097:9;33093:18;33085:26;;33157:9;33151:4;33147:20;33143:1;33132:9;33128:17;33121:47;33185:131;33311:4;33185:131;:::i;:::-;33177:139;;32904:419;;;:::o;33329:148::-;33431:11;33468:3;33453:18;;33329:148;;;;:::o;33483:377::-;33589:3;33617:39;33650:5;33617:39;:::i;:::-;33672:89;33754:6;33749:3;33672:89;:::i;:::-;33665:96;;33770:52;33815:6;33810:3;33803:4;33796:5;33792:16;33770:52;:::i;:::-;33847:6;33842:3;33838:16;33831:23;;33593:267;33483:377;;;;:::o;33866:141::-;33915:4;33938:3;33930:11;;33961:3;33958:1;33951:14;33995:4;33992:1;33982:18;33974:26;;33866:141;;;:::o;34037:845::-;34140:3;34177:5;34171:12;34206:36;34232:9;34206:36;:::i;:::-;34258:89;34340:6;34335:3;34258:89;:::i;:::-;34251:96;;34378:1;34367:9;34363:17;34394:1;34389:137;;;;34540:1;34535:341;;;;34356:520;;34389:137;34473:4;34469:9;34458;34454:25;34449:3;34442:38;34509:6;34504:3;34500:16;34493:23;;34389:137;;34535:341;34602:38;34634:5;34602:38;:::i;:::-;34662:1;34676:154;34690:6;34687:1;34684:13;34676:154;;;34764:7;34758:14;34754:1;34749:3;34745:11;34738:35;34814:1;34805:7;34801:15;34790:26;;34712:4;34709:1;34705:12;34700:17;;34676:154;;;34859:6;34854:3;34850:16;34843:23;;34542:334;;34356:520;;34144:738;;34037:845;;;;:::o;34888:589::-;35113:3;35135:95;35226:3;35217:6;35135:95;:::i;:::-;35128:102;;35247:95;35338:3;35329:6;35247:95;:::i;:::-;35240:102;;35359:92;35447:3;35438:6;35359:92;:::i;:::-;35352:99;;35468:3;35461:10;;34888:589;;;;;;:::o;35483:225::-;35623:34;35619:1;35611:6;35607:14;35600:58;35692:8;35687:2;35679:6;35675:15;35668:33;35483:225;:::o;35714:366::-;35856:3;35877:67;35941:2;35936:3;35877:67;:::i;:::-;35870:74;;35953:93;36042:3;35953:93;:::i;:::-;36071:2;36066:3;36062:12;36055:19;;35714:366;;;:::o;36086:419::-;36252:4;36290:2;36279:9;36275:18;36267:26;;36339:9;36333:4;36329:20;36325:1;36314:9;36310:17;36303:47;36367:131;36493:4;36367:131;:::i;:::-;36359:139;;36086:419;;;:::o;36511:114::-;36578:6;36612:5;36606:12;36596:22;;36511:114;;;:::o;36631:163::-;36748:11;36785:3;36770:18;;36631:163;;;;:::o;36800:132::-;36867:4;36890:3;36882:11;;36920:4;36915:3;36911:14;36903:22;;36800:132;;;:::o;36938:116::-;37023:24;37041:5;37023:24;:::i;:::-;37018:3;37011:37;36938:116;;:::o;37060:195::-;37137:10;37158:54;37208:3;37200:6;37158:54;:::i;:::-;37244:4;37239:3;37235:14;37221:28;;37060:195;;;;:::o;37261:113::-;37331:4;37363;37358:3;37354:14;37346:22;;37261:113;;;:::o;37410:776::-;37547:3;37576:54;37624:5;37576:54;:::i;:::-;37646:104;37743:6;37738:3;37646:104;:::i;:::-;37639:111;;37774:56;37824:5;37774:56;:::i;:::-;37853:7;37884:1;37869:292;37894:6;37891:1;37888:13;37869:292;;;37970:6;37964:13;37997:71;38064:3;38049:13;37997:71;:::i;:::-;37990:78;;38091:60;38144:6;38091:60;:::i;:::-;38081:70;;37929:232;37916:1;37913;37909:9;37904:14;;37869:292;;;37873:14;38177:3;38170:10;;37552:634;;;37410:776;;;;:::o;38192:335::-;38354:3;38376:125;38497:3;38488:6;38376:125;:::i;:::-;38369:132;;38518:3;38511:10;;38192:335;;;;:::o;38533:224::-;38673:34;38669:1;38661:6;38657:14;38650:58;38742:7;38737:2;38729:6;38725:15;38718:32;38533:224;:::o;38763:366::-;38905:3;38926:67;38990:2;38985:3;38926:67;:::i;:::-;38919:74;;39002:93;39091:3;39002:93;:::i;:::-;39120:2;39115:3;39111:12;39104:19;;38763:366;;;:::o;39135:419::-;39301:4;39339:2;39328:9;39324:18;39316:26;;39388:9;39382:4;39378:20;39374:1;39363:9;39359:17;39352:47;39416:131;39542:4;39416:131;:::i;:::-;39408:139;;39135:419;;;:::o;39560:223::-;39700:34;39696:1;39688:6;39684:14;39677:58;39769:6;39764:2;39756:6;39752:15;39745:31;39560:223;:::o;39789:366::-;39931:3;39952:67;40016:2;40011:3;39952:67;:::i;:::-;39945:74;;40028:93;40117:3;40028:93;:::i;:::-;40146:2;40141:3;40137:12;40130:19;;39789:366;;;:::o;40161:419::-;40327:4;40365:2;40354:9;40350:18;40342:26;;40414:9;40408:4;40404:20;40400:1;40389:9;40385:17;40378:47;40442:131;40568:4;40442:131;:::i;:::-;40434:139;;40161:419;;;:::o;40586:182::-;40726:34;40722:1;40714:6;40710:14;40703:58;40586:182;:::o;40774:366::-;40916:3;40937:67;41001:2;40996:3;40937:67;:::i;:::-;40930:74;;41013:93;41102:3;41013:93;:::i;:::-;41131:2;41126:3;41122:12;41115:19;;40774:366;;;:::o;41146:419::-;41312:4;41350:2;41339:9;41335:18;41327:26;;41399:9;41393:4;41389:20;41385:1;41374:9;41370:17;41363:47;41427:131;41553:4;41427:131;:::i;:::-;41419:139;;41146:419;;;:::o;41571:175::-;41711:27;41707:1;41699:6;41695:14;41688:51;41571:175;:::o;41752:366::-;41894:3;41915:67;41979:2;41974:3;41915:67;:::i;:::-;41908:74;;41991:93;42080:3;41991:93;:::i;:::-;42109:2;42104:3;42100:12;42093:19;;41752:366;;;:::o;42124:419::-;42290:4;42328:2;42317:9;42313:18;42305:26;;42377:9;42371:4;42367:20;42363:1;42352:9;42348:17;42341:47;42405:131;42531:4;42405:131;:::i;:::-;42397:139;;42124:419;;;:::o;42549:237::-;42689:34;42685:1;42677:6;42673:14;42666:58;42758:20;42753:2;42745:6;42741:15;42734:45;42549:237;:::o;42792:366::-;42934:3;42955:67;43019:2;43014:3;42955:67;:::i;:::-;42948:74;;43031:93;43120:3;43031:93;:::i;:::-;43149:2;43144:3;43140:12;43133:19;;42792:366;;;:::o;43164:419::-;43330:4;43368:2;43357:9;43353:18;43345:26;;43417:9;43411:4;43407:20;43403:1;43392:9;43388:17;43381:47;43445:131;43571:4;43445:131;:::i;:::-;43437:139;;43164:419;;;:::o;43589:180::-;43637:77;43634:1;43627:88;43734:4;43731:1;43724:15;43758:4;43755:1;43748:15;43775:98;43826:6;43860:5;43854:12;43844:22;;43775:98;;;:::o;43879:168::-;43962:11;43996:6;43991:3;43984:19;44036:4;44031:3;44027:14;44012:29;;43879:168;;;;:::o;44053:360::-;44139:3;44167:38;44199:5;44167:38;:::i;:::-;44221:70;44284:6;44279:3;44221:70;:::i;:::-;44214:77;;44300:52;44345:6;44340:3;44333:4;44326:5;44322:16;44300:52;:::i;:::-;44377:29;44399:6;44377:29;:::i;:::-;44372:3;44368:39;44361:46;;44143:270;44053:360;;;;:::o;44419:640::-;44614:4;44652:3;44641:9;44637:19;44629:27;;44666:71;44734:1;44723:9;44719:17;44710:6;44666:71;:::i;:::-;44747:72;44815:2;44804:9;44800:18;44791:6;44747:72;:::i;:::-;44829;44897:2;44886:9;44882:18;44873:6;44829:72;:::i;:::-;44948:9;44942:4;44938:20;44933:2;44922:9;44918:18;44911:48;44976:76;45047:4;45038:6;44976:76;:::i;:::-;44968:84;;44419:640;;;;;;;:::o;45065:141::-;45121:5;45152:6;45146:13;45137:22;;45168:32;45194:5;45168:32;:::i;:::-;45065:141;;;;:::o;45212:349::-;45281:6;45330:2;45318:9;45309:7;45305:23;45301:32;45298:119;;;45336:79;;:::i;:::-;45298:119;45456:1;45481:63;45536:7;45527:6;45516:9;45512:22;45481:63;:::i;:::-;45471:73;;45427:127;45212:349;;;;:::o;45567:180::-;45615:77;45612:1;45605:88;45712:4;45709:1;45702:15;45736:4;45733:1;45726:15;45753:182;45893:34;45889:1;45881:6;45877:14;45870:58;45753:182;:::o;45941:366::-;46083:3;46104:67;46168:2;46163:3;46104:67;:::i;:::-;46097:74;;46180:93;46269:3;46180:93;:::i;:::-;46298:2;46293:3;46289:12;46282:19;;45941:366;;;:::o;46313:419::-;46479:4;46517:2;46506:9;46502:18;46494:26;;46566:9;46560:4;46556:20;46552:1;46541:9;46537:17;46530:47;46594:131;46720:4;46594:131;:::i;:::-;46586:139;;46313:419;;;:::o;46738:178::-;46878:30;46874:1;46866:6;46862:14;46855:54;46738:178;:::o;46922:366::-;47064:3;47085:67;47149:2;47144:3;47085:67;:::i;:::-;47078:74;;47161:93;47250:3;47161:93;:::i;:::-;47279:2;47274:3;47270:12;47263:19;;46922:366;;;:::o;47294:419::-;47460:4;47498:2;47487:9;47483:18;47475:26;;47547:9;47541:4;47537:20;47533:1;47522:9;47518:17;47511:47;47575:131;47701:4;47575:131;:::i;:::-;47567:139;;47294:419;;;:::o

Swarm Source

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