ETH Price: $2,640.74 (-0.70%)
Gas: 2 Gwei

Token

Eigendark (EIDA)
 

Overview

Max Total Supply

0 EIDA

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Fked Thoughts: Deployer
Balance
1 EIDA
0x899fcf86e744d560ab35154bb20737ccb3abd550
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:
Eigendark_ETH

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-22
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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);
    }

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

// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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.9.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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.9.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 {}

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// File: contracts/eigendark_eth.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;




//Für Freya

contract Eigendark_ETH is ERC721, Ownable{

    constructor(address[] memory _allowlistAddresses, string memory _baseTokenURI) ERC721("Eigendark", "EIDA") {
        for (uint i = 0; i < _allowlistAddresses.length; ++i) {
            allowlist[_allowlistAddresses[i]] = true;
        }
        baseTokenURI = _baseTokenURI; 
    }

    modifier onlyAllowlisted(address _contract) {
        require(allowlist[_contract], "NOT_AL");
        _;
    }
    modifier whenListenerActive() {
        require(listener, 'LISTENER_INACTIVE');
        _;
    }
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "BAD_CALL");
        _;
    }

    mapping(address => bool) public allowlist;
    string public baseTokenURI;
    bool public listener;
    uint256 public currentSupply;
    uint256 public constant MAXSUPPLY = 10000;
    uint256 public constant PRICE = 0.01 ether;
    uint256 public FEE = 0.001 ether;

    function mint(address otherContractAddress, uint256 tokenId) external payable callerIsUser whenListenerActive onlyAllowlisted(otherContractAddress) {
        require(msg.value == PRICE, 'INCORRECT_VALUE');
        require(currentSupply < MAXSUPPLY, 'MAX_SUPPLY_REACHED');
        IERC721 otherContract = IERC721(otherContractAddress);
        require(otherContract.ownerOf(tokenId) == msg.sender, "CALLER_NOT_OWNER");
        _safeMint(msg.sender, currentSupply);
        emit Minted(otherContractAddress, tokenId, currentSupply);
        currentSupply += 1;
    }

    function reprint(uint256 tokenId) external payable callerIsUser whenListenerActive {
        require(ownerOf(tokenId) == msg.sender, 'NOT_TOKEN_OWNER');
        require(msg.value == FEE, 'INCORRECT_FEE');
        emit ReprintRequested(tokenId);
    }

    // ------------- Admin -------------

    function setBaseURI(string calldata baseURI) external onlyOwner {
        baseTokenURI = baseURI;
    }

    function withdraw() external onlyOwner {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
    }

    function modifyAllowlist(address _contract, bool isAllowed) external onlyOwner {
        allowlist[_contract] = isAllowed;
    }

    function setListener(bool _active) external onlyOwner {
        listener = _active;
    }

    function setFee(uint256 newFee) external onlyOwner {
        FEE = newFee;
    }

    // ------------- View -------------

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    // ------------- Events -------------

    event Minted(address indexed otherContractAddress, uint256 tokenId, uint256 currentSupply);
    event ReprintRequested(uint256 indexed tokenId);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_allowlistAddresses","type":"address[]"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"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":"otherContractAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"currentSupply","type":"uint256"}],"name":"Minted","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ReprintRequested","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":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listener","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"otherContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"bool","name":"isAllowed","type":"bool"}],"name":"modifyAllowlist","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reprint","outputs":[],"stateMutability":"payable","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":"newFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setListener","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":[{"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600b553480156200001b575f80fd5b506040516200436a3803806200436a83398181016040528101906200004191906200051e565b6040518060400160405280600981526020017f456967656e6461726b00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4549444100000000000000000000000000000000000000000000000000000000815250815f9081620000bd9190620007d8565b508060019081620000cf9190620007d8565b505050620000f2620000e66200019760201b60201c565b6200019e60201b60201c565b5f5b82518110156200017c57600160075f858481518110620001195762000118620008bc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550806001019050620000f4565b5080600890816200018e9190620007d8565b505050620008e9565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620002be8262000276565b810181811067ffffffffffffffff82111715620002e057620002df62000286565b5b80604052505050565b5f620002f462000261565b9050620003028282620002b3565b919050565b5f67ffffffffffffffff82111562000324576200032362000286565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620003648262000339565b9050919050565b620003768162000358565b811462000381575f80fd5b50565b5f8151905062000394816200036b565b92915050565b5f620003b0620003aa8462000307565b620002e9565b90508083825260208201905060208402830185811115620003d657620003d562000335565b5b835b81811015620004035780620003ee888262000384565b845260208401935050602081019050620003d8565b5050509392505050565b5f82601f83011262000424576200042362000272565b5b8151620004368482602086016200039a565b91505092915050565b5f80fd5b5f67ffffffffffffffff82111562000460576200045f62000286565b5b6200046b8262000276565b9050602081019050919050565b5f5b83811015620004975780820151818401526020810190506200047a565b5f8484015250505050565b5f620004b8620004b28462000443565b620002e9565b905082815260208101848484011115620004d757620004d66200043f565b5b620004e484828562000478565b509392505050565b5f82601f83011262000503576200050262000272565b5b815162000515848260208601620004a2565b91505092915050565b5f80604083850312156200053757620005366200026a565b5b5f83015167ffffffffffffffff8111156200055757620005566200026e565b5b62000565858286016200040d565b925050602083015167ffffffffffffffff8111156200058957620005886200026e565b5b6200059785828601620004ec565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005f057607f821691505b602082108103620006065762000605620005ab565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200066a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200062d565b6200067686836200062d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006c0620006ba620006b4846200068e565b62000697565b6200068e565b9050919050565b5f819050919050565b620006db83620006a0565b620006f3620006ea82620006c7565b84845462000639565b825550505050565b5f90565b62000709620006fb565b62000716818484620006d0565b505050565b5b818110156200073d57620007315f82620006ff565b6001810190506200071c565b5050565b601f8211156200078c5762000756816200060c565b62000761846200061e565b8101602085101562000771578190505b6200078962000780856200061e565b8301826200071b565b50505b505050565b5f82821c905092915050565b5f620007ae5f198460080262000791565b1980831691505092915050565b5f620007c883836200079d565b9150826002028217905092915050565b620007e382620005a1565b67ffffffffffffffff811115620007ff57620007fe62000286565b5b6200080b8254620005d8565b6200081882828562000741565b5f60209050601f8311600181146200084e575f841562000839578287015190505b620008458582620007bb565b865550620008b4565b601f1984166200085e866200060c565b5f5b82811015620008875784890151825560018201915060208501945060208101905062000860565b86831015620008a75784890151620008a3601f8916826200079d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b613a7380620008f75f395ff3fe6080604052600436106101cc575f3560e01c80637b0f7b15116100f6578063b88d4fde11610094578063d547cfb711610063578063d547cfb71461062c578063e985e9c514610656578063f2fde38b14610692578063fab1cf23146106ba576101cc565b8063b88d4fde14610582578063c57981b5146105aa578063c87b56dd146105d4578063d100cec614610610576101cc565b80639551dd58116100d05780639551dd58146104ca57806395d89b41146104f4578063a22cb4651461051e578063a7cd52cb14610546576101cc565b80637b0f7b151461044e5780638d859f3e146104765780638da5cb5b146104a0576101cc565b806342842e0e1161016e57806370a082311161013d57806370a08231146103a8578063715018a6146103e4578063758b4e86146103fa578063771282f614610424576101cc565b806342842e0e146102f457806355f804b31461031c5780636352211e1461034457806369fe0e2d14610380576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806323b872dd1461029a5780633ccfd60b146102c257806340c10f19146102d8576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f191906124f2565b6106e2565b6040516102039190612537565b60405180910390f35b348015610217575f80fd5b506102206107c3565b60405161022d91906125da565b60405180910390f35b348015610241575f80fd5b5061025c6004803603810190610257919061262d565b610852565b6040516102699190612697565b60405180910390f35b34801561027d575f80fd5b50610298600480360381019061029391906126da565b610894565b005b3480156102a5575f80fd5b506102c060048036038101906102bb9190612718565b6109aa565b005b3480156102cd575f80fd5b506102d6610a0a565b005b6102f260048036038101906102ed91906126da565b610abd565b005b3480156102ff575f80fd5b5061031a60048036038101906103159190612718565b610df8565b005b348015610327575f80fd5b50610342600480360381019061033d91906127c9565b610e17565b005b34801561034f575f80fd5b5061036a6004803603810190610365919061262d565b610e35565b6040516103779190612697565b60405180910390f35b34801561038b575f80fd5b506103a660048036038101906103a1919061262d565b610eb9565b005b3480156103b3575f80fd5b506103ce60048036038101906103c99190612814565b610ecb565b6040516103db919061284e565b60405180910390f35b3480156103ef575f80fd5b506103f8610f7f565b005b348015610405575f80fd5b5061040e610f92565b60405161041b919061284e565b60405180910390f35b34801561042f575f80fd5b50610438610f98565b604051610445919061284e565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612891565b610f9e565b005b348015610481575f80fd5b5061048a610fc2565b604051610497919061284e565b60405180910390f35b3480156104ab575f80fd5b506104b4610fcd565b6040516104c19190612697565b60405180910390f35b3480156104d5575f80fd5b506104de610ff5565b6040516104eb9190612537565b60405180910390f35b3480156104ff575f80fd5b50610508611007565b60405161051591906125da565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f91906128bc565b611097565b005b348015610551575f80fd5b5061056c60048036038101906105679190612814565b6110ad565b6040516105799190612537565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190612a22565b6110ca565b005b3480156105b5575f80fd5b506105be61112c565b6040516105cb919061284e565b60405180910390f35b3480156105df575f80fd5b506105fa60048036038101906105f5919061262d565b611132565b60405161060791906125da565b60405180910390f35b61062a6004803603810190610625919061262d565b611197565b005b348015610637575f80fd5b5061064061133d565b60405161064d91906125da565b60405180910390f35b348015610661575f80fd5b5061067c60048036038101906106779190612aa2565b6113c9565b6040516106899190612537565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190612814565b611457565b005b3480156106c5575f80fd5b506106e060048036038101906106db91906128bc565b6114d9565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107bc57506107bb82611539565b5b9050919050565b60605f80546107d190612b0d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fd90612b0d565b80156108485780601f1061081f57610100808354040283529160200191610848565b820191905f5260205f20905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b5f61085c826115a2565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089e82610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590612bad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092d6115ed565b73ffffffffffffffffffffffffffffffffffffffff16148061095c575061095b816109566115ed565b6113c9565b5b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612c3b565b60405180910390fd5b6109a583836115f4565b505050565b6109bb6109b56115ed565b826116aa565b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612cc9565b60405180910390fd5b610a0583838361173e565b505050565b610a12611a2a565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610a3790612d14565b5f6040518083038185875af1925050503d805f8114610a71576040519150601f19603f3d011682016040523d82523d5f602084013e610a76565b606091505b5050905080610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190612d72565b60405180910390fd5b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612dda565b60405180910390fd5b60095f9054906101000a900460ff16610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612e42565b60405180910390fd5b8160075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90612eaa565b60405180910390fd5b662386f26fc100003414610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612f12565b60405180910390fd5b612710600a5410610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612f7a565b60405180910390fd5b5f8390503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610ce6919061284e565b602060405180830381865afa158015610d01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d259190612fac565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613021565b60405180910390fd5b610d8733600a54611aa8565b8373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff84600a54604051610dd192919061303f565b60405180910390a26001600a5f828254610deb9190613093565b9250508190555050505050565b610e1283838360405180602001604052805f8152506110ca565b505050565b610e1f611a2a565b818160089182610e3092919061326d565b505050565b5f80610e4083611ac5565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613384565b60405180910390fd5b80915050919050565b610ec1611a2a565b80600b8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613412565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f87611a2a565b610f905f611afe565b565b61271081565b600a5481565b610fa6611a2a565b8060095f6101000a81548160ff02191690831515021790555050565b662386f26fc1000081565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095f9054906101000a900460ff1681565b60606001805461101690612b0d565b80601f016020809104026020016040519081016040528092919081815260200182805461104290612b0d565b801561108d5780601f106110645761010080835404028352916020019161108d565b820191905f5260205f20905b81548152906001019060200180831161107057829003601f168201915b5050505050905090565b6110a96110a26115ed565b8383611bc1565b5050565b6007602052805f5260405f205f915054906101000a900460ff1681565b6110db6110d56115ed565b836116aa565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612cc9565b60405180910390fd5b61112684848484611d28565b50505050565b600b5481565b606061113d826115a2565b5f611146611d84565b90505f8151116111645760405180602001604052805f81525061118f565b8061116e84611e14565b60405160200161117f92919061346a565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612dda565b60405180910390fd5b60095f9054906101000a900460ff16611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612e42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661127382610e35565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c0906134d7565b60405180910390fd5b600b54341461130d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113049061353f565b60405180910390fd5b807f3e0a833640269c66b8aa71278d487d9144fb723ea7b28f6cd90845e3699d81fe60405160405180910390a250565b6008805461134a90612b0d565b80601f016020809104026020016040519081016040528092919081815260200182805461137690612b0d565b80156113c15780601f10611398576101008083540402835291602001916113c1565b820191905f5260205f20905b8154815290600101906020018083116113a457829003601f168201915b505050505081565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61145f611a2a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906135cd565b60405180910390fd5b6114d681611afe565b50565b6114e1611a2a565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115ab81611ede565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613384565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166483610e35565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f806116b583610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f757506116f681856113c9565b5b8061173557508373ffffffffffffffffffffffffffffffffffffffff1661171d84610852565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661175e82610e35565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061365b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906136e9565b60405180910390fd5b61182f8383836001611f1e565b8273ffffffffffffffffffffffffffffffffffffffff1661184f82610e35565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c9061365b565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a258383836001611f24565b505050565b611a326115ed565b73ffffffffffffffffffffffffffffffffffffffff16611a50610fcd565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613751565b60405180910390fd5b565b611ac1828260405180602001604052805f815250611f2a565b5050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906137b9565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1b9190612537565b60405180910390a3505050565b611d3384848461173e565b611d3f84848484611f84565b611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613847565b60405180910390fd5b50505050565b606060088054611d9390612b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90612b0d565b8015611e0a5780601f10611de157610100808354040283529160200191611e0a565b820191905f5260205f20905b815481529060010190602001808311611ded57829003601f168201915b5050505050905090565b60605f6001611e2284612106565b0190505f8167ffffffffffffffff811115611e4057611e3f6128fe565b5b6040519080825280601f01601f191660200182016040528015611e725781602001600182028036833780820191505090505b5090505f82602001820190505b600115611ed3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec857611ec7613865565b5b0494505f8503611e7f575b819350505050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff16611eff83611ac5565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b611f348383612257565b611f405f848484611f84565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613847565b60405180910390fd5b505050565b5f611fa48473ffffffffffffffffffffffffffffffffffffffff1661246a565b156120f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fcd6115ed565b8786866040518563ffffffff1660e01b8152600401611fef94939291906138e4565b6020604051808303815f875af192505050801561202a57506040513d601f19601f820116820180604052508101906120279190613942565b60015b6120a9573d805f8114612058576040519150601f19603f3d011682016040523d82523d5f602084013e61205d565b606091505b505f8151036120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613847565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120fe565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612162577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161215857612157613865565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061219f576d04ee2d6d415b85acef8100000000838161219557612194613865565b5b0492506020810190505b662386f26fc1000083106121ce57662386f26fc1000083816121c4576121c3613865565b5b0492506010810190505b6305f5e10083106121f7576305f5e10083816121ed576121ec613865565b5b0492506008810190505b612710831061221c57612710838161221257612211613865565b5b0492506004810190505b6064831061223f576064838161223557612234613865565b5b0492506002810190505b600a831061224e576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906139b7565b60405180910390fd5b6122ce81611ede565b1561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613a1f565b60405180910390fd5b61231b5f83836001611f1e565b61232481611ede565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613a1f565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124665f83836001611f24565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124d18161249d565b81146124db575f80fd5b50565b5f813590506124ec816124c8565b92915050565b5f6020828403121561250757612506612495565b5b5f612514848285016124de565b91505092915050565b5f8115159050919050565b6125318161251d565b82525050565b5f60208201905061254a5f830184612528565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561258757808201518184015260208101905061256c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125ac82612550565b6125b6818561255a565b93506125c681856020860161256a565b6125cf81612592565b840191505092915050565b5f6020820190508181035f8301526125f281846125a2565b905092915050565b5f819050919050565b61260c816125fa565b8114612616575f80fd5b50565b5f8135905061262781612603565b92915050565b5f6020828403121561264257612641612495565b5b5f61264f84828501612619565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61268182612658565b9050919050565b61269181612677565b82525050565b5f6020820190506126aa5f830184612688565b92915050565b6126b981612677565b81146126c3575f80fd5b50565b5f813590506126d4816126b0565b92915050565b5f80604083850312156126f0576126ef612495565b5b5f6126fd858286016126c6565b925050602061270e85828601612619565b9150509250929050565b5f805f6060848603121561272f5761272e612495565b5b5f61273c868287016126c6565b935050602061274d868287016126c6565b925050604061275e86828701612619565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261278957612788612768565b5b8235905067ffffffffffffffff8111156127a6576127a561276c565b5b6020830191508360018202830111156127c2576127c1612770565b5b9250929050565b5f80602083850312156127df576127de612495565b5b5f83013567ffffffffffffffff8111156127fc576127fb612499565b5b61280885828601612774565b92509250509250929050565b5f6020828403121561282957612828612495565b5b5f612836848285016126c6565b91505092915050565b612848816125fa565b82525050565b5f6020820190506128615f83018461283f565b92915050565b6128708161251d565b811461287a575f80fd5b50565b5f8135905061288b81612867565b92915050565b5f602082840312156128a6576128a5612495565b5b5f6128b38482850161287d565b91505092915050565b5f80604083850312156128d2576128d1612495565b5b5f6128df858286016126c6565b92505060206128f08582860161287d565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61293482612592565b810181811067ffffffffffffffff82111715612953576129526128fe565b5b80604052505050565b5f61296561248c565b9050612971828261292b565b919050565b5f67ffffffffffffffff8211156129905761298f6128fe565b5b61299982612592565b9050602081019050919050565b828183375f83830152505050565b5f6129c66129c184612976565b61295c565b9050828152602081018484840111156129e2576129e16128fa565b5b6129ed8482856129a6565b509392505050565b5f82601f830112612a0957612a08612768565b5b8135612a198482602086016129b4565b91505092915050565b5f805f8060808587031215612a3a57612a39612495565b5b5f612a47878288016126c6565b9450506020612a58878288016126c6565b9350506040612a6987828801612619565b925050606085013567ffffffffffffffff811115612a8a57612a89612499565b5b612a96878288016129f5565b91505092959194509250565b5f8060408385031215612ab857612ab7612495565b5b5f612ac5858286016126c6565b9250506020612ad6858286016126c6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b2457607f821691505b602082108103612b3757612b36612ae0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b9760218361255a565b9150612ba282612b3d565b604082019050919050565b5f6020820190508181035f830152612bc481612b8b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f612c25603d8361255a565b9150612c3082612bcb565b604082019050919050565b5f6020820190508181035f830152612c5281612c19565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f612cb3602d8361255a565b9150612cbe82612c59565b604082019050919050565b5f6020820190508181035f830152612ce081612ca7565b9050919050565b5f81905092915050565b50565b5f612cff5f83612ce7565b9150612d0a82612cf1565b5f82019050919050565b5f612d1e82612cf4565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612d5c60108361255a565b9150612d6782612d28565b602082019050919050565b5f6020820190508181035f830152612d8981612d50565b9050919050565b7f4241445f43414c4c0000000000000000000000000000000000000000000000005f82015250565b5f612dc460088361255a565b9150612dcf82612d90565b602082019050919050565b5f6020820190508181035f830152612df181612db8565b9050919050565b7f4c495354454e45525f494e4143544956450000000000000000000000000000005f82015250565b5f612e2c60118361255a565b9150612e3782612df8565b602082019050919050565b5f6020820190508181035f830152612e5981612e20565b9050919050565b7f4e4f545f414c00000000000000000000000000000000000000000000000000005f82015250565b5f612e9460068361255a565b9150612e9f82612e60565b602082019050919050565b5f6020820190508181035f830152612ec181612e88565b9050919050565b7f494e434f52524543545f56414c554500000000000000000000000000000000005f82015250565b5f612efc600f8361255a565b9150612f0782612ec8565b602082019050919050565b5f6020820190508181035f830152612f2981612ef0565b9050919050565b7f4d41585f535550504c595f5245414348454400000000000000000000000000005f82015250565b5f612f6460128361255a565b9150612f6f82612f30565b602082019050919050565b5f6020820190508181035f830152612f9181612f58565b9050919050565b5f81519050612fa6816126b0565b92915050565b5f60208284031215612fc157612fc0612495565b5b5f612fce84828501612f98565b91505092915050565b7f43414c4c45525f4e4f545f4f574e4552000000000000000000000000000000005f82015250565b5f61300b60108361255a565b915061301682612fd7565b602082019050919050565b5f6020820190508181035f83015261303881612fff565b9050919050565b5f6040820190506130525f83018561283f565b61305f602083018461283f565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61309d826125fa565b91506130a8836125fa565b92508282019050808211156130c0576130bf613066565b5b92915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261312c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130f1565b61313686836130f1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61317161316c613167846125fa565b61314e565b6125fa565b9050919050565b5f819050919050565b61318a83613157565b61319e61319682613178565b8484546130fd565b825550505050565b5f90565b6131b26131a6565b6131bd818484613181565b505050565b5b818110156131e0576131d55f826131aa565b6001810190506131c3565b5050565b601f821115613225576131f6816130d0565b6131ff846130e2565b8101602085101561320e578190505b61322261321a856130e2565b8301826131c2565b50505b505050565b5f82821c905092915050565b5f6132455f198460080261322a565b1980831691505092915050565b5f61325d8383613236565b9150826002028217905092915050565b61327783836130c6565b67ffffffffffffffff8111156132905761328f6128fe565b5b61329a8254612b0d565b6132a58282856131e4565b5f601f8311600181146132d2575f84156132c0578287013590505b6132ca8582613252565b865550613331565b601f1984166132e0866130d0565b5f5b82811015613307578489013582556001820191506020850194506020810190506132e2565b868310156133245784890135613320601f891682613236565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f61336e60188361255a565b91506133798261333a565b602082019050919050565b5f6020820190508181035f83015261339b81613362565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6133fc60298361255a565b9150613407826133a2565b604082019050919050565b5f6020820190508181035f830152613429816133f0565b9050919050565b5f81905092915050565b5f61344482612550565b61344e8185613430565b935061345e81856020860161256a565b80840191505092915050565b5f613475828561343a565b9150613481828461343a565b91508190509392505050565b7f4e4f545f544f4b454e5f4f574e455200000000000000000000000000000000005f82015250565b5f6134c1600f8361255a565b91506134cc8261348d565b602082019050919050565b5f6020820190508181035f8301526134ee816134b5565b9050919050565b7f494e434f52524543545f464545000000000000000000000000000000000000005f82015250565b5f613529600d8361255a565b9150613534826134f5565b602082019050919050565b5f6020820190508181035f8301526135568161351d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135b760268361255a565b91506135c28261355d565b604082019050919050565b5f6020820190508181035f8301526135e4816135ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f61364560258361255a565b9150613650826135eb565b604082019050919050565b5f6020820190508181035f83015261367281613639565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136d360248361255a565b91506136de82613679565b604082019050919050565b5f6020820190508181035f830152613700816136c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61373b60208361255a565b915061374682613707565b602082019050919050565b5f6020820190508181035f8301526137688161372f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6137a360198361255a565b91506137ae8261376f565b602082019050919050565b5f6020820190508181035f8301526137d081613797565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f61383160328361255a565b915061383c826137d7565b604082019050919050565b5f6020820190508181035f83015261385e81613825565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6138b682613892565b6138c0818561389c565b93506138d081856020860161256a565b6138d981612592565b840191505092915050565b5f6080820190506138f75f830187612688565b6139046020830186612688565b613911604083018561283f565b818103606083015261392381846138ac565b905095945050505050565b5f8151905061393c816124c8565b92915050565b5f6020828403121561395757613956612495565b5b5f6139648482850161392e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6139a160208361255a565b91506139ac8261396d565b602082019050919050565b5f6020820190508181035f8301526139ce81613995565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f613a09601c8361255a565b9150613a14826139d5565b602082019050919050565b5f6020820190508181035f830152613a36816139fd565b905091905056fea26469706673582212206c6d145851598405a9ef3c2859798b2e563c42270127a4520e6af8bf0d036aee64736f6c63430008180033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000bc4ca0eda7647a8ab7c2061c2e118a18a936f13d000000000000000000000000521f9c7505005cfa19a8e5786a9c3c9c9f5e6f420000000000000000000000009690b63eb85467be5267a3603f770589ab12dc95000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c544000000000000000000000000bd3531da5cf5857e7cfaa92426877b022e612cf80000000000000000000000005af0d9827e0c53e4799bb226655a1de152a425a500000000000000000000000085f740958906b317de6ed79663012859067e745b0000000000000000000000001cb1a5e65610aeff2551a50f76a87a7d3fb649c600000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f000000000000000000000000c3f733ca98e0dad0386979eb96fb1722a1a05e690000000000000000000000001a92f7381b9f03921564a437210bb9396471050c0000000000000000000000008d9710f0e193d3f95c0723eaaf1a81030dc9116d000000000000000000000000251b5f14a825c537ff788604ea1b58e49b70726f000000000000000000000000524cab2ec69124574082676e6f654a18df49a0480000000000000000000000008821bee2ba0df28761afff119d66390d594cd2800000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c60000000000000000000000008943c7bac1914c9a7aba750bf2b6b09fd21037e000000000000000000000000031385d3520bced94f77aae104b406994d8f2168c00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37000000000000000000000000b7f7f6c52f2e2fdb1963eab30438024864c313f6000000000000000000000000364c828ee171616a39897688a831c2499ad972ec0000000000000000000000009ada21a8bc6c33b49a089cfc1c24545d2a27cd81000000000000000000000000e90d8fb7b79c8930b5c8891e61c298b412a6e81a0000000000000000000000001d20a51f088492a0f1c57f047a9e30c9ab5c07ea000000000000000000000000eed41d06ae195ca8f5cacace4cd691ee75f0683f000000000000000000000000edc3ad89f7b0963fe23d714b34185713706b815b0000000000000000000000002acab3dea77832c09420663b0e1cb386031ba17b000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f656967656e6461726b2e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4554482f000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cc575f3560e01c80637b0f7b15116100f6578063b88d4fde11610094578063d547cfb711610063578063d547cfb71461062c578063e985e9c514610656578063f2fde38b14610692578063fab1cf23146106ba576101cc565b8063b88d4fde14610582578063c57981b5146105aa578063c87b56dd146105d4578063d100cec614610610576101cc565b80639551dd58116100d05780639551dd58146104ca57806395d89b41146104f4578063a22cb4651461051e578063a7cd52cb14610546576101cc565b80637b0f7b151461044e5780638d859f3e146104765780638da5cb5b146104a0576101cc565b806342842e0e1161016e57806370a082311161013d57806370a08231146103a8578063715018a6146103e4578063758b4e86146103fa578063771282f614610424576101cc565b806342842e0e146102f457806355f804b31461031c5780636352211e1461034457806369fe0e2d14610380576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806323b872dd1461029a5780633ccfd60b146102c257806340c10f19146102d8576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f191906124f2565b6106e2565b6040516102039190612537565b60405180910390f35b348015610217575f80fd5b506102206107c3565b60405161022d91906125da565b60405180910390f35b348015610241575f80fd5b5061025c6004803603810190610257919061262d565b610852565b6040516102699190612697565b60405180910390f35b34801561027d575f80fd5b50610298600480360381019061029391906126da565b610894565b005b3480156102a5575f80fd5b506102c060048036038101906102bb9190612718565b6109aa565b005b3480156102cd575f80fd5b506102d6610a0a565b005b6102f260048036038101906102ed91906126da565b610abd565b005b3480156102ff575f80fd5b5061031a60048036038101906103159190612718565b610df8565b005b348015610327575f80fd5b50610342600480360381019061033d91906127c9565b610e17565b005b34801561034f575f80fd5b5061036a6004803603810190610365919061262d565b610e35565b6040516103779190612697565b60405180910390f35b34801561038b575f80fd5b506103a660048036038101906103a1919061262d565b610eb9565b005b3480156103b3575f80fd5b506103ce60048036038101906103c99190612814565b610ecb565b6040516103db919061284e565b60405180910390f35b3480156103ef575f80fd5b506103f8610f7f565b005b348015610405575f80fd5b5061040e610f92565b60405161041b919061284e565b60405180910390f35b34801561042f575f80fd5b50610438610f98565b604051610445919061284e565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612891565b610f9e565b005b348015610481575f80fd5b5061048a610fc2565b604051610497919061284e565b60405180910390f35b3480156104ab575f80fd5b506104b4610fcd565b6040516104c19190612697565b60405180910390f35b3480156104d5575f80fd5b506104de610ff5565b6040516104eb9190612537565b60405180910390f35b3480156104ff575f80fd5b50610508611007565b60405161051591906125da565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f91906128bc565b611097565b005b348015610551575f80fd5b5061056c60048036038101906105679190612814565b6110ad565b6040516105799190612537565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190612a22565b6110ca565b005b3480156105b5575f80fd5b506105be61112c565b6040516105cb919061284e565b60405180910390f35b3480156105df575f80fd5b506105fa60048036038101906105f5919061262d565b611132565b60405161060791906125da565b60405180910390f35b61062a6004803603810190610625919061262d565b611197565b005b348015610637575f80fd5b5061064061133d565b60405161064d91906125da565b60405180910390f35b348015610661575f80fd5b5061067c60048036038101906106779190612aa2565b6113c9565b6040516106899190612537565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190612814565b611457565b005b3480156106c5575f80fd5b506106e060048036038101906106db91906128bc565b6114d9565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107bc57506107bb82611539565b5b9050919050565b60605f80546107d190612b0d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fd90612b0d565b80156108485780601f1061081f57610100808354040283529160200191610848565b820191905f5260205f20905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b5f61085c826115a2565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089e82610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590612bad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092d6115ed565b73ffffffffffffffffffffffffffffffffffffffff16148061095c575061095b816109566115ed565b6113c9565b5b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612c3b565b60405180910390fd5b6109a583836115f4565b505050565b6109bb6109b56115ed565b826116aa565b6109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612cc9565b60405180910390fd5b610a0583838361173e565b505050565b610a12611a2a565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610a3790612d14565b5f6040518083038185875af1925050503d805f8114610a71576040519150601f19603f3d011682016040523d82523d5f602084013e610a76565b606091505b5050905080610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190612d72565b60405180910390fd5b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612dda565b60405180910390fd5b60095f9054906101000a900460ff16610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612e42565b60405180910390fd5b8160075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90612eaa565b60405180910390fd5b662386f26fc100003414610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612f12565b60405180910390fd5b612710600a5410610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612f7a565b60405180910390fd5b5f8390503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610ce6919061284e565b602060405180830381865afa158015610d01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d259190612fac565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613021565b60405180910390fd5b610d8733600a54611aa8565b8373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff84600a54604051610dd192919061303f565b60405180910390a26001600a5f828254610deb9190613093565b9250508190555050505050565b610e1283838360405180602001604052805f8152506110ca565b505050565b610e1f611a2a565b818160089182610e3092919061326d565b505050565b5f80610e4083611ac5565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613384565b60405180910390fd5b80915050919050565b610ec1611a2a565b80600b8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613412565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f87611a2a565b610f905f611afe565b565b61271081565b600a5481565b610fa6611a2a565b8060095f6101000a81548160ff02191690831515021790555050565b662386f26fc1000081565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095f9054906101000a900460ff1681565b60606001805461101690612b0d565b80601f016020809104026020016040519081016040528092919081815260200182805461104290612b0d565b801561108d5780601f106110645761010080835404028352916020019161108d565b820191905f5260205f20905b81548152906001019060200180831161107057829003601f168201915b5050505050905090565b6110a96110a26115ed565b8383611bc1565b5050565b6007602052805f5260405f205f915054906101000a900460ff1681565b6110db6110d56115ed565b836116aa565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612cc9565b60405180910390fd5b61112684848484611d28565b50505050565b600b5481565b606061113d826115a2565b5f611146611d84565b90505f8151116111645760405180602001604052805f81525061118f565b8061116e84611e14565b60405160200161117f92919061346a565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612dda565b60405180910390fd5b60095f9054906101000a900460ff16611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612e42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661127382610e35565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c0906134d7565b60405180910390fd5b600b54341461130d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113049061353f565b60405180910390fd5b807f3e0a833640269c66b8aa71278d487d9144fb723ea7b28f6cd90845e3699d81fe60405160405180910390a250565b6008805461134a90612b0d565b80601f016020809104026020016040519081016040528092919081815260200182805461137690612b0d565b80156113c15780601f10611398576101008083540402835291602001916113c1565b820191905f5260205f20905b8154815290600101906020018083116113a457829003601f168201915b505050505081565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61145f611a2a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906135cd565b60405180910390fd5b6114d681611afe565b50565b6114e1611a2a565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115ab81611ede565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613384565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166483610e35565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f806116b583610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f757506116f681856113c9565b5b8061173557508373ffffffffffffffffffffffffffffffffffffffff1661171d84610852565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661175e82610e35565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061365b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906136e9565b60405180910390fd5b61182f8383836001611f1e565b8273ffffffffffffffffffffffffffffffffffffffff1661184f82610e35565b73ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c9061365b565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a258383836001611f24565b505050565b611a326115ed565b73ffffffffffffffffffffffffffffffffffffffff16611a50610fcd565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613751565b60405180910390fd5b565b611ac1828260405180602001604052805f815250611f2a565b5050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906137b9565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1b9190612537565b60405180910390a3505050565b611d3384848461173e565b611d3f84848484611f84565b611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613847565b60405180910390fd5b50505050565b606060088054611d9390612b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90612b0d565b8015611e0a5780601f10611de157610100808354040283529160200191611e0a565b820191905f5260205f20905b815481529060010190602001808311611ded57829003601f168201915b5050505050905090565b60605f6001611e2284612106565b0190505f8167ffffffffffffffff811115611e4057611e3f6128fe565b5b6040519080825280601f01601f191660200182016040528015611e725781602001600182028036833780820191505090505b5090505f82602001820190505b600115611ed3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec857611ec7613865565b5b0494505f8503611e7f575b819350505050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff16611eff83611ac5565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b611f348383612257565b611f405f848484611f84565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613847565b60405180910390fd5b505050565b5f611fa48473ffffffffffffffffffffffffffffffffffffffff1661246a565b156120f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fcd6115ed565b8786866040518563ffffffff1660e01b8152600401611fef94939291906138e4565b6020604051808303815f875af192505050801561202a57506040513d601f19601f820116820180604052508101906120279190613942565b60015b6120a9573d805f8114612058576040519150601f19603f3d011682016040523d82523d5f602084013e61205d565b606091505b505f8151036120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613847565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120fe565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612162577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161215857612157613865565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061219f576d04ee2d6d415b85acef8100000000838161219557612194613865565b5b0492506020810190505b662386f26fc1000083106121ce57662386f26fc1000083816121c4576121c3613865565b5b0492506010810190505b6305f5e10083106121f7576305f5e10083816121ed576121ec613865565b5b0492506008810190505b612710831061221c57612710838161221257612211613865565b5b0492506004810190505b6064831061223f576064838161223557612234613865565b5b0492506002810190505b600a831061224e576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906139b7565b60405180910390fd5b6122ce81611ede565b1561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613a1f565b60405180910390fd5b61231b5f83836001611f1e565b61232481611ede565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613a1f565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124665f83836001611f24565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124d18161249d565b81146124db575f80fd5b50565b5f813590506124ec816124c8565b92915050565b5f6020828403121561250757612506612495565b5b5f612514848285016124de565b91505092915050565b5f8115159050919050565b6125318161251d565b82525050565b5f60208201905061254a5f830184612528565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561258757808201518184015260208101905061256c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125ac82612550565b6125b6818561255a565b93506125c681856020860161256a565b6125cf81612592565b840191505092915050565b5f6020820190508181035f8301526125f281846125a2565b905092915050565b5f819050919050565b61260c816125fa565b8114612616575f80fd5b50565b5f8135905061262781612603565b92915050565b5f6020828403121561264257612641612495565b5b5f61264f84828501612619565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61268182612658565b9050919050565b61269181612677565b82525050565b5f6020820190506126aa5f830184612688565b92915050565b6126b981612677565b81146126c3575f80fd5b50565b5f813590506126d4816126b0565b92915050565b5f80604083850312156126f0576126ef612495565b5b5f6126fd858286016126c6565b925050602061270e85828601612619565b9150509250929050565b5f805f6060848603121561272f5761272e612495565b5b5f61273c868287016126c6565b935050602061274d868287016126c6565b925050604061275e86828701612619565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261278957612788612768565b5b8235905067ffffffffffffffff8111156127a6576127a561276c565b5b6020830191508360018202830111156127c2576127c1612770565b5b9250929050565b5f80602083850312156127df576127de612495565b5b5f83013567ffffffffffffffff8111156127fc576127fb612499565b5b61280885828601612774565b92509250509250929050565b5f6020828403121561282957612828612495565b5b5f612836848285016126c6565b91505092915050565b612848816125fa565b82525050565b5f6020820190506128615f83018461283f565b92915050565b6128708161251d565b811461287a575f80fd5b50565b5f8135905061288b81612867565b92915050565b5f602082840312156128a6576128a5612495565b5b5f6128b38482850161287d565b91505092915050565b5f80604083850312156128d2576128d1612495565b5b5f6128df858286016126c6565b92505060206128f08582860161287d565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61293482612592565b810181811067ffffffffffffffff82111715612953576129526128fe565b5b80604052505050565b5f61296561248c565b9050612971828261292b565b919050565b5f67ffffffffffffffff8211156129905761298f6128fe565b5b61299982612592565b9050602081019050919050565b828183375f83830152505050565b5f6129c66129c184612976565b61295c565b9050828152602081018484840111156129e2576129e16128fa565b5b6129ed8482856129a6565b509392505050565b5f82601f830112612a0957612a08612768565b5b8135612a198482602086016129b4565b91505092915050565b5f805f8060808587031215612a3a57612a39612495565b5b5f612a47878288016126c6565b9450506020612a58878288016126c6565b9350506040612a6987828801612619565b925050606085013567ffffffffffffffff811115612a8a57612a89612499565b5b612a96878288016129f5565b91505092959194509250565b5f8060408385031215612ab857612ab7612495565b5b5f612ac5858286016126c6565b9250506020612ad6858286016126c6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b2457607f821691505b602082108103612b3757612b36612ae0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b9760218361255a565b9150612ba282612b3d565b604082019050919050565b5f6020820190508181035f830152612bc481612b8b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f612c25603d8361255a565b9150612c3082612bcb565b604082019050919050565b5f6020820190508181035f830152612c5281612c19565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f612cb3602d8361255a565b9150612cbe82612c59565b604082019050919050565b5f6020820190508181035f830152612ce081612ca7565b9050919050565b5f81905092915050565b50565b5f612cff5f83612ce7565b9150612d0a82612cf1565b5f82019050919050565b5f612d1e82612cf4565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f612d5c60108361255a565b9150612d6782612d28565b602082019050919050565b5f6020820190508181035f830152612d8981612d50565b9050919050565b7f4241445f43414c4c0000000000000000000000000000000000000000000000005f82015250565b5f612dc460088361255a565b9150612dcf82612d90565b602082019050919050565b5f6020820190508181035f830152612df181612db8565b9050919050565b7f4c495354454e45525f494e4143544956450000000000000000000000000000005f82015250565b5f612e2c60118361255a565b9150612e3782612df8565b602082019050919050565b5f6020820190508181035f830152612e5981612e20565b9050919050565b7f4e4f545f414c00000000000000000000000000000000000000000000000000005f82015250565b5f612e9460068361255a565b9150612e9f82612e60565b602082019050919050565b5f6020820190508181035f830152612ec181612e88565b9050919050565b7f494e434f52524543545f56414c554500000000000000000000000000000000005f82015250565b5f612efc600f8361255a565b9150612f0782612ec8565b602082019050919050565b5f6020820190508181035f830152612f2981612ef0565b9050919050565b7f4d41585f535550504c595f5245414348454400000000000000000000000000005f82015250565b5f612f6460128361255a565b9150612f6f82612f30565b602082019050919050565b5f6020820190508181035f830152612f9181612f58565b9050919050565b5f81519050612fa6816126b0565b92915050565b5f60208284031215612fc157612fc0612495565b5b5f612fce84828501612f98565b91505092915050565b7f43414c4c45525f4e4f545f4f574e4552000000000000000000000000000000005f82015250565b5f61300b60108361255a565b915061301682612fd7565b602082019050919050565b5f6020820190508181035f83015261303881612fff565b9050919050565b5f6040820190506130525f83018561283f565b61305f602083018461283f565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61309d826125fa565b91506130a8836125fa565b92508282019050808211156130c0576130bf613066565b5b92915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261312c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130f1565b61313686836130f1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61317161316c613167846125fa565b61314e565b6125fa565b9050919050565b5f819050919050565b61318a83613157565b61319e61319682613178565b8484546130fd565b825550505050565b5f90565b6131b26131a6565b6131bd818484613181565b505050565b5b818110156131e0576131d55f826131aa565b6001810190506131c3565b5050565b601f821115613225576131f6816130d0565b6131ff846130e2565b8101602085101561320e578190505b61322261321a856130e2565b8301826131c2565b50505b505050565b5f82821c905092915050565b5f6132455f198460080261322a565b1980831691505092915050565b5f61325d8383613236565b9150826002028217905092915050565b61327783836130c6565b67ffffffffffffffff8111156132905761328f6128fe565b5b61329a8254612b0d565b6132a58282856131e4565b5f601f8311600181146132d2575f84156132c0578287013590505b6132ca8582613252565b865550613331565b601f1984166132e0866130d0565b5f5b82811015613307578489013582556001820191506020850194506020810190506132e2565b868310156133245784890135613320601f891682613236565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f61336e60188361255a565b91506133798261333a565b602082019050919050565b5f6020820190508181035f83015261339b81613362565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6133fc60298361255a565b9150613407826133a2565b604082019050919050565b5f6020820190508181035f830152613429816133f0565b9050919050565b5f81905092915050565b5f61344482612550565b61344e8185613430565b935061345e81856020860161256a565b80840191505092915050565b5f613475828561343a565b9150613481828461343a565b91508190509392505050565b7f4e4f545f544f4b454e5f4f574e455200000000000000000000000000000000005f82015250565b5f6134c1600f8361255a565b91506134cc8261348d565b602082019050919050565b5f6020820190508181035f8301526134ee816134b5565b9050919050565b7f494e434f52524543545f464545000000000000000000000000000000000000005f82015250565b5f613529600d8361255a565b9150613534826134f5565b602082019050919050565b5f6020820190508181035f8301526135568161351d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135b760268361255a565b91506135c28261355d565b604082019050919050565b5f6020820190508181035f8301526135e4816135ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f61364560258361255a565b9150613650826135eb565b604082019050919050565b5f6020820190508181035f83015261367281613639565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136d360248361255a565b91506136de82613679565b604082019050919050565b5f6020820190508181035f830152613700816136c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61373b60208361255a565b915061374682613707565b602082019050919050565b5f6020820190508181035f8301526137688161372f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f6137a360198361255a565b91506137ae8261376f565b602082019050919050565b5f6020820190508181035f8301526137d081613797565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f61383160328361255a565b915061383c826137d7565b604082019050919050565b5f6020820190508181035f83015261385e81613825565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6138b682613892565b6138c0818561389c565b93506138d081856020860161256a565b6138d981612592565b840191505092915050565b5f6080820190506138f75f830187612688565b6139046020830186612688565b613911604083018561283f565b818103606083015261392381846138ac565b905095945050505050565b5f8151905061393c816124c8565b92915050565b5f6020828403121561395757613956612495565b5b5f6139648482850161392e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6139a160208361255a565b91506139ac8261396d565b602082019050919050565b5f6020820190508181035f8301526139ce81613995565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f613a09601c8361255a565b9150613a14826139d5565b602082019050919050565b5f6020820190508181035f830152613a36816139fd565b905091905056fea26469706673582212206c6d145851598405a9ef3c2859798b2e563c42270127a4520e6af8bf0d036aee64736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000bc4ca0eda7647a8ab7c2061c2e118a18a936f13d000000000000000000000000521f9c7505005cfa19a8e5786a9c3c9c9f5e6f420000000000000000000000009690b63eb85467be5267a3603f770589ab12dc95000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c544000000000000000000000000bd3531da5cf5857e7cfaa92426877b022e612cf80000000000000000000000005af0d9827e0c53e4799bb226655a1de152a425a500000000000000000000000085f740958906b317de6ed79663012859067e745b0000000000000000000000001cb1a5e65610aeff2551a50f76a87a7d3fb649c600000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f000000000000000000000000c3f733ca98e0dad0386979eb96fb1722a1a05e690000000000000000000000001a92f7381b9f03921564a437210bb9396471050c0000000000000000000000008d9710f0e193d3f95c0723eaaf1a81030dc9116d000000000000000000000000251b5f14a825c537ff788604ea1b58e49b70726f000000000000000000000000524cab2ec69124574082676e6f654a18df49a0480000000000000000000000008821bee2ba0df28761afff119d66390d594cd2800000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c60000000000000000000000008943c7bac1914c9a7aba750bf2b6b09fd21037e000000000000000000000000031385d3520bced94f77aae104b406994d8f2168c00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37000000000000000000000000b7f7f6c52f2e2fdb1963eab30438024864c313f6000000000000000000000000364c828ee171616a39897688a831c2499ad972ec0000000000000000000000009ada21a8bc6c33b49a089cfc1c24545d2a27cd81000000000000000000000000e90d8fb7b79c8930b5c8891e61c298b412a6e81a0000000000000000000000001d20a51f088492a0f1c57f047a9e30c9ab5c07ea000000000000000000000000eed41d06ae195ca8f5cacace4cd691ee75f0683f000000000000000000000000edc3ad89f7b0963fe23d714b34185713706b815b0000000000000000000000002acab3dea77832c09420663b0e1cb386031ba17b000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f656967656e6461726b2e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4554482f000000000000000000000000

-----Decoded View---------------
Arg [0] : _allowlistAddresses (address[]): 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D,0x521f9C7505005CFA19A8E5786a9c3c9c9F5e6f42,0x9690b63Eb85467BE5267A3603f770589Ab12Dc95,0xED5AF388653567Af2F388E6224dC7C4b3241C544,0xBd3531dA5CF5857e7CfAA92426877b022e612cf8,0x5Af0D9827E0c53E4799BB226655A1de152A425a5,0x85f740958906b317de6ed79663012859067E745B,0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6,0x79FCDEF22feeD20eDDacbB2587640e45491b757f,0xc3f733ca98E0daD0386979Eb96fb1722A1A05E69,0x1A92f7381B9F03921564a437210bB9396471050C,0x8D9710f0e193d3f95c0723eAAF1A81030Dc9116D,0x251b5F14A825C537ff788604eA1b58e49b70726f,0x524cAB2ec69124574082676e6F654a18df49A048,0x8821BeE2ba0dF28761AffF119D66390D594CD280,0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e,0x60E4d786628Fea6478F785A6d7e704777c86a7c6,0x8943C7bAC1914C9A7ABa750Bf2B6B09Fd21037E0,0x31385d3520bCED94f77AaE104b406994D8F2168C,0x57a204AA1042f6E66DD7730813f4024114d74f37,0xb7F7F6C52F2e2fdb1963Eab30438024864c313F6,0x364C828eE171616a39897688A831c2499aD972ec,0x9ada21A8bc6c33B49a089CFC1c24545d2a27cD81,0xE90d8Fb7B79C8930B5C8891e61c298b412a6e81a,0x1D20A51F088492A0f1C57f047A9e30c9aB5C07Ea,0xEEd41d06AE195CA8f5CaCACE4cd691EE75F0683f,0xEDc3AD89f7b0963fe23D714B34185713706B815b,0x2acAb3DEa77832C09420663b0E1cB386031bA17B
Arg [1] : _baseTokenURI (string): https://eigendark.s3.eu-central-1.amazonaws.com/ETH/

-----Encoded View---------------
34 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [3] : 000000000000000000000000bc4ca0eda7647a8ab7c2061c2e118a18a936f13d
Arg [4] : 000000000000000000000000521f9c7505005cfa19a8e5786a9c3c9c9f5e6f42
Arg [5] : 0000000000000000000000009690b63eb85467be5267a3603f770589ab12dc95
Arg [6] : 000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c544
Arg [7] : 000000000000000000000000bd3531da5cf5857e7cfaa92426877b022e612cf8
Arg [8] : 0000000000000000000000005af0d9827e0c53e4799bb226655a1de152a425a5
Arg [9] : 00000000000000000000000085f740958906b317de6ed79663012859067e745b
Arg [10] : 0000000000000000000000001cb1a5e65610aeff2551a50f76a87a7d3fb649c6
Arg [11] : 00000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f
Arg [12] : 000000000000000000000000c3f733ca98e0dad0386979eb96fb1722a1a05e69
Arg [13] : 0000000000000000000000001a92f7381b9f03921564a437210bb9396471050c
Arg [14] : 0000000000000000000000008d9710f0e193d3f95c0723eaaf1a81030dc9116d
Arg [15] : 000000000000000000000000251b5f14a825c537ff788604ea1b58e49b70726f
Arg [16] : 000000000000000000000000524cab2ec69124574082676e6f654a18df49a048
Arg [17] : 0000000000000000000000008821bee2ba0df28761afff119d66390d594cd280
Arg [18] : 0000000000000000000000008a90cab2b38dba80c64b7734e58ee1db38b8992e
Arg [19] : 00000000000000000000000060e4d786628fea6478f785a6d7e704777c86a7c6
Arg [20] : 0000000000000000000000008943c7bac1914c9a7aba750bf2b6b09fd21037e0
Arg [21] : 00000000000000000000000031385d3520bced94f77aae104b406994d8f2168c
Arg [22] : 00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37
Arg [23] : 000000000000000000000000b7f7f6c52f2e2fdb1963eab30438024864c313f6
Arg [24] : 000000000000000000000000364c828ee171616a39897688a831c2499ad972ec
Arg [25] : 0000000000000000000000009ada21a8bc6c33b49a089cfc1c24545d2a27cd81
Arg [26] : 000000000000000000000000e90d8fb7b79c8930b5c8891e61c298b412a6e81a
Arg [27] : 0000000000000000000000001d20a51f088492a0f1c57f047a9e30c9ab5c07ea
Arg [28] : 000000000000000000000000eed41d06ae195ca8f5cacace4cd691ee75f0683f
Arg [29] : 000000000000000000000000edc3ad89f7b0963fe23d714b34185713706b815b
Arg [30] : 0000000000000000000000002acab3dea77832c09420663b0e1cb386031ba17b
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [32] : 68747470733a2f2f656967656e6461726b2e73332e65752d63656e7472616c2d
Arg [33] : 312e616d617a6f6e6177732e636f6d2f4554482f000000000000000000000000


Deployed Bytecode Sourcemap

56727:2811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40753:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43193:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42711:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43893:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58683:165;;;;;;;;;;;;;:::i;:::-;;57684:572;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44265:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58570:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41391:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59093:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41122:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20091:103;;;;;;;;;;;;;:::i;:::-;;57546:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57511:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58994:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57594:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57484:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41850:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43436:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57403:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44487:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57643:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42025:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58264:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57451:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43662:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58856:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40753:305;40855:4;40907:25;40892:40;;;:11;:40;;;;:105;;;;40964:33;40949:48;;;:11;:48;;;;40892:105;:158;;;;41014:36;41038:11;41014:23;:36::i;:::-;40892:158;40872:178;;40753:305;;;:::o;41681:100::-;41735:13;41768:5;41761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41681:100;:::o;43193:171::-;43269:7;43289:23;43304:7;43289:14;:23::i;:::-;43332:15;:24;43348:7;43332:24;;;;;;;;;;;;;;;;;;;;;43325:31;;43193:171;;;:::o;42711:416::-;42792:13;42808:23;42823:7;42808:14;:23::i;:::-;42792:39;;42856:5;42850:11;;:2;:11;;;42842:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42950:5;42934:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42959:37;42976:5;42983:12;:10;:12::i;:::-;42959:16;:37::i;:::-;42934:62;42912:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43098:21;43107:2;43111:7;43098:8;:21::i;:::-;42781:346;42711:416;;:::o;43893:301::-;44054:41;44073:12;:10;:12::i;:::-;44087:7;44054:18;:41::i;:::-;44046:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44158:28;44168:4;44174:2;44178:7;44158:9;:28::i;:::-;43893:301;;;:::o;58683:165::-;19336:13;:11;:13::i;:::-;58730:12:::1;58748:10;:15;;58771:21;58748:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58729:68;;;58812:7;58804:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58722:126;58683:165::o:0;57684:572::-;57352:10;57339:23;;:9;:23;;;57331:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;57240:8:::1;;;;;;;;;;;57232:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57810:20:::2;57134:9;:20;57144:9;57134:20;;;;;;;;;;;;;;;;;;;;;;;;;57126:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;57626:10:::3;57851:9;:18;57843:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57582:5;57908:13;;:25;57900:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57967:21;57999:20;57967:53;;58073:10;58039:44;;:13;:21;;;58061:7;58039:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;;58031:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58115:36;58125:10;58137:13;;58115:9;:36::i;:::-;58174:20;58167:52;;;58196:7;58205:13;;58167:52;;;;;;;:::i;:::-;;;;;;;;58247:1;58230:13;;:18;;;;;;;:::i;:::-;;;;;;;;57832:424;57281:1:::2;57684:572:::0;;:::o;44265:151::-;44369:39;44386:4;44392:2;44396:7;44369:39;;;;;;;;;;;;:16;:39::i;:::-;44265:151;;;:::o;58570:105::-;19336:13;:11;:13::i;:::-;58660:7:::1;;58645:12;:22;;;;;;;:::i;:::-;;58570:105:::0;;:::o;41391:223::-;41463:7;41483:13;41499:17;41508:7;41499:8;:17::i;:::-;41483:33;;41552:1;41535:19;;:5;:19;;;41527:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41601:5;41594:12;;;41391:223;;;:::o;59093:82::-;19336:13;:11;:13::i;:::-;59161:6:::1;59155:3;:12;;;;59093:82:::0;:::o;41122:207::-;41194:7;41239:1;41222:19;;:5;:19;;;41214:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41305:9;:16;41315:5;41305:16;;;;;;;;;;;;;;;;41298:23;;41122:207;;;:::o;20091:103::-;19336:13;:11;:13::i;:::-;20156:30:::1;20183:1;20156:18;:30::i;:::-;20091:103::o:0;57546:41::-;57582:5;57546:41;:::o;57511:28::-;;;;:::o;58994:91::-;19336:13;:11;:13::i;:::-;59070:7:::1;59059:8;;:18;;;;;;;;;;;;;;;;;;58994:91:::0;:::o;57594:42::-;57626:10;57594:42;:::o;19450:87::-;19496:7;19523:6;;;;;;;;;;;19516:13;;19450:87;:::o;57484:20::-;;;;;;;;;;;;;:::o;41850:104::-;41906:13;41939:7;41932:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41850:104;:::o;43436:155::-;43531:52;43550:12;:10;:12::i;:::-;43564:8;43574;43531:18;:52::i;:::-;43436:155;;:::o;57403:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;44487:279::-;44618:41;44637:12;:10;:12::i;:::-;44651:7;44618:18;:41::i;:::-;44610:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44720:38;44734:4;44740:2;44744:7;44753:4;44720:13;:38::i;:::-;44487:279;;;;:::o;57643:32::-;;;;:::o;42025:281::-;42098:13;42124:23;42139:7;42124:14;:23::i;:::-;42160:21;42184:10;:8;:10::i;:::-;42160:34;;42236:1;42218:7;42212:21;:25;:86;;;;;;;;;;;;;;;;;42264:7;42273:18;:7;:16;:18::i;:::-;42247:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42212:86;42205:93;;;42025:281;;;:::o;58264:254::-;57352:10;57339:23;;:9;:23;;;57331:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;57240:8:::1;;;;;;;;;;;57232:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;58386:10:::2;58366:30;;:16;58374:7;58366;:16::i;:::-;:30;;;58358:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58448:3;;58435:9;:16;58427:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;58502:7;58485:25;;;;;;;;;;58264:254:::0;:::o;57451:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43662:164::-;43759:4;43783:18;:25;43802:5;43783:25;;;;;;;;;;;;;;;:35;43809:8;43783:35;;;;;;;;;;;;;;;;;;;;;;;;;43776:42;;43662:164;;;;:::o;20349:201::-;19336:13;:11;:13::i;:::-;20458:1:::1;20438:22;;:8;:22;;::::0;20430:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20514:28;20533:8;20514:18;:28::i;:::-;20349:201:::0;:::o;58856:130::-;19336:13;:11;:13::i;:::-;58969:9:::1;58946;:20;58956:9;58946:20;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;58856:130:::0;;:::o;33377:157::-;33462:4;33501:25;33486:40;;;:11;:40;;;;33479:47;;33377:157;;;:::o;52756:135::-;52838:16;52846:7;52838;:16::i;:::-;52830:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52756:135;:::o;18001:98::-;18054:7;18081:10;18074:17;;18001:98;:::o;52069:174::-;52171:2;52144:15;:24;52160:7;52144:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52227:7;52223:2;52189:46;;52198:23;52213:7;52198:14;:23::i;:::-;52189:46;;;;;;;;;;;;52069:174;;:::o;46756:264::-;46849:4;46866:13;46882:23;46897:7;46882:14;:23::i;:::-;46866:39;;46935:5;46924:16;;:7;:16;;;:52;;;;46944:32;46961:5;46968:7;46944:16;:32::i;:::-;46924:52;:87;;;;47004:7;46980:31;;:20;46992:7;46980:11;:20::i;:::-;:31;;;46924:87;46916:96;;;46756:264;;;;:::o;50721:1229::-;50846:4;50819:31;;:23;50834:7;50819:14;:23::i;:::-;:31;;;50811:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50925:1;50911:16;;:2;:16;;;50903:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50981:42;51002:4;51008:2;51012:7;51021:1;50981:20;:42::i;:::-;51153:4;51126:31;;:23;51141:7;51126:14;:23::i;:::-;:31;;;51118:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51271:15;:24;51287:7;51271:24;;;;;;;;;;;;51264:31;;;;;;;;;;;51766:1;51747:9;:15;51757:4;51747:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51799:1;51782:9;:13;51792:2;51782:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51841:2;51822:7;:16;51830:7;51822:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51880:7;51876:2;51861:27;;51870:4;51861:27;;;;;;;;;;;;51901:41;51921:4;51927:2;51931:7;51940:1;51901:19;:41::i;:::-;50721:1229;;;:::o;19615:132::-;19690:12;:10;:12::i;:::-;19679:23;;:7;:5;:7::i;:::-;:23;;;19671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19615:132::o;47362:110::-;47438:26;47448:2;47452:7;47438:26;;;;;;;;;;;;:9;:26::i;:::-;47362:110;;:::o;46031:117::-;46097:7;46124;:16;46132:7;46124:16;;;;;;;;;;;;;;;;;;;;;46117:23;;46031:117;;;:::o;20710:191::-;20784:16;20803:6;;;;;;;;;;;20784:25;;20829:8;20820:6;;:17;;;;;;;;;;;;;;;;;;20884:8;20853:40;;20874:8;20853:40;;;;;;;;;;;;20773:128;20710:191;:::o;52386:281::-;52507:8;52498:17;;:5;:17;;;52490:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52594:8;52556:18;:25;52575:5;52556:25;;;;;;;;;;;;;;;:35;52582:8;52556:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52640:8;52618:41;;52633:5;52618:41;;;52650:8;52618:41;;;;;;:::i;:::-;;;;;;;;52386:281;;;:::o;45647:270::-;45760:28;45770:4;45776:2;45780:7;45760:9;:28::i;:::-;45807:47;45830:4;45836:2;45840:7;45849:4;45807:22;:47::i;:::-;45799:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45647:270;;;;:::o;59226:113::-;59286:13;59319:12;59312:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59226:113;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;46461:128::-;46526:4;46579:1;46550:31;;:17;46559:7;46550:8;:17::i;:::-;:31;;;;46543:38;;46461:128;;;:::o;55040:116::-;;;;;:::o;55878:115::-;;;;;:::o;47699:285::-;47794:18;47800:2;47804:7;47794:5;:18::i;:::-;47845:53;47876:1;47880:2;47884:7;47893:4;47845:22;:53::i;:::-;47823:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47699:285;;;:::o;53455:853::-;53609:4;53630:15;:2;:13;;;:15::i;:::-;53626:675;;;53682:2;53666:36;;;53703:12;:10;:12::i;:::-;53717:4;53723:7;53732:4;53666:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53662:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53924:1;53907:6;:13;:18;53903:328;;53950:60;;;;;;;;;;:::i;:::-;;;;;;;;53903:328;54181:6;54175:13;54166:6;54162:2;54158:15;54151:38;53662:584;53798:41;;;53788:51;;;:6;:51;;;;53781:58;;;;;53626:675;54285:4;54278:11;;53455:853;;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;48320:942::-;48414:1;48400:16;;:2;:16;;;48392:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48473:16;48481:7;48473;:16::i;:::-;48472:17;48464:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48535:48;48564:1;48568:2;48572:7;48581:1;48535:20;:48::i;:::-;48682:16;48690:7;48682;:16::i;:::-;48681:17;48673:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49097:1;49080:9;:13;49090:2;49080:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49141:2;49122:7;:16;49130:7;49122:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49186:7;49182:2;49161:33;;49178:1;49161:33;;;;;;;;;;;;49207:47;49235:1;49239:2;49243:7;49252:1;49207:19;:47::i;:::-;48320:942;;:::o;22382:326::-;22442:4;22699:1;22677:7;:19;;;:23;22670:30;;22382:326;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:117::-;5624:1;5621;5614:12;5638:117;5747:1;5744;5737:12;5761:117;5870:1;5867;5860:12;5898:553;5956:8;5966:6;6016:3;6009:4;6001:6;5997:17;5993:27;5983:122;;6024:79;;:::i;:::-;5983:122;6137:6;6124:20;6114:30;;6167:18;6159:6;6156:30;6153:117;;;6189:79;;:::i;:::-;6153:117;6303:4;6295:6;6291:17;6279:29;;6357:3;6349:4;6341:6;6337:17;6327:8;6323:32;6320:41;6317:128;;;6364:79;;:::i;:::-;6317:128;5898:553;;;;;:::o;6457:529::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6739:1;6728:9;6724:17;6711:31;6769:18;6761:6;6758:30;6755:117;;;6791:79;;:::i;:::-;6755:117;6904:65;6961:7;6952:6;6941:9;6937:22;6904:65;:::i;:::-;6886:83;;;;6682:297;6457:529;;;;;:::o;6992:329::-;7051:6;7100:2;7088:9;7079:7;7075:23;7071:32;7068:119;;;7106:79;;:::i;:::-;7068:119;7226:1;7251:53;7296:7;7287:6;7276:9;7272:22;7251:53;:::i;:::-;7241:63;;7197:117;6992:329;;;;:::o;7327:118::-;7414:24;7432:5;7414:24;:::i;:::-;7409:3;7402:37;7327:118;;:::o;7451:222::-;7544:4;7582:2;7571:9;7567:18;7559:26;;7595:71;7663:1;7652:9;7648:17;7639:6;7595:71;:::i;:::-;7451:222;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:323::-;7996:6;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:50;8238:7;8229:6;8218:9;8214:22;8196:50;:::i;:::-;8186:60;;8142:114;7940:323;;;;:::o;8269:468::-;8334:6;8342;8391:2;8379:9;8370:7;8366:23;8362:32;8359:119;;;8397:79;;:::i;:::-;8359:119;8517:1;8542:53;8587:7;8578:6;8567:9;8563:22;8542:53;:::i;:::-;8532:63;;8488:117;8644:2;8670:50;8712:7;8703:6;8692:9;8688:22;8670:50;:::i;:::-;8660:60;;8615:115;8269:468;;;;;:::o;8743:117::-;8852:1;8849;8842:12;8866:180;8914:77;8911:1;8904:88;9011:4;9008:1;9001:15;9035:4;9032:1;9025:15;9052:281;9135:27;9157:4;9135:27;:::i;:::-;9127:6;9123:40;9265:6;9253:10;9250:22;9229:18;9217:10;9214:34;9211:62;9208:88;;;9276:18;;:::i;:::-;9208:88;9316:10;9312:2;9305:22;9095:238;9052:281;;:::o;9339:129::-;9373:6;9400:20;;:::i;:::-;9390:30;;9429:33;9457:4;9449:6;9429:33;:::i;:::-;9339:129;;;:::o;9474:307::-;9535:4;9625:18;9617:6;9614:30;9611:56;;;9647:18;;:::i;:::-;9611:56;9685:29;9707:6;9685:29;:::i;:::-;9677:37;;9769:4;9763;9759:15;9751:23;;9474:307;;;:::o;9787:146::-;9884:6;9879:3;9874;9861:30;9925:1;9916:6;9911:3;9907:16;9900:27;9787:146;;;:::o;9939:423::-;10016:5;10041:65;10057:48;10098:6;10057:48;:::i;:::-;10041:65;:::i;:::-;10032:74;;10129:6;10122:5;10115:21;10167:4;10160:5;10156:16;10205:3;10196:6;10191:3;10187:16;10184:25;10181:112;;;10212:79;;:::i;:::-;10181:112;10302:54;10349:6;10344:3;10339;10302:54;:::i;:::-;10022:340;9939:423;;;;;:::o;10381:338::-;10436:5;10485:3;10478:4;10470:6;10466:17;10462:27;10452:122;;10493:79;;:::i;:::-;10452:122;10610:6;10597:20;10635:78;10709:3;10701:6;10694:4;10686:6;10682:17;10635:78;:::i;:::-;10626:87;;10442:277;10381:338;;;;:::o;10725:943::-;10820:6;10828;10836;10844;10893:3;10881:9;10872:7;10868:23;10864:33;10861:120;;;10900:79;;:::i;:::-;10861:120;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:53;11218:7;11209:6;11198:9;11194:22;11173:53;:::i;:::-;11163:63;;11118:118;11275:2;11301:53;11346:7;11337:6;11326:9;11322:22;11301:53;:::i;:::-;11291:63;;11246:118;11431:2;11420:9;11416:18;11403:32;11462:18;11454:6;11451:30;11448:117;;;11484:79;;:::i;:::-;11448:117;11589:62;11643:7;11634:6;11623:9;11619:22;11589:62;:::i;:::-;11579:72;;11374:287;10725:943;;;;;;;:::o;11674:474::-;11742:6;11750;11799:2;11787:9;11778:7;11774:23;11770:32;11767:119;;;11805:79;;:::i;:::-;11767:119;11925:1;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11896:117;12052:2;12078:53;12123:7;12114:6;12103:9;12099:22;12078:53;:::i;:::-;12068:63;;12023:118;11674:474;;;;;:::o;12154:180::-;12202:77;12199:1;12192:88;12299:4;12296:1;12289:15;12323:4;12320:1;12313:15;12340:320;12384:6;12421:1;12415:4;12411:12;12401:22;;12468:1;12462:4;12458:12;12489:18;12479:81;;12545:4;12537:6;12533:17;12523:27;;12479:81;12607:2;12599:6;12596:14;12576:18;12573:38;12570:84;;12626:18;;:::i;:::-;12570:84;12391:269;12340:320;;;:::o;12666:220::-;12806:34;12802:1;12794:6;12790:14;12783:58;12875:3;12870:2;12862:6;12858:15;12851:28;12666:220;:::o;12892:366::-;13034:3;13055:67;13119:2;13114:3;13055:67;:::i;:::-;13048:74;;13131:93;13220:3;13131:93;:::i;:::-;13249:2;13244:3;13240:12;13233:19;;12892:366;;;:::o;13264:419::-;13430:4;13468:2;13457:9;13453:18;13445:26;;13517:9;13511:4;13507:20;13503:1;13492:9;13488:17;13481:47;13545:131;13671:4;13545:131;:::i;:::-;13537:139;;13264:419;;;:::o;13689:248::-;13829:34;13825:1;13817:6;13813:14;13806:58;13898:31;13893:2;13885:6;13881:15;13874:56;13689:248;:::o;13943:366::-;14085:3;14106:67;14170:2;14165:3;14106:67;:::i;:::-;14099:74;;14182:93;14271:3;14182:93;:::i;:::-;14300:2;14295:3;14291:12;14284:19;;13943:366;;;:::o;14315:419::-;14481:4;14519:2;14508:9;14504:18;14496:26;;14568:9;14562:4;14558:20;14554:1;14543:9;14539:17;14532:47;14596:131;14722:4;14596:131;:::i;:::-;14588:139;;14315:419;;;:::o;14740:232::-;14880:34;14876:1;14868:6;14864:14;14857:58;14949:15;14944:2;14936:6;14932:15;14925:40;14740:232;:::o;14978:366::-;15120:3;15141:67;15205:2;15200:3;15141:67;:::i;:::-;15134:74;;15217:93;15306:3;15217:93;:::i;:::-;15335:2;15330:3;15326:12;15319:19;;14978:366;;;:::o;15350:419::-;15516:4;15554:2;15543:9;15539:18;15531:26;;15603:9;15597:4;15593:20;15589:1;15578:9;15574:17;15567:47;15631:131;15757:4;15631:131;:::i;:::-;15623:139;;15350:419;;;:::o;15775:147::-;15876:11;15913:3;15898:18;;15775:147;;;;:::o;15928:114::-;;:::o;16048:398::-;16207:3;16228:83;16309:1;16304:3;16228:83;:::i;:::-;16221:90;;16320:93;16409:3;16320:93;:::i;:::-;16438:1;16433:3;16429:11;16422:18;;16048:398;;;:::o;16452:379::-;16636:3;16658:147;16801:3;16658:147;:::i;:::-;16651:154;;16822:3;16815:10;;16452:379;;;:::o;16837:166::-;16977:18;16973:1;16965:6;16961:14;16954:42;16837:166;:::o;17009:366::-;17151:3;17172:67;17236:2;17231:3;17172:67;:::i;:::-;17165:74;;17248:93;17337:3;17248:93;:::i;:::-;17366:2;17361:3;17357:12;17350:19;;17009:366;;;:::o;17381:419::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:131;17788:4;17662:131;:::i;:::-;17654:139;;17381:419;;;:::o;17806:158::-;17946:10;17942:1;17934:6;17930:14;17923:34;17806:158;:::o;17970:365::-;18112:3;18133:66;18197:1;18192:3;18133:66;:::i;:::-;18126:73;;18208:93;18297:3;18208:93;:::i;:::-;18326:2;18321:3;18317:12;18310:19;;17970:365;;;:::o;18341:419::-;18507:4;18545:2;18534:9;18530:18;18522:26;;18594:9;18588:4;18584:20;18580:1;18569:9;18565:17;18558:47;18622:131;18748:4;18622:131;:::i;:::-;18614:139;;18341:419;;;:::o;18766:167::-;18906:19;18902:1;18894:6;18890:14;18883:43;18766:167;:::o;18939:366::-;19081:3;19102:67;19166:2;19161:3;19102:67;:::i;:::-;19095:74;;19178:93;19267:3;19178:93;:::i;:::-;19296:2;19291:3;19287:12;19280:19;;18939:366;;;:::o;19311:419::-;19477:4;19515:2;19504:9;19500:18;19492:26;;19564:9;19558:4;19554:20;19550:1;19539:9;19535:17;19528:47;19592:131;19718:4;19592:131;:::i;:::-;19584:139;;19311:419;;;:::o;19736:156::-;19876:8;19872:1;19864:6;19860:14;19853:32;19736:156;:::o;19898:365::-;20040:3;20061:66;20125:1;20120:3;20061:66;:::i;:::-;20054:73;;20136:93;20225:3;20136:93;:::i;:::-;20254:2;20249:3;20245:12;20238:19;;19898:365;;;:::o;20269:419::-;20435:4;20473:2;20462:9;20458:18;20450:26;;20522:9;20516:4;20512:20;20508:1;20497:9;20493:17;20486:47;20550:131;20676:4;20550:131;:::i;:::-;20542:139;;20269:419;;;:::o;20694:165::-;20834:17;20830:1;20822:6;20818:14;20811:41;20694:165;:::o;20865:366::-;21007:3;21028:67;21092:2;21087:3;21028:67;:::i;:::-;21021:74;;21104:93;21193:3;21104:93;:::i;:::-;21222:2;21217:3;21213:12;21206:19;;20865:366;;;:::o;21237:419::-;21403:4;21441:2;21430:9;21426:18;21418:26;;21490:9;21484:4;21480:20;21476:1;21465:9;21461:17;21454:47;21518:131;21644:4;21518:131;:::i;:::-;21510:139;;21237:419;;;:::o;21662:168::-;21802:20;21798:1;21790:6;21786:14;21779:44;21662:168;:::o;21836:366::-;21978:3;21999:67;22063:2;22058:3;21999:67;:::i;:::-;21992:74;;22075:93;22164:3;22075:93;:::i;:::-;22193:2;22188:3;22184:12;22177:19;;21836:366;;;:::o;22208:419::-;22374:4;22412:2;22401:9;22397:18;22389:26;;22461:9;22455:4;22451:20;22447:1;22436:9;22432:17;22425:47;22489:131;22615:4;22489:131;:::i;:::-;22481:139;;22208:419;;;:::o;22633:143::-;22690:5;22721:6;22715:13;22706:22;;22737:33;22764:5;22737:33;:::i;:::-;22633:143;;;;:::o;22782:351::-;22852:6;22901:2;22889:9;22880:7;22876:23;22872:32;22869:119;;;22907:79;;:::i;:::-;22869:119;23027:1;23052:64;23108:7;23099:6;23088:9;23084:22;23052:64;:::i;:::-;23042:74;;22998:128;22782:351;;;;:::o;23139:166::-;23279:18;23275:1;23267:6;23263:14;23256:42;23139:166;:::o;23311:366::-;23453:3;23474:67;23538:2;23533:3;23474:67;:::i;:::-;23467:74;;23550:93;23639:3;23550:93;:::i;:::-;23668:2;23663:3;23659:12;23652:19;;23311:366;;;:::o;23683:419::-;23849:4;23887:2;23876:9;23872:18;23864:26;;23936:9;23930:4;23926:20;23922:1;23911:9;23907:17;23900:47;23964:131;24090:4;23964:131;:::i;:::-;23956:139;;23683:419;;;:::o;24108:332::-;24229:4;24267:2;24256:9;24252:18;24244:26;;24280:71;24348:1;24337:9;24333:17;24324:6;24280:71;:::i;:::-;24361:72;24429:2;24418:9;24414:18;24405:6;24361:72;:::i;:::-;24108:332;;;;;:::o;24446:180::-;24494:77;24491:1;24484:88;24591:4;24588:1;24581:15;24615:4;24612:1;24605:15;24632:191;24672:3;24691:20;24709:1;24691:20;:::i;:::-;24686:25;;24725:20;24743:1;24725:20;:::i;:::-;24720:25;;24768:1;24765;24761:9;24754:16;;24789:3;24786:1;24783:10;24780:36;;;24796:18;;:::i;:::-;24780:36;24632:191;;;;:::o;24829:97::-;24888:6;24916:3;24906:13;;24829:97;;;;:::o;24932:141::-;24981:4;25004:3;24996:11;;25027:3;25024:1;25017:14;25061:4;25058:1;25048:18;25040:26;;24932:141;;;:::o;25079:93::-;25116:6;25163:2;25158;25151:5;25147:14;25143:23;25133:33;;25079:93;;;:::o;25178:107::-;25222:8;25272:5;25266:4;25262:16;25241:37;;25178:107;;;;:::o;25291:393::-;25360:6;25410:1;25398:10;25394:18;25433:97;25463:66;25452:9;25433:97;:::i;:::-;25551:39;25581:8;25570:9;25551:39;:::i;:::-;25539:51;;25623:4;25619:9;25612:5;25608:21;25599:30;;25672:4;25662:8;25658:19;25651:5;25648:30;25638:40;;25367:317;;25291:393;;;;;:::o;25690:60::-;25718:3;25739:5;25732:12;;25690:60;;;:::o;25756:142::-;25806:9;25839:53;25857:34;25866:24;25884:5;25866:24;:::i;:::-;25857:34;:::i;:::-;25839:53;:::i;:::-;25826:66;;25756:142;;;:::o;25904:75::-;25947:3;25968:5;25961:12;;25904:75;;;:::o;25985:269::-;26095:39;26126:7;26095:39;:::i;:::-;26156:91;26205:41;26229:16;26205:41;:::i;:::-;26197:6;26190:4;26184:11;26156:91;:::i;:::-;26150:4;26143:105;26061:193;25985:269;;;:::o;26260:73::-;26305:3;26260:73;:::o;26339:189::-;26416:32;;:::i;:::-;26457:65;26515:6;26507;26501:4;26457:65;:::i;:::-;26392:136;26339:189;;:::o;26534:186::-;26594:120;26611:3;26604:5;26601:14;26594:120;;;26665:39;26702:1;26695:5;26665:39;:::i;:::-;26638:1;26631:5;26627:13;26618:22;;26594:120;;;26534:186;;:::o;26726:543::-;26827:2;26822:3;26819:11;26816:446;;;26861:38;26893:5;26861:38;:::i;:::-;26945:29;26963:10;26945:29;:::i;:::-;26935:8;26931:44;27128:2;27116:10;27113:18;27110:49;;;27149:8;27134:23;;27110:49;27172:80;27228:22;27246:3;27228:22;:::i;:::-;27218:8;27214:37;27201:11;27172:80;:::i;:::-;26831:431;;26816:446;26726:543;;;:::o;27275:117::-;27329:8;27379:5;27373:4;27369:16;27348:37;;27275:117;;;;:::o;27398:169::-;27442:6;27475:51;27523:1;27519:6;27511:5;27508:1;27504:13;27475:51;:::i;:::-;27471:56;27556:4;27550;27546:15;27536:25;;27449:118;27398:169;;;;:::o;27572:295::-;27648:4;27794:29;27819:3;27813:4;27794:29;:::i;:::-;27786:37;;27856:3;27853:1;27849:11;27843:4;27840:21;27832:29;;27572:295;;;;:::o;27872:1403::-;27996:44;28036:3;28031;27996:44;:::i;:::-;28105:18;28097:6;28094:30;28091:56;;;28127:18;;:::i;:::-;28091:56;28171:38;28203:4;28197:11;28171:38;:::i;:::-;28256:67;28316:6;28308;28302:4;28256:67;:::i;:::-;28350:1;28379:2;28371:6;28368:14;28396:1;28391:632;;;;29067:1;29084:6;29081:84;;;29140:9;29135:3;29131:19;29118:33;29109:42;;29081:84;29191:67;29251:6;29244:5;29191:67;:::i;:::-;29185:4;29178:81;29040:229;28361:908;;28391:632;28443:4;28439:9;28431:6;28427:22;28477:37;28509:4;28477:37;:::i;:::-;28536:1;28550:215;28564:7;28561:1;28558:14;28550:215;;;28650:9;28645:3;28641:19;28628:33;28620:6;28613:49;28701:1;28693:6;28689:14;28679:24;;28748:2;28737:9;28733:18;28720:31;;28587:4;28584:1;28580:12;28575:17;;28550:215;;;28793:6;28784:7;28781:19;28778:186;;;28858:9;28853:3;28849:19;28836:33;28901:48;28943:4;28935:6;28931:17;28920:9;28901:48;:::i;:::-;28893:6;28886:64;28801:163;28778:186;29010:1;29006;28998:6;28994:14;28990:22;28984:4;28977:36;28398:625;;;28361:908;;27971:1304;;;27872:1403;;;:::o;29281:174::-;29421:26;29417:1;29409:6;29405:14;29398:50;29281:174;:::o;29461:366::-;29603:3;29624:67;29688:2;29683:3;29624:67;:::i;:::-;29617:74;;29700:93;29789:3;29700:93;:::i;:::-;29818:2;29813:3;29809:12;29802:19;;29461:366;;;:::o;29833:419::-;29999:4;30037:2;30026:9;30022:18;30014:26;;30086:9;30080:4;30076:20;30072:1;30061:9;30057:17;30050:47;30114:131;30240:4;30114:131;:::i;:::-;30106:139;;29833:419;;;:::o;30258:228::-;30398:34;30394:1;30386:6;30382:14;30375:58;30467:11;30462:2;30454:6;30450:15;30443:36;30258:228;:::o;30492:366::-;30634:3;30655:67;30719:2;30714:3;30655:67;:::i;:::-;30648:74;;30731:93;30820:3;30731:93;:::i;:::-;30849:2;30844:3;30840:12;30833:19;;30492:366;;;:::o;30864:419::-;31030:4;31068:2;31057:9;31053:18;31045:26;;31117:9;31111:4;31107:20;31103:1;31092:9;31088:17;31081:47;31145:131;31271:4;31145:131;:::i;:::-;31137:139;;30864:419;;;:::o;31289:148::-;31391:11;31428:3;31413:18;;31289:148;;;;:::o;31443:390::-;31549:3;31577:39;31610:5;31577:39;:::i;:::-;31632:89;31714:6;31709:3;31632:89;:::i;:::-;31625:96;;31730:65;31788:6;31783:3;31776:4;31769:5;31765:16;31730:65;:::i;:::-;31820:6;31815:3;31811:16;31804:23;;31553:280;31443:390;;;;:::o;31839:435::-;32019:3;32041:95;32132:3;32123:6;32041:95;:::i;:::-;32034:102;;32153:95;32244:3;32235:6;32153:95;:::i;:::-;32146:102;;32265:3;32258:10;;31839:435;;;;;:::o;32280:165::-;32420:17;32416:1;32408:6;32404:14;32397:41;32280:165;:::o;32451:366::-;32593:3;32614:67;32678:2;32673:3;32614:67;:::i;:::-;32607:74;;32690:93;32779:3;32690:93;:::i;:::-;32808:2;32803:3;32799:12;32792:19;;32451:366;;;:::o;32823:419::-;32989:4;33027:2;33016:9;33012:18;33004:26;;33076:9;33070:4;33066:20;33062:1;33051:9;33047:17;33040:47;33104:131;33230:4;33104:131;:::i;:::-;33096:139;;32823:419;;;:::o;33248:163::-;33388:15;33384:1;33376:6;33372:14;33365:39;33248:163;:::o;33417:366::-;33559:3;33580:67;33644:2;33639:3;33580:67;:::i;:::-;33573:74;;33656:93;33745:3;33656:93;:::i;:::-;33774:2;33769:3;33765:12;33758:19;;33417:366;;;:::o;33789:419::-;33955:4;33993:2;33982:9;33978:18;33970:26;;34042:9;34036:4;34032:20;34028:1;34017:9;34013:17;34006:47;34070:131;34196:4;34070:131;:::i;:::-;34062:139;;33789:419;;;:::o;34214:225::-;34354:34;34350:1;34342:6;34338:14;34331:58;34423:8;34418:2;34410:6;34406:15;34399:33;34214:225;:::o;34445:366::-;34587:3;34608:67;34672:2;34667:3;34608:67;:::i;:::-;34601:74;;34684:93;34773:3;34684:93;:::i;:::-;34802:2;34797:3;34793:12;34786:19;;34445:366;;;:::o;34817:419::-;34983:4;35021:2;35010:9;35006:18;34998:26;;35070:9;35064:4;35060:20;35056:1;35045:9;35041:17;35034:47;35098:131;35224:4;35098:131;:::i;:::-;35090:139;;34817:419;;;:::o;35242:224::-;35382:34;35378:1;35370:6;35366:14;35359:58;35451:7;35446:2;35438:6;35434:15;35427:32;35242:224;:::o;35472:366::-;35614:3;35635:67;35699:2;35694:3;35635:67;:::i;:::-;35628:74;;35711:93;35800:3;35711:93;:::i;:::-;35829:2;35824:3;35820:12;35813:19;;35472:366;;;:::o;35844:419::-;36010:4;36048:2;36037:9;36033:18;36025:26;;36097:9;36091:4;36087:20;36083:1;36072:9;36068:17;36061:47;36125:131;36251:4;36125:131;:::i;:::-;36117:139;;35844:419;;;:::o;36269:223::-;36409:34;36405:1;36397:6;36393:14;36386:58;36478:6;36473:2;36465:6;36461:15;36454:31;36269:223;:::o;36498:366::-;36640:3;36661:67;36725:2;36720:3;36661:67;:::i;:::-;36654:74;;36737:93;36826:3;36737:93;:::i;:::-;36855:2;36850:3;36846:12;36839:19;;36498:366;;;:::o;36870:419::-;37036:4;37074:2;37063:9;37059:18;37051:26;;37123:9;37117:4;37113:20;37109:1;37098:9;37094:17;37087:47;37151:131;37277:4;37151:131;:::i;:::-;37143:139;;36870:419;;;:::o;37295:182::-;37435:34;37431:1;37423:6;37419:14;37412:58;37295:182;:::o;37483:366::-;37625:3;37646:67;37710:2;37705:3;37646:67;:::i;:::-;37639:74;;37722:93;37811:3;37722:93;:::i;:::-;37840:2;37835:3;37831:12;37824:19;;37483:366;;;:::o;37855:419::-;38021:4;38059:2;38048:9;38044:18;38036:26;;38108:9;38102:4;38098:20;38094:1;38083:9;38079:17;38072:47;38136:131;38262:4;38136:131;:::i;:::-;38128:139;;37855:419;;;:::o;38280:175::-;38420:27;38416:1;38408:6;38404:14;38397:51;38280:175;:::o;38461:366::-;38603:3;38624:67;38688:2;38683:3;38624:67;:::i;:::-;38617:74;;38700:93;38789:3;38700:93;:::i;:::-;38818:2;38813:3;38809:12;38802:19;;38461:366;;;:::o;38833:419::-;38999:4;39037:2;39026:9;39022:18;39014:26;;39086:9;39080:4;39076:20;39072:1;39061:9;39057:17;39050:47;39114:131;39240:4;39114:131;:::i;:::-;39106:139;;38833:419;;;:::o;39258:237::-;39398:34;39394:1;39386:6;39382:14;39375:58;39467:20;39462:2;39454:6;39450:15;39443:45;39258:237;:::o;39501:366::-;39643:3;39664:67;39728:2;39723:3;39664:67;:::i;:::-;39657:74;;39740:93;39829:3;39740:93;:::i;:::-;39858:2;39853:3;39849:12;39842:19;;39501:366;;;:::o;39873:419::-;40039:4;40077:2;40066:9;40062:18;40054:26;;40126:9;40120:4;40116:20;40112:1;40101:9;40097:17;40090:47;40154:131;40280:4;40154:131;:::i;:::-;40146:139;;39873:419;;;:::o;40298:180::-;40346:77;40343:1;40336:88;40443:4;40440:1;40433:15;40467:4;40464:1;40457:15;40484:98;40535:6;40569:5;40563:12;40553:22;;40484:98;;;:::o;40588:168::-;40671:11;40705:6;40700:3;40693:19;40745:4;40740:3;40736:14;40721:29;;40588:168;;;;:::o;40762:373::-;40848:3;40876:38;40908:5;40876:38;:::i;:::-;40930:70;40993:6;40988:3;40930:70;:::i;:::-;40923:77;;41009:65;41067:6;41062:3;41055:4;41048:5;41044:16;41009:65;:::i;:::-;41099:29;41121:6;41099:29;:::i;:::-;41094:3;41090:39;41083:46;;40852:283;40762:373;;;;:::o;41141:640::-;41336:4;41374:3;41363:9;41359:19;41351:27;;41388:71;41456:1;41445:9;41441:17;41432:6;41388:71;:::i;:::-;41469:72;41537:2;41526:9;41522:18;41513:6;41469:72;:::i;:::-;41551;41619:2;41608:9;41604:18;41595:6;41551:72;:::i;:::-;41670:9;41664:4;41660:20;41655:2;41644:9;41640:18;41633:48;41698:76;41769:4;41760:6;41698:76;:::i;:::-;41690:84;;41141:640;;;;;;;:::o;41787:141::-;41843:5;41874:6;41868:13;41859:22;;41890:32;41916:5;41890:32;:::i;:::-;41787:141;;;;:::o;41934:349::-;42003:6;42052:2;42040:9;42031:7;42027:23;42023:32;42020:119;;;42058:79;;:::i;:::-;42020:119;42178:1;42203:63;42258:7;42249:6;42238:9;42234:22;42203:63;:::i;:::-;42193:73;;42149:127;41934:349;;;;:::o;42289:182::-;42429:34;42425:1;42417:6;42413:14;42406:58;42289:182;:::o;42477:366::-;42619:3;42640:67;42704:2;42699:3;42640:67;:::i;:::-;42633:74;;42716:93;42805:3;42716:93;:::i;:::-;42834:2;42829:3;42825:12;42818:19;;42477:366;;;:::o;42849:419::-;43015:4;43053:2;43042:9;43038:18;43030:26;;43102:9;43096:4;43092:20;43088:1;43077:9;43073:17;43066:47;43130:131;43256:4;43130:131;:::i;:::-;43122:139;;42849:419;;;:::o;43274:178::-;43414:30;43410:1;43402:6;43398:14;43391:54;43274:178;:::o;43458:366::-;43600:3;43621:67;43685:2;43680:3;43621:67;:::i;:::-;43614:74;;43697:93;43786:3;43697:93;:::i;:::-;43815:2;43810:3;43806:12;43799:19;;43458:366;;;:::o;43830:419::-;43996:4;44034:2;44023:9;44019:18;44011:26;;44083:9;44077:4;44073:20;44069:1;44058:9;44054:17;44047:47;44111:131;44237:4;44111:131;:::i;:::-;44103:139;;43830:419;;;:::o

Swarm Source

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