ETH Price: $2,968.35 (-1.47%)
Gas: 3 Gwei

Token

Half Ave Access Passes (Half Ave Access Passes)
 

Overview

Max Total Supply

334 Half Ave Access Passes

Holders

325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Half Ave Access Passes
0xed87631022d31dc2f1827fbf03057f153dbb91dc
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:
HalfAveAccessPasses

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

// File: half-ave-latest.sol


pragma solidity >=0.7.0 <0.9.0;





contract HalfAveAccessPasses is ERC721, Ownable, DefaultOperatorFilterer {
 
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string private baseTokenURI;

    address public azukiOwnerAddress;
    address public cloneXOwnerAddress;
    address public BAYCOwnerAddress;

    uint256 public saleCost = 0 ether;

    uint128 public maxSupply = 6000;

    uint64 public azukiStartIndex = 4000;
    uint64 public cloneXStartIndex = 4667;
    uint64 public BAYCStartIndex = 5334;

    uint64 public generalMintMaxSupply = 3999;
    uint64 public azukiMintMaxSupply = 667;
    uint64 public cloneXMintMaxSupply = 667;
    uint64 public BAYCMintMaxSupply = 667;

    uint64 public generalAmountMinted = 0;
    uint64 public azukiAmountMinted = 0;
    uint64 public cloneXAmountMinted = 0;
    uint64 public BAYCAmountMinted = 0;

    uint64 public maxMintAmountPerAccount = 1;

    bool public saleActive = false;

    mapping(address => uint256) public addressAmountMinted;

    constructor() ERC721("Half Ave Access Passes", "Half Ave Access Passes") {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 , "Invalid mint amount!");
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }
    
    ///Mints a general NFT when the public sale is open
    function generalMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(saleActive, "Sale is not Active");

        require(generalAmountMinted + _mintAmount <= generalMintMaxSupply, "Mint limit exceeded." );
        require(addressAmountMinted[msg.sender] + _mintAmount <= maxMintAmountPerAccount, "Mint limit exceeded." );
        require(msg.value == saleCost * _mintAmount, "Insufficient funds!");

        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(msg.sender, 1 + generalAmountMinted + i);
        }

        addressAmountMinted[msg.sender] += _mintAmount;
        generalAmountMinted += _mintAmount;
    }

    ///Allows address which own an Azuki NFT to mint when the public sale is open
    function azukiMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(saleActive, "Sale is not Active");

        require(ownsNFTInCollection(msg.sender, azukiOwnerAddress), "Does not own Azuki NFT." );
        require(azukiAmountMinted + _mintAmount <= azukiMintMaxSupply, "Mint limit exceeded." );
        require(addressAmountMinted[msg.sender] + _mintAmount <= maxMintAmountPerAccount, "Mint limit exceeded." );
        require(msg.value == saleCost * _mintAmount, "Insufficient funds!");

        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(msg.sender, azukiStartIndex + azukiAmountMinted + i);
        }

        addressAmountMinted[msg.sender] += _mintAmount;
        azukiAmountMinted += _mintAmount;
    }

    ///Allows address which own an Clone X NFT to mint when the public sale is open
    function cloneXMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(saleActive, "Sale is not Active");

        require(ownsNFTInCollection(msg.sender, cloneXOwnerAddress), "Does not own Clone X NFT." );
        require(cloneXAmountMinted + _mintAmount <= cloneXMintMaxSupply, "Mint limit exceeded." );
        require(addressAmountMinted[msg.sender] + _mintAmount <= maxMintAmountPerAccount, "Mint limit exceeded." );
        require(msg.value == saleCost * _mintAmount, "Insufficient funds!");

        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(msg.sender, cloneXStartIndex + cloneXAmountMinted + i);
        }

        addressAmountMinted[msg.sender] += _mintAmount;
        cloneXAmountMinted += _mintAmount;
    }

    ///Allows address which own an BAYC NFT to mint when the public sale is open
    function BAYCMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(saleActive, "Sale is not Active");

        require(ownsNFTInCollection(msg.sender, BAYCOwnerAddress), "Does not own Clone X NFT." );
        require(BAYCAmountMinted + _mintAmount <= BAYCMintMaxSupply, "Mint limit exceeded." );
        require(addressAmountMinted[msg.sender] + _mintAmount <= maxMintAmountPerAccount, "Mint limit exceeded." );
        require(msg.value == saleCost * _mintAmount, "Insufficient funds!");

        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(msg.sender, BAYCStartIndex + BAYCAmountMinted + i);
        }

        addressAmountMinted[msg.sender] += _mintAmount;
        BAYCAmountMinted += _mintAmount;
    }


    ///Allows owner of the collection to airdrop a token to an address
    function airdropGeneral(uint64 _mintAmount, address[] memory _receivers) public mintCompliance(_mintAmount) onlyOwner {
        require(generalAmountMinted + _mintAmount <= generalMintMaxSupply, "Mint limit exceeded." );
        
        for(uint256 i = 0; i < _receivers.length; i++){
            for (uint256 j = 0; j < _mintAmount; j++) {
                supply.increment();
                _safeMint(_receivers[i], 1 + generalAmountMinted );
                generalAmountMinted+=1;
            }
        }
    }

    ///Allows owner of the collection to airdrop an azuki token to an address
    function airdropAzuki(uint64 _mintAmount, address[] memory _receivers) public mintCompliance(_mintAmount) onlyOwner {
        require(azukiAmountMinted + _mintAmount <= azukiMintMaxSupply, "Mint limit exceeded." );
        
        for(uint256 i = 0; i < _receivers.length; i++){
            for (uint256 j = 0; j < _mintAmount; j++) {
                supply.increment();
                _safeMint(_receivers[i], azukiStartIndex + azukiAmountMinted );
                azukiAmountMinted+=1;
            }
        }
    }

    ///Allows owner of the collection to airdrop a cloneX token to an address
    function airdropCloneX(uint64 _mintAmount, address[] memory _receivers) public mintCompliance(_mintAmount) onlyOwner {
        require(cloneXAmountMinted + _mintAmount <= cloneXMintMaxSupply, "Mint limit exceeded." );
        
        for(uint256 i = 0; i < _receivers.length; i++){
            for (uint256 j = 0; j < _mintAmount; j++) {
                supply.increment();
                _safeMint(_receivers[i], cloneXStartIndex + cloneXAmountMinted );
                cloneXAmountMinted+=1;
            }
        }
    }

    ///Allows owner of the collection to airdrop a BAYC token to an address
    function airdropBAYC(uint64 _mintAmount, address[] memory _receivers) public mintCompliance(_mintAmount) onlyOwner {
        require(BAYCAmountMinted + _mintAmount <= BAYCMintMaxSupply, "Mint limit exceeded." );

        for(uint256 i = 0; i < _receivers.length; i++){
            for (uint256 j = 0; j < _mintAmount; j++) {
                supply.increment();
                _safeMint(_receivers[i], BAYCStartIndex + BAYCAmountMinted );
                BAYCAmountMinted+=1;
            }
        }
    }

    //@return token ids owned by an address in the collection
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            if(exists(currentTokenId) == true) {
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //@return full url for passed in token id 
    function tokenURI(uint256 _tokenId)

        public
        view
        virtual
        override
        returns (string memory)

    {

        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))

            : "";
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function burn(uint256 _tokenId) public {
        require(exists(_tokenId), "Token does not exist");
        require(msg.sender == ownerOf(_tokenId), "Not the owner of the token");
        _burn(_tokenId);
    }

    //@return url for the nft metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

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

    function setAzukiOwnerAddress(address _state) public onlyOwner{
        azukiOwnerAddress = _state;
    }
    function setCloneXOwnerAddress(address _state) public onlyOwner{
        cloneXOwnerAddress = _state;
    }
    function setBAYCOwnerAddress(address _state) public onlyOwner{
        BAYCOwnerAddress = _state;
    }

    function setSaleCost(uint256 _saleCost) public onlyOwner {
        saleCost = _saleCost;
    }
   
    function setMaxMintAmountPerAccount(uint64 _maxMintAmountPerAccount) public onlyOwner {
        maxMintAmountPerAccount = _maxMintAmountPerAccount;
    }
    
    function setSaleActive(bool _state) public onlyOwner {
        saleActive = _state;
    }

    function ownsNFTInCollection(address _user, address _collectionAddress) public view returns (bool) {
        IERC721 token = IERC721(_collectionAddress);
        uint256 ownerAmount = token.balanceOf(_user);
    
        if(ownerAmount >= 1){
            return true;
        }

        return false;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /// Fallbacks 
    receive() external payable { }
    fallback() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BAYCAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"BAYCMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"BAYCMintMaxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAYCOwnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAYCStartIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"airdropAzuki","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"airdropBAYC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"airdropCloneX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"airdropGeneral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"azukiAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"azukiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"azukiMintMaxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"azukiOwnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"azukiStartIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cloneXAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"cloneXMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cloneXMintMaxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cloneXOwnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cloneXStartIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"generalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"generalMintMaxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_collectionAddress","type":"address"}],"name":"ownsNFTInCollection","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_state","type":"address"}],"name":"setAzukiOwnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_state","type":"address"}],"name":"setBAYCOwnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_state","type":"address"}],"name":"setCloneXOwnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintAmountPerAccount","type":"uint64"}],"name":"setMaxMintAmountPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleCost","type":"uint256"}],"name":"setSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600c5579123b0000000000000fa000000000000000000000000000001770600d5579029b000000000000029b0000000000000f9f00000000000014d6600e5561029b600f55601080546001600160881b031916680100000000000000001790553480156200007357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601681526020017f48616c66204176652041636365737320506173736573000000000000000000008152506040518060400160405280601681526020017f48616c662041766520416363657373205061737365730000000000000000000081525081600090816200010891906200037c565b5060016200011782826200037c565b505050620001346200012e6200028160201b60201c565b62000285565b6daaeb6d7670e522a718067333cd4e3b1562000279578015620001c757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001a857600080fd5b505af1158015620001bd573d6000803e3d6000fd5b5050505062000279565b6001600160a01b03821615620002185760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200018d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025f57600080fd5b505af115801562000274573d6000803e3d6000fd5b505050505b505062000448565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030257607f821691505b6020821081036200032357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037757600081815260208120601f850160051c81016020861015620003525750805b601f850160051c820191505b8181101562000373578281556001016200035e565b5050505b505050565b81516001600160401b03811115620003985762000398620002d7565b620003b081620003a98454620002ed565b8462000329565b602080601f831160018114620003e85760008415620003cf5750858301515b600019600386901b1c1916600185901b17855562000373565b600085815260208120601f198616915b828110156200041957888601518255948401946001909101908401620003f8565b5085821015620004385787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b613b3a80620004586000396000f3fe60806040526004361061033f5760003560e01c8063715018a6116101ae578063a3bbadf7116100eb578063d7fa4b671161008f578063e985e9c51161006c578063e985e9c514610a29578063eea3ae4c14610a72578063f2fde38b14610a85578063fd6ee49f14610aa557005b8063d7fa4b67146109d6578063de9d711f146109f6578063e3da912f14610a1657005b8063c22a710f116100c8578063c22a710f1461093e578063c87b56dd1461095e578063ca678c6a1461097e578063d5abeb011461099e57005b8063a3bbadf7146108eb578063b2f916161461090b578063b88d4fde1461091e57005b80638da5cb5b1161015257806395beac6b1161012f57806395beac6b1461086f57806395d89b411461088f578063969f9327146108a4578063a22cb465146108cb57005b80638da5cb5b146108045780638ffb1c1914610822578063905e7eb61461084257005b80637cc91dce1161018b5780637cc91dce1461079b57806381e9b2c7146107ae578063841718a6146107c457806387b96b29146107e457005b8063715018a61461073857806373193a8b1461074d57806379fb9b841461077457005b806342842e0e1161027c5780635e3f9738116102205780636497ee9c116101fd5780636497ee9c146106a957806368428a1b146106d0578063693bb6b8146106f157806370a082311461071857005b80635e3f973814610649578063609d3a63146106695780636352211e1461068957005b80634f558e79116102595780634f558e79146105c2578063506cd0b2146105e257806355f804b31461060257806359948a321461062257005b806342842e0e1461055557806342966c6814610575578063438b63001461059557005b806323b872dd116102e35780633668fb35116102c05780633668fb35146104d95780633bce4276146105005780633ccfd60b1461052057806341b82ae71461053557005b806323b872dd1461047257806323fc959a146104925780632de2edf4146104b957005b8063095ea7b31161031c578063095ea7b3146103d75780630e4c6560146103f757806318160ddd1461042f57806319253ec81461045257005b806301ffc9a71461034857806306fdde031461037d578063081812fc1461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004613208565b610acc565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b50610392610b1e565b6040516103749190613275565b3480156103ab57600080fd5b506103bf6103ba366004613288565b610bb0565b6040516001600160a01b039091168152602001610374565b3480156103e357600080fd5b506103466103f23660046132bd565b610bd7565b34801561040357600080fd5b50601054610417906001600160401b031681565b6040516001600160401b039091168152602001610374565b34801561043b57600080fd5b50610444610cf1565b604051908152602001610374565b34801561045e57600080fd5b5061034661046d3660046132e7565b610d01565b34801561047e57600080fd5b5061034661048d366004613302565b610d2b565b34801561049e57600080fd5b50600f5461041790600160c01b90046001600160401b031681565b3480156104c557600080fd5b50600a546103bf906001600160a01b031681565b3480156104e557600080fd5b50600d5461041790600160801b90046001600160401b031681565b34801561050c57600080fd5b5061034661051b366004613355565b610e87565b34801561052c57600080fd5b50610346610ec1565b34801561054157600080fd5b506103466105503660046133b6565b610f3d565b34801561056157600080fd5b50610346610570366004613302565b6110d2565b34801561058157600080fd5b50610346610590366004613288565b611223565b3480156105a157600080fd5b506105b56105b03660046132e7565b6112e1565b6040516103749190613475565b3480156105ce57600080fd5b506103686105dd366004613288565b6113dc565b3480156105ee57600080fd5b506103466105fd366004613288565b6113fb565b34801561060e57600080fd5b5061034661061d3660046134b9565b611408565b34801561062e57600080fd5b50600e5461041790600160801b90046001600160401b031681565b34801561065557600080fd5b506103466106643660046133b6565b61141d565b34801561067557600080fd5b50600e54610417906001600160401b031681565b34801561069557600080fd5b506103bf6106a4366004613288565b6115c1565b3480156106b557600080fd5b50600e5461041790600160c01b90046001600160401b031681565b3480156106dc57600080fd5b5060105461036890600160801b900460ff1681565b3480156106fd57600080fd5b50600d5461041790600160c01b90046001600160401b031681565b34801561072457600080fd5b506104446107333660046132e7565b611621565b34801561074457600080fd5b506103466116a7565b34801561075957600080fd5b50600f5461041790600160801b90046001600160401b031681565b34801561078057600080fd5b5060105461041790600160401b90046001600160401b031681565b6103466107a9366004613355565b6116bb565b3480156107ba57600080fd5b50610444600c5481565b3480156107d057600080fd5b506103466107df366004613538565b61190e565b3480156107f057600080fd5b50600b546103bf906001600160a01b031681565b34801561081057600080fd5b506006546001600160a01b03166103bf565b34801561082e57600080fd5b5061034661083d3660046133b6565b611934565b34801561084e57600080fd5b5061044461085d3660046132e7565b60116020526000908152604090205481565b34801561087b57600080fd5b5061034661088a3660046132e7565b611ad8565b34801561089b57600080fd5b50610392611b02565b3480156108b057600080fd5b50600f5461041790600160401b90046001600160401b031681565b3480156108d757600080fd5b506103466108e6366004613555565b611b11565b3480156108f757600080fd5b506103466109063660046132e7565b611b20565b610346610919366004613355565b611b4a565b34801561092a57600080fd5b5061034661093936600461358c565b611dc5565b34801561094a57600080fd5b506103466109593660046133b6565b611f24565b34801561096a57600080fd5b50610392610979366004613288565b6120bf565b34801561098a57600080fd5b5061036861099936600461364b565b61219a565b3480156109aa57600080fd5b50600d546109be906001600160801b031681565b6040516001600160801b039091168152602001610374565b3480156109e257600080fd5b50600f54610417906001600160401b031681565b348015610a0257600080fd5b506009546103bf906001600160a01b031681565b610346610a24366004613355565b61222c565b348015610a3557600080fd5b50610368610a4436600461364b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610346610a80366004613355565b61248a565b348015610a9157600080fd5b50610346610aa03660046132e7565b612709565b348015610ab157600080fd5b50600e5461041790600160401b90046001600160401b031681565b60006001600160e01b031982166380ac58cd60e01b1480610afd57506001600160e01b03198216635b5e139f60e01b145b80610b1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610b2d9061367e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061367e565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b5050505050905090565b6000610bbb8261277f565b506000908152600460205260409020546001600160a01b031690565b6000610be2826115c1565b9050806001600160a01b0316836001600160a01b031603610c545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610c705750610c708133610a44565b610ce25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610c4b565b610cec83836127de565b505050565b6000610cfc60075490565b905090565b610d0961284c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b826daaeb6d7670e522a718067333cd4e3b15610e7657336001600160a01b03821603610d6157610d5c8484846128a6565b610e81565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd491906136b8565b8015610e575750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5791906136b8565b610e7657604051633b79c77360e21b8152336004820152602401610c4b565b610e818484846128a6565b50505050565b610e8f61284c565b601080546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b610ec961284c565b6000610edd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f27576040519150601f19603f3d011682016040523d82523d6000602084013e610f2c565b606091505b5050905080610f3a57600080fd5b50565b816001600160401b031660008111610f675760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681610f7c610cf1565b610f869190613719565b1115610fa45760405162461bcd60e51b8152600401610c4b9061372c565b610fac61284c565b600f546010546001600160401b0391821691610fca9186911661375a565b6001600160401b03161115610ff15760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156110bf5761101f600780546001019055565b611069848381518110611034576110346137af565b6020908102919091010151601054600e5461105b916001600160401b03908116911661375a565b6001600160401b03166128d7565b60108054600191906000906110889084906001600160401b031661375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806110b7906137c5565b915050611000565b50806110ca816137c5565b915050610ff4565b826daaeb6d7670e522a718067333cd4e3b1561121857336001600160a01b0382160361110357610d5c8484846128f1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611152573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117691906136b8565b80156111f95750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f991906136b8565b61121857604051633b79c77360e21b8152336004820152602401610c4b565b610e818484846128f1565b61122c816113dc565b61126f5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c4b565b611278816115c1565b6001600160a01b0316336001600160a01b0316146112d85760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610c4b565b610f3a8161290c565b606060006112ee83611621565b90506000816001600160401b0381111561130a5761130a613370565b604051908082528060200260200182016040528015611333578160200160208202803683370190505b509050600160005b83811080156113555750600d546001600160801b03168211155b156113d257611363826113dc565b15156001036113c0576000611377836115c1565b9050866001600160a01b0316816001600160a01b0316036113be57828483815181106113a5576113a56137af565b6020908102919091010152816113ba816137c5565b9250505b505b816113ca816137c5565b92505061133b565b5090949350505050565b6000818152600260205260408120546001600160a01b03161515610b18565b61140361284c565b600c55565b61141061284c565b6008610cec82848361382c565b816001600160401b0316600081116114475760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b03168161145c610cf1565b6114669190613719565b11156114845760405162461bcd60e51b8152600401610c4b9061372c565b61148c61284c565b600e54600f546001600160401b03600160801b928390048116926114b59287929190041661375a565b6001600160401b031611156114dc5760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156115ae5761150a600780546001019055565b61155284838151811061151f5761151f6137af565b6020908102919091010151600f54600d5461105b916001600160401b03600160801b91829004811692919091041661375a565b6001600f60108282829054906101000a90046001600160401b0316611577919061375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806115a6906137c5565b9150506114eb565b50806115b9816137c5565b9150506114df565b6000818152600260205260408120546001600160a01b031680610b185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c4b565b60006001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c4b565b506001600160a01b031660009081526003602052604090205490565b6116af61284c565b6116b960006129af565b565b806001600160401b0316600081116116e55760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b0316816116fa610cf1565b6117049190613719565b11156117225760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff1661174b5760405162461bcd60e51b8152600401610c4b906138eb565b600e54600f546001600160401b03600160401b928390048116926117749286929190041661375a565b6001600160401b0316111561179b5760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916117ce9190851690613719565b11156117ec5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546118039190613917565b34146118215760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b031681101561189357611843600780546001019055565b600f54611881903390839061186990600160401b90046001600160401b0316600161375a565b6001600160401b031661187c9190613719565b6128d7565b8061188b816137c5565b915050611824565b5033600090815260116020526040812080546001600160401b03851692906118bc908490613719565b9091555050600f80548391906008906118e6908490600160401b90046001600160401b031661375a565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505050565b61191661284c565b60108054911515600160801b0260ff60801b19909216919091179055565b816001600160401b03166000811161195e5760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611973610cf1565b61197d9190613719565b111561199b5760405162461bcd60e51b8152600401610c4b9061372c565b6119a361284c565b600e54600f546001600160401b03600160c01b928390048116926119cc9287929190041661375a565b6001600160401b031611156119f35760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b0316811015611ac557611a21600780546001019055565b611a69848381518110611a3657611a366137af565b6020908102919091010151600f54600d5461105b916001600160401b03600160c01b91829004811692919091041661375a565b6001600f60188282829054906101000a90046001600160401b0316611a8e919061375a565b92506101000a8154816001600160401b0302191690836001600160401b031602179055508080611abd906137c5565b915050611a02565b5080611ad0816137c5565b9150506119f6565b611ae061284c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610b2d9061367e565b611b1c338383612a01565b5050565b611b2861284c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b806001600160401b031660008111611b745760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611b89610cf1565b611b939190613719565b1115611bb15760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff16611bda5760405162461bcd60e51b8152600401610c4b906138eb565b600a54611bf19033906001600160a01b031661219a565b611c395760405162461bcd60e51b81526020600482015260196024820152782237b2b9903737ba1037bbb71021b637b732902c1027232a1760391b6044820152606401610c4b565b600e54600f546001600160401b03600160c01b92839004811692611c629286929190041661375a565b6001600160401b03161115611c895760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b909204821691611cbc9190851690613719565b1115611cda5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c54611cf19190613917565b3414611d0f5760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b0316811015611d7257611d31600780546001019055565b600f54600d54611d609133918491611869916001600160401b03600160c01b928390048116929091041661375a565b80611d6a816137c5565b915050611d12565b5033600090815260116020526040812080546001600160401b0385169290611d9b908490613719565b9091555050600f80548391906018906118e6908490600160c01b90046001600160401b031661375a565b836daaeb6d7670e522a718067333cd4e3b15611f1157336001600160a01b03821603611dfc57611df785858585612acf565b611f1d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6f91906136b8565b8015611ef25750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef291906136b8565b611f1157604051633b79c77360e21b8152336004820152602401610c4b565b611f1d85858585612acf565b5050505050565b816001600160401b031660008111611f4e5760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611f63610cf1565b611f6d9190613719565b1115611f8b5760405162461bcd60e51b8152600401610c4b9061372c565b611f9361284c565b600e54600f546001600160401b03600160401b92839004811692611fbc9287929190041661375a565b6001600160401b03161115611fe35760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156120ac57612011600780546001019055565b612050848381518110612026576120266137af565b6020026020010151600f60089054906101000a90046001600160401b0316600161105b919061375a565b6001600f60088282829054906101000a90046001600160401b0316612075919061375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806120a4906137c5565b915050611ff2565b50806120b7816137c5565b915050611fe6565b6000818152600260205260409020546060906001600160a01b031661213e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c4b565b6000612148612b01565b905060008151116121685760405180602001604052806000815250612193565b8061217284612b10565b60405160200161218392919061395b565b6040516020818303038152906040525b9392505050565b6040516370a0823160e01b81526001600160a01b03838116600483015260009183918391908316906370a0823190602401602060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220c919061399a565b90506001811061222157600192505050610b18565b506000949350505050565b806001600160401b0316600081116122565760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b03168161226b610cf1565b6122759190613719565b11156122935760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff166122bc5760405162461bcd60e51b8152600401610c4b906138eb565b600b546122d39033906001600160a01b031661219a565b61231b5760405162461bcd60e51b81526020600482015260196024820152782237b2b9903737ba1037bbb71021b637b732902c1027232a1760391b6044820152606401610c4b565b600f546010546001600160401b03918216916123399185911661375a565b6001600160401b031611156123605760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916123939190851690613719565b11156123b15760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546123c89190613917565b34146123e65760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b031681101561243e57612408600780546001019055565b601054600e5461242c9133918491611869916001600160401b03918216911661375a565b80612436816137c5565b9150506123e9565b5033600090815260116020526040812080546001600160401b0385169290612467908490613719565b9091555050601080548391906000906118e69084906001600160401b031661375a565b806001600160401b0316600081116124b45760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b0316816124c9610cf1565b6124d39190613719565b11156124f15760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff1661251a5760405162461bcd60e51b8152600401610c4b906138eb565b6009546125319033906001600160a01b031661219a565b61257d5760405162461bcd60e51b815260206004820152601760248201527f446f6573206e6f74206f776e20417a756b69204e46542e0000000000000000006044820152606401610c4b565b600e54600f546001600160401b03600160801b928390048116926125a69286929190041661375a565b6001600160401b031611156125cd5760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916126009190851690613719565b111561261e5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546126359190613917565b34146126535760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b03168110156126b657612675600780546001019055565b600f54600d546126a49133918491611869916001600160401b03600160801b928390048116929091041661375a565b806126ae816137c5565b915050612656565b5033600090815260116020526040812080546001600160401b03851692906126df908490613719565b9091555050600f80548391906010906118e6908490600160801b90046001600160401b031661375a565b61271161284c565b6001600160a01b0381166127765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4b565b610f3a816129af565b6000818152600260205260409020546001600160a01b0316610f3a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c4b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612813826115c1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146116b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c4b565b6128b03382612ba2565b6128cc5760405162461bcd60e51b8152600401610c4b906139b3565b610cec838383612c21565b611b1c828260405180602001604052806000815250612d92565b610cec83838360405180602001604052806000815250611dc5565b6000612917826115c1565b9050612927816000846001612dc5565b612930826115c1565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603612a625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ad93383612ba2565b612af55760405162461bcd60e51b8152600401610c4b906139b3565b610e8184848484612e4d565b606060088054610b2d9061367e565b60606000612b1d83612e80565b60010190506000816001600160401b03811115612b3c57612b3c613370565b6040519080825280601f01601f191660200182016040528015612b66576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612b7057509392505050565b600080612bae836115c1565b9050806001600160a01b0316846001600160a01b03161480612bf557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80612c195750836001600160a01b0316612c0e84610bb0565b6001600160a01b0316145b949350505050565b826001600160a01b0316612c34826115c1565b6001600160a01b031614612c5a5760405162461bcd60e51b8152600401610c4b90613a00565b6001600160a01b038216612cbc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4b565b612cc98383836001612dc5565b826001600160a01b0316612cdc826115c1565b6001600160a01b031614612d025760405162461bcd60e51b8152600401610c4b90613a00565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612d9c8383612f58565b612da960008484846130f1565b610cec5760405162461bcd60e51b8152600401610c4b90613a45565b6001811115610e81576001600160a01b03841615612e0b576001600160a01b03841660009081526003602052604081208054839290612e05908490613a97565b90915550505b6001600160a01b03831615610e81576001600160a01b03831660009081526003602052604081208054839290612e42908490613719565b909155505050505050565b612e58848484612c21565b612e64848484846130f1565b610e815760405162461bcd60e51b8152600401610c4b90613a45565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612ebf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612eeb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f0957662386f26fc10000830492506010015b6305f5e1008310612f21576305f5e100830492506008015b6127108310612f3557612710830492506004015b60648310612f47576064830492506002015b600a8310610b185760010192915050565b6001600160a01b038216612fae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4b565b6000818152600260205260409020546001600160a01b0316156130135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4b565b613021600083836001612dc5565b6000818152600260205260409020546001600160a01b0316156130865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156131e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613135903390899088908890600401613aaa565b6020604051808303816000875af1925050508015613170575060408051601f3d908101601f1916820190925261316d91810190613ae7565b60015b6131cd573d80801561319e576040519150601f19603f3d011682016040523d82523d6000602084013e6131a3565b606091505b5080516000036131c55760405162461bcd60e51b8152600401610c4b90613a45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612c19565b506001949350505050565b6001600160e01b031981168114610f3a57600080fd5b60006020828403121561321a57600080fd5b8135612193816131f2565b60005b83811015613240578181015183820152602001613228565b50506000910152565b60008151808452613261816020860160208601613225565b601f01601f19169290920160200192915050565b6020815260006121936020830184613249565b60006020828403121561329a57600080fd5b5035919050565b80356001600160a01b03811681146132b857600080fd5b919050565b600080604083850312156132d057600080fd5b6132d9836132a1565b946020939093013593505050565b6000602082840312156132f957600080fd5b612193826132a1565b60008060006060848603121561331757600080fd5b613320846132a1565b925061332e602085016132a1565b9150604084013590509250925092565b80356001600160401b03811681146132b857600080fd5b60006020828403121561336757600080fd5b6121938261333e565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156133ae576133ae613370565b604052919050565b600080604083850312156133c957600080fd5b6133d28361333e565b91506020808401356001600160401b03808211156133ef57600080fd5b818601915086601f83011261340357600080fd5b81358181111561341557613415613370565b8060051b9150613426848301613386565b818152918301840191848101908984111561344057600080fd5b938501935b8385101561346557613456856132a1565b82529385019390850190613445565b8096505050505050509250929050565b6020808252825182820181905260009190848201906040850190845b818110156134ad57835183529284019291840191600101613491565b50909695505050505050565b600080602083850312156134cc57600080fd5b82356001600160401b03808211156134e357600080fd5b818501915085601f8301126134f757600080fd5b81358181111561350657600080fd5b86602082850101111561351857600080fd5b60209290920196919550909350505050565b8015158114610f3a57600080fd5b60006020828403121561354a57600080fd5b81356121938161352a565b6000806040838503121561356857600080fd5b613571836132a1565b915060208301356135818161352a565b809150509250929050565b600080600080608085870312156135a257600080fd5b6135ab856132a1565b935060206135ba8187016132a1565b93506040860135925060608601356001600160401b03808211156135dd57600080fd5b818801915088601f8301126135f157600080fd5b81358181111561360357613603613370565b613615601f8201601f19168501613386565b9150808252898482850101111561362b57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561365e57600080fd5b613667836132a1565b9150613675602084016132a1565b90509250929050565b600181811c9082168061369257607f821691505b6020821081036136b257634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156136ca57600080fd5b81516121938161352a565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1857610b18613703565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6001600160401b0381811683821601908082111561377a5761377a613703565b5092915050565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016137d7576137d7613703565b5060010190565b601f821115610cec57600081815260208120601f850160051c810160208610156138055750805b601f850160051c820191505b8181101561382457828155600101613811565b505050505050565b6001600160401b0383111561384357613843613370565b61385783613851835461367e565b836137de565b6000601f84116001811461388b57600085156138735750838201355b600019600387901b1c1916600186901b178355611f1d565b600083815260209020601f19861690835b828110156138bc578685013582556020948501946001909201910161389c565b50868210156138d95760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526012908201527153616c65206973206e6f742041637469766560701b604082015260600190565b8082028115828204841417610b1857610b18613703565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b6000835161396d818460208801613225565b835190830190613981818360208801613225565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156139ac57600080fd5b5051919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b81810381811115610b1857610b18613703565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613add90830184613249565b9695505050505050565b600060208284031215613af957600080fd5b8151612193816131f256fea2646970667358221220ad21855a76cc456b949ad8f730b040d22d68813cf92f87b038dcddee08ccdcea64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061033f5760003560e01c8063715018a6116101ae578063a3bbadf7116100eb578063d7fa4b671161008f578063e985e9c51161006c578063e985e9c514610a29578063eea3ae4c14610a72578063f2fde38b14610a85578063fd6ee49f14610aa557005b8063d7fa4b67146109d6578063de9d711f146109f6578063e3da912f14610a1657005b8063c22a710f116100c8578063c22a710f1461093e578063c87b56dd1461095e578063ca678c6a1461097e578063d5abeb011461099e57005b8063a3bbadf7146108eb578063b2f916161461090b578063b88d4fde1461091e57005b80638da5cb5b1161015257806395beac6b1161012f57806395beac6b1461086f57806395d89b411461088f578063969f9327146108a4578063a22cb465146108cb57005b80638da5cb5b146108045780638ffb1c1914610822578063905e7eb61461084257005b80637cc91dce1161018b5780637cc91dce1461079b57806381e9b2c7146107ae578063841718a6146107c457806387b96b29146107e457005b8063715018a61461073857806373193a8b1461074d57806379fb9b841461077457005b806342842e0e1161027c5780635e3f9738116102205780636497ee9c116101fd5780636497ee9c146106a957806368428a1b146106d0578063693bb6b8146106f157806370a082311461071857005b80635e3f973814610649578063609d3a63146106695780636352211e1461068957005b80634f558e79116102595780634f558e79146105c2578063506cd0b2146105e257806355f804b31461060257806359948a321461062257005b806342842e0e1461055557806342966c6814610575578063438b63001461059557005b806323b872dd116102e35780633668fb35116102c05780633668fb35146104d95780633bce4276146105005780633ccfd60b1461052057806341b82ae71461053557005b806323b872dd1461047257806323fc959a146104925780632de2edf4146104b957005b8063095ea7b31161031c578063095ea7b3146103d75780630e4c6560146103f757806318160ddd1461042f57806319253ec81461045257005b806301ffc9a71461034857806306fdde031461037d578063081812fc1461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004613208565b610acc565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b50610392610b1e565b6040516103749190613275565b3480156103ab57600080fd5b506103bf6103ba366004613288565b610bb0565b6040516001600160a01b039091168152602001610374565b3480156103e357600080fd5b506103466103f23660046132bd565b610bd7565b34801561040357600080fd5b50601054610417906001600160401b031681565b6040516001600160401b039091168152602001610374565b34801561043b57600080fd5b50610444610cf1565b604051908152602001610374565b34801561045e57600080fd5b5061034661046d3660046132e7565b610d01565b34801561047e57600080fd5b5061034661048d366004613302565b610d2b565b34801561049e57600080fd5b50600f5461041790600160c01b90046001600160401b031681565b3480156104c557600080fd5b50600a546103bf906001600160a01b031681565b3480156104e557600080fd5b50600d5461041790600160801b90046001600160401b031681565b34801561050c57600080fd5b5061034661051b366004613355565b610e87565b34801561052c57600080fd5b50610346610ec1565b34801561054157600080fd5b506103466105503660046133b6565b610f3d565b34801561056157600080fd5b50610346610570366004613302565b6110d2565b34801561058157600080fd5b50610346610590366004613288565b611223565b3480156105a157600080fd5b506105b56105b03660046132e7565b6112e1565b6040516103749190613475565b3480156105ce57600080fd5b506103686105dd366004613288565b6113dc565b3480156105ee57600080fd5b506103466105fd366004613288565b6113fb565b34801561060e57600080fd5b5061034661061d3660046134b9565b611408565b34801561062e57600080fd5b50600e5461041790600160801b90046001600160401b031681565b34801561065557600080fd5b506103466106643660046133b6565b61141d565b34801561067557600080fd5b50600e54610417906001600160401b031681565b34801561069557600080fd5b506103bf6106a4366004613288565b6115c1565b3480156106b557600080fd5b50600e5461041790600160c01b90046001600160401b031681565b3480156106dc57600080fd5b5060105461036890600160801b900460ff1681565b3480156106fd57600080fd5b50600d5461041790600160c01b90046001600160401b031681565b34801561072457600080fd5b506104446107333660046132e7565b611621565b34801561074457600080fd5b506103466116a7565b34801561075957600080fd5b50600f5461041790600160801b90046001600160401b031681565b34801561078057600080fd5b5060105461041790600160401b90046001600160401b031681565b6103466107a9366004613355565b6116bb565b3480156107ba57600080fd5b50610444600c5481565b3480156107d057600080fd5b506103466107df366004613538565b61190e565b3480156107f057600080fd5b50600b546103bf906001600160a01b031681565b34801561081057600080fd5b506006546001600160a01b03166103bf565b34801561082e57600080fd5b5061034661083d3660046133b6565b611934565b34801561084e57600080fd5b5061044461085d3660046132e7565b60116020526000908152604090205481565b34801561087b57600080fd5b5061034661088a3660046132e7565b611ad8565b34801561089b57600080fd5b50610392611b02565b3480156108b057600080fd5b50600f5461041790600160401b90046001600160401b031681565b3480156108d757600080fd5b506103466108e6366004613555565b611b11565b3480156108f757600080fd5b506103466109063660046132e7565b611b20565b610346610919366004613355565b611b4a565b34801561092a57600080fd5b5061034661093936600461358c565b611dc5565b34801561094a57600080fd5b506103466109593660046133b6565b611f24565b34801561096a57600080fd5b50610392610979366004613288565b6120bf565b34801561098a57600080fd5b5061036861099936600461364b565b61219a565b3480156109aa57600080fd5b50600d546109be906001600160801b031681565b6040516001600160801b039091168152602001610374565b3480156109e257600080fd5b50600f54610417906001600160401b031681565b348015610a0257600080fd5b506009546103bf906001600160a01b031681565b610346610a24366004613355565b61222c565b348015610a3557600080fd5b50610368610a4436600461364b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610346610a80366004613355565b61248a565b348015610a9157600080fd5b50610346610aa03660046132e7565b612709565b348015610ab157600080fd5b50600e5461041790600160401b90046001600160401b031681565b60006001600160e01b031982166380ac58cd60e01b1480610afd57506001600160e01b03198216635b5e139f60e01b145b80610b1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610b2d9061367e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061367e565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b5050505050905090565b6000610bbb8261277f565b506000908152600460205260409020546001600160a01b031690565b6000610be2826115c1565b9050806001600160a01b0316836001600160a01b031603610c545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610c705750610c708133610a44565b610ce25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610c4b565b610cec83836127de565b505050565b6000610cfc60075490565b905090565b610d0961284c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b826daaeb6d7670e522a718067333cd4e3b15610e7657336001600160a01b03821603610d6157610d5c8484846128a6565b610e81565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd491906136b8565b8015610e575750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5791906136b8565b610e7657604051633b79c77360e21b8152336004820152602401610c4b565b610e818484846128a6565b50505050565b610e8f61284c565b601080546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b610ec961284c565b6000610edd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f27576040519150601f19603f3d011682016040523d82523d6000602084013e610f2c565b606091505b5050905080610f3a57600080fd5b50565b816001600160401b031660008111610f675760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681610f7c610cf1565b610f869190613719565b1115610fa45760405162461bcd60e51b8152600401610c4b9061372c565b610fac61284c565b600f546010546001600160401b0391821691610fca9186911661375a565b6001600160401b03161115610ff15760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156110bf5761101f600780546001019055565b611069848381518110611034576110346137af565b6020908102919091010151601054600e5461105b916001600160401b03908116911661375a565b6001600160401b03166128d7565b60108054600191906000906110889084906001600160401b031661375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806110b7906137c5565b915050611000565b50806110ca816137c5565b915050610ff4565b826daaeb6d7670e522a718067333cd4e3b1561121857336001600160a01b0382160361110357610d5c8484846128f1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611152573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117691906136b8565b80156111f95750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f991906136b8565b61121857604051633b79c77360e21b8152336004820152602401610c4b565b610e818484846128f1565b61122c816113dc565b61126f5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c4b565b611278816115c1565b6001600160a01b0316336001600160a01b0316146112d85760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610c4b565b610f3a8161290c565b606060006112ee83611621565b90506000816001600160401b0381111561130a5761130a613370565b604051908082528060200260200182016040528015611333578160200160208202803683370190505b509050600160005b83811080156113555750600d546001600160801b03168211155b156113d257611363826113dc565b15156001036113c0576000611377836115c1565b9050866001600160a01b0316816001600160a01b0316036113be57828483815181106113a5576113a56137af565b6020908102919091010152816113ba816137c5565b9250505b505b816113ca816137c5565b92505061133b565b5090949350505050565b6000818152600260205260408120546001600160a01b03161515610b18565b61140361284c565b600c55565b61141061284c565b6008610cec82848361382c565b816001600160401b0316600081116114475760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b03168161145c610cf1565b6114669190613719565b11156114845760405162461bcd60e51b8152600401610c4b9061372c565b61148c61284c565b600e54600f546001600160401b03600160801b928390048116926114b59287929190041661375a565b6001600160401b031611156114dc5760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156115ae5761150a600780546001019055565b61155284838151811061151f5761151f6137af565b6020908102919091010151600f54600d5461105b916001600160401b03600160801b91829004811692919091041661375a565b6001600f60108282829054906101000a90046001600160401b0316611577919061375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806115a6906137c5565b9150506114eb565b50806115b9816137c5565b9150506114df565b6000818152600260205260408120546001600160a01b031680610b185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c4b565b60006001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c4b565b506001600160a01b031660009081526003602052604090205490565b6116af61284c565b6116b960006129af565b565b806001600160401b0316600081116116e55760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b0316816116fa610cf1565b6117049190613719565b11156117225760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff1661174b5760405162461bcd60e51b8152600401610c4b906138eb565b600e54600f546001600160401b03600160401b928390048116926117749286929190041661375a565b6001600160401b0316111561179b5760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916117ce9190851690613719565b11156117ec5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546118039190613917565b34146118215760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b031681101561189357611843600780546001019055565b600f54611881903390839061186990600160401b90046001600160401b0316600161375a565b6001600160401b031661187c9190613719565b6128d7565b8061188b816137c5565b915050611824565b5033600090815260116020526040812080546001600160401b03851692906118bc908490613719565b9091555050600f80548391906008906118e6908490600160401b90046001600160401b031661375a565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505050565b61191661284c565b60108054911515600160801b0260ff60801b19909216919091179055565b816001600160401b03166000811161195e5760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611973610cf1565b61197d9190613719565b111561199b5760405162461bcd60e51b8152600401610c4b9061372c565b6119a361284c565b600e54600f546001600160401b03600160c01b928390048116926119cc9287929190041661375a565b6001600160401b031611156119f35760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b0316811015611ac557611a21600780546001019055565b611a69848381518110611a3657611a366137af565b6020908102919091010151600f54600d5461105b916001600160401b03600160c01b91829004811692919091041661375a565b6001600f60188282829054906101000a90046001600160401b0316611a8e919061375a565b92506101000a8154816001600160401b0302191690836001600160401b031602179055508080611abd906137c5565b915050611a02565b5080611ad0816137c5565b9150506119f6565b611ae061284c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610b2d9061367e565b611b1c338383612a01565b5050565b611b2861284c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b806001600160401b031660008111611b745760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611b89610cf1565b611b939190613719565b1115611bb15760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff16611bda5760405162461bcd60e51b8152600401610c4b906138eb565b600a54611bf19033906001600160a01b031661219a565b611c395760405162461bcd60e51b81526020600482015260196024820152782237b2b9903737ba1037bbb71021b637b732902c1027232a1760391b6044820152606401610c4b565b600e54600f546001600160401b03600160c01b92839004811692611c629286929190041661375a565b6001600160401b03161115611c895760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b909204821691611cbc9190851690613719565b1115611cda5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c54611cf19190613917565b3414611d0f5760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b0316811015611d7257611d31600780546001019055565b600f54600d54611d609133918491611869916001600160401b03600160c01b928390048116929091041661375a565b80611d6a816137c5565b915050611d12565b5033600090815260116020526040812080546001600160401b0385169290611d9b908490613719565b9091555050600f80548391906018906118e6908490600160c01b90046001600160401b031661375a565b836daaeb6d7670e522a718067333cd4e3b15611f1157336001600160a01b03821603611dfc57611df785858585612acf565b611f1d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6f91906136b8565b8015611ef25750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef291906136b8565b611f1157604051633b79c77360e21b8152336004820152602401610c4b565b611f1d85858585612acf565b5050505050565b816001600160401b031660008111611f4e5760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b031681611f63610cf1565b611f6d9190613719565b1115611f8b5760405162461bcd60e51b8152600401610c4b9061372c565b611f9361284c565b600e54600f546001600160401b03600160401b92839004811692611fbc9287929190041661375a565b6001600160401b03161115611fe35760405162461bcd60e51b8152600401610c4b90613781565b60005b8251811015610e815760005b846001600160401b03168110156120ac57612011600780546001019055565b612050848381518110612026576120266137af565b6020026020010151600f60089054906101000a90046001600160401b0316600161105b919061375a565b6001600f60088282829054906101000a90046001600160401b0316612075919061375a565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555080806120a4906137c5565b915050611ff2565b50806120b7816137c5565b915050611fe6565b6000818152600260205260409020546060906001600160a01b031661213e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c4b565b6000612148612b01565b905060008151116121685760405180602001604052806000815250612193565b8061217284612b10565b60405160200161218392919061395b565b6040516020818303038152906040525b9392505050565b6040516370a0823160e01b81526001600160a01b03838116600483015260009183918391908316906370a0823190602401602060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220c919061399a565b90506001811061222157600192505050610b18565b506000949350505050565b806001600160401b0316600081116122565760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b03168161226b610cf1565b6122759190613719565b11156122935760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff166122bc5760405162461bcd60e51b8152600401610c4b906138eb565b600b546122d39033906001600160a01b031661219a565b61231b5760405162461bcd60e51b81526020600482015260196024820152782237b2b9903737ba1037bbb71021b637b732902c1027232a1760391b6044820152606401610c4b565b600f546010546001600160401b03918216916123399185911661375a565b6001600160401b031611156123605760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916123939190851690613719565b11156123b15760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546123c89190613917565b34146123e65760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b031681101561243e57612408600780546001019055565b601054600e5461242c9133918491611869916001600160401b03918216911661375a565b80612436816137c5565b9150506123e9565b5033600090815260116020526040812080546001600160401b0385169290612467908490613719565b9091555050601080548391906000906118e69084906001600160401b031661375a565b806001600160401b0316600081116124b45760405162461bcd60e51b8152600401610c4b906136d5565b600d546001600160801b0316816124c9610cf1565b6124d39190613719565b11156124f15760405162461bcd60e51b8152600401610c4b9061372c565b601054600160801b900460ff1661251a5760405162461bcd60e51b8152600401610c4b906138eb565b6009546125319033906001600160a01b031661219a565b61257d5760405162461bcd60e51b815260206004820152601760248201527f446f6573206e6f74206f776e20417a756b69204e46542e0000000000000000006044820152606401610c4b565b600e54600f546001600160401b03600160801b928390048116926125a69286929190041661375a565b6001600160401b031611156125cd5760405162461bcd60e51b8152600401610c4b90613781565b601054336000908152601160205260409020546001600160401b03600160401b9092048216916126009190851690613719565b111561261e5760405162461bcd60e51b8152600401610c4b90613781565b816001600160401b0316600c546126359190613917565b34146126535760405162461bcd60e51b8152600401610c4b9061392e565b60005b826001600160401b03168110156126b657612675600780546001019055565b600f54600d546126a49133918491611869916001600160401b03600160801b928390048116929091041661375a565b806126ae816137c5565b915050612656565b5033600090815260116020526040812080546001600160401b03851692906126df908490613719565b9091555050600f80548391906010906118e6908490600160801b90046001600160401b031661375a565b61271161284c565b6001600160a01b0381166127765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4b565b610f3a816129af565b6000818152600260205260409020546001600160a01b0316610f3a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c4b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612813826115c1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146116b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c4b565b6128b03382612ba2565b6128cc5760405162461bcd60e51b8152600401610c4b906139b3565b610cec838383612c21565b611b1c828260405180602001604052806000815250612d92565b610cec83838360405180602001604052806000815250611dc5565b6000612917826115c1565b9050612927816000846001612dc5565b612930826115c1565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603612a625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ad93383612ba2565b612af55760405162461bcd60e51b8152600401610c4b906139b3565b610e8184848484612e4d565b606060088054610b2d9061367e565b60606000612b1d83612e80565b60010190506000816001600160401b03811115612b3c57612b3c613370565b6040519080825280601f01601f191660200182016040528015612b66576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612b7057509392505050565b600080612bae836115c1565b9050806001600160a01b0316846001600160a01b03161480612bf557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80612c195750836001600160a01b0316612c0e84610bb0565b6001600160a01b0316145b949350505050565b826001600160a01b0316612c34826115c1565b6001600160a01b031614612c5a5760405162461bcd60e51b8152600401610c4b90613a00565b6001600160a01b038216612cbc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4b565b612cc98383836001612dc5565b826001600160a01b0316612cdc826115c1565b6001600160a01b031614612d025760405162461bcd60e51b8152600401610c4b90613a00565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612d9c8383612f58565b612da960008484846130f1565b610cec5760405162461bcd60e51b8152600401610c4b90613a45565b6001811115610e81576001600160a01b03841615612e0b576001600160a01b03841660009081526003602052604081208054839290612e05908490613a97565b90915550505b6001600160a01b03831615610e81576001600160a01b03831660009081526003602052604081208054839290612e42908490613719565b909155505050505050565b612e58848484612c21565b612e64848484846130f1565b610e815760405162461bcd60e51b8152600401610c4b90613a45565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612ebf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612eeb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f0957662386f26fc10000830492506010015b6305f5e1008310612f21576305f5e100830492506008015b6127108310612f3557612710830492506004015b60648310612f47576064830492506002015b600a8310610b185760010192915050565b6001600160a01b038216612fae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4b565b6000818152600260205260409020546001600160a01b0316156130135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4b565b613021600083836001612dc5565b6000818152600260205260409020546001600160a01b0316156130865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156131e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613135903390899088908890600401613aaa565b6020604051808303816000875af1925050508015613170575060408051601f3d908101601f1916820190925261316d91810190613ae7565b60015b6131cd573d80801561319e576040519150601f19603f3d011682016040523d82523d6000602084013e6131a3565b606091505b5080516000036131c55760405162461bcd60e51b8152600401610c4b90613a45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612c19565b506001949350505050565b6001600160e01b031981168114610f3a57600080fd5b60006020828403121561321a57600080fd5b8135612193816131f2565b60005b83811015613240578181015183820152602001613228565b50506000910152565b60008151808452613261816020860160208601613225565b601f01601f19169290920160200192915050565b6020815260006121936020830184613249565b60006020828403121561329a57600080fd5b5035919050565b80356001600160a01b03811681146132b857600080fd5b919050565b600080604083850312156132d057600080fd5b6132d9836132a1565b946020939093013593505050565b6000602082840312156132f957600080fd5b612193826132a1565b60008060006060848603121561331757600080fd5b613320846132a1565b925061332e602085016132a1565b9150604084013590509250925092565b80356001600160401b03811681146132b857600080fd5b60006020828403121561336757600080fd5b6121938261333e565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156133ae576133ae613370565b604052919050565b600080604083850312156133c957600080fd5b6133d28361333e565b91506020808401356001600160401b03808211156133ef57600080fd5b818601915086601f83011261340357600080fd5b81358181111561341557613415613370565b8060051b9150613426848301613386565b818152918301840191848101908984111561344057600080fd5b938501935b8385101561346557613456856132a1565b82529385019390850190613445565b8096505050505050509250929050565b6020808252825182820181905260009190848201906040850190845b818110156134ad57835183529284019291840191600101613491565b50909695505050505050565b600080602083850312156134cc57600080fd5b82356001600160401b03808211156134e357600080fd5b818501915085601f8301126134f757600080fd5b81358181111561350657600080fd5b86602082850101111561351857600080fd5b60209290920196919550909350505050565b8015158114610f3a57600080fd5b60006020828403121561354a57600080fd5b81356121938161352a565b6000806040838503121561356857600080fd5b613571836132a1565b915060208301356135818161352a565b809150509250929050565b600080600080608085870312156135a257600080fd5b6135ab856132a1565b935060206135ba8187016132a1565b93506040860135925060608601356001600160401b03808211156135dd57600080fd5b818801915088601f8301126135f157600080fd5b81358181111561360357613603613370565b613615601f8201601f19168501613386565b9150808252898482850101111561362b57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561365e57600080fd5b613667836132a1565b9150613675602084016132a1565b90509250929050565b600181811c9082168061369257607f821691505b6020821081036136b257634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156136ca57600080fd5b81516121938161352a565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1857610b18613703565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6001600160401b0381811683821601908082111561377a5761377a613703565b5092915050565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016137d7576137d7613703565b5060010190565b601f821115610cec57600081815260208120601f850160051c810160208610156138055750805b601f850160051c820191505b8181101561382457828155600101613811565b505050505050565b6001600160401b0383111561384357613843613370565b61385783613851835461367e565b836137de565b6000601f84116001811461388b57600085156138735750838201355b600019600387901b1c1916600186901b178355611f1d565b600083815260209020601f19861690835b828110156138bc578685013582556020948501946001909201910161389c565b50868210156138d95760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526012908201527153616c65206973206e6f742041637469766560701b604082015260600190565b8082028115828204841417610b1857610b18613703565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b6000835161396d818460208801613225565b835190830190613981818360208801613225565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156139ac57600080fd5b5051919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b81810381811115610b1857610b18613703565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613add90830184613249565b9695505050505050565b600060208284031215613af957600080fd5b8151612193816131f256fea2646970667358221220ad21855a76cc456b949ad8f730b040d22d68813cf92f87b038dcddee08ccdcea64736f6c63430008110033

Deployed Bytecode Sourcemap

60517:11304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44600:305;;;;;;;;;;-1:-1:-1;44600:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44600:305:0;;;;;;;;45528:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47040:171::-;;;;;;;;;;-1:-1:-1;47040:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;47040:171:0;1533:203:1;46558:416:0;;;;;;;;;;-1:-1:-1;46558:416:0;;;;;:::i;:::-;;:::i;61398:34::-;;;;;;;;;;-1:-1:-1;61398:34:0;;;;-1:-1:-1;;;;;61398:34:0;;;;;;-1:-1:-1;;;;;2340:31:1;;;2322:50;;2310:2;2295:18;61398:34:0;2178:200:1;61893:95:0;;;;;;;;;;;;;:::i;:::-;;;2529:25:1;;;2517:2;2502:18;61893:95:0;2383:177:1;70652:109:0;;;;;;;;;;-1:-1:-1;70652:109:0;;;;;:::i;:::-;;:::i;68811:163::-;;;;;;;;;;-1:-1:-1;68811:163:0;;;;;:::i;:::-;;:::i;61355:36::-;;;;;;;;;;-1:-1:-1;61355:36:0;;;;-1:-1:-1;;;61355:36:0;;-1:-1:-1;;;;;61355:36:0;;;60791:33;;;;;;;;;;-1:-1:-1;60791:33:0;;;;-1:-1:-1;;;;;60791:33:0;;;60953:36;;;;;;;;;;-1:-1:-1;60953:36:0;;;;-1:-1:-1;;;60953:36:0;;-1:-1:-1;;;;;60953:36:0;;;70987:155;;;;;;;;;;-1:-1:-1;70987:155:0;;;;;:::i;:::-;;:::i;71576:147::-;;;;;;;;;;;;;:::i;67415:515::-;;;;;;;;;;-1:-1:-1;67415:515:0;;;;;:::i;:::-;;:::i;68982:171::-;;;;;;;;;;-1:-1:-1;68982:171:0;;;;;:::i;:::-;;:::i;70049:214::-;;;;;;;;;;-1:-1:-1;70049:214:0;;;;;:::i;:::-;;:::i;68001:802::-;;;;;;;;;;-1:-1:-1;68001:802:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69937:104::-;;;;;;;;;;-1:-1:-1;69937:104:0;;;;;:::i;:::-;;:::i;70880:96::-;;;;;;;;;;-1:-1:-1;70880:96:0;;;;;:::i;:::-;;:::i;70432:99::-;;;;;;;;;;-1:-1:-1;70432:99:0;;;;;:::i;:::-;;:::i;61132:38::-;;;;;;;;;;-1:-1:-1;61132:38:0;;;;-1:-1:-1;;;61132:38:0;;-1:-1:-1;;;;;61132:38:0;;;66179:529;;;;;;;;;;-1:-1:-1;66179:529:0;;;;;:::i;:::-;;:::i;61040:35::-;;;;;;;;;;-1:-1:-1;61040:35:0;;;;-1:-1:-1;;;;;61040:35:0;;;45238:223;;;;;;;;;;-1:-1:-1;45238:223:0;;;;;:::i;:::-;;:::i;61177:39::-;;;;;;;;;;-1:-1:-1;61177:39:0;;;;-1:-1:-1;;;61177:39:0;;-1:-1:-1;;;;;61177:39:0;;;61491:30;;;;;;;;;;-1:-1:-1;61491:30:0;;;;-1:-1:-1;;;61491:30:0;;;;;;60996:37;;;;;;;;;;-1:-1:-1;60996:37:0;;;;-1:-1:-1;;;60996:37:0;;-1:-1:-1;;;;;60996:37:0;;;44969:207;;;;;;;;;;-1:-1:-1;44969:207:0;;;;;:::i;:::-;;:::i;24031:103::-;;;;;;;;;;;;;:::i;61313:35::-;;;;;;;;;;-1:-1:-1;61313:35:0;;;;-1:-1:-1;;;61313:35:0;;-1:-1:-1;;;;;61313:35:0;;;61441:41;;;;;;;;;;-1:-1:-1;61441:41:0;;;;-1:-1:-1;;;61441:41:0;;-1:-1:-1;;;;;61441:41:0;;;62057:711;;;;;;:::i;:::-;;:::i;60871:33::-;;;;;;;;;;;;;;;;71154:91;;;;;;;;;;-1:-1:-1;71154:91:0;;;;;:::i;:::-;;:::i;60831:31::-;;;;;;;;;;-1:-1:-1;60831:31:0;;;;-1:-1:-1;;;;;60831:31:0;;;23383:87;;;;;;;;;;-1:-1:-1;23456:6:0;;-1:-1:-1;;;;;23456:6:0;23383:87;;66795:535;;;;;;;;;;-1:-1:-1;66795:535:0;;;;;:::i;:::-;;:::i;61530:54::-;;;;;;;;;;-1:-1:-1;61530:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;70539:107;;;;;;;;;;-1:-1:-1;70539:107:0;;;;;:::i;:::-;;:::i;45697:104::-;;;;;;;;;;;;;:::i;61269:37::-;;;;;;;;;;-1:-1:-1;61269:37:0;;;;-1:-1:-1;;;61269:37:0;;-1:-1:-1;;;;;61269:37:0;;;47283:155;;;;;;;;;;-1:-1:-1;47283:155:0;;;;;:::i;:::-;;:::i;70767:105::-;;;;;;;;;;-1:-1:-1;70767:105:0;;;;;:::i;:::-;;:::i;63765:822::-;;;;;;:::i;:::-;;:::i;69161:228::-;;;;;;;;;;-1:-1:-1;69161:228:0;;;;;:::i;:::-;;:::i;65567:525::-;;;;;;;;;;-1:-1:-1;65567:525:0;;;;;:::i;:::-;;:::i;69445:484::-;;;;;;;;;;-1:-1:-1;69445:484:0;;;;;:::i;:::-;;:::i;71253:315::-;;;;;;;;;;-1:-1:-1;71253:315:0;;;;;:::i;:::-;;:::i;60913:31::-;;;;;;;;;;-1:-1:-1;60913:31:0;;;;-1:-1:-1;;;;;60913:31:0;;;;;;-1:-1:-1;;;;;8232:47:1;;;8214:66;;8202:2;8187:18;60913:31:0;8068:218:1;61223:37:0;;;;;;;;;;-1:-1:-1;61223:37:0;;;;-1:-1:-1;;;;;61223:37:0;;;60752:32;;;;;;;;;;-1:-1:-1;60752:32:0;;;;-1:-1:-1;;;;;60752:32:0;;;64677:808;;;;;;:::i;:::-;;:::i;47509:164::-;;;;;;;;;;-1:-1:-1;47509:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47630:25:0;;;47606:4;47630:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47509:164;62859:813;;;;;;:::i;:::-;;:::i;24289:201::-;;;;;;;;;;-1:-1:-1;24289:201:0;;;;;:::i;:::-;;:::i;61084:41::-;;;;;;;;;;-1:-1:-1;61084:41:0;;;;-1:-1:-1;;;61084:41:0;;-1:-1:-1;;;;;61084:41:0;;;44600:305;44702:4;-1:-1:-1;;;;;;44739:40:0;;-1:-1:-1;;;44739:40:0;;:105;;-1:-1:-1;;;;;;;44796:48:0;;-1:-1:-1;;;44796:48:0;44739:105;:158;;;-1:-1:-1;;;;;;;;;;37221:40:0;;;44861:36;44719:178;44600:305;-1:-1:-1;;44600:305:0:o;45528:100::-;45582:13;45615:5;45608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45528:100;:::o;47040:171::-;47116:7;47136:23;47151:7;47136:14;:23::i;:::-;-1:-1:-1;47179:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47179:24:0;;47040:171::o;46558:416::-;46639:13;46655:23;46670:7;46655:14;:23::i;:::-;46639:39;;46703:5;-1:-1:-1;;;;;46697:11:0;:2;-1:-1:-1;;;;;46697:11:0;;46689:57;;;;-1:-1:-1;;;46689:57:0;;8878:2:1;46689:57:0;;;8860:21:1;8917:2;8897:18;;;8890:30;8956:34;8936:18;;;8929:62;-1:-1:-1;;;9007:18:1;;;9000:31;9048:19;;46689:57:0;;;;;;;;;22014:10;-1:-1:-1;;;;;46781:21:0;;;;:62;;-1:-1:-1;46806:37:0;46823:5;22014:10;47509:164;:::i;46806:37::-;46759:173;;;;-1:-1:-1;;;46759:173:0;;9280:2:1;46759:173:0;;;9262:21:1;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;9429:31;9409:18;;;9402:59;9478:19;;46759:173:0;9078:425:1;46759:173:0;46945:21;46954:2;46958:7;46945:8;:21::i;:::-;46628:346;46558:416;;:::o;61893:95::-;61937:7;61964:16;:6;5555:14;;5463:114;61964:16;61957:23;;61893:95;:::o;70652:109::-;23269:13;:11;:13::i;:::-;70726:18:::1;:27:::0;;-1:-1:-1;;;;;;70726:27:0::1;-1:-1:-1::0;;;;;70726:27:0;;;::::1;::::0;;;::::1;::::0;;70652:109::o;68811:163::-;68912:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;68929:37:::1;68948:4;68954:2;68958:7;68929:18;:37::i;:::-;3899:7:::0;;3836:85;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9720:34:1;4037:10:0;9770:18:1;;;9763:43;2421:42:0;;3981:40;;9655:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9720:34:1;-1:-1:-1;;;;;9790:15:1;;9770:18;;;9763:43;2421:42:0;;4077:40;;9655:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;68929:37:::1;68948:4;68954:2;68958:7;68929:18;:37::i;:::-;68811:163:::0;;;;:::o;70987:155::-;23269:13;:11;:13::i;:::-;71084:23:::1;:50:::0;;-1:-1:-1;;;;;71084:50:0;;::::1;-1:-1:-1::0;;;71084:50:0::1;-1:-1:-1::0;;71084:50:0;;::::1;::::0;;;::::1;::::0;;70987:155::o;71576:147::-;23269:13;:11;:13::i;:::-;71625:7:::1;71646;23456:6:::0;;-1:-1:-1;;;;;23456:6:0;;23383:87;71646:7:::1;-1:-1:-1::0;;;;;71638:21:0::1;71667;71638:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71624:69;;;71712:2;71704:11;;;::::0;::::1;;71613:110;71576:147::o:0;67415:515::-;67507:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;23269:13:::1;:11;:13::i;:::-;67583:17:::2;::::0;67549:16:::2;::::0;-1:-1:-1;;;;;67583:17:0;;::::2;::::0;67549:30:::2;::::0;67568:11;;67549:16:::2;:30;:::i;:::-;-1:-1:-1::0;;;;;67549:51:0::2;;;67541:85;;;;-1:-1:-1::0;;;67541:85:0::2;;;;;;;:::i;:::-;67643:9;67639:284;67662:10;:17;67658:1;:21;67639:284;;;67705:9;67700:212;67724:11;-1:-1:-1::0;;;;;67720:15:0::2;:1;:15;67700:212;;;67761:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;67761:18:::2;67798:60;67808:10;67819:1;67808:13;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;67840:16:::2;::::0;67823:14:::2;::::0;:33:::2;::::0;-1:-1:-1;;;;;67840:16:0;;::::2;::::0;67823:14:::2;:33;:::i;:::-;-1:-1:-1::0;;;;;67798:60:0::2;:9;:60::i;:::-;67877:16;:19:::0;;67895:1:::2;::::0;67877:16;::::2;::::0;:19:::2;::::0;67895:1;;-1:-1:-1;;;;;67877:19:0::2;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;67877:19:0::2;;;;;-1:-1:-1::0;;;;;67877:19:0::2;;;;;;67737:3;;;;;:::i;:::-;;;;67700:212;;;-1:-1:-1::0;67681:3:0;::::2;::::0;::::2;:::i;:::-;;;;67639:284;;68982:171:::0;69087:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;69104:41:::1;69127:4;69133:2;69137:7;69104:22;:41::i;3836:85::-:0;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9720:34:1;4037:10:0;9770:18:1;;;9763:43;2421:42:0;;3981:40;;9655:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9720:34:1;-1:-1:-1;;;;;9790:15:1;;9770:18;;;9763:43;2421:42:0;;4077:40;;9655:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;69104:41:::1;69127:4;69133:2;69137:7;69104:22;:41::i;70049:214::-:0;70107:16;70114:8;70107:6;:16::i;:::-;70099:49;;;;-1:-1:-1;;;70099:49:0;;12245:2:1;70099:49:0;;;12227:21:1;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:50;12363:18;;70099:49:0;12043:344:1;70099:49:0;70181:17;70189:8;70181:7;:17::i;:::-;-1:-1:-1;;;;;70167:31:0;:10;-1:-1:-1;;;;;70167:31:0;;70159:70;;;;-1:-1:-1;;;70159:70:0;;12594:2:1;70159:70:0;;;12576:21:1;12633:2;12613:18;;;12606:30;12672:28;12652:18;;;12645:56;12718:18;;70159:70:0;12392:350:1;70159:70:0;70240:15;70246:8;70240:5;:15::i;68001:802::-;68090:16;68124:23;68150:17;68160:6;68150:9;:17::i;:::-;68124:43;;68178:30;68225:15;-1:-1:-1;;;;;68211:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68211:30:0;-1:-1:-1;68178:63:0;-1:-1:-1;68277:1:0;68252:22;68329:434;68354:15;68336;:33;:64;;;;-1:-1:-1;68391:9:0;;-1:-1:-1;;;;;68391:9:0;68373:27;;;68336:64;68329:434;;;68420:22;68427:14;68420:6;:22::i;:::-;:30;;68446:4;68420:30;68417:304;;68471:25;68499:23;68507:14;68499:7;:23::i;:::-;68471:51;;68568:6;-1:-1:-1;;;;;68547:27:0;:17;-1:-1:-1;;;;;68547:27:0;;68543:163;;68632:14;68599:13;68613:15;68599:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;68669:17;;;;:::i;:::-;;;;68543:163;68452:269;68417:304;68735:16;;;;:::i;:::-;;;;68329:434;;;-1:-1:-1;68782:13:0;;68001:802;-1:-1:-1;;;;68001:802:0:o;69937:104::-;69992:4;50125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50125:16:0;50551:31;;70016:17;50462:128;70880:96;23269:13;:11;:13::i;:::-;70948:8:::1;:20:::0;70880:96::o;70432:99::-;23269:13;:11;:13::i;:::-;70504:12:::1;:19;70519:4:::0;;70504:12;:19:::1;:::i;66179:529::-:0;66272:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;23269:13:::1;:11;:13::i;:::-;66349:18:::2;::::0;66314:17:::2;::::0;-1:-1:-1;;;;;;;;66349:18:0;;;::::2;::::0;::::2;::::0;66314:31:::2;::::0;66334:11;;66314:17;;::::2;;:31;:::i;:::-;-1:-1:-1::0;;;;;66314:53:0::2;;;66306:87;;;;-1:-1:-1::0;;;66306:87:0::2;;;;;;;:::i;:::-;66418:9;66414:287;66437:10;:17;66433:1;:21;66414:287;;;66480:9;66475:215;66499:11;-1:-1:-1::0;;;;;66495:15:0::2;:1;:15;66475:215;;;66536:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;66536:18:::2;66573:62;66583:10;66594:1;66583:13;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;66616:17:::2;::::0;66598:15:::2;::::0;:35:::2;::::0;-1:-1:-1;;;;;;;;66616:17:0;;;::::2;::::0;::::2;::::0;66598:15;;;::::2;;:35;:::i;66573:62::-;66673:1;66654:17;;:20;;;;;;;;;;-1:-1:-1::0;;;;;66654:20:0::2;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;66654:20:0::2;;;;;-1:-1:-1::0;;;;;66654:20:0::2;;;;;;66512:3;;;;;:::i;:::-;;;;66475:215;;;-1:-1:-1::0;66456:3:0;::::2;::::0;::::2;:::i;:::-;;;;66414:287;;45238:223:::0;45310:7;50125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50125:16:0;;45374:56;;;;-1:-1:-1;;;45374:56:0;;15007:2:1;45374:56:0;;;14989:21:1;15046:2;15026:18;;;15019:30;-1:-1:-1;;;15065:18:1;;;15058:54;15129:18;;45374:56:0;14805:348:1;44969:207:0;45041:7;-1:-1:-1;;;;;45069:19:0;;45061:73;;;;-1:-1:-1;;;45061:73:0;;15360:2:1;45061:73:0;;;15342:21:1;15399:2;15379:18;;;15372:30;15438:34;15418:18;;;15411:62;-1:-1:-1;;;15489:18:1;;;15482:39;15538:19;;45061:73:0;15158:405:1;45061:73:0;-1:-1:-1;;;;;;45152:16:0;;;;;:9;:16;;;;;;;44969:207::o;24031:103::-;23269:13;:11;:13::i;:::-;24096:30:::1;24123:1;24096:18;:30::i;:::-;24031:103::o:0;62057:711::-;62128:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;62160:10:::1;::::0;-1:-1:-1;;;62160:10:0;::::1;;;62152:41;;;;-1:-1:-1::0;;;62152:41:0::1;;;;;;;:::i;:::-;62251:20;::::0;62214:19:::1;::::0;-1:-1:-1;;;;;;;;62251:20:0;;;::::1;::::0;::::1;::::0;62214:33:::1;::::0;62236:11;;62214:19;;::::1;;:33;:::i;:::-;-1:-1:-1::0;;;;;62214:57:0::1;;;62206:91;;;;-1:-1:-1::0;;;62206:91:0::1;;;;;;;:::i;:::-;62365:23;::::0;62336:10:::1;62316:31;::::0;;;:19:::1;:31;::::0;;;;;-1:-1:-1;;;;;;;;62365:23:0;;::::1;::::0;::::1;::::0;62316:45:::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:72;;62308:106;;;;-1:-1:-1::0;;;62308:106:0::1;;;;;;;:::i;:::-;62457:11;-1:-1:-1::0;;;;;62446:22:0::1;:8;;:22;;;;:::i;:::-;62433:9;:35;62425:67;;;;-1:-1:-1::0;;;62425:67:0::1;;;;;;;:::i;:::-;62510:9;62505:152;62529:11;-1:-1:-1::0;;;;;62525:15:0::1;:1;:15;62505:152;;;62562:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;62562:18:::1;62621:19;::::0;62595:50:::1;::::0;62605:10:::1;::::0;62643:1;;62617:23:::1;::::0;-1:-1:-1;;;62621:19:0;::::1;-1:-1:-1::0;;;;;62621:19:0::1;62617:1;:23;:::i;:::-;-1:-1:-1::0;;;;;62617:27:0::1;;;;;:::i;:::-;62595:9;:50::i;:::-;62542:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62505:152;;;-1:-1:-1::0;62689:10:0::1;62669:31;::::0;;;:19:::1;:31;::::0;;;;:46;;-1:-1:-1;;;;;62669:46:0;::::1;::::0;:31;:46:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;62726:19:0::1;:34:::0;;62749:11;;62726:19;::::1;::::0;:34:::1;::::0;62749:11;;-1:-1:-1;;;62726:34:0;::::1;-1:-1:-1::0;;;;;62726:34:0::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;62726:34:0::1;;;;;-1:-1:-1::0;;;;;62726:34:0::1;;;;;;62057:711:::0;;:::o;71154:91::-;23269:13;:11;:13::i;:::-;71218:10:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;71218:19:0::1;-1:-1:-1::0;;;;71218:19:0;;::::1;::::0;;;::::1;::::0;;71154:91::o;66795:535::-;66889:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;23269:13:::1;:11;:13::i;:::-;66967:19:::2;::::0;66931:18:::2;::::0;-1:-1:-1;;;;;;;;66967:19:0;;;::::2;::::0;::::2;::::0;66931:32:::2;::::0;66952:11;;66931:18;;::::2;;:32;:::i;:::-;-1:-1:-1::0;;;;;66931:55:0::2;;;66923:89;;;;-1:-1:-1::0;;;66923:89:0::2;;;;;;;:::i;:::-;67037:9;67033:290;67056:10;:17;67052:1;:21;67033:290;;;67099:9;67094:218;67118:11;-1:-1:-1::0;;;;;67114:15:0::2;:1;:15;67094:218;;;67155:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;67155:18:::2;67192:64;67202:10;67213:1;67202:13;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;67236:18:::2;::::0;67217:16:::2;::::0;:37:::2;::::0;-1:-1:-1;;;;;;;;67236:18:0;;;::::2;::::0;::::2;::::0;67217:16;;;::::2;;:37;:::i;67192:64::-;67295:1;67275:18;;:21;;;;;;;;;;-1:-1:-1::0;;;;;67275:21:0::2;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;67275:21:0::2;;;;;-1:-1:-1::0;;;;;67275:21:0::2;;;;;;67131:3;;;;;:::i;:::-;;;;67094:218;;;-1:-1:-1::0;67075:3:0;::::2;::::0;::::2;:::i;:::-;;;;67033:290;;70539:107:::0;23269:13;:11;:13::i;:::-;70612:17:::1;:26:::0;;-1:-1:-1;;;;;;70612:26:0::1;-1:-1:-1::0;;;;;70612:26:0;;;::::1;::::0;;;::::1;::::0;;70539:107::o;45697:104::-;45753:13;45786:7;45779:14;;;;;:::i;47283:155::-;47378:52;22014:10;47411:8;47421;47378:18;:52::i;:::-;47283:155;;:::o;70767:105::-;23269:13;:11;:13::i;:::-;70839:16:::1;:25:::0;;-1:-1:-1;;;;;;70839:25:0::1;-1:-1:-1::0;;;;;70839:25:0;;;::::1;::::0;;;::::1;::::0;;70767:105::o;63765:822::-;63835:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;63867:10:::1;::::0;-1:-1:-1;;;63867:10:0;::::1;;;63859:41;;;;-1:-1:-1::0;;;63859:41:0::1;;;;;;;:::i;:::-;63953:18;::::0;63921:51:::1;::::0;63941:10:::1;::::0;-1:-1:-1;;;;;63953:18:0::1;63921:19;:51::i;:::-;63913:90;;;::::0;-1:-1:-1;;;63913:90:0;;16638:2:1;63913:90:0::1;::::0;::::1;16620:21:1::0;16677:2;16657:18;;;16650:30;-1:-1:-1;;;16696:18:1;;;16689:55;16761:18;;63913:90:0::1;16436:349:1::0;63913:90:0::1;64058:19;::::0;64022:18:::1;::::0;-1:-1:-1;;;;;;;;64058:19:0;;;::::1;::::0;::::1;::::0;64022:32:::1;::::0;64043:11;;64022:18;;::::1;;:32;:::i;:::-;-1:-1:-1::0;;;;;64022:55:0::1;;;64014:89;;;;-1:-1:-1::0;;;64014:89:0::1;;;;;;;:::i;:::-;64171:23;::::0;64142:10:::1;64122:31;::::0;;;:19:::1;:31;::::0;;;;;-1:-1:-1;;;;;;;;64171:23:0;;::::1;::::0;::::1;::::0;64122:45:::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:72;;64114:106;;;;-1:-1:-1::0;;;64114:106:0::1;;;;;;;:::i;:::-;64263:11;-1:-1:-1::0;;;;;64252:22:0::1;:8;;:22;;;;:::i;:::-;64239:9;:35;64231:67;;;;-1:-1:-1::0;;;64231:67:0::1;;;;;;;:::i;:::-;64316:9;64311:166;64335:11;-1:-1:-1::0;;;;;64331:15:0::1;:1;:15;64311:166;;;64368:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;64368:18:::1;64442;::::0;64423:16:::1;::::0;64401:64:::1;::::0;64411:10:::1;::::0;64463:1;;64423:37:::1;::::0;-1:-1:-1;;;;;;;;64442:18:0;;;::::1;::::0;::::1;::::0;64423:16;;::::1;;:37;:::i;64401:64::-;64348:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64311:166;;;-1:-1:-1::0;64509:10:0::1;64489:31;::::0;;;:19:::1;:31;::::0;;;;:46;;-1:-1:-1;;;;;64489:46:0;::::1;::::0;:31;:46:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;64546:18:0::1;:33:::0;;64568:11;;64546:18;::::1;::::0;:33:::1;::::0;64568:11;;-1:-1:-1;;;64546:33:0;::::1;-1:-1:-1::0;;;;;64546:33:0::1;;:::i;69161:228::-:0;69312:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;69334:47:::1;69357:4;69363:2;69367:7;69376:4;69334:22;:47::i;:::-;3899:7:::0;;3836:85;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9720:34:1;4037:10:0;9770:18:1;;;9763:43;2421:42:0;;3981:40;;9655:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9720:34:1;-1:-1:-1;;;;;9790:15:1;;9770:18;;;9763:43;2421:42:0;;4077:40;;9655:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;69334:47:::1;69357:4;69363:2;69367:7;69376:4;69334:22;:47::i;:::-;69161:228:::0;;;;;:::o;65567:525::-;65662:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;23269:13:::1;:11;:13::i;:::-;65741:20:::2;::::0;65704:19:::2;::::0;-1:-1:-1;;;;;;;;65741:20:0;;;::::2;::::0;::::2;::::0;65704:33:::2;::::0;65726:11;;65704:19;;::::2;;:33;:::i;:::-;-1:-1:-1::0;;;;;65704:57:0::2;;;65696:91;;;;-1:-1:-1::0;;;65696:91:0::2;;;;;;;:::i;:::-;65812:9;65808:277;65831:10;:17;65827:1;:21;65808:277;;;65874:9;65869:205;65893:11;-1:-1:-1::0;;;;;65889:15:0::2;:1;:15;65869:205;;;65930:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;65930:18:::2;65967:50;65977:10;65988:1;65977:13;;;;;;;;:::i;:::-;;;;;;;65996:19;;;;;;;;;-1:-1:-1::0;;;;;65996:19:0::2;65992:1;:23;;;;:::i;65967:50::-;66057:1;66036:19;;:22;;;;;;;;;;-1:-1:-1::0;;;;;66036:22:0::2;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;66036:22:0::2;;;;;-1:-1:-1::0;;;;;66036:22:0::2;;;;;;65906:3;;;;;:::i;:::-;;;;65869:205;;;-1:-1:-1::0;65850:3:0;::::2;::::0;::::2;:::i;:::-;;;;65808:277;;69445:484:::0;50527:4;50125:16;;;:7;:16;;;;;;69566:13;;-1:-1:-1;;;;;50125:16:0;69601:106;;;;-1:-1:-1;;;69601:106:0;;16992:2:1;69601:106:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:1;;;17114:45;17176:19;;69601:106:0;16790:411:1;69601:106:0;69720:28;69751:10;:8;:10::i;:::-;69720:41;;69812:1;69787:14;69781:28;:32;:140;;;;;;;;;;;;;;;;;69855:14;69871:19;:8;:17;:19::i;:::-;69838:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69781:140;69774:147;69445:484;-1:-1:-1;;;69445:484:0:o;71253:315::-;71439:22;;-1:-1:-1;;;71439:22:0;;-1:-1:-1;;;;;1697:32:1;;;71439:22:0;;;1679:51:1;71346:4:0;;71387:18;;71346:4;;71439:15;;;;;;1652:18:1;;71439:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71417:44;;71496:1;71481:11;:16;71478:58;;71520:4;71513:11;;;;;;71478:58;-1:-1:-1;71555:5:0;;71253:315;-1:-1:-1;;;;71253:315:0:o;64677:808::-;64745:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;64777:10:::1;::::0;-1:-1:-1;;;64777:10:0;::::1;;;64769:41;;;;-1:-1:-1::0;;;64769:41:0::1;;;;;;;:::i;:::-;64863:16;::::0;64831:49:::1;::::0;64851:10:::1;::::0;-1:-1:-1;;;;;64863:16:0::1;64831:19;:49::i;:::-;64823:88;;;::::0;-1:-1:-1;;;64823:88:0;;16638:2:1;64823:88:0::1;::::0;::::1;16620:21:1::0;16677:2;16657:18;;;16650:30;-1:-1:-1;;;16696:18:1;;;16689:55;16761:18;;64823:88:0::1;16436:349:1::0;64823:88:0::1;64964:17;::::0;64930:16:::1;::::0;-1:-1:-1;;;;;64964:17:0;;::::1;::::0;64930:30:::1;::::0;64949:11;;64930:16:::1;:30;:::i;:::-;-1:-1:-1::0;;;;;64930:51:0::1;;;64922:85;;;;-1:-1:-1::0;;;64922:85:0::1;;;;;;;:::i;:::-;65075:23;::::0;65046:10:::1;65026:31;::::0;;;:19:::1;:31;::::0;;;;;-1:-1:-1;;;;;;;;65075:23:0;;::::1;::::0;::::1;::::0;65026:45:::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:72;;65018:106;;;;-1:-1:-1::0;;;65018:106:0::1;;;;;;;:::i;:::-;65167:11;-1:-1:-1::0;;;;;65156:22:0::1;:8;;:22;;;;:::i;:::-;65143:9;:35;65135:67;;;;-1:-1:-1::0;;;65135:67:0::1;;;;;;;:::i;:::-;65220:9;65215:162;65239:11;-1:-1:-1::0;;;;;65235:15:0::1;:1;:15;65215:162;;;65272:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;65272:18:::1;65344:16;::::0;65327:14:::1;::::0;65305:60:::1;::::0;65315:10:::1;::::0;65363:1;;65327:33:::1;::::0;-1:-1:-1;;;;;65344:16:0;;::::1;::::0;65327:14:::1;:33;:::i;65305:60::-;65252:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65215:162;;;-1:-1:-1::0;65409:10:0::1;65389:31;::::0;;;:19:::1;:31;::::0;;;;:46;;-1:-1:-1;;;;;65389:46:0;::::1;::::0;:31;:46:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;65446:16:0::1;:31:::0;;65466:11;;65446:16;::::1;::::0;:31:::1;::::0;65466:11;;-1:-1:-1;;;;;65446:31:0::1;;:::i;62859:813::-:0;62928:11;-1:-1:-1;;;;;61676:209:0;61754:1;61740:11;:15;61732:49;;;;-1:-1:-1;;;61732:49:0;;;;;;;:::i;:::-;61831:9;;-1:-1:-1;;;;;61831:9:0;61816:11;61800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61792:73;;;;-1:-1:-1;;;61792:73:0;;;;;;;:::i;:::-;62960:10:::1;::::0;-1:-1:-1;;;62960:10:0;::::1;;;62952:41;;;;-1:-1:-1::0;;;62952:41:0::1;;;;;;;:::i;:::-;63046:17;::::0;63014:50:::1;::::0;63034:10:::1;::::0;-1:-1:-1;;;;;63046:17:0::1;63014:19;:50::i;:::-;63006:87;;;::::0;-1:-1:-1;;;63006:87:0;;18265:2:1;63006:87:0::1;::::0;::::1;18247:21:1::0;18304:2;18284:18;;;18277:30;18343:25;18323:18;;;18316:53;18386:18;;63006:87:0::1;18063:347:1::0;63006:87:0::1;63147:18;::::0;63112:17:::1;::::0;-1:-1:-1;;;;;;;;63147:18:0;;;::::1;::::0;::::1;::::0;63112:31:::1;::::0;63132:11;;63112:17;;::::1;;:31;:::i;:::-;-1:-1:-1::0;;;;;63112:53:0::1;;;63104:87;;;;-1:-1:-1::0;;;63104:87:0::1;;;;;;;:::i;:::-;63259:23;::::0;63230:10:::1;63210:31;::::0;;;:19:::1;:31;::::0;;;;;-1:-1:-1;;;;;;;;63259:23:0;;::::1;::::0;::::1;::::0;63210:45:::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:72;;63202:106;;;;-1:-1:-1::0;;;63202:106:0::1;;;;;;;:::i;:::-;63351:11;-1:-1:-1::0;;;;;63340:22:0::1;:8;;:22;;;;:::i;:::-;63327:9;:35;63319:67;;;;-1:-1:-1::0;;;63319:67:0::1;;;;;;;:::i;:::-;63404:9;63399:164;63423:11;-1:-1:-1::0;;;;;63419:15:0::1;:1;:15;63399:164;;;63456:18;:6;5674:19:::0;;5692:1;5674:19;;;5585:127;63456:18:::1;63529:17;::::0;63511:15:::1;::::0;63489:62:::1;::::0;63499:10:::1;::::0;63549:1;;63511:35:::1;::::0;-1:-1:-1;;;;;;;;63529:17:0;;;::::1;::::0;::::1;::::0;63511:15;;::::1;;:35;:::i;63489:62::-;63436:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63399:164;;;-1:-1:-1::0;63595:10:0::1;63575:31;::::0;;;:19:::1;:31;::::0;;;;:46;;-1:-1:-1;;;;;63575:46:0;::::1;::::0;:31;:46:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;63632:17:0::1;:32:::0;;63653:11;;63632:17;::::1;::::0;:32:::1;::::0;63653:11;;-1:-1:-1;;;63632:32:0;::::1;-1:-1:-1::0;;;;;63632:32:0::1;;:::i;24289:201::-:0;23269:13;:11;:13::i;:::-;-1:-1:-1;;;;;24378:22:0;::::1;24370:73;;;::::0;-1:-1:-1;;;24370:73:0;;18617:2:1;24370:73:0::1;::::0;::::1;18599:21:1::0;18656:2;18636:18;;;18629:30;18695:34;18675:18;;;18668:62;-1:-1:-1;;;18746:18:1;;;18739:36;18792:19;;24370:73:0::1;18415:402:1::0;24370:73:0::1;24454:28;24473:8;24454:18;:28::i;56859:135::-:0;50527:4;50125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50125:16:0;56933:53;;;;-1:-1:-1;;;56933:53:0;;15007:2:1;56933:53:0;;;14989:21:1;15046:2;15026:18;;;15019:30;-1:-1:-1;;;15065:18:1;;;15058:54;15129:18;;56933:53:0;14805:348:1;56138:174:0;56213:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56213:29:0;-1:-1:-1;;;;;56213:29:0;;;;;;;;:24;;56267:23;56213:24;56267:14;:23::i;:::-;-1:-1:-1;;;;;56258:46:0;;;;;;;;;;;56138:174;;:::o;23548:132::-;23456:6;;-1:-1:-1;;;;;23456:6:0;22014:10;23612:23;23604:68;;;;-1:-1:-1;;;23604:68:0;;19024:2:1;23604:68:0;;;19006:21:1;;;19043:18;;;19036:30;19102:34;19082:18;;;19075:62;19154:18;;23604:68:0;18822:356:1;47740:335:0;47935:41;22014:10;47968:7;47935:18;:41::i;:::-;47927:99;;;;-1:-1:-1;;;47927:99:0;;;;;;;:::i;:::-;48039:28;48049:4;48055:2;48059:7;48039:9;:28::i;51363:110::-;51439:26;51449:2;51453:7;51439:26;;;;;;;;;;;;:9;:26::i;48146:185::-;48284:39;48301:4;48307:2;48311:7;48284:39;;;;;;;;;;;;:16;:39::i;53636:783::-;53696:13;53712:23;53727:7;53712:14;:23::i;:::-;53696:39;;53748:51;53769:5;53784:1;53788:7;53797:1;53748:20;:51::i;:::-;53912:23;53927:7;53912:14;:23::i;:::-;53983:24;;;;:15;:24;;;;;;;;53976:31;;-1:-1:-1;;;;;;53976:31:0;;;;;;-1:-1:-1;;;;;54228:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;54228:21:0;;;54278:16;;;:7;:16;;;;;;54271:23;;;;;;;54312:36;53904:31;;-1:-1:-1;53999:7:0;;54312:36;;53983:24;;54312:36;47283:155;;:::o;24650:191::-;24743:6;;;-1:-1:-1;;;;;24760:17:0;;;-1:-1:-1;;;;;;24760:17:0;;;;;;;24793:40;;24743:6;;;24760:17;24743:6;;24793:40;;24724:16;;24793:40;24713:128;24650:191;:::o;56455:315::-;56610:8;-1:-1:-1;;;;;56601:17:0;:5;-1:-1:-1;;;;;56601:17:0;;56593:55;;;;-1:-1:-1;;;56593:55:0;;19799:2:1;56593:55:0;;;19781:21:1;19838:2;19818:18;;;19811:30;19877:27;19857:18;;;19850:55;19922:18;;56593:55:0;19597:349:1;56593:55:0;-1:-1:-1;;;;;56659:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56659:46:0;;;;;;;;;;56721:41;;540::1;;;56721::0;;513:18:1;56721:41:0;;;;;;;56455:315;;;:::o;48402:322::-;48576:41;22014:10;48609:7;48576:18;:41::i;:::-;48568:99;;;;-1:-1:-1;;;48568:99:0;;;;;;;:::i;:::-;48678:38;48692:4;48698:2;48702:7;48711:4;48678:13;:38::i;70311:113::-;70371:13;70404:12;70397:19;;;;;:::i;19361:716::-;19417:13;19468:14;19485:17;19496:5;19485:10;:17::i;:::-;19505:1;19485:21;19468:38;;19521:20;19555:6;-1:-1:-1;;;;;19544:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19544:18:0;-1:-1:-1;19521:41:0;-1:-1:-1;19686:28:0;;;19702:2;19686:28;19743:288;-1:-1:-1;;19775:5:0;-1:-1:-1;;;19912:2:0;19901:14;;19896:30;19775:5;19883:44;19973:2;19964:11;;;-1:-1:-1;19994:21:0;19743:288;19994:21;-1:-1:-1;20052:6:0;19361:716;-1:-1:-1;;;19361:716:0:o;50757:264::-;50850:4;50867:13;50883:23;50898:7;50883:14;:23::i;:::-;50867:39;;50936:5;-1:-1:-1;;;;;50925:16:0;:7;-1:-1:-1;;;;;50925:16:0;;:52;;;-1:-1:-1;;;;;;47630:25:0;;;47606:4;47630:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50945:32;50925:87;;;;51005:7;-1:-1:-1;;;;;50981:31:0;:20;50993:7;50981:11;:20::i;:::-;-1:-1:-1;;;;;50981:31:0;;50925:87;50917:96;50757:264;-1:-1:-1;;;;50757:264:0:o;54756:1263::-;54915:4;-1:-1:-1;;;;;54888:31:0;:23;54903:7;54888:14;:23::i;:::-;-1:-1:-1;;;;;54888:31:0;;54880:81;;;;-1:-1:-1;;;54880:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54980:16:0;;54972:65;;;;-1:-1:-1;;;54972:65:0;;20691:2:1;54972:65:0;;;20673:21:1;20730:2;20710:18;;;20703:30;20769:34;20749:18;;;20742:62;-1:-1:-1;;;20820:18:1;;;20813:34;20864:19;;54972:65:0;20489:400:1;54972:65:0;55050:42;55071:4;55077:2;55081:7;55090:1;55050:20;:42::i;:::-;55222:4;-1:-1:-1;;;;;55195:31:0;:23;55210:7;55195:14;:23::i;:::-;-1:-1:-1;;;;;55195:31:0;;55187:81;;;;-1:-1:-1;;;55187:81:0;;;;;;;:::i;:::-;55340:24;;;;:15;:24;;;;;;;;55333:31;;-1:-1:-1;;;;;;55333:31:0;;;;;;-1:-1:-1;;;;;55816:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;55816:20:0;;;55851:13;;;;;;;;;:18;;55333:31;55851:18;;;55891:16;;;:7;:16;;;;;;:21;;;;;;;;;;55930:27;;55356:7;;55930:27;;;46628:346;46558:416;;:::o;51700:319::-;51829:18;51835:2;51839:7;51829:5;:18::i;:::-;51880:53;51911:1;51915:2;51919:7;51928:4;51880:22;:53::i;:::-;51858:153;;;;-1:-1:-1;;;51858:153:0;;;;;;;:::i;59143:410::-;59333:1;59321:9;:13;59317:229;;;-1:-1:-1;;;;;59355:18:0;;;59351:87;;-1:-1:-1;;;;;59394:15:0;;;;;;:9;:15;;;;;:28;;59413:9;;59394:15;:28;;59413:9;;59394:28;:::i;:::-;;;;-1:-1:-1;;59351:87:0;-1:-1:-1;;;;;59456:16:0;;;59452:83;;-1:-1:-1;;;;;59493:13:0;;;;;;:9;:13;;;;;:26;;59510:9;;59493:13;:26;;59510:9;;59493:26;:::i;:::-;;;;-1:-1:-1;;59143:410:0;;;;:::o;49605:313::-;49761:28;49771:4;49777:2;49781:7;49761:9;:28::i;:::-;49808:47;49831:4;49837:2;49841:7;49850:4;49808:22;:47::i;:::-;49800:110;;;;-1:-1:-1;;;49800:110:0;;;;;;;:::i;16227:922::-;16280:7;;-1:-1:-1;;;16358:15:0;;16354:102;;-1:-1:-1;;;16394:15:0;;;-1:-1:-1;16438:2:0;16428:12;16354:102;16483:6;16474:5;:15;16470:102;;16519:6;16510:15;;;-1:-1:-1;16554:2:0;16544:12;16470:102;16599:6;16590:5;:15;16586:102;;16635:6;16626:15;;;-1:-1:-1;16670:2:0;16660:12;16586:102;16715:5;16706;:14;16702:99;;16750:5;16741:14;;;-1:-1:-1;16784:1:0;16774:11;16702:99;16828:5;16819;:14;16815:99;;16863:5;16854:14;;;-1:-1:-1;16897:1:0;16887:11;16815:99;16941:5;16932;:14;16928:99;;16976:5;16967:14;;;-1:-1:-1;17010:1:0;17000:11;16928:99;17054:5;17045;:14;17041:66;;17090:1;17080:11;17135:6;16227:922;-1:-1:-1;;16227:922:0:o;52355:942::-;-1:-1:-1;;;;;52435:16:0;;52427:61;;;;-1:-1:-1;;;52427:61:0;;21648:2:1;52427:61:0;;;21630:21:1;;;21667:18;;;21660:30;21726:34;21706:18;;;21699:62;21778:18;;52427:61:0;21446:356:1;52427:61:0;50527:4;50125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50125:16:0;50551:31;52499:58;;;;-1:-1:-1;;;52499:58:0;;22009:2:1;52499:58:0;;;21991:21:1;22048:2;22028:18;;;22021:30;22087;22067:18;;;22060:58;22135:18;;52499:58:0;21807:352:1;52499:58:0;52570:48;52599:1;52603:2;52607:7;52616:1;52570:20;:48::i;:::-;50527:4;50125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50125:16:0;50551:31;52708:58;;;;-1:-1:-1;;;52708:58:0;;22009:2:1;52708:58:0;;;21991:21:1;22048:2;22028:18;;;22021:30;22087;22067:18;;;22060:58;22135:18;;52708:58:0;21807:352:1;52708:58:0;-1:-1:-1;;;;;53115:13:0;;;;;;:9;:13;;;;;;;;:18;;53132:1;53115:18;;;53157:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53157:21:0;;;;;53196:33;53165:7;;53115:13;;53196:33;;53115:13;;53196:33;47283:155;;:::o;57558:853::-;57712:4;-1:-1:-1;;;;;57733:13:0;;26376:19;:23;57729:675;;57769:71;;-1:-1:-1;;;57769:71:0;;-1:-1:-1;;;;;57769:36:0;;;;;:71;;22014:10;;57820:4;;57826:7;;57835:4;;57769:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57769:71:0;;;;;;;;-1:-1:-1;;57769:71:0;;;;;;;;;;;;:::i;:::-;;;57765:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58010:6;:13;58027:1;58010:18;58006:328;;58053:60;;-1:-1:-1;;;58053:60:0;;;;;;;:::i;58006:328::-;58284:6;58278:13;58269:6;58265:2;58261:15;58254:38;57765:584;-1:-1:-1;;;;;;57891:51:0;-1:-1:-1;;;57891:51:0;;-1:-1:-1;57884:58:0;;57729:675;-1:-1:-1;58388:4:0;57558:853;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2565:186::-;2624:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;2756:328::-;2833:6;2841;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2941:29;2960:9;2941:29;:::i;:::-;2931:39;;2989:38;3023:2;3012:9;3008:18;2989:38;:::i;:::-;2979:48;;3074:2;3063:9;3059:18;3046:32;3036:42;;2756:328;;;;;:::o;3089:171::-;3156:20;;-1:-1:-1;;;;;3205:30:1;;3195:41;;3185:69;;3250:1;3247;3240:12;3265:184;3323:6;3376:2;3364:9;3355:7;3351:23;3347:32;3344:52;;;3392:1;3389;3382:12;3344:52;3415:28;3433:9;3415:28;:::i;3454:127::-;3515:10;3510:3;3506:20;3503:1;3496:31;3546:4;3543:1;3536:15;3570:4;3567:1;3560:15;3586:275;3657:2;3651:9;3722:2;3703:13;;-1:-1:-1;;3699:27:1;3687:40;;-1:-1:-1;;;;;3742:34:1;;3778:22;;;3739:62;3736:88;;;3804:18;;:::i;:::-;3840:2;3833:22;3586:275;;-1:-1:-1;3586:275:1:o;3866:1024::-;3958:6;3966;4019:2;4007:9;3998:7;3994:23;3990:32;3987:52;;;4035:1;4032;4025:12;3987:52;4058:28;4076:9;4058:28;:::i;:::-;4048:38;;4105:2;4158;4147:9;4143:18;4130:32;-1:-1:-1;;;;;4222:2:1;4214:6;4211:14;4208:34;;;4238:1;4235;4228:12;4208:34;4276:6;4265:9;4261:22;4251:32;;4321:7;4314:4;4310:2;4306:13;4302:27;4292:55;;4343:1;4340;4333:12;4292:55;4379:2;4366:16;4401:2;4397;4394:10;4391:36;;;4407:18;;:::i;:::-;4453:2;4450:1;4446:10;4436:20;;4476:28;4500:2;4496;4492:11;4476:28;:::i;:::-;4538:15;;;4608:11;;;4604:20;;;4569:12;;;;4636:19;;;4633:39;;;4668:1;4665;4658:12;4633:39;4692:11;;;;4712:148;4728:6;4723:3;4720:15;4712:148;;;4794:23;4813:3;4794:23;:::i;:::-;4782:36;;4745:12;;;;4838;;;;4712:148;;;4879:5;4869:15;;;;;;;;3866:1024;;;;;:::o;4895:632::-;5066:2;5118:21;;;5188:13;;5091:18;;;5210:22;;;5037:4;;5066:2;5289:15;;;;5263:2;5248:18;;;5037:4;5332:169;5346:6;5343:1;5340:13;5332:169;;;5407:13;;5395:26;;5476:15;;;;5441:12;;;;5368:1;5361:9;5332:169;;;-1:-1:-1;5518:3:1;;4895:632;-1:-1:-1;;;;;;4895:632:1:o;5532:592::-;5603:6;5611;5664:2;5652:9;5643:7;5639:23;5635:32;5632:52;;;5680:1;5677;5670:12;5632:52;5720:9;5707:23;-1:-1:-1;;;;;5790:2:1;5782:6;5779:14;5776:34;;;5806:1;5803;5796:12;5776:34;5844:6;5833:9;5829:22;5819:32;;5889:7;5882:4;5878:2;5874:13;5870:27;5860:55;;5911:1;5908;5901:12;5860:55;5951:2;5938:16;5977:2;5969:6;5966:14;5963:34;;;5993:1;5990;5983:12;5963:34;6038:7;6033:2;6024:6;6020:2;6016:15;6012:24;6009:37;6006:57;;;6059:1;6056;6049:12;6006:57;6090:2;6082:11;;;;;6112:6;;-1:-1:-1;5532:592:1;;-1:-1:-1;;;;5532:592:1:o;6129:118::-;6215:5;6208:13;6201:21;6194:5;6191:32;6181:60;;6237:1;6234;6227:12;6252:241;6308:6;6361:2;6349:9;6340:7;6336:23;6332:32;6329:52;;;6377:1;6374;6367:12;6329:52;6416:9;6403:23;6435:28;6457:5;6435:28;:::i;6498:315::-;6563:6;6571;6624:2;6612:9;6603:7;6599:23;6595:32;6592:52;;;6640:1;6637;6630:12;6592:52;6663:29;6682:9;6663:29;:::i;:::-;6653:39;;6742:2;6731:9;6727:18;6714:32;6755:28;6777:5;6755:28;:::i;:::-;6802:5;6792:15;;;6498:315;;;;;:::o;6818:980::-;6913:6;6921;6929;6937;6990:3;6978:9;6969:7;6965:23;6961:33;6958:53;;;7007:1;7004;6997:12;6958:53;7030:29;7049:9;7030:29;:::i;:::-;7020:39;;7078:2;7099:38;7133:2;7122:9;7118:18;7099:38;:::i;:::-;7089:48;;7184:2;7173:9;7169:18;7156:32;7146:42;;7239:2;7228:9;7224:18;7211:32;-1:-1:-1;;;;;7303:2:1;7295:6;7292:14;7289:34;;;7319:1;7316;7309:12;7289:34;7357:6;7346:9;7342:22;7332:32;;7402:7;7395:4;7391:2;7387:13;7383:27;7373:55;;7424:1;7421;7414:12;7373:55;7460:2;7447:16;7482:2;7478;7475:10;7472:36;;;7488:18;;:::i;:::-;7530:53;7573:2;7554:13;;-1:-1:-1;;7550:27:1;7546:36;;7530:53;:::i;:::-;7517:66;;7606:2;7599:5;7592:17;7646:7;7641:2;7636;7632;7628:11;7624:20;7621:33;7618:53;;;7667:1;7664;7657:12;7618:53;7722:2;7717;7713;7709:11;7704:2;7697:5;7693:14;7680:45;7766:1;7761:2;7756;7749:5;7745:14;7741:23;7734:34;;7787:5;7777:15;;;;;6818:980;;;;;;;:::o;7803:260::-;7871:6;7879;7932:2;7920:9;7911:7;7907:23;7903:32;7900:52;;;7948:1;7945;7938:12;7900:52;7971:29;7990:9;7971:29;:::i;:::-;7961:39;;8019:38;8053:2;8042:9;8038:18;8019:38;:::i;:::-;8009:48;;7803:260;;;;;:::o;8291:380::-;8370:1;8366:12;;;;8413;;;8434:61;;8488:4;8480:6;8476:17;8466:27;;8434:61;8541:2;8533:6;8530:14;8510:18;8507:38;8504:161;;8587:10;8582:3;8578:20;8575:1;8568:31;8622:4;8619:1;8612:15;8650:4;8647:1;8640:15;8504:161;;8291:380;;;:::o;9817:245::-;9884:6;9937:2;9925:9;9916:7;9912:23;9908:32;9905:52;;;9953:1;9950;9943:12;9905:52;9985:9;9979:16;10004:28;10026:5;10004:28;:::i;10277:344::-;10479:2;10461:21;;;10518:2;10498:18;;;10491:30;-1:-1:-1;;;10552:2:1;10537:18;;10530:50;10612:2;10597:18;;10277:344::o;10626:127::-;10687:10;10682:3;10678:20;10675:1;10668:31;10718:4;10715:1;10708:15;10742:4;10739:1;10732:15;10758:125;10823:9;;;10844:10;;;10841:36;;;10857:18;;:::i;10888:344::-;11090:2;11072:21;;;11129:2;11109:18;;;11102:30;-1:-1:-1;;;11163:2:1;11148:18;;11141:50;11223:2;11208:18;;10888:344::o;11237:180::-;-1:-1:-1;;;;;11342:10:1;;;11354;;;11338:27;;11377:11;;;11374:37;;;11391:18;;:::i;:::-;11374:37;11237:180;;;;:::o;11422:344::-;11624:2;11606:21;;;11663:2;11643:18;;;11636:30;-1:-1:-1;;;11697:2:1;11682:18;;11675:50;11757:2;11742:18;;11422:344::o;11771:127::-;11832:10;11827:3;11823:20;11820:1;11813:31;11863:4;11860:1;11853:15;11887:4;11884:1;11877:15;11903:135;11942:3;11963:17;;;11960:43;;11983:18;;:::i;:::-;-1:-1:-1;12030:1:1;12019:13;;11903:135::o;12873:545::-;12975:2;12970:3;12967:11;12964:448;;;13011:1;13036:5;13032:2;13025:17;13081:4;13077:2;13067:19;13151:2;13139:10;13135:19;13132:1;13128:27;13122:4;13118:38;13187:4;13175:10;13172:20;13169:47;;;-1:-1:-1;13210:4:1;13169:47;13265:2;13260:3;13256:12;13253:1;13249:20;13243:4;13239:31;13229:41;;13320:82;13338:2;13331:5;13328:13;13320:82;;;13383:17;;;13364:1;13353:13;13320:82;;;13324:3;;;12873:545;;;:::o;13594:1206::-;-1:-1:-1;;;;;13713:3:1;13710:27;13707:53;;;13740:18;;:::i;:::-;13769:94;13859:3;13819:38;13851:4;13845:11;13819:38;:::i;:::-;13813:4;13769:94;:::i;:::-;13889:1;13914:2;13909:3;13906:11;13931:1;13926:616;;;;14586:1;14603:3;14600:93;;;-1:-1:-1;14659:19:1;;;14646:33;14600:93;-1:-1:-1;;13551:1:1;13547:11;;;13543:24;13539:29;13529:40;13575:1;13571:11;;;13526:57;14706:78;;13899:895;;13926:616;12820:1;12813:14;;;12857:4;12844:18;;-1:-1:-1;;13962:17:1;;;14063:9;14085:229;14099:7;14096:1;14093:14;14085:229;;;14188:19;;;14175:33;14160:49;;14295:4;14280:20;;;;14248:1;14236:14;;;;14115:12;14085:229;;;14089:3;14342;14333:7;14330:16;14327:159;;;14466:1;14462:6;14456:3;14450;14447:1;14443:11;14439:21;14435:34;14431:39;14418:9;14413:3;14409:19;14396:33;14392:79;14384:6;14377:95;14327:159;;;14529:1;14523:3;14520:1;14516:11;14512:19;14506:4;14499:33;13899:895;;13594:1206;;;:::o;15568:342::-;15770:2;15752:21;;;15809:2;15789:18;;;15782:30;-1:-1:-1;;;15843:2:1;15828:18;;15821:48;15901:2;15886:18;;15568:342::o;15915:168::-;15988:9;;;16019;;16036:15;;;16030:22;;16016:37;16006:71;;16057:18;;:::i;16088:343::-;16290:2;16272:21;;;16329:2;16309:18;;;16302:30;-1:-1:-1;;;16363:2:1;16348:18;;16341:49;16422:2;16407:18;;16088:343::o;17206:663::-;17486:3;17524:6;17518:13;17540:66;17599:6;17594:3;17587:4;17579:6;17575:17;17540:66;:::i;:::-;17669:13;;17628:16;;;;17691:70;17669:13;17628:16;17738:4;17726:17;;17691:70;:::i;:::-;-1:-1:-1;;;17783:20:1;;17812:22;;;17861:1;17850:13;;17206:663;-1:-1:-1;;;;17206:663:1:o;17874:184::-;17944:6;17997:2;17985:9;17976:7;17972:23;17968:32;17965:52;;;18013:1;18010;18003:12;17965:52;-1:-1:-1;18036:16:1;;17874:184;-1:-1:-1;17874:184:1:o;19183:409::-;19385:2;19367:21;;;19424:2;19404:18;;;19397:30;19463:34;19458:2;19443:18;;19436:62;-1:-1:-1;;;19529:2:1;19514:18;;19507:43;19582:3;19567:19;;19183:409::o;20083:401::-;20285:2;20267:21;;;20324:2;20304:18;;;20297:30;20363:34;20358:2;20343:18;;20336:62;-1:-1:-1;;;20429:2:1;20414:18;;20407:35;20474:3;20459:19;;20083:401::o;20894:414::-;21096:2;21078:21;;;21135:2;21115:18;;;21108:30;21174:34;21169:2;21154:18;;21147:62;-1:-1:-1;;;21240:2:1;21225:18;;21218:48;21298:3;21283:19;;20894:414::o;21313:128::-;21380:9;;;21401:11;;;21398:37;;;21415:18;;:::i;22164:489::-;-1:-1:-1;;;;;22433:15:1;;;22415:34;;22485:15;;22480:2;22465:18;;22458:43;22532:2;22517:18;;22510:34;;;22580:3;22575:2;22560:18;;22553:31;;;22358:4;;22601:46;;22627:19;;22619:6;22601:46;:::i;:::-;22593:54;22164:489;-1:-1:-1;;;;;;22164:489:1:o;22658:249::-;22727:6;22780:2;22768:9;22759:7;22755:23;22751:32;22748:52;;;22796:1;22793;22786:12;22748:52;22828:9;22822:16;22847:30;22871:5;22847:30;:::i

Swarm Source

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