ETH Price: $2,601.78 (+0.36%)

ELS SPACE (ELSS)
 

Overview

TokenID

1012

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ELSSPACE

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

// File: @openzeppelin/contracts/utils/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.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

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

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

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

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

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

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

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/els1155.sol



pragma solidity ^0.8.17;




contract ELSSPACE is ERC1155, Ownable {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Supplies
    uint public supply = 0;
    uint public period = 1;
    uint public price = 120000000000000000;
    uint public maxPeriodSupply = 833;
    uint public maxSupply = 3333;

    // Beneficiary
    address public beneficiaryAddress;

    constructor(address _beneficiaryAddress) ERC1155("ipfs://QmYMK5962vMoM2BSko16tHg2cXi6e8x1xX23vANvfsjvHN/{id}.json") {
        _name = "ELS SPACE";
        _symbol = "ELSS";
        beneficiaryAddress = _beneficiaryAddress;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function changeBeneficiaryAddress(address _beneficiaryAddress) external onlyOwner {
        beneficiaryAddress = _beneficiaryAddress;
    }

    function changePrice(uint _price) external onlyOwner {
        price = _price;
    }

    function mint(uint _tokenId) public payable returns (uint) {
        supply += 1;

        require(supply <= maxPeriodSupply, "Mint: Max tokens supply for current period reached!");

        require(supply <= maxSupply, "Mint: Max tokens supply reached!");

        require(msg.value >= price, "Mint: Not enough gold has been sent!");

        payable(beneficiaryAddress).transfer(msg.value);

        _mint(msg.sender, _tokenId, 1, "");

        return _tokenId;
    }

    function mintBatch(uint[] memory _tokenIds, uint[] memory _amounts) external onlyOwner {
        _mintBatch(beneficiaryAddress, _tokenIds, _amounts, "");
    }

    function totalSupply() public view returns (uint) {
        return supply;
    }

    function startNewPeriod(uint _newPeriod, uint _newPrice, uint _maxPeriodSupply) external onlyOwner {
        period = _newPeriod;
        price = _newPrice;
        maxPeriodSupply = _maxPeriodSupply;
    }

    function stopPeriod() external onlyOwner {
        period = 0;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_beneficiaryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiaryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiaryAddress","type":"address"}],"name":"changeBeneficiaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPeriodSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","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":[],"name":"period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"_newPeriod","type":"uint256"},{"internalType":"uint256","name":"_newPrice","type":"uint256"},{"internalType":"uint256","name":"_maxPeriodSupply","type":"uint256"}],"name":"startNewPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052600060065560016007556701aa535d3d0c0000600855610341600955610d05600a553480156200003357600080fd5b506040516200210a3803806200210a83398101604081905262000056916200016c565b6040518060600160405280603f8152602001620020cb603f91396200007b8162000108565b5062000087336200011a565b604080518082019091526009815268454c5320535041434560b81b6020820152600490620000b6908262000243565b50604080518082019091526004815263454c535360e01b6020820152600590620000e1908262000243565b50600b80546001600160a01b0319166001600160a01b03929092169190911790556200030f565b600262000116828262000243565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200017f57600080fd5b81516001600160a01b03811681146200019757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c957607f821691505b602082108103620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023e57600081815260208120601f850160051c81016020861015620002195750805b601f850160051c820191505b818110156200023a5782815560010162000225565b5050505b505050565b81516001600160401b038111156200025f576200025f6200019e565b6200027781620002708454620001b4565b84620001f0565b602080601f831160018114620002af5760008415620002965750858301515b600019600386901b1c1916600185901b1785556200023a565b600085815260208120601f198616915b82811015620002e057888601518255948401946001909101908401620002bf565b5085821015620002ff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611dac806200031f6000396000f3fe6080604052600436106101805760003560e01c8063a035b1fe116100d1578063d6b038181161008a578063e985e9c511610064578063e985e9c51461042a578063ef78d4fd14610473578063f242432a14610489578063f2fde38b146104a957600080fd5b8063d6b03818146103d4578063d9c4870e146103ea578063e354b4711461040a57600080fd5b8063a035b1fe14610335578063a0712d681461034b578063a22cb4651461035e578063a2b40d191461037e578063d351cfdc1461039e578063d5abeb01146103be57600080fd5b806318160ddd1161013e5780634e1273f4116101185780634e1273f4146102ac578063715018a6146102d95780638da5cb5b146102ee57806395d89b411461032057600080fd5b806318160ddd146102625780632eb2c2d614610277578063360a657e1461029757600080fd5b8062fdd58e1461018557806301ffc9a7146101b8578063047fc9aa146101e857806306fdde03146101fe5780630e89341c1461022057806312d0e65a14610240575b600080fd5b34801561019157600080fd5b506101a56101a0366004611455565b6104c9565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611495565b610562565b60405190151581526020016101af565b3480156101f457600080fd5b506101a560065481565b34801561020a57600080fd5b506102136105b2565b6040516101af91906114ff565b34801561022c57600080fd5b5061021361023b366004611512565b610644565b34801561024c57600080fd5b5061026061025b36600461152b565b6106d8565b005b34801561026e57600080fd5b506006546101a5565b34801561028357600080fd5b50610260610292366004611692565b610702565b3480156102a357600080fd5b5061026061074e565b3480156102b857600080fd5b506102cc6102c736600461173c565b61075d565b6040516101af9190611842565b3480156102e557600080fd5b50610260610887565b3480156102fa57600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b34801561032c57600080fd5b5061021361089b565b34801561034157600080fd5b506101a560085481565b6101a5610359366004611512565b6108aa565b34801561036a57600080fd5b50610260610379366004611855565b610a40565b34801561038a57600080fd5b50610260610399366004611512565b610a4f565b3480156103aa57600080fd5b506102606103b9366004611891565b610a5c565b3480156103ca57600080fd5b506101a5600a5481565b3480156103e057600080fd5b506101a560095481565b3480156103f657600080fd5b50600b54610308906001600160a01b031681565b34801561041657600080fd5b506102606104253660046118de565b610a8d565b34801561043657600080fd5b506101d861044536600461190a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047f57600080fd5b506101a560075481565b34801561049557600080fd5b506102606104a436600461193d565b610aa3565b3480156104b557600080fd5b506102606104c436600461152b565b610ae8565b60006001600160a01b0383166105395760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061059357506001600160e01b031982166303a24d0760e21b145b8061055c57506301ffc9a760e01b6001600160e01b031983161461055c565b6060600480546105c1906119a2565b80601f01602080910402602001604051908101604052809291908181526020018280546105ed906119a2565b801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b5050505050905090565b606060028054610653906119a2565b80601f016020809104026020016040519081016040528092919081815260200182805461067f906119a2565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b50505050509050919050565b6106e0610b61565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03851633148061071e575061071e8533610445565b61073a5760405162461bcd60e51b8152600401610530906119dc565b6107478585858585610bbb565b5050505050565b610756610b61565b6000600755565b606081518351146107c25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610530565b6000835167ffffffffffffffff8111156107de576107de611546565b604051908082528060200260200182016040528015610807578160200160208202803683370190505b50905060005b845181101561087f5761085285828151811061082b5761082b611a2a565b602002602001015185838151811061084557610845611a2a565b60200260200101516104c9565b82828151811061086457610864611a2a565b602090810291909101015261087881611a56565b905061080d565b509392505050565b61088f610b61565b6108996000610d57565b565b6060600580546105c1906119a2565b60006001600660008282546108bf9190611a6f565b909155505060095460065411156109345760405162461bcd60e51b815260206004820152603360248201527f4d696e743a204d617820746f6b656e7320737570706c7920666f722063757272604482015272656e7420706572696f6420726561636865642160681b6064820152608401610530565b600a5460065411156109885760405162461bcd60e51b815260206004820181905260248201527f4d696e743a204d617820746f6b656e7320737570706c792072656163686564216044820152606401610530565b6008543410156109e65760405162461bcd60e51b8152602060048201526024808201527f4d696e743a204e6f7420656e6f75676820676f6c6420686173206265656e2073604482015263656e742160e01b6064820152608401610530565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610a1f573d6000803e3d6000fd5b50610a3c3383600160405180602001604052806000815250610da9565b5090565b610a4b338383610e83565b5050565b610a57610b61565b600855565b610a64610b61565b600b54604080516020810190915260008152610a4b916001600160a01b03169084908490610f63565b610a95610b61565b600792909255600855600955565b6001600160a01b038516331480610abf5750610abf8533610445565b610adb5760405162461bcd60e51b8152600401610530906119dc565b61074785858585856110ae565b610af0610b61565b6001600160a01b038116610b555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610530565b610b5e81610d57565b50565b6003546001600160a01b031633146108995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610530565b8151835114610bdc5760405162461bcd60e51b815260040161053090611a82565b6001600160a01b038416610c025760405162461bcd60e51b815260040161053090611aca565b3360005b8451811015610ce9576000858281518110610c2357610c23611a2a565b602002602001015190506000858381518110610c4157610c41611a2a565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c915760405162461bcd60e51b815260040161053090611b0f565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610cce908490611a6f565b9250508190555050505080610ce290611a56565b9050610c06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d39929190611b59565b60405180910390a4610d4f8187878787876111d8565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610dcf5760405162461bcd60e51b815260040161053090611b87565b336000610ddb85611333565b90506000610de885611333565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610e1a908490611a6f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e7a8360008989898961137e565b50505050505050565b816001600160a01b0316836001600160a01b031603610ef65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610530565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f895760405162461bcd60e51b815260040161053090611b87565b8151835114610faa5760405162461bcd60e51b815260040161053090611a82565b3360005b845181101561104657838181518110610fc957610fc9611a2a565b6020026020010151600080878481518110610fe657610fe6611a2a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461102e9190611a6f565b9091555081905061103e81611a56565b915050610fae565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611097929190611b59565b60405180910390a4610747816000878787876111d8565b6001600160a01b0384166110d45760405162461bcd60e51b815260040161053090611aca565b3360006110e085611333565b905060006110ed85611333565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111305760405162461bcd60e51b815260040161053090611b0f565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061116d908490611a6f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111cd848a8a8a8a8a61137e565b505050505050505050565b6001600160a01b0384163b15610d4f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061121c9089908990889088908890600401611bc8565b6020604051808303816000875af1925050508015611257575060408051601f3d908101601f1916820190925261125491810190611c26565b60015b61130357611263611c43565b806308c379a00361129c5750611277611c5f565b80611282575061129e565b8060405162461bcd60e51b815260040161053091906114ff565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610530565b6001600160e01b0319811663bc197c8160e01b14610e7a5760405162461bcd60e51b815260040161053090611ce9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061136d5761136d611a2a565b602090810291909101015292915050565b6001600160a01b0384163b15610d4f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113c29089908990889088908890600401611d31565b6020604051808303816000875af19250505080156113fd575060408051601f3d908101601f191682019092526113fa91810190611c26565b60015b61140957611263611c43565b6001600160e01b0319811663f23a6e6160e01b14610e7a5760405162461bcd60e51b815260040161053090611ce9565b80356001600160a01b038116811461145057600080fd5b919050565b6000806040838503121561146857600080fd5b61147183611439565b946020939093013593505050565b6001600160e01b031981168114610b5e57600080fd5b6000602082840312156114a757600080fd5b81356114b28161147f565b9392505050565b6000815180845260005b818110156114df576020818501810151868301820152016114c3565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006114b260208301846114b9565b60006020828403121561152457600080fd5b5035919050565b60006020828403121561153d57600080fd5b6114b282611439565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561158257611582611546565b6040525050565b600067ffffffffffffffff8211156115a3576115a3611546565b5060051b60200190565b600082601f8301126115be57600080fd5b813560206115cb82611589565b6040516115d8828261155c565b83815260059390931b85018201928281019150868411156115f857600080fd5b8286015b8481101561161357803583529183019183016115fc565b509695505050505050565b600082601f83011261162f57600080fd5b813567ffffffffffffffff81111561164957611649611546565b604051611660601f8301601f19166020018261155c565b81815284602083860101111561167557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156116aa57600080fd5b6116b386611439565b94506116c160208701611439565b9350604086013567ffffffffffffffff808211156116de57600080fd5b6116ea89838a016115ad565b9450606088013591508082111561170057600080fd5b61170c89838a016115ad565b9350608088013591508082111561172257600080fd5b5061172f8882890161161e565b9150509295509295909350565b6000806040838503121561174f57600080fd5b823567ffffffffffffffff8082111561176757600080fd5b818501915085601f83011261177b57600080fd5b8135602061178882611589565b604051611795828261155c565b83815260059390931b85018201928281019150898411156117b557600080fd5b948201945b838610156117da576117cb86611439565b825294820194908201906117ba565b965050860135925050808211156117f057600080fd5b506117fd858286016115ad565b9150509250929050565b600081518084526020808501945080840160005b838110156118375781518752958201959082019060010161181b565b509495945050505050565b6020815260006114b26020830184611807565b6000806040838503121561186857600080fd5b61187183611439565b91506020830135801515811461188657600080fd5b809150509250929050565b600080604083850312156118a457600080fd5b823567ffffffffffffffff808211156118bc57600080fd5b6118c8868387016115ad565b935060208501359150808211156117f057600080fd5b6000806000606084860312156118f357600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561191d57600080fd5b61192683611439565b915061193460208401611439565b90509250929050565b600080600080600060a0868803121561195557600080fd5b61195e86611439565b945061196c60208701611439565b93506040860135925060608601359150608086013567ffffffffffffffff81111561199657600080fd5b61172f8882890161161e565b600181811c908216806119b657607f821691505b6020821081036119d657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611a6857611a68611a40565b5060010190565b8082018082111561055c5761055c611a40565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611b6c6040830185611807565b8281036020840152611b7e8185611807565b95945050505050565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090611bf490830186611807565b8281036060840152611c068186611807565b90508281036080840152611c1a81856114b9565b98975050505050505050565b600060208284031215611c3857600080fd5b81516114b28161147f565b600060033d1115611c5c5760046000803e5060005160e01c5b90565b600060443d1015611c6d5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c9d57505050505090565b8285019150815181811115611cb55750505050505090565b843d8701016020828501011115611ccf5750505050505090565b611cde6020828601018761155c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d6b908301846114b9565b97965050505050505056fea264697066735822122029726a41f3dcf6c382382e8921c367e667b0b2d80d24f48a22c2df7b5dcd0a8c64736f6c63430008110033697066733a2f2f516d594d4b35393632764d6f4d3242536b6f31367448673263586936653878317858323376414e7666736a76484e2f7b69647d2e6a736f6e000000000000000000000000ce47743f19e60c471f5f9a621e7746b679bad3fd

Deployed Bytecode

0x6080604052600436106101805760003560e01c8063a035b1fe116100d1578063d6b038181161008a578063e985e9c511610064578063e985e9c51461042a578063ef78d4fd14610473578063f242432a14610489578063f2fde38b146104a957600080fd5b8063d6b03818146103d4578063d9c4870e146103ea578063e354b4711461040a57600080fd5b8063a035b1fe14610335578063a0712d681461034b578063a22cb4651461035e578063a2b40d191461037e578063d351cfdc1461039e578063d5abeb01146103be57600080fd5b806318160ddd1161013e5780634e1273f4116101185780634e1273f4146102ac578063715018a6146102d95780638da5cb5b146102ee57806395d89b411461032057600080fd5b806318160ddd146102625780632eb2c2d614610277578063360a657e1461029757600080fd5b8062fdd58e1461018557806301ffc9a7146101b8578063047fc9aa146101e857806306fdde03146101fe5780630e89341c1461022057806312d0e65a14610240575b600080fd5b34801561019157600080fd5b506101a56101a0366004611455565b6104c9565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611495565b610562565b60405190151581526020016101af565b3480156101f457600080fd5b506101a560065481565b34801561020a57600080fd5b506102136105b2565b6040516101af91906114ff565b34801561022c57600080fd5b5061021361023b366004611512565b610644565b34801561024c57600080fd5b5061026061025b36600461152b565b6106d8565b005b34801561026e57600080fd5b506006546101a5565b34801561028357600080fd5b50610260610292366004611692565b610702565b3480156102a357600080fd5b5061026061074e565b3480156102b857600080fd5b506102cc6102c736600461173c565b61075d565b6040516101af9190611842565b3480156102e557600080fd5b50610260610887565b3480156102fa57600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016101af565b34801561032c57600080fd5b5061021361089b565b34801561034157600080fd5b506101a560085481565b6101a5610359366004611512565b6108aa565b34801561036a57600080fd5b50610260610379366004611855565b610a40565b34801561038a57600080fd5b50610260610399366004611512565b610a4f565b3480156103aa57600080fd5b506102606103b9366004611891565b610a5c565b3480156103ca57600080fd5b506101a5600a5481565b3480156103e057600080fd5b506101a560095481565b3480156103f657600080fd5b50600b54610308906001600160a01b031681565b34801561041657600080fd5b506102606104253660046118de565b610a8d565b34801561043657600080fd5b506101d861044536600461190a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047f57600080fd5b506101a560075481565b34801561049557600080fd5b506102606104a436600461193d565b610aa3565b3480156104b557600080fd5b506102606104c436600461152b565b610ae8565b60006001600160a01b0383166105395760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061059357506001600160e01b031982166303a24d0760e21b145b8061055c57506301ffc9a760e01b6001600160e01b031983161461055c565b6060600480546105c1906119a2565b80601f01602080910402602001604051908101604052809291908181526020018280546105ed906119a2565b801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b5050505050905090565b606060028054610653906119a2565b80601f016020809104026020016040519081016040528092919081815260200182805461067f906119a2565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b50505050509050919050565b6106e0610b61565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03851633148061071e575061071e8533610445565b61073a5760405162461bcd60e51b8152600401610530906119dc565b6107478585858585610bbb565b5050505050565b610756610b61565b6000600755565b606081518351146107c25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610530565b6000835167ffffffffffffffff8111156107de576107de611546565b604051908082528060200260200182016040528015610807578160200160208202803683370190505b50905060005b845181101561087f5761085285828151811061082b5761082b611a2a565b602002602001015185838151811061084557610845611a2a565b60200260200101516104c9565b82828151811061086457610864611a2a565b602090810291909101015261087881611a56565b905061080d565b509392505050565b61088f610b61565b6108996000610d57565b565b6060600580546105c1906119a2565b60006001600660008282546108bf9190611a6f565b909155505060095460065411156109345760405162461bcd60e51b815260206004820152603360248201527f4d696e743a204d617820746f6b656e7320737570706c7920666f722063757272604482015272656e7420706572696f6420726561636865642160681b6064820152608401610530565b600a5460065411156109885760405162461bcd60e51b815260206004820181905260248201527f4d696e743a204d617820746f6b656e7320737570706c792072656163686564216044820152606401610530565b6008543410156109e65760405162461bcd60e51b8152602060048201526024808201527f4d696e743a204e6f7420656e6f75676820676f6c6420686173206265656e2073604482015263656e742160e01b6064820152608401610530565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610a1f573d6000803e3d6000fd5b50610a3c3383600160405180602001604052806000815250610da9565b5090565b610a4b338383610e83565b5050565b610a57610b61565b600855565b610a64610b61565b600b54604080516020810190915260008152610a4b916001600160a01b03169084908490610f63565b610a95610b61565b600792909255600855600955565b6001600160a01b038516331480610abf5750610abf8533610445565b610adb5760405162461bcd60e51b8152600401610530906119dc565b61074785858585856110ae565b610af0610b61565b6001600160a01b038116610b555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610530565b610b5e81610d57565b50565b6003546001600160a01b031633146108995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610530565b8151835114610bdc5760405162461bcd60e51b815260040161053090611a82565b6001600160a01b038416610c025760405162461bcd60e51b815260040161053090611aca565b3360005b8451811015610ce9576000858281518110610c2357610c23611a2a565b602002602001015190506000858381518110610c4157610c41611a2a565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c915760405162461bcd60e51b815260040161053090611b0f565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610cce908490611a6f565b9250508190555050505080610ce290611a56565b9050610c06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d39929190611b59565b60405180910390a4610d4f8187878787876111d8565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610dcf5760405162461bcd60e51b815260040161053090611b87565b336000610ddb85611333565b90506000610de885611333565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610e1a908490611a6f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e7a8360008989898961137e565b50505050505050565b816001600160a01b0316836001600160a01b031603610ef65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610530565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f895760405162461bcd60e51b815260040161053090611b87565b8151835114610faa5760405162461bcd60e51b815260040161053090611a82565b3360005b845181101561104657838181518110610fc957610fc9611a2a565b6020026020010151600080878481518110610fe657610fe6611a2a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461102e9190611a6f565b9091555081905061103e81611a56565b915050610fae565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611097929190611b59565b60405180910390a4610747816000878787876111d8565b6001600160a01b0384166110d45760405162461bcd60e51b815260040161053090611aca565b3360006110e085611333565b905060006110ed85611333565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111305760405162461bcd60e51b815260040161053090611b0f565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061116d908490611a6f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111cd848a8a8a8a8a61137e565b505050505050505050565b6001600160a01b0384163b15610d4f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061121c9089908990889088908890600401611bc8565b6020604051808303816000875af1925050508015611257575060408051601f3d908101601f1916820190925261125491810190611c26565b60015b61130357611263611c43565b806308c379a00361129c5750611277611c5f565b80611282575061129e565b8060405162461bcd60e51b815260040161053091906114ff565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610530565b6001600160e01b0319811663bc197c8160e01b14610e7a5760405162461bcd60e51b815260040161053090611ce9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061136d5761136d611a2a565b602090810291909101015292915050565b6001600160a01b0384163b15610d4f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113c29089908990889088908890600401611d31565b6020604051808303816000875af19250505080156113fd575060408051601f3d908101601f191682019092526113fa91810190611c26565b60015b61140957611263611c43565b6001600160e01b0319811663f23a6e6160e01b14610e7a5760405162461bcd60e51b815260040161053090611ce9565b80356001600160a01b038116811461145057600080fd5b919050565b6000806040838503121561146857600080fd5b61147183611439565b946020939093013593505050565b6001600160e01b031981168114610b5e57600080fd5b6000602082840312156114a757600080fd5b81356114b28161147f565b9392505050565b6000815180845260005b818110156114df576020818501810151868301820152016114c3565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006114b260208301846114b9565b60006020828403121561152457600080fd5b5035919050565b60006020828403121561153d57600080fd5b6114b282611439565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561158257611582611546565b6040525050565b600067ffffffffffffffff8211156115a3576115a3611546565b5060051b60200190565b600082601f8301126115be57600080fd5b813560206115cb82611589565b6040516115d8828261155c565b83815260059390931b85018201928281019150868411156115f857600080fd5b8286015b8481101561161357803583529183019183016115fc565b509695505050505050565b600082601f83011261162f57600080fd5b813567ffffffffffffffff81111561164957611649611546565b604051611660601f8301601f19166020018261155c565b81815284602083860101111561167557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156116aa57600080fd5b6116b386611439565b94506116c160208701611439565b9350604086013567ffffffffffffffff808211156116de57600080fd5b6116ea89838a016115ad565b9450606088013591508082111561170057600080fd5b61170c89838a016115ad565b9350608088013591508082111561172257600080fd5b5061172f8882890161161e565b9150509295509295909350565b6000806040838503121561174f57600080fd5b823567ffffffffffffffff8082111561176757600080fd5b818501915085601f83011261177b57600080fd5b8135602061178882611589565b604051611795828261155c565b83815260059390931b85018201928281019150898411156117b557600080fd5b948201945b838610156117da576117cb86611439565b825294820194908201906117ba565b965050860135925050808211156117f057600080fd5b506117fd858286016115ad565b9150509250929050565b600081518084526020808501945080840160005b838110156118375781518752958201959082019060010161181b565b509495945050505050565b6020815260006114b26020830184611807565b6000806040838503121561186857600080fd5b61187183611439565b91506020830135801515811461188657600080fd5b809150509250929050565b600080604083850312156118a457600080fd5b823567ffffffffffffffff808211156118bc57600080fd5b6118c8868387016115ad565b935060208501359150808211156117f057600080fd5b6000806000606084860312156118f357600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561191d57600080fd5b61192683611439565b915061193460208401611439565b90509250929050565b600080600080600060a0868803121561195557600080fd5b61195e86611439565b945061196c60208701611439565b93506040860135925060608601359150608086013567ffffffffffffffff81111561199657600080fd5b61172f8882890161161e565b600181811c908216806119b657607f821691505b6020821081036119d657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611a6857611a68611a40565b5060010190565b8082018082111561055c5761055c611a40565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611b6c6040830185611807565b8281036020840152611b7e8185611807565b95945050505050565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090611bf490830186611807565b8281036060840152611c068186611807565b90508281036080840152611c1a81856114b9565b98975050505050505050565b600060208284031215611c3857600080fd5b81516114b28161147f565b600060033d1115611c5c5760046000803e5060005160e01c5b90565b600060443d1015611c6d5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c9d57505050505090565b8285019150815181811115611cb55750505050505090565b843d8701016020828501011115611ccf5750505050505090565b611cde6020828601018761155c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d6b908301846114b9565b97965050505050505056fea264697066735822122029726a41f3dcf6c382382e8921c367e667b0b2d80d24f48a22c2df7b5dcd0a8c64736f6c63430008110033

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

000000000000000000000000ce47743f19e60c471f5f9a621e7746b679bad3fd

-----Decoded View---------------
Arg [0] : _beneficiaryAddress (address): 0xcE47743F19e60c471f5f9A621e7746B679bAD3FD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ce47743f19e60c471f5f9a621e7746b679bad3fd


Deployed Bytecode Sourcemap

55295:2114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39698:230;;;;;;;;;;-1:-1:-1;39698:230:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;39698:230:0;;;;;;;;38721:310;;;;;;;;;;-1:-1:-1;38721:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;38721:310:0;1019:187:1;55457:22:0;;;;;;;;;;;;;;;;55939:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39442:105::-;;;;;;;;;;-1:-1:-1;39442:105:0;;;;;:::i;:::-;;:::i;56125:141::-;;;;;;;;;;-1:-1:-1;56125:141:0;;;;;:::i;:::-;;:::i;:::-;;57028:82;;;;;;;;;;-1:-1:-1;57096:6:0;;57028:82;;41641:438;;;;;;;;;;-1:-1:-1;41641:438:0;;;;;:::i;:::-;;:::i;57336:70::-;;;;;;;;;;;;;:::i;40094:524::-;;;;;;;;;;-1:-1:-1;40094:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;17975:103::-;;;;;;;;;;;;;:::i;17327:87::-;;;;;;;;;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;17327:87;;;-1:-1:-1;;;;;7134:32:1;;;7116:51;;7104:2;7089:18;17327:87:0;6970:203:1;56030:87:0;;;;;;;;;;;;;:::i;55515:38::-;;;;;;;;;;;;;;;;56368:483;;;;;;:::i;:::-;;:::i;40691:155::-;;;;;;;;;;-1:-1:-1;40691:155:0;;;;;:::i;:::-;;:::i;56274:86::-;;;;;;;;;;-1:-1:-1;56274:86:0;;;;;:::i;:::-;;:::i;56859:161::-;;;;;;;;;;-1:-1:-1;56859:161:0;;;;;:::i;:::-;;:::i;55600:28::-;;;;;;;;;;;;;;;;55560:33;;;;;;;;;;;;;;;;55657;;;;;;;;;;-1:-1:-1;55657:33:0;;;;-1:-1:-1;;;;;55657:33:0;;;57118:210;;;;;;;;;;-1:-1:-1;57118:210:0;;;;;:::i;:::-;;:::i;40918:168::-;;;;;;;;;;-1:-1:-1;40918:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;41041:27:0;;;41017:4;41041:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;40918:168;55486:22;;;;;;;;;;;;;;;;41158:406;;;;;;;;;;-1:-1:-1;41158:406:0;;;;;:::i;:::-;;:::i;18233:201::-;;;;;;;;;;-1:-1:-1;18233:201:0;;;;;:::i;:::-;;:::i;39698:230::-;39784:7;-1:-1:-1;;;;;39812:21:0;;39804:76;;;;-1:-1:-1;;;39804:76:0;;9529:2:1;39804:76:0;;;9511:21:1;9568:2;9548:18;;;9541:30;9607:34;9587:18;;;9580:62;-1:-1:-1;;;9658:18:1;;;9651:40;9708:19;;39804:76:0;;;;;;;;;-1:-1:-1;39898:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;39898:22:0;;;;;;;;;;39698:230;;;;;:::o;38721:310::-;38823:4;-1:-1:-1;;;;;;38860:41:0;;-1:-1:-1;;;38860:41:0;;:110;;-1:-1:-1;;;;;;;38918:52:0;;-1:-1:-1;;;38918:52:0;38860:110;:163;;;-1:-1:-1;;;;;;;;;;30111:40:0;;;38987:36;30002:157;55939:83;55976:13;56009:5;56002:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55939:83;:::o;39442:105::-;39502:13;39535:4;39528:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39442:105;;;:::o;56125:141::-;17213:13;:11;:13::i;:::-;56218:18:::1;:40:::0;;-1:-1:-1;;;;;;56218:40:0::1;-1:-1:-1::0;;;;;56218:40:0;;;::::1;::::0;;;::::1;::::0;;56125:141::o;41641:438::-;-1:-1:-1;;;;;41874:20:0;;15958:10;41874:20;;:60;;-1:-1:-1;41898:36:0;41915:4;15958:10;40918:168;:::i;41898:36::-;41852:156;;;;-1:-1:-1;;;41852:156:0;;;;;;;:::i;:::-;42019:52;42042:4;42048:2;42052:3;42057:7;42066:4;42019:22;:52::i;:::-;41641:438;;;;;:::o;57336:70::-;17213:13;:11;:13::i;:::-;57397:1:::1;57388:6;:10:::0;57336:70::o;40094:524::-;40250:16;40311:3;:10;40292:8;:15;:29;40284:83;;;;-1:-1:-1;;;40284:83:0;;10740:2:1;40284:83:0;;;10722:21:1;10779:2;10759:18;;;10752:30;10818:34;10798:18;;;10791:62;-1:-1:-1;;;10869:18:1;;;10862:39;10918:19;;40284:83:0;10538:405:1;40284:83:0;40380:30;40427:8;:15;40413:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40413:30:0;;40380:63;;40461:9;40456:122;40480:8;:15;40476:1;:19;40456:122;;;40536:30;40546:8;40555:1;40546:11;;;;;;;;:::i;:::-;;;;;;;40559:3;40563:1;40559:6;;;;;;;;:::i;:::-;;;;;;;40536:9;:30::i;:::-;40517:13;40531:1;40517:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;40497:3;;;:::i;:::-;;;40456:122;;;-1:-1:-1;40597:13:0;40094:524;-1:-1:-1;;;40094:524:0:o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;56030:87::-;56069:13;56102:7;56095:14;;;;;:::i;56368:483::-;56421:4;56448:1;56438:6;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;;56480:15:0;;56470:6;;:25;;56462:89;;;;-1:-1:-1;;;56462:89:0;;11684:2:1;56462:89:0;;;11666:21:1;11723:2;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;-1:-1:-1;;;11813:18:1;;;11806:49;11872:19;;56462:89:0;11482:415:1;56462:89:0;56582:9;;56572:6;;:19;;56564:64;;;;-1:-1:-1;;;56564:64:0;;12104:2:1;56564:64:0;;;12086:21:1;;;12123:18;;;12116:30;12182:34;12162:18;;;12155:62;12234:18;;56564:64:0;11902:356:1;56564:64:0;56662:5;;56649:9;:18;;56641:67;;;;-1:-1:-1;;;56641:67:0;;12465:2:1;56641:67:0;;;12447:21:1;12504:2;12484:18;;;12477:30;12543:34;12523:18;;;12516:62;-1:-1:-1;;;12594:18:1;;;12587:34;12638:19;;56641:67:0;12263:400:1;56641:67:0;56729:18;;56721:47;;-1:-1:-1;;;;;56729:18:0;;;;56758:9;56721:47;;;;;56729:18;56721:47;56729:18;56721:47;56758:9;56729:18;56721:47;;;;;;;;;;;;;;;;;;;;;56781:34;56787:10;56799:8;56809:1;56781:34;;;;;;;;;;;;:5;:34::i;:::-;-1:-1:-1;56835:8:0;56368:483::o;40691:155::-;40786:52;15958:10;40819:8;40829;40786:18;:52::i;:::-;40691:155;;:::o;56274:86::-;17213:13;:11;:13::i;:::-;56338:5:::1;:14:::0;56274:86::o;56859:161::-;17213:13;:11;:13::i;:::-;56968:18:::1;::::0;56957:55:::1;::::0;;::::1;::::0;::::1;::::0;;;56968:18:::1;56957:55:::0;;::::1;::::0;-1:-1:-1;;;;;56968:18:0::1;::::0;56988:9;;56999:8;;56957:10:::1;:55::i;57118:210::-:0;17213:13;:11;:13::i;:::-;57228:6:::1;:19:::0;;;;57258:5:::1;:17:::0;57286:15:::1;:34:::0;57118:210::o;41158:406::-;-1:-1:-1;;;;;41366:20:0;;15958:10;41366:20;;:60;;-1:-1:-1;41390:36:0;41407:4;15958:10;40918:168;:::i;41390:36::-;41344:156;;;;-1:-1:-1;;;41344:156:0;;;;;;;:::i;:::-;41511:45;41529:4;41535:2;41539;41543:6;41551:4;41511:17;:45::i;18233:201::-;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;18322:22:0;::::1;18314:73;;;::::0;-1:-1:-1;;;18314:73:0;;12870:2:1;18314:73:0::1;::::0;::::1;12852:21:1::0;12909:2;12889:18;;;12882:30;12948:34;12928:18;;;12921:62;-1:-1:-1;;;12999:18:1;;;12992:36;13045:19;;18314:73:0::1;12668:402:1::0;18314:73:0::1;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;17492:132::-;17400:6;;-1:-1:-1;;;;;17400:6:0;15958:10;17556:23;17548:68;;;;-1:-1:-1;;;17548:68:0;;13277:2:1;17548:68:0;;;13259:21:1;;;13296:18;;;13289:30;13355:34;13335:18;;;13328:62;13407:18;;17548:68:0;13075:356:1;43875:1146:0;44102:7;:14;44088:3;:10;:28;44080:81;;;;-1:-1:-1;;;44080:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44180:16:0;;44172:66;;;;-1:-1:-1;;;44172:66:0;;;;;;;:::i;:::-;15958:10;44251:16;44368:421;44392:3;:10;44388:1;:14;44368:421;;;44424:10;44437:3;44441:1;44437:6;;;;;;;;:::i;:::-;;;;;;;44424:19;;44458:14;44475:7;44483:1;44475:10;;;;;;;;:::i;:::-;;;;;;;;;;;;44502:19;44524:13;;;;;;;;;;-1:-1:-1;;;;;44524:19:0;;;;;;;;;;;;44475:10;;-1:-1:-1;44566:21:0;;;;44558:76;;;;-1:-1:-1;;;44558:76:0;;;;;;;:::i;:::-;44678:9;:13;;;;;;;;;;;-1:-1:-1;;;;;44678:19:0;;;;;;;;;;44700:20;;;44678:42;;44750:17;;;;;;;:27;;44700:20;;44678:9;44750:27;;44700:20;;44750:27;:::i;:::-;;;;;;;;44409:380;;;44404:3;;;;:::i;:::-;;;44368:421;;;;44836:2;-1:-1:-1;;;;;44806:47:0;44830:4;-1:-1:-1;;;;;44806:47:0;44820:8;-1:-1:-1;;;;;44806:47:0;;44840:3;44845:7;44806:47;;;;;;;:::i;:::-;;;;;;;;44938:75;44974:8;44984:4;44990:2;44994:3;44999:7;45008:4;44938:35;:75::i;:::-;44069:952;43875:1146;;;;;:::o;18594:191::-;18687:6;;;-1:-1:-1;;;;;18704:17:0;;;-1:-1:-1;;;;;;18704:17:0;;;;;;;18737:40;;18687:6;;;18704:17;18687:6;;18737:40;;18668:16;;18737:40;18657:128;18594:191;:::o;46339:729::-;-1:-1:-1;;;;;46492:16:0;;46484:62;;;;-1:-1:-1;;;46484:62:0;;;;;;;:::i;:::-;15958:10;46559:16;46624:21;46642:2;46624:17;:21::i;:::-;46601:44;;46656:24;46683:25;46701:6;46683:17;:25::i;:::-;46656:52;;46800:9;:13;;;;;;;;;;;-1:-1:-1;;;;;46800:17:0;;;;;;;;;:27;;46821:6;;46800:9;:27;;46821:6;;46800:27;:::i;:::-;;;;-1:-1:-1;;46843:52:0;;;15708:25:1;;;15764:2;15749:18;;15742:34;;;-1:-1:-1;;;;;46843:52:0;;;;46876:1;;46843:52;;;;;;15681:18:1;46843:52:0;;;;;;;46986:74;47017:8;47035:1;47039:2;47043;47047:6;47055:4;46986:30;:74::i;:::-;46473:595;;;46339:729;;;;:::o;50752:331::-;50907:8;-1:-1:-1;;;;;50898:17:0;:5;-1:-1:-1;;;;;50898:17:0;;50890:71;;;;-1:-1:-1;;;50890:71:0;;15989:2:1;50890:71:0;;;15971:21:1;16028:2;16008:18;;;16001:30;16067:34;16047:18;;;16040:62;-1:-1:-1;;;16118:18:1;;;16111:39;16167:19;;50890:71:0;15787:405:1;50890:71:0;-1:-1:-1;;;;;50972:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50972:46:0;;;;;;;;;;51034:41;;1159::1;;;51034::0;;1132:18:1;51034:41:0;;;;;;;50752:331;;;:::o;47471:813::-;-1:-1:-1;;;;;47649:16:0;;47641:62;;;;-1:-1:-1;;;47641:62:0;;;;;;;:::i;:::-;47736:7;:14;47722:3;:10;:28;47714:81;;;;-1:-1:-1;;;47714:81:0;;;;;;;:::i;:::-;15958:10;47808:16;47931:103;47955:3;:10;47951:1;:14;47931:103;;;48012:7;48020:1;48012:10;;;;;;;;:::i;:::-;;;;;;;47987:9;:17;47997:3;48001:1;47997:6;;;;;;;;:::i;:::-;;;;;;;47987:17;;;;;;;;;;;:21;48005:2;-1:-1:-1;;;;;47987:21:0;-1:-1:-1;;;;;47987:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;47967:3:0;;-1:-1:-1;47967:3:0;;;:::i;:::-;;;;47931:103;;;;48087:2;-1:-1:-1;;;;;48051:53:0;48083:1;-1:-1:-1;;;;;48051:53:0;48065:8;-1:-1:-1;;;;;48051:53:0;;48091:3;48096:7;48051:53;;;;;;;:::i;:::-;;;;;;;;48195:81;48231:8;48249:1;48253:2;48257:3;48262:7;48271:4;48195:35;:81::i;42543:974::-;-1:-1:-1;;;;;42731:16:0;;42723:66;;;;-1:-1:-1;;;42723:66:0;;;;;;;:::i;:::-;15958:10;42802:16;42867:21;42885:2;42867:17;:21::i;:::-;42844:44;;42899:24;42926:25;42944:6;42926:17;:25::i;:::-;42899:52;;43037:19;43059:13;;;;;;;;;;;-1:-1:-1;;;;;43059:19:0;;;;;;;;;;43097:21;;;;43089:76;;;;-1:-1:-1;;;43089:76:0;;;;;;;:::i;:::-;43201:9;:13;;;;;;;;;;;-1:-1:-1;;;;;43201:19:0;;;;;;;;;;43223:20;;;43201:42;;43265:17;;;;;;;:27;;43223:20;;43201:9;43265:27;;43223:20;;43265:27;:::i;:::-;;;;-1:-1:-1;;43310:46:0;;;15708:25:1;;;15764:2;15749:18;;15742:34;;;-1:-1:-1;;;;;43310:46:0;;;;;;;;;;;;;;15681:18:1;43310:46:0;;;;;;;43441:68;43472:8;43482:4;43488:2;43492;43496:6;43504:4;43441:30;:68::i;:::-;42712:805;;;;42543:974;;;;;:::o;54197:813::-;-1:-1:-1;;;;;54437:13:0;;20320:19;:23;54433:570;;54473:79;;-1:-1:-1;;;54473:79:0;;-1:-1:-1;;;;;54473:43:0;;;;;:79;;54517:8;;54527:4;;54533:3;;54538:7;;54547:4;;54473:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54473:79:0;;;;;;;;-1:-1:-1;;54473:79:0;;;;;;;;;;;;:::i;:::-;;;54469:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;54865:6;54858:14;;-1:-1:-1;;;54858:14:0;;;;;;;;:::i;54469:523::-;;;54914:62;;-1:-1:-1;;;54914:62:0;;18345:2:1;54914:62:0;;;18327:21:1;18384:2;18364:18;;;18357:30;18423:34;18403:18;;;18396:62;-1:-1:-1;;;18474:18:1;;;18467:50;18534:19;;54914:62:0;18143:416:1;54469:523:0;-1:-1:-1;;;;;;54634:60:0;;-1:-1:-1;;;54634:60:0;54630:159;;54719:50;;-1:-1:-1;;;54719:50:0;;;;;;;:::i;55018:198::-;55138:16;;;55152:1;55138:16;;;;;;;;;55084;;55113:22;;55138:16;;;;;;;;;;;;-1:-1:-1;55138:16:0;55113:41;;55176:7;55165:5;55171:1;55165:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;55203:5;55018:198;-1:-1:-1;;55018:198:0:o;53445:744::-;-1:-1:-1;;;;;53660:13:0;;20320:19;:23;53656:526;;53696:72;;-1:-1:-1;;;53696:72:0;;-1:-1:-1;;;;;53696:38:0;;;;;:72;;53735:8;;53745:4;;53751:2;;53755:6;;53763:4;;53696:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53696:72:0;;;;;;;;-1:-1:-1;;53696:72:0;;;;;;;;;;;;:::i;:::-;;;53692:479;;;;:::i;:::-;-1:-1:-1;;;;;;53818:55:0;;-1:-1:-1;;;53818:55:0;53814:154;;53898:50;;-1:-1:-1;;;53898:50:0;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:423::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1357:3;1560:1;1553:4;1544:6;1539:3;1535:16;1531:27;1524:38;1623:4;1616:2;1612:7;1607:2;1599:6;1595:15;1591:29;1586:3;1582:39;1578:50;1571:57;;;1211:423;;;;:::o;1639:220::-;1788:2;1777:9;1770:21;1751:4;1808:45;1849:2;1838:9;1834:18;1826:6;1808:45;:::i;1864:180::-;1923:6;1976:2;1964:9;1955:7;1951:23;1947:32;1944:52;;;1992:1;1989;1982:12;1944:52;-1:-1:-1;2015:23:1;;1864:180;-1:-1:-1;1864:180:1:o;2049:186::-;2108:6;2161:2;2149:9;2140:7;2136:23;2132:32;2129:52;;;2177:1;2174;2167:12;2129:52;2200:29;2219:9;2200:29;:::i;2240:127::-;2301:10;2296:3;2292:20;2289:1;2282:31;2332:4;2329:1;2322:15;2356:4;2353:1;2346:15;2372:249;2482:2;2463:13;;-1:-1:-1;;2459:27:1;2447:40;;2517:18;2502:34;;2538:22;;;2499:62;2496:88;;;2564:18;;:::i;:::-;2600:2;2593:22;-1:-1:-1;;2372:249:1:o;2626:183::-;2686:4;2719:18;2711:6;2708:30;2705:56;;;2741:18;;:::i;:::-;-1:-1:-1;2786:1:1;2782:14;2798:4;2778:25;;2626:183::o;2814:724::-;2868:5;2921:3;2914:4;2906:6;2902:17;2898:27;2888:55;;2939:1;2936;2929:12;2888:55;2975:6;2962:20;3001:4;3024:43;3064:2;3024:43;:::i;:::-;3096:2;3090:9;3108:31;3136:2;3128:6;3108:31;:::i;:::-;3174:18;;;3266:1;3262:10;;;;3250:23;;3246:32;;;3208:15;;;;-1:-1:-1;3290:15:1;;;3287:35;;;3318:1;3315;3308:12;3287:35;3354:2;3346:6;3342:15;3366:142;3382:6;3377:3;3374:15;3366:142;;;3448:17;;3436:30;;3486:12;;;;3399;;3366:142;;;-1:-1:-1;3526:6:1;2814:724;-1:-1:-1;;;;;;2814:724:1:o;3543:555::-;3585:5;3638:3;3631:4;3623:6;3619:17;3615:27;3605:55;;3656:1;3653;3646:12;3605:55;3692:6;3679:20;3718:18;3714:2;3711:26;3708:52;;;3740:18;;:::i;:::-;3789:2;3783:9;3801:67;3856:2;3837:13;;-1:-1:-1;;3833:27:1;3862:4;3829:38;3783:9;3801:67;:::i;:::-;3892:2;3884:6;3877:18;3938:3;3931:4;3926:2;3918:6;3914:15;3910:26;3907:35;3904:55;;;3955:1;3952;3945:12;3904:55;4019:2;4012:4;4004:6;4000:17;3993:4;3985:6;3981:17;3968:54;4066:1;4042:15;;;4059:4;4038:26;4031:37;;;;4046:6;3543:555;-1:-1:-1;;;3543:555:1:o;4103:943::-;4257:6;4265;4273;4281;4289;4342:3;4330:9;4321:7;4317:23;4313:33;4310:53;;;4359:1;4356;4349:12;4310:53;4382:29;4401:9;4382:29;:::i;:::-;4372:39;;4430:38;4464:2;4453:9;4449:18;4430:38;:::i;:::-;4420:48;;4519:2;4508:9;4504:18;4491:32;4542:18;4583:2;4575:6;4572:14;4569:34;;;4599:1;4596;4589:12;4569:34;4622:61;4675:7;4666:6;4655:9;4651:22;4622:61;:::i;:::-;4612:71;;4736:2;4725:9;4721:18;4708:32;4692:48;;4765:2;4755:8;4752:16;4749:36;;;4781:1;4778;4771:12;4749:36;4804:63;4859:7;4848:8;4837:9;4833:24;4804:63;:::i;:::-;4794:73;;4920:3;4909:9;4905:19;4892:33;4876:49;;4950:2;4940:8;4937:16;4934:36;;;4966:1;4963;4956:12;4934:36;;4989:51;5032:7;5021:8;5010:9;5006:24;4989:51;:::i;:::-;4979:61;;;4103:943;;;;;;;;:::o;5051:1208::-;5169:6;5177;5230:2;5218:9;5209:7;5205:23;5201:32;5198:52;;;5246:1;5243;5236:12;5198:52;5286:9;5273:23;5315:18;5356:2;5348:6;5345:14;5342:34;;;5372:1;5369;5362:12;5342:34;5410:6;5399:9;5395:22;5385:32;;5455:7;5448:4;5444:2;5440:13;5436:27;5426:55;;5477:1;5474;5467:12;5426:55;5513:2;5500:16;5535:4;5558:43;5598:2;5558:43;:::i;:::-;5630:2;5624:9;5642:31;5670:2;5662:6;5642:31;:::i;:::-;5708:18;;;5796:1;5792:10;;;;5784:19;;5780:28;;;5742:15;;;;-1:-1:-1;5820:19:1;;;5817:39;;;5852:1;5849;5842:12;5817:39;5876:11;;;;5896:148;5912:6;5907:3;5904:15;5896:148;;;5978:23;5997:3;5978:23;:::i;:::-;5966:36;;5929:12;;;;6022;;;;5896:148;;;6063:6;-1:-1:-1;;6107:18:1;;6094:32;;-1:-1:-1;;6138:16:1;;;6135:36;;;6167:1;6164;6157:12;6135:36;;6190:63;6245:7;6234:8;6223:9;6219:24;6190:63;:::i;:::-;6180:73;;;5051:1208;;;;;:::o;6264:435::-;6317:3;6355:5;6349:12;6382:6;6377:3;6370:19;6408:4;6437:2;6432:3;6428:12;6421:19;;6474:2;6467:5;6463:14;6495:1;6505:169;6519:6;6516:1;6513:13;6505:169;;;6580:13;;6568:26;;6614:12;;;;6649:15;;;;6541:1;6534:9;6505:169;;;-1:-1:-1;6690:3:1;;6264:435;-1:-1:-1;;;;;6264:435:1:o;6704:261::-;6883:2;6872:9;6865:21;6846:4;6903:56;6955:2;6944:9;6940:18;6932:6;6903:56;:::i;7178:347::-;7243:6;7251;7304:2;7292:9;7283:7;7279:23;7275:32;7272:52;;;7320:1;7317;7310:12;7272:52;7343:29;7362:9;7343:29;:::i;:::-;7333:39;;7422:2;7411:9;7407:18;7394:32;7469:5;7462:13;7455:21;7448:5;7445:32;7435:60;;7491:1;7488;7481:12;7435:60;7514:5;7504:15;;;7178:347;;;;;:::o;7530:595::-;7648:6;7656;7709:2;7697:9;7688:7;7684:23;7680:32;7677:52;;;7725:1;7722;7715:12;7677:52;7765:9;7752:23;7794:18;7835:2;7827:6;7824:14;7821:34;;;7851:1;7848;7841:12;7821:34;7874:61;7927:7;7918:6;7907:9;7903:22;7874:61;:::i;:::-;7864:71;;7988:2;7977:9;7973:18;7960:32;7944:48;;8017:2;8007:8;8004:16;8001:36;;;8033:1;8030;8023:12;8130:316;8207:6;8215;8223;8276:2;8264:9;8255:7;8251:23;8247:32;8244:52;;;8292:1;8289;8282:12;8244:52;-1:-1:-1;;8315:23:1;;;8385:2;8370:18;;8357:32;;-1:-1:-1;8436:2:1;8421:18;;;8408:32;;8130:316;-1:-1:-1;8130:316:1:o;8451:260::-;8519:6;8527;8580:2;8568:9;8559:7;8555:23;8551:32;8548:52;;;8596:1;8593;8586:12;8548:52;8619:29;8638:9;8619:29;:::i;:::-;8609:39;;8667:38;8701:2;8690:9;8686:18;8667:38;:::i;:::-;8657:48;;8451:260;;;;;:::o;8716:606::-;8820:6;8828;8836;8844;8852;8905:3;8893:9;8884:7;8880:23;8876:33;8873:53;;;8922:1;8919;8912:12;8873:53;8945:29;8964:9;8945:29;:::i;:::-;8935:39;;8993:38;9027:2;9016:9;9012:18;8993:38;:::i;:::-;8983:48;;9078:2;9067:9;9063:18;9050:32;9040:42;;9129:2;9118:9;9114:18;9101:32;9091:42;;9184:3;9173:9;9169:19;9156:33;9212:18;9204:6;9201:30;9198:50;;;9244:1;9241;9234:12;9198:50;9267:49;9308:7;9299:6;9288:9;9284:22;9267:49;:::i;9738:380::-;9817:1;9813:12;;;;9860;;;9881:61;;9935:4;9927:6;9923:17;9913:27;;9881:61;9988:2;9980:6;9977:14;9957:18;9954:38;9951:161;;10034:10;10029:3;10025:20;10022:1;10015:31;10069:4;10066:1;10059:15;10097:4;10094:1;10087:15;9951:161;;9738:380;;;:::o;10123:410::-;10325:2;10307:21;;;10364:2;10344:18;;;10337:30;10403:34;10398:2;10383:18;;10376:62;-1:-1:-1;;;10469:2:1;10454:18;;10447:44;10523:3;10508:19;;10123:410::o;10948:127::-;11009:10;11004:3;11000:20;10997:1;10990:31;11040:4;11037:1;11030:15;11064:4;11061:1;11054:15;11080:127;11141:10;11136:3;11132:20;11129:1;11122:31;11172:4;11169:1;11162:15;11196:4;11193:1;11186:15;11212:135;11251:3;11272:17;;;11269:43;;11292:18;;:::i;:::-;-1:-1:-1;11339:1:1;11328:13;;11212:135::o;11352:125::-;11417:9;;;11438:10;;;11435:36;;;11451:18;;:::i;13436:404::-;13638:2;13620:21;;;13677:2;13657:18;;;13650:30;13716:34;13711:2;13696:18;;13689:62;-1:-1:-1;;;13782:2:1;13767:18;;13760:38;13830:3;13815:19;;13436:404::o;13845:401::-;14047:2;14029:21;;;14086:2;14066:18;;;14059:30;14125:34;14120:2;14105:18;;14098:62;-1:-1:-1;;;14191:2:1;14176:18;;14169:35;14236:3;14221:19;;13845:401::o;14251:406::-;14453:2;14435:21;;;14492:2;14472:18;;;14465:30;14531:34;14526:2;14511:18;;14504:62;-1:-1:-1;;;14597:2:1;14582:18;;14575:40;14647:3;14632:19;;14251:406::o;14662:465::-;14919:2;14908:9;14901:21;14882:4;14945:56;14997:2;14986:9;14982:18;14974:6;14945:56;:::i;:::-;15049:9;15041:6;15037:22;15032:2;15021:9;15017:18;15010:50;15077:44;15114:6;15106;15077:44;:::i;:::-;15069:52;14662:465;-1:-1:-1;;;;;14662:465:1:o;15132:397::-;15334:2;15316:21;;;15373:2;15353:18;;;15346:30;15412:34;15407:2;15392:18;;15385:62;-1:-1:-1;;;15478:2:1;15463:18;;15456:31;15519:3;15504:19;;15132:397::o;16197:827::-;-1:-1:-1;;;;;16594:15:1;;;16576:34;;16646:15;;16641:2;16626:18;;16619:43;16556:3;16693:2;16678:18;;16671:31;;;16519:4;;16725:57;;16762:19;;16754:6;16725:57;:::i;:::-;16830:9;16822:6;16818:22;16813:2;16802:9;16798:18;16791:50;16864:44;16901:6;16893;16864:44;:::i;:::-;16850:58;;16957:9;16949:6;16945:22;16939:3;16928:9;16924:19;16917:51;16985:33;17011:6;17003;16985:33;:::i;:::-;16977:41;16197:827;-1:-1:-1;;;;;;;;16197:827:1:o;17029:249::-;17098:6;17151:2;17139:9;17130:7;17126:23;17122:32;17119:52;;;17167:1;17164;17157:12;17119:52;17199:9;17193:16;17218:30;17242:5;17218:30;:::i;17283:179::-;17318:3;17360:1;17342:16;17339:23;17336:120;;;17406:1;17403;17400;17385:23;-1:-1:-1;17443:1:1;17437:8;17432:3;17428:18;17336:120;17283:179;:::o;17467:671::-;17506:3;17548:4;17530:16;17527:26;17524:39;;;17467:671;:::o;17524:39::-;17590:2;17584:9;-1:-1:-1;;17655:16:1;17651:25;;17648:1;17584:9;17627:50;17706:4;17700:11;17730:16;17765:18;17836:2;17829:4;17821:6;17817:17;17814:25;17809:2;17801:6;17798:14;17795:45;17792:58;;;17843:5;;;;;17467:671;:::o;17792:58::-;17880:6;17874:4;17870:17;17859:28;;17916:3;17910:10;17943:2;17935:6;17932:14;17929:27;;;17949:5;;;;;;17467:671;:::o;17929:27::-;18033:2;18014:16;18008:4;18004:27;18000:36;17993:4;17984:6;17979:3;17975:16;17971:27;17968:69;17965:82;;;18040:5;;;;;;17467:671;:::o;17965:82::-;18056:57;18107:4;18098:6;18090;18086:19;18082:30;18076:4;18056:57;:::i;:::-;-1:-1:-1;18129:3:1;;17467:671;-1:-1:-1;;;;;17467:671:1:o;18564:404::-;18766:2;18748:21;;;18805:2;18785:18;;;18778:30;18844:34;18839:2;18824:18;;18817:62;-1:-1:-1;;;18910:2:1;18895:18;;18888:38;18958:3;18943:19;;18564:404::o;18973:561::-;-1:-1:-1;;;;;19270:15:1;;;19252:34;;19322:15;;19317:2;19302:18;;19295:43;19369:2;19354:18;;19347:34;;;19412:2;19397:18;;19390:34;;;19232:3;19455;19440:19;;19433:32;;;19195:4;;19482:46;;19508:19;;19500:6;19482:46;:::i;:::-;19474:54;18973:561;-1:-1:-1;;;;;;;18973:561:1:o

Swarm Source

ipfs://29726a41f3dcf6c382382e8921c367e667b0b2d80d24f48a22c2df7b5dcd0a8c
Loading...
Loading
Loading...
Loading
[ 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.