ETH Price: $3,155.48 (-3.06%)

Token

Pass Dream Team (PASSDT)
 

Overview

Max Total Supply

75 PASSDT

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
0x0000000000000000000000000000000000000000
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:
DreamTeamPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

// SPDX-License-Identifier: Unlicensed

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                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 v4.4.1 (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 be 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.6.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: balance query for the zero address");
        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 owner nor 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: transfer caller is not owner nor 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}.
     *
     * 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`
     *
     * 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}.
     *
     * 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 a {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 `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 _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: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/Dreamteam.sol

/*
  _____                             _______                   
 |  __ \                           |__   __|                  
 | |  | |_ __ ___  __ _ _ __ ___      | | ___  __ _ _ __ ___  
 | |  | | '__/ _ \/ _` | '_ ` _ \     | |/ _ \/ _` | '_ ` _ \ 
 | |__| | | |  __/ (_| | | | | | |    | |  __/ (_| | | | | | |
 |_____/|_|  \___|\__,_|_| |_| |_|    |_|\___|\__,_|_| |_| |_|
                                                              
*/


pragma solidity >=0.8.0;







contract DreamTeamPass is ERC1155Burnable, ReentrancyGuard, Ownable {
	using SafeMath for uint256;

	string private baseURI;

    uint16 public TOTAL_DIAMOND_MINTED;
    uint16 public TOTAL_PREMIUM_MINTED;

    uint8 public constant MAX_MINT_PUBLIC_DIAMOND = 8;
    uint8 public constant MAX_MINT_PUBLIC_PREMIUM = 15;
    uint8 public constant MAX_MINT_PRESALE_DIAMOND = 2;
    uint8 public constant MAX_MINT_PRESALE_PREMIUM = 2;

    uint8 public constant TEAM_MINT_DIAMOND = 3;
    uint8 public constant TEAM_MINT_PREMIUM = 6;

    uint256 public PUBLIC_SALE_DIAMOND_PRICE = 1 ether;
    uint256 public PRESALE_DIAMOND_PRICE = 1 ether;

    uint256 public PUBLIC_SALE_PREMIUM_PRICE = .30 ether;
    uint256 public PRESALE_PREMIUM_PRICE = .25 ether;

    uint8 public constant PREMIUM_PASS_TOKEN_ID = 0;
	uint8 public constant DIAMOND_PASS_TOKEN_ID = 1;
	string public constant NAME = "Pass Dream Team";
	string public constant SYMBOL = "PASSDT";

	uint16[2] public supplyCaps = [153, 18];

	bytes32 public premiumMerkleRoot;
	bytes32 public diamondMerkleRoot;

    bool public isPublicSale;
    bool public isPresale;

	mapping(uint8 => uint256) public supplies;

	mapping(address => uint256) public amountPerWallets;

    mapping(address => uint16) public totalDiamondPresaleMinted;
    mapping(address => uint16) public totalDiamondPublicMinted;
    mapping(address => uint16) public totalPremiumPresaleMinted;
    mapping(address => uint16) public totalPremiumPublicMinted;


	constructor(
		string memory _baseURI
	) ERC1155(_baseURI) {
		baseURI = _baseURI;
        _teamMint();
	}

    function _teamMint() internal onlyOwner {
        TOTAL_DIAMOND_MINTED += TEAM_MINT_DIAMOND;
        _mint(msg.sender, DIAMOND_PASS_TOKEN_ID, TEAM_MINT_DIAMOND, "");
        TOTAL_PREMIUM_MINTED += TEAM_MINT_PREMIUM;
        _mint(msg.sender, PREMIUM_PASS_TOKEN_ID, TEAM_MINT_PREMIUM, "");
    }

    function mintDiamondPublic(uint16 _quantity) external payable {
        require(isPublicSale, "Public Sale Not Yet Active.");
        require(
            (totalDiamondPublicMinted[msg.sender] + _quantity) <= MAX_MINT_PUBLIC_DIAMOND,
            "Already minted max allowed amount!"
        );
        require(msg.value >= (PUBLIC_SALE_DIAMOND_PRICE * _quantity), "Payment is below the price");

        TOTAL_DIAMOND_MINTED += _quantity;
        totalDiamondPublicMinted[msg.sender] += _quantity;
        _mint(msg.sender, DIAMOND_PASS_TOKEN_ID, _quantity, "");
        refundIfOver(PUBLIC_SALE_DIAMOND_PRICE * _quantity);
    }

    function mintPremiumPublic(uint16 _quantity) external payable {
        require(isPublicSale, "Public Sale Not Yet Active.");
        require(
            (totalPremiumPublicMinted[msg.sender] + _quantity) <= MAX_MINT_PUBLIC_PREMIUM,
            "Already minted max allowed amount!"
        );
        require(msg.value >= (PUBLIC_SALE_PREMIUM_PRICE * _quantity), "Payment is below the price");

        TOTAL_PREMIUM_MINTED += _quantity;
        totalPremiumPublicMinted[msg.sender] += _quantity;
        _mint(msg.sender, PREMIUM_PASS_TOKEN_ID, _quantity, "");
        refundIfOver(PUBLIC_SALE_PREMIUM_PRICE * _quantity);
    }

    function mintDiamondPresale(bytes32[] memory _merkleProof, uint16 _quantity) external payable {
        require(isPresale, "Presale Not Yet Active");
        require(
            (totalDiamondPresaleMinted[msg.sender] + _quantity) <= MAX_MINT_PRESALE_PREMIUM,
            "Cannot mint beyond presale max mint!"
        );
        require(msg.value >= (PRESALE_DIAMOND_PRICE * _quantity), "Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, diamondMerkleRoot, sender), "You are not in whitelist");

        TOTAL_DIAMOND_MINTED += _quantity;
        totalDiamondPresaleMinted[msg.sender] += _quantity;
        _mint(msg.sender, DIAMOND_PASS_TOKEN_ID, _quantity, "");
        refundIfOver(PRESALE_DIAMOND_PRICE * _quantity);
    }

    function mintPremiumPresale(bytes32[] memory _merkleProof, uint16 _quantity) external payable {
        require(isPresale, "Presale Not Yet Active");
        require(
            (totalPremiumPresaleMinted[msg.sender] + _quantity) <= MAX_MINT_PRESALE_DIAMOND,
            "Cannot mint beyond presale max mint!"
        );
        require(msg.value >= (PRESALE_PREMIUM_PRICE * _quantity), "Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, premiumMerkleRoot, sender), "You are not in whitelist");

        TOTAL_PREMIUM_MINTED += _quantity;
        totalPremiumPresaleMinted[msg.sender] += _quantity;
        _mint(msg.sender, PREMIUM_PASS_TOKEN_ID, _quantity, "");
        refundIfOver(PRESALE_PREMIUM_PRICE * _quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

	function setBaseUri(string memory _baseURI) external onlyOwner {
		baseURI = _baseURI;
	}

    function setSupply(uint16[2] memory _supply) external onlyOwner {
		supplyCaps = _supply;
	}

    function setPresalePremiumPrice(uint256 _price) external onlyOwner {
		PRESALE_PREMIUM_PRICE = _price;
	}

    function setPresaleDiamondPrice(uint256 _price) external onlyOwner {
		PRESALE_DIAMOND_PRICE = _price;
	}

    function setPublicPremiumPrice(uint256 _price) external onlyOwner {
		PUBLIC_SALE_PREMIUM_PRICE = _price;
	}

    function setPublicDiamondPrice(uint256 _price) external onlyOwner {
		PUBLIC_SALE_DIAMOND_PRICE = _price;
	}

	function setDiamondMerkleRoot(bytes32 _diamondMerkleRoot) external onlyOwner {
		diamondMerkleRoot = _diamondMerkleRoot;
	}

	function setPremiumMerkleRoot(bytes32 _premiumMerkleRoot)
		external
		onlyOwner
	{
		premiumMerkleRoot = _premiumMerkleRoot;
	}

	function name() public pure returns (string memory) {
		return NAME;
	}

	function symbol() public pure returns (string memory) {
		return SYMBOL;
	}

    function toggleIsPresale() external onlyOwner {
        isPresale = !isPresale;
    }

    function toggleIsPublicSale() external onlyOwner {
        isPublicSale = !isPublicSale;
    }

	function uri(uint256 typeId) public view override returns (string memory) {
		require(
			typeId == DIAMOND_PASS_TOKEN_ID || typeId == PREMIUM_PASS_TOKEN_ID,
			"Dream Team Pass: URI requested for invalid token type"
		);
		require(bytes(baseURI).length > 0, "Dream Team Pass: base URI is not set");

        return string(abi.encodePacked(baseURI, Strings.toString(typeId),".json"));
	}

	function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

	function _mint(
		address to,
		uint256 id,
		uint256 amount,
		bytes memory data
	) internal override {
		require(
			supplies[uint8(id)] < supplyCaps[uint8(id)],
			"Dream Team Pass: Suppy limit was hit"
		);

		supplies[uint8(id)] += amount;
		super._mint(to, id, amount, data);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"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":[],"name":"DIAMOND_PASS_TOKEN_ID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE_DIAMOND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE_PREMIUM","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PUBLIC_DIAMOND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PUBLIC_PREMIUM","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREMIUM_PASS_TOKEN_ID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_DIAMOND_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PREMIUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_DIAMOND_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PREMIUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_DIAMOND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_PREMIUM","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_DIAMOND_MINTED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_PREMIUM_MINTED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountPerWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"diamondMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintDiamondPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintDiamondPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintPremiumPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintPremiumPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_diamondMerkleRoot","type":"bytes32"}],"name":"setDiamondMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_premiumMerkleRoot","type":"bytes32"}],"name":"setPremiumMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresaleDiamondPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePremiumPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicDiamondPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPremiumPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[2]","name":"_supply","type":"uint16[2]"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"supplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyCaps","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"pure","type":"function"},{"inputs":[],"name":"toggleIsPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIsPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalDiamondPresaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalDiamondPublicMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPremiumPresaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPremiumPublicMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

670de0b6b3a76400006007819055600855670429d069189e00006009556703782dace9d90000600a5560c060405260996080908152601260a0526200004990600b906002620006bf565b503480156200005757600080fd5b50604051620041a1380380620041a18339810160408190526200007a9162000820565b806200008681620000be565b5060016003556200009733620000d7565b8051620000ac9060059060208401906200075b565b50620000b762000129565b5062000afb565b8051620000d39060029060208401906200075b565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6004546001600160a01b03163314620001895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6006805460039190600090620001a590849061ffff1662000948565b92506101000a81548161ffff021916908361ffff160217905550620001ea33600160ff16600360ff16604051806020016040528060008152506200025160201b60201c565b6006805481906002906200020a90839062010000900461ffff1662000948565b92506101000a81548161ffff021916908361ffff1602179055506200024f33600060ff16600660ff16604051806020016040528060008152506200025160201b60201c565b565b600b8360ff16600281106200027657634e487b7160e01b600052603260045260246000fd5b601091828204019190066002029054906101000a900461ffff1661ffff16600f60008560ff1660ff1681526020019081526020016000205410620003095760405162461bcd60e51b8152602060048201526024808201527f447265616d205465616d20506173733a205375707079206c696d697420776173604482015263081a1a5d60e21b606482015260840162000180565b60ff83166000908152600f6020526040812080548492906200032d90849062000971565b925050819055506200034d848484846200035360201b620019e91760201c565b50505050565b6001600160a01b038416620003b55760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000180565b336000620003c38562000471565b90506000620003d28562000471565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906200040690849062000971565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46200046883600089898989620004d3565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110620004ba57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b505050505050565b620004f2846001600160a01b0316620006b060201b62001afd1760201c565b15620004cb5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906200052e9089908990889088908890600401620008ec565b602060405180830381600087803b1580156200054957600080fd5b505af19250505080156200057c575060408051601f3d908101601f191682019092526200057991810190620007ef565b60015b6200063d576200058b62000a53565b806308c379a01415620005cc5750620005a362000a6c565b80620005b05750620005ce565b8060405162461bcd60e51b815260040162000180919062000933565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840162000180565b6001600160e01b0319811663f23a6e6160e01b14620004685760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840162000180565b6001600160a01b03163b151590565b600183019183908215620007495791602002820160005b838211156200071757835183826101000a81548161ffff021916908360ff1602179055509260200192600201602081600101049283019260010302620006d6565b8015620007475782816101000a81549061ffff021916905560020160208160010104928301926001030262000717565b505b5062000757929150620007d8565b5090565b8280546200076990620009bb565b90600052602060002090601f0160209004810192826200078d576000855562000749565b82601f10620007a857805160ff191683800117855562000749565b8280016001018555821562000749579182015b8281111562000749578251825591602001919060010190620007bb565b5b80821115620007575760008155600101620007d9565b60006020828403121562000801578081fd5b81516001600160e01b03198116811462000819578182fd5b9392505050565b60006020828403121562000832578081fd5b81516001600160401b038082111562000849578283fd5b818401915084601f8301126200085d578283fd5b81518181111562000872576200087262000a3d565b60405191506200088d601f8201601f191660200183620009f8565b808252856020828501011115620008a2578384fd5b620008b58160208401602086016200098c565b50949350505050565b60008151808452620008d88160208601602086016200098c565b601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906200092890830184620008be565b979650505050505050565b602081526000620008196020830184620008be565b600061ffff80831681851680830382111562000968576200096862000a27565b01949350505050565b6000821982111562000987576200098762000a27565b500190565b60005b83811015620009a95781810151838201526020016200098f565b838111156200034d5750506000910152565b600181811c90821680620009d057607f821691505b60208210811415620009f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171562000a205762000a2062000a3d565b6040525050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111562000a6957600481823e5160e01c5b90565b600060443d101562000a7b5790565b6040516003193d81016004833e81513d6001600160401b03808311602484018310171562000aab57505050505090565b828501915081518181111562000ac45750505050505090565b843d870101602082850101111562000adf5750505050505090565b62000af060208286010187620009f8565b509095945050505050565b6136968062000b0b6000396000f3fe6080604052600436106103755760003560e01c806391e3a902116101d1578063cdc8954711610102578063f242432a116100a0578063f76f8d781161006f578063f76f8d7814610a4e578063fa845dc514610a80578063fd1ebd4314610aa0578063ff803d4114610ab657600080fd5b8063f242432a146109ce578063f2fde38b146109ee578063f5298aca14610a0e578063f57a538814610a2e57600080fd5b8063e396d525116100dc578063e396d5251461093a578063e68269dd14610950578063e985e9c514610965578063ee0eeb09146109ae57600080fd5b8063cdc8954714610804578063d2b314c8146108ed578063dbaae9131461090d57600080fd5b8063a22cb4651161016f578063a5a865dc11610149578063a5a865dc14610894578063a703502c146108ae578063b01e066a146108c3578063bcc7a3a2146108d857600080fd5b8063a22cb46514610819578063a3f4df7e14610839578063a4120ec71461087457600080fd5b80639bed4a71116101ab5780639bed4a711461079d578063a0bcfc7f146107b3578063a1b135d9146107d3578063a1d3b7e61461080457600080fd5b806391e3a9021461072f57806395364a841461074f57806395d89b411461076e57600080fd5b80634e1273f4116102ab5780636a9e18a611610249578063742184dc11610223578063742184dc146106bc578063781bcb91146106dc5780638474a436146106f15780638da5cb5b1461070757600080fd5b80636a9e18a61461065a5780636b20c45414610687578063715018a6146106a757600080fd5b806358b3a9941161028557806358b3a994146105ee5780635dee1e951461060457806363f6a97d1461062557806368162a281461063a57600080fd5b80634e1273f4146105935780634e25b578146105c057806354666377146105db57600080fd5b806320e18eb8116103185780633a7e0a5d116102f25780633a7e0a5d146105075780633ccfd60b1461053857806343d488521461054d57806349578cbf1461056257600080fd5b806320e18eb81461048d57806329ab6f58146104a35780632eb2c2d6146104e757600080fd5b806307f316ee1161035457806307f316ee1461041e5780630e89341c14610433578063146b41c4146104535780631c6e52cc1461047a57600080fd5b8062fdd58e1461037a57806301ffc9a7146103ad57806306fdde03146103dd575b600080fd5b34801561038657600080fd5b5061039a610395366004612bc1565b610ac9565b6040519081526020015b60405180910390f35b3480156103b957600080fd5b506103cd6103c8366004612e37565b610b60565b60405190151581526020016103a4565b3480156103e957600080fd5b5060408051808201909152600f81526e5061737320447265616d205465616d60881b60208201525b6040516103a49190613106565b61043161042c366004612eb4565b610bb2565b005b34801561043f57600080fd5b5061041161044e366004612e1f565b610d29565b34801561045f57600080fd5b50610468600f81565b60405160ff90911681526020016103a4565b610431610488366004612ce6565b610e3e565b34801561049957600080fd5b5061039a60095481565b3480156104af57600080fd5b506104d46104be3660046129c4565b60146020526000908152604090205461ffff1681565b60405161ffff90911681526020016103a4565b3480156104f357600080fd5b50610431610502366004612a10565b61103d565b34801561051357600080fd5b506104d46105223660046129c4565b60126020526000908152604090205461ffff1681565b34801561054457600080fd5b506104316110d4565b34801561055957600080fd5b50610468600681565b34801561056e57600080fd5b506104d461057d3660046129c4565b60116020526000908152604090205461ffff1681565b34801561059f57600080fd5b506105b36105ae366004612c1c565b61112a565b6040516103a491906130ce565b3480156105cc57600080fd5b506006546104d49061ffff1681565b6104316105e9366004612eb4565b61128b565b3480156105fa57600080fd5b5061039a60085481565b34801561061057600080fd5b506006546104d49062010000900461ffff1681565b34801561063157600080fd5b50610431611400565b34801561064657600080fd5b50610431610655366004612d94565b611447565b34801561066657600080fd5b5061039a610675366004612ece565b600f6020526000908152604090205481565b34801561069357600080fd5b506104316106a2366004612b17565b611482565b3480156106b357600080fd5b506104316114c5565b3480156106c857600080fd5b506104316106d7366004612e1f565b6114fb565b3480156106e857600080fd5b50610468600881565b3480156106fd57600080fd5b5061039a60075481565b34801561071357600080fd5b506004546040516001600160a01b0390911681526020016103a4565b34801561073b57600080fd5b5061043161074a366004612e1f565b61152a565b34801561075b57600080fd5b50600e546103cd90610100900460ff1681565b34801561077a57600080fd5b50604080518082019091526006815265141054d4d11560d21b6020820152610411565b3480156107a957600080fd5b5061039a600d5481565b3480156107bf57600080fd5b506104316107ce366004612e6f565b611559565b3480156107df57600080fd5b506104d46107ee3660046129c4565b60136020526000908152604090205461ffff1681565b34801561081057600080fd5b50610468600281565b34801561082557600080fd5b50610431610834366004612b87565b611596565b34801561084557600080fd5b506104116040518060400160405280600f81526020016e5061737320447265616d205465616d60881b81525081565b34801561088057600080fd5b5061043161088f366004612e1f565b6115a1565b3480156108a057600080fd5b50600e546103cd9060ff1681565b3480156108ba57600080fd5b50610468600181565b3480156108cf57600080fd5b506104316115d0565b3480156108e457600080fd5b50610468600381565b3480156108f957600080fd5b50610431610908366004612e1f565b61160e565b34801561091957600080fd5b5061039a6109283660046129c4565b60106020526000908152604090205481565b34801561094657600080fd5b5061039a600c5481565b34801561095c57600080fd5b50610468600081565b34801561097157600080fd5b506103cd6109803660046129de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156109ba57600080fd5b506104316109c9366004612e1f565b61163d565b3480156109da57600080fd5b506104316109e9366004612ab5565b61166c565b3480156109fa57600080fd5b50610431610a093660046129c4565b6116b1565b348015610a1a57600080fd5b50610431610a29366004612bea565b611749565b348015610a3a57600080fd5b506104d4610a49366004612e1f565b61178c565b348015610a5a57600080fd5b5061041160405180604001604052806006815260200165141054d4d11560d21b81525081565b348015610a8c57600080fd5b50610431610a9b366004612e1f565b6117ba565b348015610aac57600080fd5b5061039a600a5481565b610431610ac4366004612ce6565b6117e9565b60006001600160a01b038316610b3a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610b9157506001600160e01b031982166303a24d0760e21b145b80610bac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600e5460ff16610c045760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65204e6f7420596574204163746976652e00000000006044820152606401610b31565b33600090815260126020526040902054600890610c2690839061ffff1661341d565b61ffff161115610c485760405162461bcd60e51b8152600401610b3190613370565b8061ffff16600754610c5a919061346f565b341015610c795760405162461bcd60e51b8152600401610b31906131ee565b60068054829190600090610c9290849061ffff1661341d565b82546101009290920a61ffff81810219909316918316021790915533600090815260126020526040812080548594509092610ccf9185911661341d565b92506101000a81548161ffff021916908361ffff160217905550610d0c33600160ff168361ffff1660405180602001604052806000815250611b0c565b610d268161ffff16600754610d21919061346f565b611bfb565b50565b60606001821480610d38575081155b610da25760405162461bcd60e51b815260206004820152603560248201527f447265616d205465616d20506173733a205552492072657175657374656420666044820152746f7220696e76616c696420746f6b656e207479706560581b6064820152608401610b31565b600060058054610db1906134d1565b905011610e0c5760405162461bcd60e51b8152602060048201526024808201527f447265616d205465616d20506173733a206261736520555249206973206e6f74604482015263081cd95d60e21b6064820152608401610b31565b6005610e1783611c82565b604051602001610e28929190612f71565b6040516020818303038152906040529050919050565b600e54610100900460ff16610e8e5760405162461bcd60e51b815260206004820152601660248201527550726573616c65204e6f74205965742041637469766560501b6044820152606401610b31565b33600090815260116020526040902054600290610eb090839061ffff1661341d565b61ffff161115610ed25760405162461bcd60e51b8152600401610b319061332c565b8061ffff16600854610ee4919061346f565b341015610f035760405162461bcd60e51b8152600401610b31906131ee565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f4983600d5483611da3565b610f905760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b6044820152606401610b31565b60068054839190600090610fa990849061ffff1661341d565b82546101009290920a61ffff81810219909316918316021790915533600090815260116020526040812080548694509092610fe69185911661341d565b92506101000a81548161ffff021916908361ffff16021790555061102333600160ff168461ffff1660405180602001604052806000815250611b0c565b6110388261ffff16600854610d21919061346f565b505050565b6001600160a01b03851633148061105957506110598533610980565b6110c05760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b31565b6110cd8585858585611db9565b5050505050565b6004546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610b31906132f7565b60405133904780156108fc02916000818181858888f19350505050158015610d26573d6000803e3d6000fd5b6060815183511461118f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610b31565b600083516001600160401b038111156111b857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111e1578160200160208202803683370190505b50905060005b84518110156112835761124885828151811061121357634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061123b57634e487b7160e01b600052603260045260246000fd5b6020026020010151610ac9565b82828151811061126857634e487b7160e01b600052603260045260246000fd5b602090810291909101015261127c81613538565b90506111e7565b509392505050565b600e5460ff166112dd5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65204e6f7420596574204163746976652e00000000006044820152606401610b31565b33600090815260146020526040902054600f906112ff90839061ffff1661341d565b61ffff1611156113215760405162461bcd60e51b8152600401610b3190613370565b8061ffff16600954611333919061346f565b3410156113525760405162461bcd60e51b8152600401610b31906131ee565b80600660028282829054906101000a900461ffff16611371919061341d565b82546101009290920a61ffff818102199093169183160217909155336000908152601460205260408120805485945090926113ae9185911661341d565b92506101000a81548161ffff021916908361ffff1602179055506113eb33600060ff168361ffff1660405180602001604052806000815250611b0c565b610d268161ffff16600954610d21919061346f565b6004546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610b31906132f7565b600e805461ff001981166101009182900460ff1615909102179055565b6004546001600160a01b031633146114715760405162461bcd60e51b8152600401610b31906132f7565b61147e600b826002612780565b5050565b6001600160a01b03831633148061149e575061149e8333610980565b6114ba5760405162461bcd60e51b8152600401610b31906131a5565b611038838383611f71565b6004546001600160a01b031633146114ef5760405162461bcd60e51b8152600401610b31906132f7565b6114f96000612117565b565b6004546001600160a01b031633146115255760405162461bcd60e51b8152600401610b31906132f7565b600d55565b6004546001600160a01b031633146115545760405162461bcd60e51b8152600401610b31906132f7565b600a55565b6004546001600160a01b031633146115835760405162461bcd60e51b8152600401610b31906132f7565b805161147e906005906020840190612816565b61147e338383612169565b6004546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610b31906132f7565b600855565b6004546001600160a01b031633146115fa5760405162461bcd60e51b8152600401610b31906132f7565b600e805460ff19811660ff90911615179055565b6004546001600160a01b031633146116385760405162461bcd60e51b8152600401610b31906132f7565b600755565b6004546001600160a01b031633146116675760405162461bcd60e51b8152600401610b31906132f7565b600c55565b6001600160a01b03851633148061168857506116888533610980565b6116a45760405162461bcd60e51b8152600401610b31906131a5565b6110cd858585858561224a565b6004546001600160a01b031633146116db5760405162461bcd60e51b8152600401610b31906132f7565b6001600160a01b0381166117405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b31565b610d2681612117565b6001600160a01b03831633148061176557506117658333610980565b6117815760405162461bcd60e51b8152600401610b31906131a5565b611038838383612374565b600b816002811061179c57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6004546001600160a01b031633146117e45760405162461bcd60e51b8152600401610b31906132f7565b600955565b600e54610100900460ff166118395760405162461bcd60e51b815260206004820152601660248201527550726573616c65204e6f74205965742041637469766560501b6044820152606401610b31565b3360009081526013602052604090205460029061185b90839061ffff1661341d565b61ffff16111561187d5760405162461bcd60e51b8152600401610b319061332c565b8061ffff16600a5461188f919061346f565b3410156118ae5760405162461bcd60e51b8152600401610b31906131ee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506118f483600c5483611da3565b61193b5760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b6044820152606401610b31565b81600660028282829054906101000a900461ffff1661195a919061341d565b82546101009290920a61ffff818102199093169183160217909155336000908152601360205260408120805486945090926119979185911661341d565b92506101000a81548161ffff021916908361ffff1602179055506119d433600060ff168461ffff1660405180602001604052806000815250611b0c565b6110388261ffff16600a54610d21919061346f565b6001600160a01b038416611a495760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b31565b336000611a5585612478565b90506000611a6285612478565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611a94908490613443565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611af4836000898989896124d1565b50505050505050565b6001600160a01b03163b151590565b600b8360ff1660028110611b3057634e487b7160e01b600052603260045260246000fd5b601091828204019190066002029054906101000a900461ffff1661ffff16600f60008560ff1660ff1681526020019081526020016000205410611bc15760405162461bcd60e51b8152602060048201526024808201527f447265616d205465616d20506173733a205375707079206c696d697420776173604482015263081a1a5d60e21b6064820152608401610b31565b60ff83166000908152600f602052604081208054849290611be3908490613443565b90915550611bf59050848484846119e9565b50505050565b80341015611c445760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b31565b80341115610d2657336108fc611c5a833461348e565b6040518115909202916000818181858888f1935050505015801561147e573d6000803e3d6000fd5b606081611ca65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd05780611cba81613538565b9150611cc99050600a8361345b565b9150611caa565b6000816001600160401b03811115611cf857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d22576020820181803683370190505b5090505b8415611d9b57611d3760018361348e565b9150611d44600a86613553565b611d4f906030613443565b60f81b818381518110611d7257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d94600a8661345b565b9450611d26565b949350505050565b600082611db0858461263c565b14949350505050565b8151835114611dda5760405162461bcd60e51b8152600401610b31906133b2565b6001600160a01b038416611e005760405162461bcd60e51b8152600401610b3190613225565b3360005b8451811015611f03576000858281518110611e2f57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611e5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611eab5760405162461bcd60e51b8152600401610b31906132ad565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ee8908490613443565b9250508190555050505080611efc90613538565b9050611e04565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f539291906130e1565b60405180910390a4611f698187878787876126b6565b505050505050565b6001600160a01b038316611f975760405162461bcd60e51b8152600401610b319061326a565b8051825114611fb85760405162461bcd60e51b8152600401610b31906133b2565b604080516020810190915260009081905233905b83518110156120aa576000848281518110611ff757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061202357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156120735760405162461bcd60e51b8152600401610b3190613161565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806120a281613538565b915050611fcc565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516120fb9291906130e1565b60405180910390a4604080516020810190915260009052611bf5565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121dd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610b31565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166122705760405162461bcd60e51b8152600401610b3190613225565b33600061227c85612478565b9050600061228985612478565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156122cc5760405162461bcd60e51b8152600401610b31906132ad565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612309908490613443565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612369848a8a8a8a8a6124d1565b505050505050505050565b6001600160a01b03831661239a5760405162461bcd60e51b8152600401610b319061326a565b3360006123a684612478565b905060006123b384612478565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156124005760405162461bcd60e51b8152600401610b3190613161565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611af4565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106124c057634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611f695760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906125159089908990889088908890600401613089565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561255f575060408051601f3d908101601f1916820190925261255c91810190612e53565b60015b61260c5761256b6135a9565b806308c379a014156125a557506125806135c1565b8061258b57506125a7565b8060405162461bcd60e51b8152600401610b319190613106565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610b31565b6001600160e01b0319811663f23a6e6160e01b14611af45760405162461bcd60e51b8152600401610b3190613119565b600081815b845181101561128357600085828151811061266c57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161269257600083815260208290526040902092506126a3565b600081815260208490526040902092505b50806126ae81613538565b915050612641565b6001600160a01b0384163b15611f695760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126fa908990899088908890889060040161302b565b602060405180830381600087803b15801561271457600080fd5b505af1925050508015612744575060408051601f3d908101601f1916820190925261274191810190612e53565b60015b6127505761256b6135a9565b6001600160e01b0319811663bc197c8160e01b14611af45760405162461bcd60e51b8152600401610b3190613119565b6001830191839082156128065791602002820160005b838211156127d657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612796565b80156128045782816101000a81549061ffff02191690556002016020816001010492830192600103026127d6565b505b5061281292915061288a565b5090565b828054612822906134d1565b90600052602060002090601f0160209004810192826128445760008555612806565b82601f1061285d57805160ff1916838001178555612806565b82800160010185558215612806579182015b8281111561280657825182559160200191906001019061286f565b5b80821115612812576000815560010161288b565b60006001600160401b038311156128b8576128b8613593565b6040516128cf601f8501601f19166020018261350c565b8091508381528484840111156128e457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461291357600080fd5b919050565b600082601f830112612928578081fd5b81356020612935826133fa565b604051612942828261350c565b8381528281019150858301600585901b87018401881015612961578586fd5b855b8581101561297f57813584529284019290840190600101612963565b5090979650505050505050565b600082601f83011261299c578081fd5b6129ab8383356020850161289f565b9392505050565b803561ffff8116811461291357600080fd5b6000602082840312156129d5578081fd5b6129ab826128fc565b600080604083850312156129f0578081fd5b6129f9836128fc565b9150612a07602084016128fc565b90509250929050565b600080600080600060a08688031215612a27578081fd5b612a30866128fc565b9450612a3e602087016128fc565b935060408601356001600160401b0380821115612a59578283fd5b612a6589838a01612918565b94506060880135915080821115612a7a578283fd5b612a8689838a01612918565b93506080880135915080821115612a9b578283fd5b50612aa88882890161298c565b9150509295509295909350565b600080600080600060a08688031215612acc578283fd5b612ad5866128fc565b9450612ae3602087016128fc565b9350604086013592506060860135915060808601356001600160401b03811115612b0b578182fd5b612aa88882890161298c565b600080600060608486031215612b2b578081fd5b612b34846128fc565b925060208401356001600160401b0380821115612b4f578283fd5b612b5b87838801612918565b93506040860135915080821115612b70578283fd5b50612b7d86828701612918565b9150509250925092565b60008060408385031215612b99578182fd5b612ba2836128fc565b915060208301358015158114612bb6578182fd5b809150509250929050565b60008060408385031215612bd3578182fd5b612bdc836128fc565b946020939093013593505050565b600080600060608486031215612bfe578081fd5b612c07846128fc565b95602085013595506040909401359392505050565b60008060408385031215612c2e578182fd5b82356001600160401b0380821115612c44578384fd5b818501915085601f830112612c57578384fd5b81356020612c64826133fa565b604051612c71828261350c565b8381528281019150858301600585901b870184018b1015612c90578889fd5b8896505b84871015612cb957612ca5816128fc565b835260019690960195918301918301612c94565b5096505086013592505080821115612ccf578283fd5b50612cdc85828601612918565b9150509250929050565b60008060408385031215612cf8578182fd5b82356001600160401b03811115612d0d578283fd5b8301601f81018513612d1d578283fd5b80356020612d2a826133fa565b604051612d37828261350c565b8381528281019150848301600585901b860184018a1015612d56578788fd5b8795505b84861015612d78578035835260019590950194918301918301612d5a565b509550612d8890508682016129b2565b93505050509250929050565b600060408284031215612da5578081fd5b82601f830112612db3578081fd5b604051604081018181106001600160401b0382111715612dd557612dd5613593565b8060405250808385604086011115612deb578384fd5b835b6002811015612e1457612dff826129b2565b83526020928301929190910190600101612ded565b509195945050505050565b600060208284031215612e30578081fd5b5035919050565b600060208284031215612e48578081fd5b81356129ab8161364a565b600060208284031215612e64578081fd5b81516129ab8161364a565b600060208284031215612e80578081fd5b81356001600160401b03811115612e95578182fd5b8201601f81018413612ea5578182fd5b611d9b8482356020840161289f565b600060208284031215612ec5578081fd5b6129ab826129b2565b600060208284031215612edf578081fd5b813560ff811681146129ab578182fd5b6000815180845260208085019450808401835b83811015612f1e57815187529582019590820190600101612f02565b509495945050505050565b60008151808452612f418160208601602086016134a5565b601f01601f19169290920160200192915050565b60008151612f678185602086016134a5565b9290920192915050565b600080845482600182811c915080831680612f8d57607f831692505b6020808410821415612fad57634e487b7160e01b87526022600452602487fd5b818015612fc15760018114612fd257612ffe565b60ff19861689528489019650612ffe565b60008b815260209020885b86811015612ff65781548b820152908501908301612fdd565b505084890196505b5050505050506130226130118286612f55565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061305790830186612eef565b82810360608401526130698186612eef565b9050828103608084015261307d8185612f29565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906130c390830184612f29565b979650505050505050565b6020815260006129ab6020830184612eef565b6040815260006130f46040830185612eef565b82810360208401526130228185612eef565b6020815260006129ab6020830184612f29565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f43616e6e6f74206d696e74206265796f6e642070726573616c65206d6178206d604082015263696e742160e01b606082015260800190565b60208082526022908201527f416c7265616479206d696e746564206d617820616c6c6f77656420616d6f756e604082015261742160f01b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561341357613413613593565b5060051b60200190565b600061ffff80831681851680830382111561343a5761343a613567565b01949350505050565b6000821982111561345657613456613567565b500190565b60008261346a5761346a61357d565b500490565b600081600019048311821515161561348957613489613567565b500290565b6000828210156134a0576134a0613567565b500390565b60005b838110156134c05781810151838201526020016134a8565b83811115611bf55750506000910152565b600181811c908216806134e557607f821691505b6020821081141561350657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561353157613531613593565b6040525050565b600060001982141561354c5761354c613567565b5060010190565b6000826135625761356261357d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156135be57600481823e5160e01c5b90565b600060443d10156135cf5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156135fe57505050505090565b82850191508151818111156136165750505050505090565b843d87010160208285010111156136305750505050505090565b61363f6020828601018761350c565b509095945050505050565b6001600160e01b031981168114610d2657600080fdfea264697066735822122001238662fc63fc3ba3f1d4752ec5f7967d67ce457bdc9929af8b7a32d825f01b64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50524e5338373539564e32424a6266483578715578463236515576543553476473594c7673556e464d4b4e592f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103755760003560e01c806391e3a902116101d1578063cdc8954711610102578063f242432a116100a0578063f76f8d781161006f578063f76f8d7814610a4e578063fa845dc514610a80578063fd1ebd4314610aa0578063ff803d4114610ab657600080fd5b8063f242432a146109ce578063f2fde38b146109ee578063f5298aca14610a0e578063f57a538814610a2e57600080fd5b8063e396d525116100dc578063e396d5251461093a578063e68269dd14610950578063e985e9c514610965578063ee0eeb09146109ae57600080fd5b8063cdc8954714610804578063d2b314c8146108ed578063dbaae9131461090d57600080fd5b8063a22cb4651161016f578063a5a865dc11610149578063a5a865dc14610894578063a703502c146108ae578063b01e066a146108c3578063bcc7a3a2146108d857600080fd5b8063a22cb46514610819578063a3f4df7e14610839578063a4120ec71461087457600080fd5b80639bed4a71116101ab5780639bed4a711461079d578063a0bcfc7f146107b3578063a1b135d9146107d3578063a1d3b7e61461080457600080fd5b806391e3a9021461072f57806395364a841461074f57806395d89b411461076e57600080fd5b80634e1273f4116102ab5780636a9e18a611610249578063742184dc11610223578063742184dc146106bc578063781bcb91146106dc5780638474a436146106f15780638da5cb5b1461070757600080fd5b80636a9e18a61461065a5780636b20c45414610687578063715018a6146106a757600080fd5b806358b3a9941161028557806358b3a994146105ee5780635dee1e951461060457806363f6a97d1461062557806368162a281461063a57600080fd5b80634e1273f4146105935780634e25b578146105c057806354666377146105db57600080fd5b806320e18eb8116103185780633a7e0a5d116102f25780633a7e0a5d146105075780633ccfd60b1461053857806343d488521461054d57806349578cbf1461056257600080fd5b806320e18eb81461048d57806329ab6f58146104a35780632eb2c2d6146104e757600080fd5b806307f316ee1161035457806307f316ee1461041e5780630e89341c14610433578063146b41c4146104535780631c6e52cc1461047a57600080fd5b8062fdd58e1461037a57806301ffc9a7146103ad57806306fdde03146103dd575b600080fd5b34801561038657600080fd5b5061039a610395366004612bc1565b610ac9565b6040519081526020015b60405180910390f35b3480156103b957600080fd5b506103cd6103c8366004612e37565b610b60565b60405190151581526020016103a4565b3480156103e957600080fd5b5060408051808201909152600f81526e5061737320447265616d205465616d60881b60208201525b6040516103a49190613106565b61043161042c366004612eb4565b610bb2565b005b34801561043f57600080fd5b5061041161044e366004612e1f565b610d29565b34801561045f57600080fd5b50610468600f81565b60405160ff90911681526020016103a4565b610431610488366004612ce6565b610e3e565b34801561049957600080fd5b5061039a60095481565b3480156104af57600080fd5b506104d46104be3660046129c4565b60146020526000908152604090205461ffff1681565b60405161ffff90911681526020016103a4565b3480156104f357600080fd5b50610431610502366004612a10565b61103d565b34801561051357600080fd5b506104d46105223660046129c4565b60126020526000908152604090205461ffff1681565b34801561054457600080fd5b506104316110d4565b34801561055957600080fd5b50610468600681565b34801561056e57600080fd5b506104d461057d3660046129c4565b60116020526000908152604090205461ffff1681565b34801561059f57600080fd5b506105b36105ae366004612c1c565b61112a565b6040516103a491906130ce565b3480156105cc57600080fd5b506006546104d49061ffff1681565b6104316105e9366004612eb4565b61128b565b3480156105fa57600080fd5b5061039a60085481565b34801561061057600080fd5b506006546104d49062010000900461ffff1681565b34801561063157600080fd5b50610431611400565b34801561064657600080fd5b50610431610655366004612d94565b611447565b34801561066657600080fd5b5061039a610675366004612ece565b600f6020526000908152604090205481565b34801561069357600080fd5b506104316106a2366004612b17565b611482565b3480156106b357600080fd5b506104316114c5565b3480156106c857600080fd5b506104316106d7366004612e1f565b6114fb565b3480156106e857600080fd5b50610468600881565b3480156106fd57600080fd5b5061039a60075481565b34801561071357600080fd5b506004546040516001600160a01b0390911681526020016103a4565b34801561073b57600080fd5b5061043161074a366004612e1f565b61152a565b34801561075b57600080fd5b50600e546103cd90610100900460ff1681565b34801561077a57600080fd5b50604080518082019091526006815265141054d4d11560d21b6020820152610411565b3480156107a957600080fd5b5061039a600d5481565b3480156107bf57600080fd5b506104316107ce366004612e6f565b611559565b3480156107df57600080fd5b506104d46107ee3660046129c4565b60136020526000908152604090205461ffff1681565b34801561081057600080fd5b50610468600281565b34801561082557600080fd5b50610431610834366004612b87565b611596565b34801561084557600080fd5b506104116040518060400160405280600f81526020016e5061737320447265616d205465616d60881b81525081565b34801561088057600080fd5b5061043161088f366004612e1f565b6115a1565b3480156108a057600080fd5b50600e546103cd9060ff1681565b3480156108ba57600080fd5b50610468600181565b3480156108cf57600080fd5b506104316115d0565b3480156108e457600080fd5b50610468600381565b3480156108f957600080fd5b50610431610908366004612e1f565b61160e565b34801561091957600080fd5b5061039a6109283660046129c4565b60106020526000908152604090205481565b34801561094657600080fd5b5061039a600c5481565b34801561095c57600080fd5b50610468600081565b34801561097157600080fd5b506103cd6109803660046129de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156109ba57600080fd5b506104316109c9366004612e1f565b61163d565b3480156109da57600080fd5b506104316109e9366004612ab5565b61166c565b3480156109fa57600080fd5b50610431610a093660046129c4565b6116b1565b348015610a1a57600080fd5b50610431610a29366004612bea565b611749565b348015610a3a57600080fd5b506104d4610a49366004612e1f565b61178c565b348015610a5a57600080fd5b5061041160405180604001604052806006815260200165141054d4d11560d21b81525081565b348015610a8c57600080fd5b50610431610a9b366004612e1f565b6117ba565b348015610aac57600080fd5b5061039a600a5481565b610431610ac4366004612ce6565b6117e9565b60006001600160a01b038316610b3a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610b9157506001600160e01b031982166303a24d0760e21b145b80610bac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600e5460ff16610c045760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65204e6f7420596574204163746976652e00000000006044820152606401610b31565b33600090815260126020526040902054600890610c2690839061ffff1661341d565b61ffff161115610c485760405162461bcd60e51b8152600401610b3190613370565b8061ffff16600754610c5a919061346f565b341015610c795760405162461bcd60e51b8152600401610b31906131ee565b60068054829190600090610c9290849061ffff1661341d565b82546101009290920a61ffff81810219909316918316021790915533600090815260126020526040812080548594509092610ccf9185911661341d565b92506101000a81548161ffff021916908361ffff160217905550610d0c33600160ff168361ffff1660405180602001604052806000815250611b0c565b610d268161ffff16600754610d21919061346f565b611bfb565b50565b60606001821480610d38575081155b610da25760405162461bcd60e51b815260206004820152603560248201527f447265616d205465616d20506173733a205552492072657175657374656420666044820152746f7220696e76616c696420746f6b656e207479706560581b6064820152608401610b31565b600060058054610db1906134d1565b905011610e0c5760405162461bcd60e51b8152602060048201526024808201527f447265616d205465616d20506173733a206261736520555249206973206e6f74604482015263081cd95d60e21b6064820152608401610b31565b6005610e1783611c82565b604051602001610e28929190612f71565b6040516020818303038152906040529050919050565b600e54610100900460ff16610e8e5760405162461bcd60e51b815260206004820152601660248201527550726573616c65204e6f74205965742041637469766560501b6044820152606401610b31565b33600090815260116020526040902054600290610eb090839061ffff1661341d565b61ffff161115610ed25760405162461bcd60e51b8152600401610b319061332c565b8061ffff16600854610ee4919061346f565b341015610f035760405162461bcd60e51b8152600401610b31906131ee565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f4983600d5483611da3565b610f905760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b6044820152606401610b31565b60068054839190600090610fa990849061ffff1661341d565b82546101009290920a61ffff81810219909316918316021790915533600090815260116020526040812080548694509092610fe69185911661341d565b92506101000a81548161ffff021916908361ffff16021790555061102333600160ff168461ffff1660405180602001604052806000815250611b0c565b6110388261ffff16600854610d21919061346f565b505050565b6001600160a01b03851633148061105957506110598533610980565b6110c05760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b31565b6110cd8585858585611db9565b5050505050565b6004546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610b31906132f7565b60405133904780156108fc02916000818181858888f19350505050158015610d26573d6000803e3d6000fd5b6060815183511461118f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610b31565b600083516001600160401b038111156111b857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111e1578160200160208202803683370190505b50905060005b84518110156112835761124885828151811061121357634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061123b57634e487b7160e01b600052603260045260246000fd5b6020026020010151610ac9565b82828151811061126857634e487b7160e01b600052603260045260246000fd5b602090810291909101015261127c81613538565b90506111e7565b509392505050565b600e5460ff166112dd5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65204e6f7420596574204163746976652e00000000006044820152606401610b31565b33600090815260146020526040902054600f906112ff90839061ffff1661341d565b61ffff1611156113215760405162461bcd60e51b8152600401610b3190613370565b8061ffff16600954611333919061346f565b3410156113525760405162461bcd60e51b8152600401610b31906131ee565b80600660028282829054906101000a900461ffff16611371919061341d565b82546101009290920a61ffff818102199093169183160217909155336000908152601460205260408120805485945090926113ae9185911661341d565b92506101000a81548161ffff021916908361ffff1602179055506113eb33600060ff168361ffff1660405180602001604052806000815250611b0c565b610d268161ffff16600954610d21919061346f565b6004546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610b31906132f7565b600e805461ff001981166101009182900460ff1615909102179055565b6004546001600160a01b031633146114715760405162461bcd60e51b8152600401610b31906132f7565b61147e600b826002612780565b5050565b6001600160a01b03831633148061149e575061149e8333610980565b6114ba5760405162461bcd60e51b8152600401610b31906131a5565b611038838383611f71565b6004546001600160a01b031633146114ef5760405162461bcd60e51b8152600401610b31906132f7565b6114f96000612117565b565b6004546001600160a01b031633146115255760405162461bcd60e51b8152600401610b31906132f7565b600d55565b6004546001600160a01b031633146115545760405162461bcd60e51b8152600401610b31906132f7565b600a55565b6004546001600160a01b031633146115835760405162461bcd60e51b8152600401610b31906132f7565b805161147e906005906020840190612816565b61147e338383612169565b6004546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610b31906132f7565b600855565b6004546001600160a01b031633146115fa5760405162461bcd60e51b8152600401610b31906132f7565b600e805460ff19811660ff90911615179055565b6004546001600160a01b031633146116385760405162461bcd60e51b8152600401610b31906132f7565b600755565b6004546001600160a01b031633146116675760405162461bcd60e51b8152600401610b31906132f7565b600c55565b6001600160a01b03851633148061168857506116888533610980565b6116a45760405162461bcd60e51b8152600401610b31906131a5565b6110cd858585858561224a565b6004546001600160a01b031633146116db5760405162461bcd60e51b8152600401610b31906132f7565b6001600160a01b0381166117405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b31565b610d2681612117565b6001600160a01b03831633148061176557506117658333610980565b6117815760405162461bcd60e51b8152600401610b31906131a5565b611038838383612374565b600b816002811061179c57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6004546001600160a01b031633146117e45760405162461bcd60e51b8152600401610b31906132f7565b600955565b600e54610100900460ff166118395760405162461bcd60e51b815260206004820152601660248201527550726573616c65204e6f74205965742041637469766560501b6044820152606401610b31565b3360009081526013602052604090205460029061185b90839061ffff1661341d565b61ffff16111561187d5760405162461bcd60e51b8152600401610b319061332c565b8061ffff16600a5461188f919061346f565b3410156118ae5760405162461bcd60e51b8152600401610b31906131ee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506118f483600c5483611da3565b61193b5760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b6044820152606401610b31565b81600660028282829054906101000a900461ffff1661195a919061341d565b82546101009290920a61ffff818102199093169183160217909155336000908152601360205260408120805486945090926119979185911661341d565b92506101000a81548161ffff021916908361ffff1602179055506119d433600060ff168461ffff1660405180602001604052806000815250611b0c565b6110388261ffff16600a54610d21919061346f565b6001600160a01b038416611a495760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b31565b336000611a5585612478565b90506000611a6285612478565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611a94908490613443565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611af4836000898989896124d1565b50505050505050565b6001600160a01b03163b151590565b600b8360ff1660028110611b3057634e487b7160e01b600052603260045260246000fd5b601091828204019190066002029054906101000a900461ffff1661ffff16600f60008560ff1660ff1681526020019081526020016000205410611bc15760405162461bcd60e51b8152602060048201526024808201527f447265616d205465616d20506173733a205375707079206c696d697420776173604482015263081a1a5d60e21b6064820152608401610b31565b60ff83166000908152600f602052604081208054849290611be3908490613443565b90915550611bf59050848484846119e9565b50505050565b80341015611c445760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b31565b80341115610d2657336108fc611c5a833461348e565b6040518115909202916000818181858888f1935050505015801561147e573d6000803e3d6000fd5b606081611ca65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd05780611cba81613538565b9150611cc99050600a8361345b565b9150611caa565b6000816001600160401b03811115611cf857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d22576020820181803683370190505b5090505b8415611d9b57611d3760018361348e565b9150611d44600a86613553565b611d4f906030613443565b60f81b818381518110611d7257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d94600a8661345b565b9450611d26565b949350505050565b600082611db0858461263c565b14949350505050565b8151835114611dda5760405162461bcd60e51b8152600401610b31906133b2565b6001600160a01b038416611e005760405162461bcd60e51b8152600401610b3190613225565b3360005b8451811015611f03576000858281518110611e2f57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611e5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611eab5760405162461bcd60e51b8152600401610b31906132ad565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ee8908490613443565b9250508190555050505080611efc90613538565b9050611e04565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f539291906130e1565b60405180910390a4611f698187878787876126b6565b505050505050565b6001600160a01b038316611f975760405162461bcd60e51b8152600401610b319061326a565b8051825114611fb85760405162461bcd60e51b8152600401610b31906133b2565b604080516020810190915260009081905233905b83518110156120aa576000848281518110611ff757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061202357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156120735760405162461bcd60e51b8152600401610b3190613161565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806120a281613538565b915050611fcc565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516120fb9291906130e1565b60405180910390a4604080516020810190915260009052611bf5565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121dd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610b31565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166122705760405162461bcd60e51b8152600401610b3190613225565b33600061227c85612478565b9050600061228985612478565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156122cc5760405162461bcd60e51b8152600401610b31906132ad565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612309908490613443565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612369848a8a8a8a8a6124d1565b505050505050505050565b6001600160a01b03831661239a5760405162461bcd60e51b8152600401610b319061326a565b3360006123a684612478565b905060006123b384612478565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156124005760405162461bcd60e51b8152600401610b3190613161565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611af4565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106124c057634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611f695760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906125159089908990889088908890600401613089565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561255f575060408051601f3d908101601f1916820190925261255c91810190612e53565b60015b61260c5761256b6135a9565b806308c379a014156125a557506125806135c1565b8061258b57506125a7565b8060405162461bcd60e51b8152600401610b319190613106565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610b31565b6001600160e01b0319811663f23a6e6160e01b14611af45760405162461bcd60e51b8152600401610b3190613119565b600081815b845181101561128357600085828151811061266c57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161269257600083815260208290526040902092506126a3565b600081815260208490526040902092505b50806126ae81613538565b915050612641565b6001600160a01b0384163b15611f695760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126fa908990899088908890889060040161302b565b602060405180830381600087803b15801561271457600080fd5b505af1925050508015612744575060408051601f3d908101601f1916820190925261274191810190612e53565b60015b6127505761256b6135a9565b6001600160e01b0319811663bc197c8160e01b14611af45760405162461bcd60e51b8152600401610b3190613119565b6001830191839082156128065791602002820160005b838211156127d657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612796565b80156128045782816101000a81549061ffff02191690556002016020816001010492830192600103026127d6565b505b5061281292915061288a565b5090565b828054612822906134d1565b90600052602060002090601f0160209004810192826128445760008555612806565b82601f1061285d57805160ff1916838001178555612806565b82800160010185558215612806579182015b8281111561280657825182559160200191906001019061286f565b5b80821115612812576000815560010161288b565b60006001600160401b038311156128b8576128b8613593565b6040516128cf601f8501601f19166020018261350c565b8091508381528484840111156128e457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461291357600080fd5b919050565b600082601f830112612928578081fd5b81356020612935826133fa565b604051612942828261350c565b8381528281019150858301600585901b87018401881015612961578586fd5b855b8581101561297f57813584529284019290840190600101612963565b5090979650505050505050565b600082601f83011261299c578081fd5b6129ab8383356020850161289f565b9392505050565b803561ffff8116811461291357600080fd5b6000602082840312156129d5578081fd5b6129ab826128fc565b600080604083850312156129f0578081fd5b6129f9836128fc565b9150612a07602084016128fc565b90509250929050565b600080600080600060a08688031215612a27578081fd5b612a30866128fc565b9450612a3e602087016128fc565b935060408601356001600160401b0380821115612a59578283fd5b612a6589838a01612918565b94506060880135915080821115612a7a578283fd5b612a8689838a01612918565b93506080880135915080821115612a9b578283fd5b50612aa88882890161298c565b9150509295509295909350565b600080600080600060a08688031215612acc578283fd5b612ad5866128fc565b9450612ae3602087016128fc565b9350604086013592506060860135915060808601356001600160401b03811115612b0b578182fd5b612aa88882890161298c565b600080600060608486031215612b2b578081fd5b612b34846128fc565b925060208401356001600160401b0380821115612b4f578283fd5b612b5b87838801612918565b93506040860135915080821115612b70578283fd5b50612b7d86828701612918565b9150509250925092565b60008060408385031215612b99578182fd5b612ba2836128fc565b915060208301358015158114612bb6578182fd5b809150509250929050565b60008060408385031215612bd3578182fd5b612bdc836128fc565b946020939093013593505050565b600080600060608486031215612bfe578081fd5b612c07846128fc565b95602085013595506040909401359392505050565b60008060408385031215612c2e578182fd5b82356001600160401b0380821115612c44578384fd5b818501915085601f830112612c57578384fd5b81356020612c64826133fa565b604051612c71828261350c565b8381528281019150858301600585901b870184018b1015612c90578889fd5b8896505b84871015612cb957612ca5816128fc565b835260019690960195918301918301612c94565b5096505086013592505080821115612ccf578283fd5b50612cdc85828601612918565b9150509250929050565b60008060408385031215612cf8578182fd5b82356001600160401b03811115612d0d578283fd5b8301601f81018513612d1d578283fd5b80356020612d2a826133fa565b604051612d37828261350c565b8381528281019150848301600585901b860184018a1015612d56578788fd5b8795505b84861015612d78578035835260019590950194918301918301612d5a565b509550612d8890508682016129b2565b93505050509250929050565b600060408284031215612da5578081fd5b82601f830112612db3578081fd5b604051604081018181106001600160401b0382111715612dd557612dd5613593565b8060405250808385604086011115612deb578384fd5b835b6002811015612e1457612dff826129b2565b83526020928301929190910190600101612ded565b509195945050505050565b600060208284031215612e30578081fd5b5035919050565b600060208284031215612e48578081fd5b81356129ab8161364a565b600060208284031215612e64578081fd5b81516129ab8161364a565b600060208284031215612e80578081fd5b81356001600160401b03811115612e95578182fd5b8201601f81018413612ea5578182fd5b611d9b8482356020840161289f565b600060208284031215612ec5578081fd5b6129ab826129b2565b600060208284031215612edf578081fd5b813560ff811681146129ab578182fd5b6000815180845260208085019450808401835b83811015612f1e57815187529582019590820190600101612f02565b509495945050505050565b60008151808452612f418160208601602086016134a5565b601f01601f19169290920160200192915050565b60008151612f678185602086016134a5565b9290920192915050565b600080845482600182811c915080831680612f8d57607f831692505b6020808410821415612fad57634e487b7160e01b87526022600452602487fd5b818015612fc15760018114612fd257612ffe565b60ff19861689528489019650612ffe565b60008b815260209020885b86811015612ff65781548b820152908501908301612fdd565b505084890196505b5050505050506130226130118286612f55565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061305790830186612eef565b82810360608401526130698186612eef565b9050828103608084015261307d8185612f29565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906130c390830184612f29565b979650505050505050565b6020815260006129ab6020830184612eef565b6040815260006130f46040830185612eef565b82810360208401526130228185612eef565b6020815260006129ab6020830184612f29565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f43616e6e6f74206d696e74206265796f6e642070726573616c65206d6178206d604082015263696e742160e01b606082015260800190565b60208082526022908201527f416c7265616479206d696e746564206d617820616c6c6f77656420616d6f756e604082015261742160f01b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561341357613413613593565b5060051b60200190565b600061ffff80831681851680830382111561343a5761343a613567565b01949350505050565b6000821982111561345657613456613567565b500190565b60008261346a5761346a61357d565b500490565b600081600019048311821515161561348957613489613567565b500290565b6000828210156134a0576134a0613567565b500390565b60005b838110156134c05781810151838201526020016134a8565b83811115611bf55750506000910152565b600181811c908216806134e557607f821691505b6020821081141561350657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561353157613531613593565b6040525050565b600060001982141561354c5761354c613567565b5060010190565b6000826135625761356261357d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156135be57600481823e5160e01c5b90565b600060443d10156135cf5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156135fe57505050505090565b82850191508151818111156136165750505050505090565b843d87010160208285010111156136305750505050505090565b61363f6020828601018761350c565b509095945050505050565b6001600160e01b031981168114610d2657600080fdfea264697066735822122001238662fc63fc3ba3f1d4752ec5f7967d67ce457bdc9929af8b7a32d825f01b64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50524e5338373539564e32424a6266483578715578463236515576543553476473594c7673556e464d4b4e592f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmPRNS8759VN2BJbfH5xqUxF26QUvT5SGdsYLvsUnFMKNY/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d50524e5338373539564e32424a626648357871557846323651557654
Arg [4] : 3553476473594c7673556e464d4b4e592f000000000000000000000000000000


Deployed Bytecode Sourcemap

55079:7330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38043:231;;;;;;;;;;-1:-1:-1;38043:231:0;;;;;:::i;:::-;;:::i;:::-;;;15930:25:1;;;15918:2;15903:18;38043:231:0;;;;;;;;37066:310;;;;;;;;;;-1:-1:-1;37066:310:0;;;;;:::i;:::-;;:::i;:::-;;;15757:14:1;;15750:22;15732:41;;15720:2;15705:18;37066:310:0;15687:92:1;61236:73:0;;;;;;;;;;-1:-1:-1;61300:4:0;;;;;;;;;;;;-1:-1:-1;;;61300:4:0;;;;61236:73;;;;;;;:::i;57033:641::-;;;;;;:::i;:::-;;:::i;:::-;;61595:395;;;;;;;;;;-1:-1:-1;61595:395:0;;;;;:::i;:::-;;:::i;55354:50::-;;;;;;;;;;;;55402:2;55354:50;;;;;26892:4:1;26880:17;;;26862:36;;26850:2;26835:18;55354:50:0;26817:87:1;58331:864:0;;;;;;:::i;:::-;;:::i;55741:52::-;;;;;;;;;;;;;;;;56540:58;;;;;;;;;;-1:-1:-1;56540:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26266:6:1;26254:19;;;26236:38;;26224:2;26209:18;56540:58:0;26191:89:1;39982:442:0;;;;;;;;;;-1:-1:-1;39982:442:0;;;;;:::i;:::-;;:::i;56409:58::-;;;;;;;;;;-1:-1:-1;56409:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;61995:109;;;;;;;;;;;;;:::i;55577:43::-;;;;;;;;;;;;55619:1;55577:43;;56343:59;;;;;;;;;;-1:-1:-1;56343:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38440:524;;;;;;;;;;-1:-1:-1;38440:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55214:34::-;;;;;;;;;;-1:-1:-1;55214:34:0;;;;;;;;57682:641;;;;;;:::i;:::-;;:::i;55686:46::-;;;;;;;;;;;;;;;;55255:34;;;;;;;;;;-1:-1:-1;55255:34:0;;;;;;;;;;;61399:87;;;;;;;;;;;;;:::i;60403:94::-;;;;;;;;;;-1:-1:-1;60403:94:0;;;;;:::i;:::-;;:::i;56236:41::-;;;;;;;;;;-1:-1:-1;56236:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;54183:353;;;;;;;;;;-1:-1:-1;54183:353:0;;;;;:::i;:::-;;:::i;17257:103::-;;;;;;;;;;;;;:::i;60968:125::-;;;;;;;;;;-1:-1:-1;60968:125:0;;;;;:::i;:::-;;:::i;55298:49::-;;;;;;;;;;;;55346:1;55298:49;;55629:50;;;;;;;;;;;;;;;;16606:87;;;;;;;;;;-1:-1:-1;16679:6:0;;16606:87;;-1:-1:-1;;;;;16679:6:0;;;13398:51:1;;13386:2;13371:18;16606:87:0;13353:102:1;60505:107:0;;;;;;;;;;-1:-1:-1;60505:107:0;;;;;:::i;:::-;;:::i;56209:21::-;;;;;;;;;;-1:-1:-1;56209:21:0;;;;;;;;;;;61314:77;;;;;;;;;;-1:-1:-1;61380:6:0;;;;;;;;;;;;-1:-1:-1;;;61380:6:0;;;;61314:77;;56137:32;;;;;;;;;;;;;;;;60304:91;;;;;;;;;;-1:-1:-1;60304:91:0;;;;;:::i;:::-;;:::i;56474:59::-;;;;;;;;;;-1:-1:-1;56474:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55468:50;;;;;;;;;;;;55517:1;55468:50;;39037:155;;;;;;;;;;-1:-1:-1;39037:155:0;;;;;:::i;:::-;;:::i;55959:47::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;55959:47:0;;;;;60620:107;;;;;;;;;;-1:-1:-1;60620:107:0;;;;;:::i;:::-;;:::i;56178:24::-;;;;;;;;;;-1:-1:-1;56178:24:0;;;;;;;;55908:47;;;;;;;;;;;;55954:1;55908:47;;61494:96;;;;;;;;;;;;;:::i;55527:43::-;;;;;;;;;;;;55569:1;55527:43;;60853:110;;;;;;;;;;-1:-1:-1;60853:110:0;;;;;:::i;:::-;;:::i;56283:51::-;;;;;;;;;;-1:-1:-1;56283:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;56101:32;;;;;;;;;;;;;;;;55857:47;;;;;;;;;;;;55903:1;55857:47;;39264:168;;;;;;;;;;-1:-1:-1;39264:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;39387:27:0;;;39363:4;39387:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;39264:168;61098:133;;;;;;;;;;-1:-1:-1;61098:133:0;;;;;:::i;:::-;;:::i;39504:401::-;;;;;;;;;;-1:-1:-1;39504:401:0;;;;;:::i;:::-;;:::i;17515:201::-;;;;;;;;;;-1:-1:-1;17515:201:0;;;;;:::i;:::-;;:::i;53854:321::-;;;;;;;;;;-1:-1:-1;53854:321:0;;;;;:::i;:::-;;:::i;56056:39::-;;;;;;;;;;-1:-1:-1;56056:39:0;;;;;:::i;:::-;;:::i;56010:40::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;56010:40:0;;;;;60735:110;;;;;;;;;;-1:-1:-1;60735:110:0;;;;;:::i;:::-;;:::i;55800:48::-;;;;;;;;;;;;;;;;59203:864;;;;;;:::i;:::-;;:::i;38043:231::-;38129:7;-1:-1:-1;;;;;38157:21:0;;38149:77;;;;-1:-1:-1;;;38149:77:0;;17627:2:1;38149:77:0;;;17609:21:1;17666:2;17646:18;;;17639:30;17705:34;17685:18;;;17678:62;-1:-1:-1;;;17756:18:1;;;17749:41;17807:19;;38149:77:0;;;;;;;;;-1:-1:-1;38244:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;38244:22:0;;;;;;;;;;;;38043:231::o;37066:310::-;37168:4;-1:-1:-1;;;;;;37205:41:0;;-1:-1:-1;;;37205:41:0;;:110;;-1:-1:-1;;;;;;;37263:52:0;;-1:-1:-1;;;37263:52:0;37205:110;:163;;;-1:-1:-1;;;;;;;;;;28468:40:0;;;37332:36;37185:183;37066:310;-1:-1:-1;;37066:310:0:o;57033:641::-;57114:12;;;;57106:52;;;;-1:-1:-1;;;57106:52:0;;23551:2:1;57106:52:0;;;23533:21:1;23590:2;23570:18;;;23563:30;23629:29;23609:18;;;23602:57;23676:18;;57106:52:0;23523:177:1;57106:52:0;57217:10;57192:36;;;;:24;:36;;;;;;55346:1;;57192:48;;57231:9;;57192:36;;:48;:::i;:::-;57191:77;;;;57169:161;;;;-1:-1:-1;;;57169:161:0;;;;;;;:::i;:::-;57391:9;57363:37;;:25;;:37;;;;:::i;:::-;57349:9;:52;;57341:91;;;;-1:-1:-1;;;57341:91:0;;;;;;;:::i;:::-;57445:20;:33;;57469:9;;57445:20;;;:33;;57469:9;;57445:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;57514:10;-1:-1:-1;57489:36:0;;;:24;:36;;;;;:49;;57529:9;;-1:-1:-1;57489:36:0;;:49;;57529:9;;57489:49;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57549:55;57555:10;55954:1;57549:55;;57590:9;57549:55;;;;;;;;;;;;;;:5;:55::i;:::-;57615:51;57656:9;57628:37;;:25;;:37;;;;:::i;:::-;57615:12;:51::i;:::-;57033:641;:::o;61595:395::-;61654:13;55954:1;61687:31;;;:66;;-1:-1:-1;61722:31:0;;61687:66;61674:145;;;;-1:-1:-1;;;61674:145:0;;22321:2:1;61674:145:0;;;22303:21:1;22360:2;22340:18;;;22333:30;22399:34;22379:18;;;22372:62;-1:-1:-1;;;22450:18:1;;;22443:51;22511:19;;61674:145:0;22293:243:1;61674:145:0;61856:1;61838:7;61832:21;;;;;:::i;:::-;;;:25;61824:74;;;;-1:-1:-1;;;61824:74:0;;25889:2:1;61824:74:0;;;25871:21:1;25928:2;25908:18;;;25901:30;25967:34;25947:18;;;25940:62;-1:-1:-1;;;26018:18:1;;;26011:34;26062:19;;61824:74:0;25861:226:1;61824:74:0;61942:7;61951:24;61968:6;61951:16;:24::i;:::-;61925:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61911:74;;61595:395;;;:::o;58331:864::-;58444:9;;;;;;;58436:44;;;;-1:-1:-1;;;58436:44:0;;21609:2:1;58436:44:0;;;21591:21:1;21648:2;21628:18;;;21621:30;-1:-1:-1;;;21667:18:1;;;21660:52;21729:18;;58436:44:0;21581:172:1;58436:44:0;58540:10;58514:37;;;;:25;:37;;;;;;55517:1;;58514:49;;58554:9;;58514:37;;:49;:::i;:::-;58513:79;;;;58491:165;;;;-1:-1:-1;;;58491:165:0;;;;;;;:::i;:::-;58713:9;58689:33;;:21;;:33;;;;:::i;:::-;58675:9;:48;;58667:87;;;;-1:-1:-1;;;58667:87:0;;;;;;;:::i;:::-;58820:28;;-1:-1:-1;;58837:10:0;11857:2:1;11853:15;11849:53;58820:28:0;;;11837:66:1;58793:14:0;;11919:12:1;;58820:28:0;;;;;;;;;;;;58810:39;;;;;;58793:56;;58868:59;58887:12;58901:17;;58920:6;58868:18;:59::i;:::-;58860:96;;;;-1:-1:-1;;;58860:96:0;;19616:2:1;58860:96:0;;;19598:21:1;19655:2;19635:18;;;19628:30;-1:-1:-1;;;19674:18:1;;;19667:54;19738:18;;58860:96:0;19588:174:1;58860:96:0;58969:20;:33;;58993:9;;58969:20;;;:33;;58993:9;;58969:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;59039:10;-1:-1:-1;59013:37:0;;;:25;:37;;;;;:50;;59054:9;;-1:-1:-1;59013:37:0;;:50;;59054:9;;59013:50;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59074:55;59080:10;55954:1;59074:55;;59115:9;59074:55;;;;;;;;;;;;;;:5;:55::i;:::-;59140:47;59177:9;59153:33;;:21;;:33;;;;:::i;59140:47::-;58331:864;;;:::o;39982:442::-;-1:-1:-1;;;;;40215:20:0;;15410:10;40215:20;;:60;;-1:-1:-1;40239:36:0;40256:4;15410:10;39264:168;:::i;40239:36::-;40193:160;;;;-1:-1:-1;;;40193:160:0;;20375:2:1;40193:160:0;;;20357:21:1;20414:2;20394:18;;;20387:30;20453:34;20433:18;;;20426:62;-1:-1:-1;;;20504:18:1;;;20497:48;20562:19;;40193:160:0;20347:240:1;40193:160:0;40364:52;40387:4;40393:2;40397:3;40402:7;40411:4;40364:22;:52::i;:::-;39982:442;;;;;:::o;61995:109::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;62045:51:::1;::::0;62053:10:::1;::::0;62074:21:::1;62045:51:::0;::::1;;;::::0;::::1;::::0;;;62074:21;62053:10;62045:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;38440:524:::0;38596:16;38657:3;:10;38638:8;:15;:29;38630:83;;;;-1:-1:-1;;;38630:83:0;;24668:2:1;38630:83:0;;;24650:21:1;24707:2;24687:18;;;24680:30;24746:34;24726:18;;;24719:62;-1:-1:-1;;;24797:18:1;;;24790:39;24846:19;;38630:83:0;24640:231:1;38630:83:0;38726:30;38773:8;:15;-1:-1:-1;;;;;38759:30:0;;;;;-1:-1:-1;;;38759:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38759:30:0;;38726:63;;38807:9;38802:122;38826:8;:15;38822:1;:19;38802:122;;;38882:30;38892:8;38901:1;38892:11;;;;;;-1:-1:-1;;;38892:11:0;;;;;;;;;;;;;;;38905:3;38909:1;38905:6;;;;;;-1:-1:-1;;;38905:6:0;;;;;;;;;;;;;;;38882:9;:30::i;:::-;38863:13;38877:1;38863:16;;;;;;-1:-1:-1;;;38863:16:0;;;;;;;;;;;;;;;;;;:49;38843:3;;;:::i;:::-;;;38802:122;;;-1:-1:-1;38943:13:0;38440:524;-1:-1:-1;;;38440:524:0:o;57682:641::-;57763:12;;;;57755:52;;;;-1:-1:-1;;;57755:52:0;;23551:2:1;57755:52:0;;;23533:21:1;23590:2;23570:18;;;23563:30;23629:29;23609:18;;;23602:57;23676:18;;57755:52:0;23523:177:1;57755:52:0;57866:10;57841:36;;;;:24;:36;;;;;;55402:2;;57841:48;;57880:9;;57841:36;;:48;:::i;:::-;57840:77;;;;57818:161;;;;-1:-1:-1;;;57818:161:0;;;;;;;:::i;:::-;58040:9;58012:37;;:25;;:37;;;;:::i;:::-;57998:9;:52;;57990:91;;;;-1:-1:-1;;;57990:91:0;;;;;;;:::i;:::-;58118:9;58094:20;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;58163:10;-1:-1:-1;58138:36:0;;;:24;:36;;;;;:49;;58178:9;;-1:-1:-1;58138:36:0;;:49;;58178:9;;58138:49;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58198:55;58204:10;55903:1;58198:55;;58239:9;58198:55;;;;;;;;;;;;;;:5;:55::i;:::-;58264:51;58305:9;58277:37;;:25;;:37;;;;:::i;61399:87::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;61469:9:::1;::::0;;-1:-1:-1;;61456:22:0;::::1;61469:9;::::0;;;::::1;;;61468:10;61456:22:::0;;::::1;;::::0;;61399:87::o;60403:94::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60472:20:::1;:10;60485:7:::0;60472:20:::1;;:::i;:::-;;60403:94:::0;:::o;54183:353::-;-1:-1:-1;;;;;54348:23:0;;15410:10;54348:23;;:66;;-1:-1:-1;54375:39:0;54392:7;15410:10;39264:168;:::i;54375:39::-;54326:157;;;;-1:-1:-1;;;54326:157:0;;;;;;;:::i;:::-;54496:32;54507:7;54516:3;54521:6;54496:10;:32::i;17257:103::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;17322:30:::1;17349:1;17322:18;:30::i;:::-;17257:103::o:0;60968:125::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;61050:17:::1;:38:::0;60968:125::o;60505:107::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60577:21:::1;:30:::0;60505:107::o;60304:91::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60372:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;39037:155::-:0;39132:52;15410:10;39165:8;39175;39132:18;:52::i;60620:107::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60692:21:::1;:30:::0;60620:107::o;61494:96::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;61570:12:::1;::::0;;-1:-1:-1;;61554:28:0;::::1;61570:12;::::0;;::::1;61569:13;61554:28;::::0;;61494:96::o;60853:110::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60924:25:::1;:34:::0;60853:110::o;61098:133::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;61188:17:::1;:38:::0;61098:133::o;39504:401::-;-1:-1:-1;;;;;39712:20:0;;15410:10;39712:20;;:60;;-1:-1:-1;39736:36:0;39753:4;15410:10;39264:168;:::i;39736:36::-;39690:151;;;;-1:-1:-1;;;39690:151:0;;;;;;;:::i;:::-;39852:45;39870:4;39876:2;39880;39884:6;39892:4;39852:17;:45::i;17515:201::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17604:22:0;::::1;17596:73;;;::::0;-1:-1:-1;;;17596:73:0;;18039:2:1;17596:73:0::1;::::0;::::1;18021:21:1::0;18078:2;18058:18;;;18051:30;18117:34;18097:18;;;18090:62;-1:-1:-1;;;18168:18:1;;;18161:36;18214:19;;17596:73:0::1;18011:228:1::0;17596:73:0::1;17680:28;17699:8;17680:18;:28::i;53854:321::-:0;-1:-1:-1;;;;;53994:23:0;;15410:10;53994:23;;:66;;-1:-1:-1;54021:39:0;54038:7;15410:10;39264:168;:::i;54021:39::-;53972:157;;;;-1:-1:-1;;;53972:157:0;;;;;;;:::i;:::-;54142:25;54148:7;54157:2;54161:5;54142;:25::i;56056:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60735:110::-;16679:6;;-1:-1:-1;;;;;16679:6:0;15410:10;16826:23;16818:68;;;;-1:-1:-1;;;16818:68:0;;;;;;;:::i;:::-;60806:25:::1;:34:::0;60735:110::o;59203:864::-;59316:9;;;;;;;59308:44;;;;-1:-1:-1;;;59308:44:0;;21609:2:1;59308:44:0;;;21591:21:1;21648:2;21628:18;;;21621:30;-1:-1:-1;;;21667:18:1;;;21660:52;21729:18;;59308:44:0;21581:172:1;59308:44:0;59412:10;59386:37;;;;:25;:37;;;;;;55460:1;;59386:49;;59426:9;;59386:37;;:49;:::i;:::-;59385:79;;;;59363:165;;;;-1:-1:-1;;;59363:165:0;;;;;;;:::i;:::-;59585:9;59561:33;;:21;;:33;;;;:::i;:::-;59547:9;:48;;59539:87;;;;-1:-1:-1;;;59539:87:0;;;;;;;:::i;:::-;59692:28;;-1:-1:-1;;59709:10:0;11857:2:1;11853:15;11849:53;59692:28:0;;;11837:66:1;59665:14:0;;11919:12:1;;59692:28:0;;;;;;;;;;;;59682:39;;;;;;59665:56;;59740:59;59759:12;59773:17;;59792:6;59740:18;:59::i;:::-;59732:96;;;;-1:-1:-1;;;59732:96:0;;19616:2:1;59732:96:0;;;19598:21:1;19655:2;19635:18;;;19628:30;-1:-1:-1;;;19674:18:1;;;19667:54;19738:18;;59732:96:0;19588:174:1;59732:96:0;59865:9;59841:20;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;59911:10;-1:-1:-1;59885:37:0;;;:25;:37;;;;;:50;;59926:9;;-1:-1:-1;59885:37:0;;:50;;59926:9;;59885:50;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59946:55;59952:10;55903:1;59946:55;;59987:9;59946:55;;;;;;;;;;;;;;:5;:55::i;:::-;60012:47;60049:9;60025:33;;:21;;:33;;;;:::i;44684:729::-;-1:-1:-1;;;;;44837:16:0;;44829:62;;;;-1:-1:-1;;;44829:62:0;;25487:2:1;44829:62:0;;;25469:21:1;25526:2;25506:18;;;25499:30;25565:34;25545:18;;;25538:62;-1:-1:-1;;;25616:18:1;;;25609:31;25657:19;;44829:62:0;25459:223:1;44829:62:0;15410:10;44904:16;44969:21;44987:2;44969:17;:21::i;:::-;44946:44;;45001:24;45028:25;45046:6;45028:17;:25::i;:::-;45001:52;;45145:9;:13;;;;;;;;;;;-1:-1:-1;;;;;45145:17:0;;;;;;;;;:27;;45166:6;;45145:9;:27;;45166:6;;45145:27;:::i;:::-;;;;-1:-1:-1;;45188:52:0;;;26641:25:1;;;26697:2;26682:18;;26675:34;;;-1:-1:-1;;;;;45188:52:0;;;;45221:1;;45188:52;;;;;;26614:18:1;45188:52:0;;;;;;;45331:74;45362:8;45380:1;45384:2;45388;45392:6;45400:4;45331:30;:74::i;:::-;44684:729;;;;;;;:::o;19307:326::-;-1:-1:-1;;;;;19602:19:0;;:23;;;19307:326::o;62109:297::-;62257:10;62274:2;62257:21;;;;;;;-1:-1:-1;;;62257:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62235:43;;:8;:19;62250:2;62235:19;;;;;;;;;;;;;;;;:43;62222:105;;;;-1:-1:-1;;;62222:105:0;;17222:2:1;62222:105:0;;;17204:21:1;17261:2;17241:18;;;17234:30;17300:34;17280:18;;;17273:62;-1:-1:-1;;;17351:18:1;;;17344:34;17395:19;;62222:105:0;17194:226:1;62222:105:0;62334:19;;;;;;;:8;:19;;;;;:29;;62357:6;;62334:19;:29;;62357:6;;62334:29;:::i;:::-;;;;-1:-1:-1;62368:33:0;;-1:-1:-1;62380:2:0;62384;62388:6;62396:4;62368:11;:33::i;:::-;62109:297;;;;:::o;60075:224::-;60152:5;60139:9;:18;;60131:53;;;;-1:-1:-1;;;60131:53:0;;23907:2:1;60131:53:0;;;23889:21:1;23946:2;23926:18;;;23919:30;-1:-1:-1;;;23965:18:1;;;23958:52;24027:18;;60131:53:0;23879:172:1;60131:53:0;60211:5;60199:9;:17;60195:97;;;60241:10;60233:47;60262:17;60274:5;60262:9;:17;:::i;:::-;60233:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10133:723;10189:13;10410:10;10406:53;;-1:-1:-1;;10437:10:0;;;;;;;;;;;;-1:-1:-1;;;10437:10:0;;;;;10133:723::o;10406:53::-;10484:5;10469:12;10525:78;10532:9;;10525:78;;10558:8;;;;:::i;:::-;;-1:-1:-1;10581:10:0;;-1:-1:-1;10589:2:0;10581:10;;:::i;:::-;;;10525:78;;;10613:19;10645:6;-1:-1:-1;;;;;10635:17:0;;;;;-1:-1:-1;;;10635:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10635:17:0;;10613:39;;10663:154;10670:10;;10663:154;;10697:11;10707:1;10697:11;;:::i;:::-;;-1:-1:-1;10766:10:0;10774:2;10766:5;:10;:::i;:::-;10753:24;;:2;:24;:::i;:::-;10740:39;;10723:6;10730;10723:14;;;;;;-1:-1:-1;;;10723:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10723:56:0;;;;;;;;-1:-1:-1;10794:11:0;10803:2;10794:11;;:::i;:::-;;;10663:154;;;10841:6;10133:723;-1:-1:-1;;;;10133:723:0:o;8303:190::-;8428:4;8481;8452:25;8465:5;8472:4;8452:12;:25::i;:::-;:33;;8303:190;-1:-1:-1;;;;8303:190:0:o;42220:1146::-;42447:7;:14;42433:3;:10;:28;42425:81;;;;-1:-1:-1;;;42425:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42525:16:0;;42517:66;;;;-1:-1:-1;;;42517:66:0;;;;;;;:::i;:::-;15410:10;42596:16;42713:421;42737:3;:10;42733:1;:14;42713:421;;;42769:10;42782:3;42786:1;42782:6;;;;;;-1:-1:-1;;;42782:6:0;;;;;;;;;;;;;;;42769:19;;42803:14;42820:7;42828:1;42820:10;;;;;;-1:-1:-1;;;42820:10:0;;;;;;;;;;;;;;;;;;;;42847:19;42869:13;;;;;;;;;;-1:-1:-1;;;;;42869:19:0;;;;;;;;;;;;42820:10;;-1:-1:-1;42911:21:0;;;;42903:76;;;;-1:-1:-1;;;42903:76:0;;;;;;;:::i;:::-;43023:9;:13;;;;;;;;;;;-1:-1:-1;;;;;43023:19:0;;;;;;;;;;43045:20;;;43023:42;;43095:17;;;;;;;:27;;43045:20;;43023:9;43095:27;;43045:20;;43095:27;:::i;:::-;;;;;;;;42713:421;;;42749:3;;;;:::i;:::-;;;42713:421;;;;43181:2;-1:-1:-1;;;;;43151:47:0;43175:4;-1:-1:-1;;;;;43151:47:0;43165:8;-1:-1:-1;;;;;43151:47:0;;43185:3;43190:7;43151:47;;;;;;;:::i;:::-;;;;;;;;43283:75;43319:8;43329:4;43335:2;43339:3;43344:7;43353:4;43283:35;:75::i;:::-;42220:1146;;;;;;:::o;47843:969::-;-1:-1:-1;;;;;47995:18:0;;47987:66;;;;-1:-1:-1;;;47987:66:0;;;;;;;:::i;:::-;48086:7;:14;48072:3;:10;:28;48064:81;;;;-1:-1:-1;;;48064:81:0;;;;;;;:::i;:::-;48202:66;;;;;;;;;48158:16;48202:66;;;;15410:10;;48281:373;48305:3;:10;48301:1;:14;48281:373;;;48337:10;48350:3;48354:1;48350:6;;;;;;-1:-1:-1;;;48350:6:0;;;;;;;;;;;;;;;48337:19;;48371:14;48388:7;48396:1;48388:10;;;;;;-1:-1:-1;;;48388:10:0;;;;;;;;;;;;;;;;;;;;48415:19;48437:13;;;;;;;;;;-1:-1:-1;;;;;48437:19:0;;;;;;;;;;;;48388:10;;-1:-1:-1;48479:21:0;;;;48471:70;;;;-1:-1:-1;;;48471:70:0;;;;;;;:::i;:::-;48585:9;:13;;;;;;;;;;;-1:-1:-1;;;;;48585:19:0;;;;;;;;;;48607:20;;48585:42;;48317:3;;;;:::i;:::-;;;;48281:373;;;;48709:1;-1:-1:-1;;;;;48671:55:0;48695:4;-1:-1:-1;;;;;48671:55:0;48685:8;-1:-1:-1;;;;;48671:55:0;;48713:3;48718:7;48671:55;;;;;;;:::i;:::-;;;;;;;;48739:65;;;;;;;;;48783:1;48739:65;;;42220:1146;17876:191;17969:6;;;-1:-1:-1;;;;;17986:17:0;;;-1:-1:-1;;;;;;17986:17:0;;;;;;;18019:40;;17969:6;;;17986:17;17969:6;;18019:40;;17950:16;;18019:40;17876:191;;:::o;48954:331::-;49109:8;-1:-1:-1;;;;;49100:17:0;:5;-1:-1:-1;;;;;49100:17:0;;;49092:71;;;;-1:-1:-1;;;49092:71:0;;24258:2:1;49092:71:0;;;24240:21:1;24297:2;24277:18;;;24270:30;24336:34;24316:18;;;24309:62;-1:-1:-1;;;24387:18:1;;;24380:39;24436:19;;49092:71:0;24230:231:1;49092:71:0;-1:-1:-1;;;;;49174:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49174:46:0;;;;;;;;;;49236:41;;15732::1;;;49236::0;;15705:18:1;49236:41:0;;;;;;;48954:331;;;:::o;40888:974::-;-1:-1:-1;;;;;41076:16:0;;41068:66;;;;-1:-1:-1;;;41068:66:0;;;;;;;:::i;:::-;15410:10;41147:16;41212:21;41230:2;41212:17;:21::i;:::-;41189:44;;41244:24;41271:25;41289:6;41271:17;:25::i;:::-;41244:52;;41382:19;41404:13;;;;;;;;;;;-1:-1:-1;;;;;41404:19:0;;;;;;;;;;41442:21;;;;41434:76;;;;-1:-1:-1;;;41434:76:0;;;;;;;:::i;:::-;41546:9;:13;;;;;;;;;;;-1:-1:-1;;;;;41546:19:0;;;;;;;;;;41568:20;;;41546:42;;41610:17;;;;;;;:27;;41568:20;;41546:9;41610:27;;41568:20;;41610:27;:::i;:::-;;;;-1:-1:-1;;41655:46:0;;;26641:25:1;;;26697:2;26682:18;;26675:34;;;-1:-1:-1;;;;;41655:46:0;;;;;;;;;;;;;;26614:18:1;41655:46:0;;;;;;;41786:68;41817:8;41827:4;41833:2;41837;41841:6;41849:4;41786:30;:68::i;:::-;40888:974;;;;;;;;;:::o;46832:808::-;-1:-1:-1;;;;;46959:18:0;;46951:66;;;;-1:-1:-1;;;46951:66:0;;;;;;;:::i;:::-;15410:10;47030:16;47095:21;47113:2;47095:17;:21::i;:::-;47072:44;;47127:24;47154:25;47172:6;47154:17;:25::i;:::-;47192:66;;;;;;;;;-1:-1:-1;47192:66:0;;;;47293:13;;;;;;;;;-1:-1:-1;;;;;47293:19:0;;;;;;;;47127:52;;-1:-1:-1;47331:21:0;;;;47323:70;;;;-1:-1:-1;;;47323:70:0;;;;;;;:::i;:::-;47429:9;:13;;;;;;;;;;;-1:-1:-1;;;;;47429:19:0;;;;;;;;;;;;47451:20;;;47429:42;;47500:54;;26641:25:1;;;26682:18;;;26675:34;;;47429:19:0;;47500:54;;;;;;26614:18:1;47500:54:0;;;;;;;47567:65;;;;;;;;;47611:1;47567:65;;;42220:1146;53218:198;53338:16;;;53352:1;53338:16;;;;;;;;;53284;;53313:22;;53338:16;;;;;;;;;;;;-1:-1:-1;53338:16:0;53313:41;;53376:7;53365:5;53371:1;53365:8;;;;;;-1:-1:-1;;;53365:8:0;;;;;;;;;;;;;;;;;;:18;53403:5;53218:198;-1:-1:-1;;53218:198:0:o;51645:744::-;-1:-1:-1;;;;;51860:13:0;;19602:19;:23;51856:526;;51896:72;;-1:-1:-1;;;51896:72:0;;-1:-1:-1;;;;;51896:38:0;;;;;:72;;51935:8;;51945:4;;51951:2;;51955:6;;51963:4;;51896:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51896:72:0;;;;;;;;-1:-1:-1;;51896:72:0;;;;;;;;;;;;:::i;:::-;;;51892:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;52244:6;52237:14;;-1:-1:-1;;;52237:14:0;;;;;;;;:::i;51892:479::-;;;52293:62;;-1:-1:-1;;;52293:62:0;;16392:2:1;52293:62:0;;;16374:21:1;16431:2;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;-1:-1:-1;;;16521:18:1;;;16514:50;16581:19;;52293:62:0;16364:242:1;51892:479:0;-1:-1:-1;;;;;;52018:55:0;;-1:-1:-1;;;52018:55:0;52014:154;;52098:50;;-1:-1:-1;;;52098:50:0;;;;;;;:::i;8854:675::-;8937:7;8980:4;8937:7;8995:497;9019:5;:12;9015:1;:16;8995:497;;;9053:20;9076:5;9082:1;9076:8;;;;;;-1:-1:-1;;;9076:8:0;;;;;;;;;;;;;;;9053:31;;9119:12;9103;:28;9099:382;;9605:13;9655:15;;;9691:4;9684:15;;;9738:4;9722:21;;9231:57;;9099:382;;;9605:13;9655:15;;;9691:4;9684:15;;;9738:4;9722:21;;9408:57;;9099:382;-1:-1:-1;9033:3:0;;;;:::i;:::-;;;;8995:497;;52397:813;-1:-1:-1;;;;;52637:13:0;;19602:19;:23;52633:570;;52673:79;;-1:-1:-1;;;52673:79:0;;-1:-1:-1;;;;;52673:43:0;;;;;:79;;52717:8;;52727:4;;52733:3;;52738:7;;52747:4;;52673:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52673:79:0;;;;;;;;-1:-1:-1;;52673:79:0;;;;;;;;;;;;:::i;:::-;;;52669:523;;;;:::i;:::-;-1:-1:-1;;;;;;52834:60:0;;-1:-1:-1;;;52834:60:0;52830:159;;52919:50;;-1:-1:-1;;;52919:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:2;;;369:1;366;359:12;328:2;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;88:394;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:2;;650:1;647;640:12;584:2;536:124;;;:::o;665:755::-;719:5;772:3;765:4;757:6;753:17;749:27;739:2;;794:5;787;780:20;739:2;834:6;821:20;860:4;883:43;923:2;883:43;:::i;:::-;955:2;949:9;967:31;995:2;987:6;967:31;:::i;:::-;1033:18;;;1067:15;;;;-1:-1:-1;1102:15:1;;;1152:1;1148:10;;;1136:23;;1132:32;;1129:41;-1:-1:-1;1126:2:1;;;1187:5;1180;1173:20;1126:2;1213:5;1227:163;1241:2;1238:1;1235:9;1227:163;;;1298:17;;1286:30;;1336:12;;;;1368;;;;1259:1;1252:9;1227:163;;;-1:-1:-1;1408:6:1;;729:691;-1:-1:-1;;;;;;;729:691:1:o;1425:228::-;1467:5;1520:3;1513:4;1505:6;1501:17;1497:27;1487:2;;1542:5;1535;1528:20;1487:2;1568:79;1643:3;1634:6;1621:20;1614:4;1606:6;1602:17;1568:79;:::i;:::-;1559:88;1477:176;-1:-1:-1;;;1477:176:1:o;1658:159::-;1725:20;;1785:6;1774:18;;1764:29;;1754:2;;1807:1;1804;1797:12;1822:196;1881:6;1934:2;1922:9;1913:7;1909:23;1905:32;1902:2;;;1955:6;1947;1940:22;1902:2;1983:29;2002:9;1983:29;:::i;2023:270::-;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:2;;;2173:6;2165;2158:22;2120:2;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2110:183;;;;;:::o;2298:983::-;2452:6;2460;2468;2476;2484;2537:3;2525:9;2516:7;2512:23;2508:33;2505:2;;;2559:6;2551;2544:22;2505:2;2587:29;2606:9;2587:29;:::i;:::-;2577:39;;2635:38;2669:2;2658:9;2654:18;2635:38;:::i;:::-;2625:48;;2724:2;2713:9;2709:18;2696:32;-1:-1:-1;;;;;2788:2:1;2780:6;2777:14;2774:2;;;2809:6;2801;2794:22;2774:2;2837:61;2890:7;2881:6;2870:9;2866:22;2837:61;:::i;:::-;2827:71;;2951:2;2940:9;2936:18;2923:32;2907:48;;2980:2;2970:8;2967:16;2964:2;;;3001:6;2993;2986:22;2964:2;3029:63;3084:7;3073:8;3062:9;3058:24;3029:63;:::i;:::-;3019:73;;3145:3;3134:9;3130:19;3117:33;3101:49;;3175:2;3165:8;3162:16;3159:2;;;3196:6;3188;3181:22;3159:2;;3224:51;3267:7;3256:8;3245:9;3241:24;3224:51;:::i;:::-;3214:61;;;2495:786;;;;;;;;:::o;3286:626::-;3390:6;3398;3406;3414;3422;3475:3;3463:9;3454:7;3450:23;3446:33;3443:2;;;3497:6;3489;3482:22;3443:2;3525:29;3544:9;3525:29;:::i;:::-;3515:39;;3573:38;3607:2;3596:9;3592:18;3573:38;:::i;:::-;3563:48;;3658:2;3647:9;3643:18;3630:32;3620:42;;3709:2;3698:9;3694:18;3681:32;3671:42;;3764:3;3753:9;3749:19;3736:33;-1:-1:-1;;;;;3784:6:1;3781:30;3778:2;;;3829:6;3821;3814:22;3778:2;3857:49;3898:7;3889:6;3878:9;3874:22;3857:49;:::i;3917:699::-;4044:6;4052;4060;4113:2;4101:9;4092:7;4088:23;4084:32;4081:2;;;4134:6;4126;4119:22;4081:2;4162:29;4181:9;4162:29;:::i;:::-;4152:39;;4242:2;4231:9;4227:18;4214:32;-1:-1:-1;;;;;4306:2:1;4298:6;4295:14;4292:2;;;4327:6;4319;4312:22;4292:2;4355:61;4408:7;4399:6;4388:9;4384:22;4355:61;:::i;:::-;4345:71;;4469:2;4458:9;4454:18;4441:32;4425:48;;4498:2;4488:8;4485:16;4482:2;;;4519:6;4511;4504:22;4482:2;;4547:63;4602:7;4591:8;4580:9;4576:24;4547:63;:::i;:::-;4537:73;;;4071:545;;;;;:::o;4621:367::-;4686:6;4694;4747:2;4735:9;4726:7;4722:23;4718:32;4715:2;;;4768:6;4760;4753:22;4715:2;4796:29;4815:9;4796:29;:::i;:::-;4786:39;;4875:2;4864:9;4860:18;4847:32;4922:5;4915:13;4908:21;4901:5;4898:32;4888:2;;4949:6;4941;4934:22;4888:2;4977:5;4967:15;;;4705:283;;;;;:::o;4993:264::-;5061:6;5069;5122:2;5110:9;5101:7;5097:23;5093:32;5090:2;;;5143:6;5135;5128:22;5090:2;5171:29;5190:9;5171:29;:::i;:::-;5161:39;5247:2;5232:18;;;;5219:32;;-1:-1:-1;;;5080:177:1:o;5262:332::-;5339:6;5347;5355;5408:2;5396:9;5387:7;5383:23;5379:32;5376:2;;;5429:6;5421;5414:22;5376:2;5457:29;5476:9;5457:29;:::i;:::-;5447:39;5533:2;5518:18;;5505:32;;-1:-1:-1;5584:2:1;5569:18;;;5556:32;;5366:228;-1:-1:-1;;;5366:228:1:o;5599:1274::-;5717:6;5725;5778:2;5766:9;5757:7;5753:23;5749:32;5746:2;;;5799:6;5791;5784:22;5746:2;5844:9;5831:23;-1:-1:-1;;;;;5914:2:1;5906:6;5903:14;5900:2;;;5935:6;5927;5920:22;5900:2;5978:6;5967:9;5963:22;5953:32;;6023:7;6016:4;6012:2;6008:13;6004:27;5994:2;;6050:6;6042;6035:22;5994:2;6091;6078:16;6113:4;6136:43;6176:2;6136:43;:::i;:::-;6208:2;6202:9;6220:31;6248:2;6240:6;6220:31;:::i;:::-;6286:18;;;6320:15;;;;-1:-1:-1;6355:11:1;;;6397:1;6393:10;;;6385:19;;6381:28;;6378:41;-1:-1:-1;6375:2:1;;;6437:6;6429;6422:22;6375:2;6464:6;6455:15;;6479:169;6493:2;6490:1;6487:9;6479:169;;;6550:23;6569:3;6550:23;:::i;:::-;6538:36;;6511:1;6504:9;;;;;6594:12;;;;6626;;6479:169;;;-1:-1:-1;6667:6:1;-1:-1:-1;;6711:18:1;;6698:32;;-1:-1:-1;;6742:16:1;;;6739:2;;;6776:6;6768;6761:22;6739:2;;6804:63;6859:7;6848:8;6837:9;6833:24;6804:63;:::i;:::-;6794:73;;;5736:1137;;;;;:::o;6878:1083::-;6970:6;6978;7031:2;7019:9;7010:7;7006:23;7002:32;6999:2;;;7052:6;7044;7037:22;6999:2;7097:9;7084:23;-1:-1:-1;;;;;7122:6:1;7119:30;7116:2;;;7167:6;7159;7152:22;7116:2;7195:22;;7248:4;7240:13;;7236:27;-1:-1:-1;7226:2:1;;7282:6;7274;7267:22;7226:2;7323;7310:16;7345:4;7368:43;7408:2;7368:43;:::i;:::-;7440:2;7434:9;7452:31;7480:2;7472:6;7452:31;:::i;:::-;7518:18;;;7552:15;;;;-1:-1:-1;7587:11:1;;;7629:1;7625:10;;;7617:19;;7613:28;;7610:41;-1:-1:-1;7607:2:1;;;7669:6;7661;7654:22;7607:2;7696:6;7687:15;;7711:163;7725:2;7722:1;7719:9;7711:163;;;7782:17;;7770:30;;7743:1;7736:9;;;;;7820:12;;;;7852;;7711:163;;;-1:-1:-1;7893:6:1;-1:-1:-1;7918:37:1;;-1:-1:-1;7936:18:1;;;7918:37;:::i;:::-;7908:47;;;;;6989:972;;;;;:::o;7966:833::-;8047:6;8100:2;8088:9;8079:7;8075:23;8071:32;8068:2;;;8121:6;8113;8106:22;8068:2;8175:7;8168:4;8157:9;8153:20;8149:34;8139:2;;8202:6;8194;8187:22;8139:2;8240;8234:9;8282:2;8274:6;8270:15;8351:6;8339:10;8336:22;-1:-1:-1;;;;;8303:10:1;8300:34;8297:62;8294:2;;;8362:18;;:::i;:::-;8402:10;8398:2;8391:22;;8433:6;8459:9;8503:7;8498:2;8487:9;8483:18;8480:31;8477:2;;;8529:6;8521;8514:22;8477:2;8556:6;8571:197;8585:4;8582:1;8579:11;8571:197;;;8644:22;8662:3;8644:22;:::i;:::-;8632:35;;8690:4;8714:12;;;;8746;;;;;8605:1;8598:9;8571:197;;;-1:-1:-1;8787:6:1;;8058:741;-1:-1:-1;;;;;8058:741:1:o;8804:190::-;8863:6;8916:2;8904:9;8895:7;8891:23;8887:32;8884:2;;;8937:6;8929;8922:22;8884:2;-1:-1:-1;8965:23:1;;8874:120;-1:-1:-1;8874:120:1:o;8999:255::-;9057:6;9110:2;9098:9;9089:7;9085:23;9081:32;9078:2;;;9131:6;9123;9116:22;9078:2;9175:9;9162:23;9194:30;9218:5;9194:30;:::i;9259:259::-;9328:6;9381:2;9369:9;9360:7;9356:23;9352:32;9349:2;;;9402:6;9394;9387:22;9349:2;9439:9;9433:16;9458:30;9482:5;9458:30;:::i;9523:480::-;9592:6;9645:2;9633:9;9624:7;9620:23;9616:32;9613:2;;;9666:6;9658;9651:22;9613:2;9711:9;9698:23;-1:-1:-1;;;;;9736:6:1;9733:30;9730:2;;;9781:6;9773;9766:22;9730:2;9809:22;;9862:4;9854:13;;9850:27;-1:-1:-1;9840:2:1;;9896:6;9888;9881:22;9840:2;9924:73;9989:7;9984:2;9971:16;9966:2;9962;9958:11;9924:73;:::i;10008:194::-;10066:6;10119:2;10107:9;10098:7;10094:23;10090:32;10087:2;;;10140:6;10132;10125:22;10087:2;10168:28;10186:9;10168:28;:::i;10402:289::-;10459:6;10512:2;10500:9;10491:7;10487:23;10483:32;10480:2;;;10533:6;10525;10518:22;10480:2;10577:9;10564:23;10627:4;10620:5;10616:16;10609:5;10606:27;10596:2;;10652:6;10644;10637:22;10696:437;10749:3;10787:5;10781:12;10814:6;10809:3;10802:19;10840:4;10869:2;10864:3;10860:12;10853:19;;10906:2;10899:5;10895:14;10927:3;10939:169;10953:6;10950:1;10947:13;10939:169;;;11014:13;;11002:26;;11048:12;;;;11083:15;;;;10975:1;10968:9;10939:169;;;-1:-1:-1;11124:3:1;;10757:376;-1:-1:-1;;;;;10757:376:1:o;11138:257::-;11179:3;11217:5;11211:12;11244:6;11239:3;11232:19;11260:63;11316:6;11309:4;11304:3;11300:14;11293:4;11286:5;11282:16;11260:63;:::i;:::-;11377:2;11356:15;-1:-1:-1;;11352:29:1;11343:39;;;;11384:4;11339:50;;11187:208;-1:-1:-1;;11187:208:1:o;11400:185::-;11442:3;11480:5;11474:12;11495:52;11540:6;11535:3;11528:4;11521:5;11517:16;11495:52;:::i;:::-;11563:16;;;;;11450:135;-1:-1:-1;;11450:135:1:o;11942:1305::-;12219:3;12248;12283:6;12277:13;12313:3;12335:1;12363:9;12359:2;12355:18;12345:28;;12423:2;12412:9;12408:18;12445;12435:2;;12489:4;12481:6;12477:17;12467:27;;12435:2;12515;12563;12555:6;12552:14;12532:18;12529:38;12526:2;;;-1:-1:-1;;;12590:33:1;;12646:4;12643:1;12636:15;12676:4;12597:3;12664:17;12526:2;12707:18;12734:104;;;;12852:1;12847:322;;;;12700:469;;12734:104;-1:-1:-1;;12767:24:1;;12755:37;;12812:16;;;;-1:-1:-1;12734:104:1;;12847:322;27144:4;27163:17;;;27213:4;27197:21;;12942:3;12958:165;12972:6;12969:1;12966:13;12958:165;;;13050:14;;13037:11;;;13030:35;13093:16;;;;12987:10;;12958:165;;;12962:3;;13152:6;13147:3;13143:16;13136:23;;12700:469;;;;;;;13185:56;13210:30;13236:3;13228:6;13210:30;:::i;:::-;-1:-1:-1;;;11650:20:1;;11695:1;11686:11;;11640:63;13185:56;13178:63;12227:1020;-1:-1:-1;;;;;12227:1020:1:o;13460:826::-;-1:-1:-1;;;;;13857:15:1;;;13839:34;;13909:15;;13904:2;13889:18;;13882:43;13819:3;13956:2;13941:18;;13934:31;;;13782:4;;13988:57;;14025:19;;14017:6;13988:57;:::i;:::-;14093:9;14085:6;14081:22;14076:2;14065:9;14061:18;14054:50;14127:44;14164:6;14156;14127:44;:::i;:::-;14113:58;;14220:9;14212:6;14208:22;14202:3;14191:9;14187:19;14180:51;14248:32;14273:6;14265;14248:32;:::i;:::-;14240:40;13791:495;-1:-1:-1;;;;;;;;13791:495:1:o;14291:560::-;-1:-1:-1;;;;;14588:15:1;;;14570:34;;14640:15;;14635:2;14620:18;;14613:43;14687:2;14672:18;;14665:34;;;14730:2;14715:18;;14708:34;;;14550:3;14773;14758:19;;14751:32;;;14513:4;;14800:45;;14825:19;;14817:6;14800:45;:::i;:::-;14792:53;14522:329;-1:-1:-1;;;;;;;14522:329:1:o;14856:261::-;15035:2;15024:9;15017:21;14998:4;15055:56;15107:2;15096:9;15092:18;15084:6;15055:56;:::i;15122:465::-;15379:2;15368:9;15361:21;15342:4;15405:56;15457:2;15446:9;15442:18;15434:6;15405:56;:::i;:::-;15509:9;15501:6;15497:22;15492:2;15481:9;15477:18;15470:50;15537:44;15574:6;15566;15537:44;:::i;15966:219::-;16115:2;16104:9;16097:21;16078:4;16135:44;16175:2;16164:9;16160:18;16152:6;16135:44;:::i;16611:404::-;16813:2;16795:21;;;16852:2;16832:18;;;16825:30;16891:34;16886:2;16871:18;;16864:62;-1:-1:-1;;;16957:2:1;16942:18;;16935:38;17005:3;16990:19;;16785:230::o;18244:400::-;18446:2;18428:21;;;18485:2;18465:18;;;18458:30;18524:34;18519:2;18504:18;;18497:62;-1:-1:-1;;;18590:2:1;18575:18;;18568:34;18634:3;18619:19;;18418:226::o;18649:405::-;18851:2;18833:21;;;18890:2;18870:18;;;18863:30;18929:34;18924:2;18909:18;;18902:62;-1:-1:-1;;;18995:2:1;18980:18;;18973:39;19044:3;19029:19;;18823:231::o;19059:350::-;19261:2;19243:21;;;19300:2;19280:18;;;19273:30;19339:28;19334:2;19319:18;;19312:56;19400:2;19385:18;;19233:176::o;19767:401::-;19969:2;19951:21;;;20008:2;19988:18;;;19981:30;20047:34;20042:2;20027:18;;20020:62;-1:-1:-1;;;20113:2:1;20098:18;;20091:35;20158:3;20143:19;;19941:227::o;20592:399::-;20794:2;20776:21;;;20833:2;20813:18;;;20806:30;20872:34;20867:2;20852:18;;20845:62;-1:-1:-1;;;20938:2:1;20923:18;;20916:33;20981:3;20966:19;;20766:225::o;20996:406::-;21198:2;21180:21;;;21237:2;21217:18;;;21210:30;21276:34;21271:2;21256:18;;21249:62;-1:-1:-1;;;21342:2:1;21327:18;;21320:40;21392:3;21377:19;;21170:232::o;21758:356::-;21960:2;21942:21;;;21979:18;;;21972:30;22038:34;22033:2;22018:18;;22011:62;22105:2;22090:18;;21932:182::o;22541:400::-;22743:2;22725:21;;;22782:2;22762:18;;;22755:30;22821:34;22816:2;22801:18;;22794:62;-1:-1:-1;;;22887:2:1;22872:18;;22865:34;22931:3;22916:19;;22715:226::o;22946:398::-;23148:2;23130:21;;;23187:2;23167:18;;;23160:30;23226:34;23221:2;23206:18;;23199:62;-1:-1:-1;;;23292:2:1;23277:18;;23270:32;23334:3;23319:19;;23120:224::o;24876:404::-;25078:2;25060:21;;;25117:2;25097:18;;;25090:30;25156:34;25151:2;25136:18;;25129:62;-1:-1:-1;;;25222:2:1;25207:18;;25200:38;25270:3;25255:19;;25050:230::o;26909:183::-;26969:4;-1:-1:-1;;;;;26994:6:1;26991:30;26988:2;;;27024:18;;:::i;:::-;-1:-1:-1;27069:1:1;27065:14;27081:4;27061:25;;26978:114::o;27229:224::-;27268:3;27296:6;27329:2;27326:1;27322:10;27359:2;27356:1;27352:10;27390:3;27386:2;27382:12;27377:3;27374:21;27371:2;;;27398:18;;:::i;:::-;27434:13;;27276:177;-1:-1:-1;;;;27276:177:1:o;27458:128::-;27498:3;27529:1;27525:6;27522:1;27519:13;27516:2;;;27535:18;;:::i;:::-;-1:-1:-1;27571:9:1;;27506:80::o;27591:120::-;27631:1;27657;27647:2;;27662:18;;:::i;:::-;-1:-1:-1;27696:9:1;;27637:74::o;27716:168::-;27756:7;27822:1;27818;27814:6;27810:14;27807:1;27804:21;27799:1;27792:9;27785:17;27781:45;27778:2;;;27829:18;;:::i;:::-;-1:-1:-1;27869:9:1;;27768:116::o;27889:125::-;27929:4;27957:1;27954;27951:8;27948:2;;;27962:18;;:::i;:::-;-1:-1:-1;27999:9:1;;27938:76::o;28019:258::-;28091:1;28101:113;28115:6;28112:1;28109:13;28101:113;;;28191:11;;;28185:18;28172:11;;;28165:39;28137:2;28130:10;28101:113;;;28232:6;28229:1;28226:13;28223:2;;;-1:-1:-1;;28267:1:1;28249:16;;28242:27;28072:205::o;28282:380::-;28361:1;28357:12;;;;28404;;;28425:2;;28479:4;28471:6;28467:17;28457:27;;28425:2;28532;28524:6;28521:14;28501:18;28498:38;28495:2;;;28578:10;28573:3;28569:20;28566:1;28559:31;28613:4;28610:1;28603:15;28641:4;28638:1;28631:15;28495:2;;28337:325;;;:::o;28667:249::-;28777:2;28758:13;;-1:-1:-1;;28754:27:1;28742:40;;-1:-1:-1;;;;;28797:34:1;;28833:22;;;28794:62;28791:2;;;28859:18;;:::i;:::-;28895:2;28888:22;-1:-1:-1;;28714:202:1:o;28921:135::-;28960:3;-1:-1:-1;;28981:17:1;;28978:2;;;29001:18;;:::i;:::-;-1:-1:-1;29048:1:1;29037:13;;28968:88::o;29061:112::-;29093:1;29119;29109:2;;29124:18;;:::i;:::-;-1:-1:-1;29158:9:1;;29099:74::o;29178:127::-;29239:10;29234:3;29230:20;29227:1;29220:31;29270:4;29267:1;29260:15;29294:4;29291:1;29284:15;29310:127;29371:10;29366:3;29362:20;29359:1;29352:31;29402:4;29399:1;29392:15;29426:4;29423:1;29416:15;29442:127;29503:10;29498:3;29494:20;29491:1;29484:31;29534:4;29531:1;29524:15;29558:4;29555:1;29548:15;29574:185;29609:3;29651:1;29633:16;29630:23;29627:2;;;29701:1;29696:3;29691;29676:27;29732:10;29727:3;29723:20;29627:2;29617:142;:::o;29764:671::-;29803:3;29845:4;29827:16;29824:26;29821:2;;;29811:624;:::o;29821:2::-;29887;29881:9;-1:-1:-1;;29952:16:1;29948:25;;29945:1;29881:9;29924:50;30003:4;29997:11;30027:16;-1:-1:-1;;;;;30133:2:1;30126:4;30118:6;30114:17;30111:25;30106:2;30098:6;30095:14;30092:45;30089:2;;;30140:5;;;;;29811:624;:::o;30089:2::-;30177:6;30171:4;30167:17;30156:28;;30213:3;30207:10;30240:2;30232:6;30229:14;30226:2;;;30246:5;;;;;;29811:624;:::o;30226:2::-;30330;30311:16;30305:4;30301:27;30297:36;30290:4;30281:6;30276:3;30272:16;30268:27;30265:69;30262:2;;;30337:5;;;;;;29811:624;:::o;30262:2::-;30353:57;30404:4;30395:6;30387;30383:19;30379:30;30373:4;30353:57;:::i;:::-;-1:-1:-1;30426:3:1;;29811:624;-1:-1:-1;;;;;29811:624:1:o;30440:131::-;-1:-1:-1;;;;;;30514:32:1;;30504:43;;30494:2;;30561:1;30558;30551:12

Swarm Source

ipfs://01238662fc63fc3ba3f1d4752ec5f7967d67ce457bdc9929af8b7a32d825f01b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.