ETH Price: $2,619.47 (-0.21%)

Token

Feral File — N=12 (FF035)
 

Overview

Max Total Supply

1,728 FF035

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 FF035
0x5133135153964675f9fd2ed6d234572129af3a87
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:
FeralfileExhibitionV4

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-20
*/

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/IFeralfileSaleData.sol


pragma solidity ^0.8.13;

interface IFeralfileSaleData {
    struct RevenueShare {
        address recipient;
        uint256 bps;
    }

    struct SaleData {
        uint256 price; // in wei
        uint256 cost; // in wei
        uint256 expiryTime;
        address destination;
        uint256[] tokenIds;
        RevenueShare[][] revenueShares; // address and royalty bps (500 means 5%)
        bool payByVaultContract; // get eth from vault contract, used by credit card pay that proxy by ITX
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/FeralfileSaleData.sol


pragma solidity ^0.8.13;


contract FeralfileSaleData is IFeralfileSaleData {
    function validateSaleData(SaleData calldata saleData_) internal view {
        require(
            saleData_.tokenIds.length > 0,
            "FeralfileSaleData: tokenIds is empty"
        );
        require(
            saleData_.tokenIds.length == saleData_.revenueShares.length,
            "FeralfileSaleData: tokenIds and revenueShares length mismatch"
        );
        require(
            saleData_.expiryTime > block.timestamp,
            "FeralfileSaleData: sale is expired"
        );
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/operator-filter-registry/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 unregister(address addr) 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: @openzeppelin/contracts/utils/math/SignedMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/ECDSASigner.sol


pragma solidity ^0.8.13;



contract ECDSASigner is Ownable {
    address private _signer;

    constructor(address signer_) {
        require(signer_ != address(0), "ECDSASign: signer_ is zero address");
        _signer = signer_;
    }

    /// @notice isValidSignature validates a message by ecrecover to ensure
    //          it is signed by signer.
    /// @param message_ - the raw message for signing
    /// @param r_ - part of signature for validating parameters integrity
    /// @param s_ - part of signature for validating parameters integrity
    /// @param v_ - part of signature for validating parameters integrity
    function isValidSignature(
        bytes32 message_,
        bytes32 r_,
        bytes32 s_,
        uint8 v_
    ) internal view returns (bool) {
        address reqSigner = ECDSA.recover(
            ECDSA.toEthSignedMessageHash(message_),
            v_,
            r_,
            s_
        );
        return reqSigner == _signer;
    }

    /// @notice set the signer
    /// @param signer_ - the address of signer
    function setSigner(address signer_) external onlyOwner {
        require(signer_ != address(0), "ECDSASign: signer_ is zero address");
        _signer = signer_;
    }

    function signer() external view returns (address) {
        return _signer;
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/IFeralfileVault.sol


pragma solidity ^0.8.0;




interface IFeralfileVault is IFeralfileSaleData {
    function payForSale(
        bytes32 r_,
        bytes32 s_,
        uint8 v_,
        SaleData calldata saleData_
    ) external;

    function withdrawFund(uint256 weiAmount) external;

    receive() external payable;
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/Authorizable.sol


pragma solidity >=0.4.22 <0.9.0;


contract Authorizable is Ownable {
    mapping(address => bool) public trustees;

    constructor() {}

    modifier onlyAuthorized() {
        require(trustees[msg.sender] || msg.sender == owner());
        _;
    }

    function addTrustee(address _trustee) public onlyOwner {
        trustees[_trustee] = true;
    }

    function removeTrustee(address _trustee) public onlyOwner {
        delete trustees[_trustee];
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/UpdateableOperatorFilterer.sol


pragma solidity ^0.8.13;



/**
 * @title  UpdateableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdateableOperatorFilterer is Authorizable {
    error OperatorNotAllowed(address operator);

    address constant DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS =
        address(0x000000000000AAeB6D7670E522A718067333cd4E);

    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    IOperatorFilterRegistry public OperatorFilterRegistry =
        IOperatorFilterRegistry(DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS);

    constructor() {
        if (address(OperatorFilterRegistry).code.length > 0) {
            OperatorFilterRegistry.registerAndSubscribe(
                address(this),
                DEFAULT_SUBSCRIPTION
            );
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OperatorFilterRegistry).code.length > 0) {
            require(
                OperatorFilterRegistry.isOperatorAllowed(
                    address(this),
                    operator
                ),
                "operator is not allowed"
            );
        }
    }

    /**
     * @notice update the operator filter registry
     */
    function updateOperatorFilterRegistry(address operatorFilterRegisterAddress)
        external
        onlyOwner
    {
        OperatorFilterRegistry = IOperatorFilterRegistry(
            operatorFilterRegisterAddress
        );
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/FeralfileArtworkV4.sol


pragma solidity ^0.8.13;








contract FeralfileExhibitionV4 is
    ERC721,
    Authorizable,
    UpdateableOperatorFilterer,
    FeralfileSaleData,
    ECDSASigner
{
    using Strings for uint256;

    struct Artwork {
        uint256 seriesId;
        uint256 tokenId;
    }

    struct MintData {
        uint256 seriesId;
        uint256 tokenId;
        address owner;
    }

    // version code of contract
    string public constant codeVersion = "FeralfileExhibitionV4";

    // token base URI
    string public tokenBaseURI;

    // contract URI
    string public contractURI;

    // total supply
    uint256 public totalSupply;

    // burnable
    bool public burnable;

    // bridgeable
    bool public bridgeable;

    // selling
    bool private _selling;

    // mintable
    bool public mintable = true;

    // cost receiver
    address public costReceiver;

    // vault contract instance
    IFeralfileVault public vault;

    // series max supplies
    mapping(uint256 => uint256) internal _seriesMaxSupplies;

    // series total supplies
    mapping(uint256 => uint256) internal _seriesTotalSupplies;

    // all artworks
    mapping(uint256 => Artwork) internal _allArtworks;

    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    constructor(
        string memory name_,
        string memory symbol_,
        bool burnable_,
        bool bridgeable_,
        address signer_,
        address vault_,
        address costReceiver_,
        string memory contractURI_,
        uint256[] memory seriesIds_,
        uint256[] memory seriesMaxSupplies_
    ) ERC721(name_, symbol_) ECDSASigner(signer_) {
        // validations
        require(
            bytes(name_).length > 0,
            "FeralfileExhibitionV4: name_ is empty"
        );
        require(
            bytes(symbol_).length > 0,
            "FeralfileExhibitionV4: symbol_ is empty"
        );
        require(
            vault_ != address(0),
            "FeralfileExhibitionV4: vaultAddress_ is zero address"
        );
        require(
            costReceiver_ != address(0),
            "FeralfileExhibitionV4: costReceiver_ is zero address"
        );
        require(
            bytes(contractURI_).length > 0,
            "FeralfileExhibitionV4: contractURI_ is empty"
        );
        require(
            seriesIds_.length > 0,
            "FeralfileExhibitionV4: seriesIds_ is empty"
        );
        require(
            seriesMaxSupplies_.length > 0,
            "FeralfileExhibitionV4: _seriesMaxSupplies is empty"
        );
        require(
            seriesIds_.length == seriesMaxSupplies_.length,
            "FeralfileExhibitionV4: seriesMaxSupplies_ and seriesIds_ lengths are not the same"
        );

        burnable = burnable_;
        bridgeable = bridgeable_;
        costReceiver = costReceiver_;
        vault = IFeralfileVault(payable(vault_));
        contractURI = contractURI_;

        // initialize max supply map
        for (uint256 i = 0; i < seriesIds_.length; i++) {
            // Check duplicate with others
            for (uint256 j = i + 1; j < seriesIds_.length; j++) {
                if (seriesIds_[i] == seriesIds_[j]) {
                    revert("FeralfileExhibitionV4: duplicate seriesId");
                }
            }
            require(
                seriesMaxSupplies_[i] > 0,
                "FeralfileExhibitionV4: zero max supply"
            );

            _seriesMaxSupplies[seriesIds_[i]] = seriesMaxSupplies_[i];
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) external view returns (uint256) {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /// @notice Get token ID from owner
    function tokensOfOwner(
        address owner
    ) external view returns (uint256[] memory) {
        return _ownedTokens[owner];
    }

    /// @notice Get series max supply
    /// @param seriesId a series ID
    /// @return uint256 the max supply
    function seriesMaxSupply(
        uint256 seriesId
    ) external view virtual returns (uint256) {
        return _seriesMaxSupplies[seriesId];
    }

    /// @notice Get series total supply
    /// @param seriesId a series ID
    /// @return uint256 the total supply
    function seriesTotalSupply(
        uint256 seriesId
    ) external view virtual returns (uint256) {
        return _seriesTotalSupplies[seriesId];
    }

    /// @notice Get artwork data
    /// @param tokenId a token ID representing the artwork
    /// @return Artwork the Artwork object
    function getArtwork(
        uint256 tokenId
    ) external view virtual returns (Artwork memory) {
        require(_exists(tokenId), "ERC721: invalid token ID");
        return _allArtworks[tokenId];
    }

    /// @notice Set vault contract
    /// @dev don't allow to set vault as zero address
    function setVault(address vault_) external onlyOwner {
        require(
            vault_ != address(0),
            "FeralfileExhibitionV4: vault_ is zero address"
        );
        vault = IFeralfileVault(payable(vault_));
    }

    /// @notice Return flag _selling;
    function selling() external view returns (bool) {
        return _selling;
    }

    function _checkContractOwnedToken() private view {
        uint256 balance = balanceOf(address(this));
        require(
            balance > 0,
            "FeralfileExhibitionV4: No token owned by the contract"
        );
    }

    /// @notice Start token sale
    function startSale() external onlyOwner {
        mintable = false;
        resumeSale();
    }

    /// @notice Resume token sale
    function resumeSale() public onlyOwner {
        require(
            !mintable,
            "FeralfileExhibitionV4: mintable required to be false"
        );
        require(
            !_selling,
            "FeralfileExhibitionV4: _selling required to be false"
        );
        _checkContractOwnedToken();

        _selling = true;
    }

    /// @notice Pause token sale
    function pauseSale() public onlyOwner {
        require(
            !mintable,
            "FeralfileExhibitionV4: mintable required to be false"
        );
        require(
            _selling,
            "FeralfileExhibitionV4: _selling required to be true"
        );
        _selling = false;
    }

    /// @notice Stop token sale and burn remaining tokens
    function stopSaleAndBurn() external onlyOwner {
        pauseSale();

        // burn remaining tokens
        uint256[] memory tokenIds = _ownedTokens[address(this)];
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _burnArtwork(tokenIds[i]);
        }
    }

    /// @notice Stop token selling and transfer remaining tokens back to the underlying addresses
    function stopSaleAndTransfer(
        uint256[] memory seriesIds,
        address[] memory recipientAddresses
    ) external onlyOwner {
        require(
            seriesIds.length > 0 && recipientAddresses.length > 0,
            "FeralfileExhibitionV4: seriesIds or recipientAddresses length is zero"
        );
        require(
            seriesIds.length == recipientAddresses.length,
            "FeralfileExhibitionV4: seriesIds length is different from recipientAddresses"
        );

        pauseSale();

        // transfer tokens back to the addresses
        address from = address(this);
        uint256[] memory tokenIds = _ownedTokens[from];
        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            Artwork memory artwork = _allArtworks[tokenId];

            for (uint16 j = 0; j < seriesIds.length; j++) {
                if (artwork.seriesId == seriesIds[j]) {
                    address to = recipientAddresses[j];
                    _safeTransfer(from, to, tokenId, "");
                    break;
                }
            }
        }
        require(
            balanceOf(from) == 0,
            "FeralfileExhibitionV4: Token for sale balance has to be zero"
        );
    }

    /// @dev override for OperatorFilterRegistry
    function setApprovalForAll(
        address operator,
        bool approved
    ) public override(ERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    /// @dev override for OperatorFilterRegistry
    function approve(
        address operator,
        uint256 tokenId
    ) public override(ERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    /// @dev override for OperatorFilterRegistry
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(ERC721) onlyAllowedOperator(from) {
        require(
            to != address(this),
            "FeralfileExhibitionV4: Contract isn't allowed to receive token"
        );
        super.transferFrom(from, to, tokenId);
    }

    /// @dev override for OperatorFilterRegistry
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(ERC721) onlyAllowedOperator(from) {
        require(
            to != address(this),
            "FeralfileExhibitionV4: Contract isn't allowed to receive token"
        );
        super.safeTransferFrom(from, to, tokenId);
    }

    /// @dev override for OperatorFilterRegistry
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override(ERC721) onlyAllowedOperator(from) {
        require(
            to != address(this),
            "FeralfileExhibitionV4: Contract isn't allowed to receive token"
        );
        super.safeTransferFrom(from, to, tokenId, data);
    }

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            bytes(tokenBaseURI).length > 0,
            "ERC721Metadata: _tokenBaseURI is empty"
        );
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return string(abi.encodePacked(tokenBaseURI, "/", tokenId.toString()));
    }

    /// @notice Update the base URI for all tokens
    function setTokenBaseURI(string memory baseURI_) external onlyOwner {
        require(
            bytes(baseURI_).length > 0,
            "ERC721Metadata: baseURI_ is empty"
        );
        tokenBaseURI = baseURI_;
    }

    /// @notice the cost receiver address
    /// @param costReceiver_ - the address of cost receiver
    function setCostReceiver(address costReceiver_) external onlyOwner {
        require(
            costReceiver_ != address(0),
            "FeralfileExhibitionV4: costReceiver_ is zero address"
        );
        costReceiver = costReceiver_;
    }

    /// @notice pay to get artworks to a destination address. The pricing, costs and other details is included in the saleData
    /// @param r_ - part of signature for validating parameters integrity
    /// @param s_ - part of signature for validating parameters integrity
    /// @param v_ - part of signature for validating parameters integrity
    /// @param saleData_ - the sale data
    function buyArtworks(
        bytes32 r_,
        bytes32 s_,
        uint8 v_,
        SaleData calldata saleData_
    ) external payable {
        require(_selling, "FeralfileExhibitionV4: sale is not started");
        _checkContractOwnedToken();
        validateSaleData(saleData_);

        saleData_.payByVaultContract
            ? vault.payForSale(r_, s_, v_, saleData_)
            : require(
                saleData_.price == msg.value,
                "FeralfileExhibitionV4: invalid payment amount"
            );

        bytes32 message = keccak256(
            abi.encode(block.chainid, address(this), saleData_)
        );

        require(
            isValidSignature(message, r_, s_, v_),
            "FeralfileExhibitionV4: invalid signature"
        );

        uint256 itemRevenue;
        if (saleData_.price > saleData_.cost) {
            itemRevenue =
                (saleData_.price - saleData_.cost) /
                saleData_.tokenIds.length;
        }

        uint256 distributedRevenue;
        uint256 platformRevenue;
        for (uint256 i = 0; i < saleData_.tokenIds.length; i++) {
            // send NFT
            _safeTransfer(
                address(this),
                saleData_.destination,
                saleData_.tokenIds[i],
                ""
            );
            if (itemRevenue > 0) {
                // distribute royalty
                for (
                    uint256 j = 0;
                    j < saleData_.revenueShares[i].length;
                    j++
                ) {
                    uint256 rev = (itemRevenue *
                        saleData_.revenueShares[i][j].bps) / 10000;
                    if (
                        saleData_.revenueShares[i][j].recipient == costReceiver
                    ) {
                        platformRevenue += rev;
                        continue;
                    }
                    distributedRevenue += rev;
                    payable(saleData_.revenueShares[i][j].recipient).transfer(
                        rev
                    );
                }
            }

            emit BuyArtwork(saleData_.destination, saleData_.tokenIds[i]);
        }

        require(
            saleData_.price - saleData_.cost >=
                distributedRevenue + platformRevenue,
            "FeralfileExhibitionV4: total bps over 10,000"
        );

        // Transfer cost, platform revenue and remaining funds
        uint256 leftOver = saleData_.price - distributedRevenue;
        if (leftOver > 0) {
            payable(costReceiver).transfer(leftOver);
        }
    }

    /// @notice utility function for checking the series exists
    function _seriesExists(uint256 seriesId) private view returns (bool) {
        return _seriesMaxSupplies[seriesId] > 0;
    }

    /// @dev Modify from ERC721Enumerable
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;
        if (from != address(0) && from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to != address(0) && to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /// @dev Modify from ERC721Enumerable
    function _removeTokenFromOwnerEnumeration(
        address from,
        uint256 tokenId
    ) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).
        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        delete _ownedTokensIndex[tokenId];
        _ownedTokens[from].pop();
    }

    /// @dev Modify from ERC721Enumerable
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256[] storage tokens = _ownedTokens[to];
        uint256 length = tokens.length;
        tokens.push(tokenId);
        _ownedTokensIndex[tokenId] = length;
    }

    /// @notice Mint new collection of Artwork
    /// @dev the function iterates over the array of MintData to call the internal function _mintArtwork
    /// @param data an array of MintData
    function mintArtworks(
        MintData[] calldata data
    ) external virtual onlyAuthorized {
        require(
            mintable,
            "FeralfileExhibitionV4: contract doesn't allow to mint"
        );
        for (uint256 i = 0; i < data.length; i++) {
            _mintArtwork(data[i].seriesId, data[i].tokenId, data[i].owner);
        }
    }

    function _mintArtwork(
        uint256 seriesId,
        uint256 tokenId,
        address owner
    ) internal {
        // pre-condition checks
        require(
            _seriesExists(seriesId),
            string(
                abi.encodePacked(
                    "FeralfileExhibitionV4: seriesId doesn't exist: ",
                    Strings.toString(seriesId)
                )
            )
        );
        require(
            _seriesTotalSupplies[seriesId] < _seriesMaxSupplies[seriesId],
            "FeralfileExhibitionV4: no slots available"
        );

        // mint
        totalSupply += 1;
        _seriesTotalSupplies[seriesId] += 1;
        _allArtworks[tokenId] = Artwork(seriesId, tokenId);
        _mint(owner, tokenId);

        // emit event
        emit NewArtwork(owner, seriesId, tokenId);
    }

    /// @notice Burn a collection of artworks
    /// @dev the function iterates over the array of token ID to call the internal function _burnArtwork
    /// @param tokenIds an array of token ID
    function burnArtworks(uint256[] memory tokenIds) external {
        require(burnable, "FeralfileExhibitionV4: token is not burnable");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                _isApprovedOrOwner(_msgSender(), tokenIds[i]),
                "ERC721: caller is not token owner or approved"
            );
            _burnArtwork(tokenIds[i]);
        }
    }

    function _burnArtwork(uint256 tokenId) internal {
        require(_exists(tokenId), "ERC721: invalid token ID");

        // burn artwork
        Artwork memory artwork = _allArtworks[tokenId];
        _seriesTotalSupplies[artwork.seriesId] -= 1;
        totalSupply -= 1;
        delete _allArtworks[tokenId];
        _burn(tokenId);

        // emit event
        emit BurnArtwork(tokenId);
    }

    /// @notice able to receive fund from vault contract
    receive() external payable {
        require(
            msg.sender == address(vault),
            "FeralfileExhibitionV4: only accept fund from vault contract."
        );
    }

    /// @notice Event emitted when new Artwork has been minted
    event NewArtwork(
        address indexed owner,
        uint256 indexed seriesId,
        uint256 indexed tokenId
    );

    /// @notice Event emitted when Artwork has been burned
    event BurnArtwork(uint256 indexed tokenId);

    /// @notice Event emitted when Artwork has been sold
    event BuyArtwork(address indexed buyer, uint256 indexed tokenId);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"bool","name":"burnable_","type":"bool"},{"internalType":"bool","name":"bridgeable_","type":"bool"},{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"vault_","type":"address"},{"internalType":"address","name":"costReceiver_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"uint256[]","name":"seriesIds_","type":"uint256[]"},{"internalType":"uint256[]","name":"seriesMaxSupplies_","type":"uint256[]"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"BurnArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BuyArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"seriesId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OperatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"expiryTime","type":"uint256"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"internalType":"struct IFeralfileSaleData.RevenueShare[][]","name":"revenueShares","type":"tuple[][]"},{"internalType":"bool","name":"payByVaultContract","type":"bool"}],"internalType":"struct IFeralfileSaleData.SaleData","name":"saleData_","type":"tuple"}],"name":"buyArtworks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getArtwork","outputs":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct FeralfileExhibitionV4.Artwork","name":"","type":"tuple"}],"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":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"internalType":"struct FeralfileExhibitionV4.MintData[]","name":"data","type":"tuple[]"}],"name":"mintArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeSale","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":"selling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesTotalSupply","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":"costReceiver_","type":"address"}],"name":"setCostReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vault_","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSaleAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"seriesIds","type":"uint256[]"},{"internalType":"address[]","name":"recipientAddresses","type":"address[]"}],"name":"stopSaleAndTransfer","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":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operatorFilterRegisterAddress","type":"address"}],"name":"updateOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract IFeralfileVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b0319166daaeb6d7670e522a718067333cd4e179055600d805463ff0000001916630100000017905534801562000043575f80fd5b5060405162004ded38038062004ded833981016040819052620000669162000940565b858a8a5f62000076838262000b01565b50600162000085828262000b01565b505050620000a26200009c6200076b60201b60201c565b6200076f565b6008546001600160a01b03163b156200012a57600854604051633e9f1edf60e11b8152306004820152733cc6cdda760b79bafa08df41ecfa224f810dceb660248201526001600160a01b0390911690637d3e3dbe906044015f604051808303815f87803b15801562000112575f80fd5b505af115801562000125573d5f803e3d5ffd5b505050505b6001600160a01b038116620001915760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b60648201526084015b60405180910390fd5b600980546001600160a01b0319166001600160a01b039290921691909117905589516200020f5760405162461bcd60e51b815260206004820152602560248201527f466572616c66696c6545786869626974696f6e56343a206e616d655f20697320604482015264656d70747960d81b606482015260840162000188565b5f895111620002715760405162461bcd60e51b815260206004820152602760248201527f466572616c66696c6545786869626974696f6e56343a2073796d626f6c5f20696044820152667320656d70747960c81b606482015260840162000188565b6001600160a01b038516620002ef5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a207661756c744164647260448201527f6573735f206973207a65726f2061646472657373000000000000000000000000606482015260840162000188565b6001600160a01b0384166200036d5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f7374526563656960448201527f7665725f206973207a65726f2061646472657373000000000000000000000000606482015260840162000188565b5f835111620003d45760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20636f6e74726163745560448201526b52495f20697320656d70747960a01b606482015260840162000188565b5f825111620004395760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a207365726965734964736044820152695f20697320656d70747960b01b606482015260840162000188565b5f815111620004a65760405162461bcd60e51b815260206004820152603260248201527f466572616c66696c6545786869626974696f6e56343a205f7365726965734d6160448201527178537570706c69657320697320656d70747960701b606482015260840162000188565b8051825114620005395760405162461bcd60e51b815260206004820152605160248201527f466572616c66696c6545786869626974696f6e56343a207365726965734d617860448201527f537570706c6965735f20616e64207365726965734964735f206c656e6774687360648201527020617265206e6f74207468652073616d6560781b608482015260a40162000188565b600d805461ffff191689151561ff001916176101008915150217600160201b600160c01b0319166401000000006001600160a01b038781169190910291909117909155600e80546001600160a01b031916918716919091179055600b620005a1848262000b01565b505f5b82518110156200075a575f620005bc82600162000bdd565b90505b83518110156200067957838181518110620005de57620005de62000bf9565b6020026020010151848381518110620005fb57620005fb62000bf9565b602002602001015103620006645760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206475706c6963617465604482015268081cd95c9a595cd25960ba1b606482015260840162000188565b80620006708162000c0d565b915050620005bf565b505f82828151811062000690576200069062000bf9565b602002602001015111620006f65760405162461bcd60e51b815260206004820152602660248201527f466572616c66696c6545786869626974696f6e56343a207a65726f206d617820604482015265737570706c7960d01b606482015260840162000188565b8181815181106200070b576200070b62000bf9565b6020026020010151600f5f8584815181106200072b576200072b62000bf9565b602002602001015181526020019081526020015f20819055508080620007519062000c0d565b915050620005a4565b505050505050505050505062000c28565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715620007ff57620007ff620007c0565b604052919050565b5f82601f83011262000817575f80fd5b81516001600160401b03811115620008335762000833620007c0565b602062000849601f8301601f19168201620007d4565b82815285828487010111156200085d575f80fd5b5f5b838110156200087c5785810183015182820184015282016200085f565b505f928101909101919091529392505050565b805180151581146200089f575f80fd5b919050565b80516001600160a01b03811681146200089f575f80fd5b5f82601f830112620008cb575f80fd5b815160206001600160401b03821115620008e957620008e9620007c0565b8160051b620008fa828201620007d4565b928352848101820192828101908785111562000914575f80fd5b83870192505b8483101562000935578251825291830191908301906200091a565b979650505050505050565b5f805f805f805f805f806101408b8d0312156200095b575f80fd5b8a516001600160401b038082111562000972575f80fd5b620009808e838f0162000807565b9b5060208d015191508082111562000996575f80fd5b620009a48e838f0162000807565b9a50620009b460408e016200088f565b9950620009c460608e016200088f565b9850620009d460808e01620008a4565b9750620009e460a08e01620008a4565b9650620009f460c08e01620008a4565b955060e08d015191508082111562000a0a575f80fd5b62000a188e838f0162000807565b94506101008d015191508082111562000a2f575f80fd5b62000a3d8e838f01620008bb565b93506101208d015191508082111562000a54575f80fd5b5062000a638d828e01620008bb565b9150509295989b9194979a5092959850565b600181811c9082168062000a8a57607f821691505b60208210810362000aa957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000afc575f81815260208120601f850160051c8101602086101562000ad75750805b601f850160051c820191505b8181101562000af85782815560010162000ae3565b5050505b505050565b81516001600160401b0381111562000b1d5762000b1d620007c0565b62000b358162000b2e845462000a75565b8462000aaf565b602080601f83116001811462000b6b575f841562000b535750858301515b5f19600386901b1c1916600185901b17855562000af8565b5f85815260208120601f198616915b8281101562000b9b5788860151825594840194600190910190840162000b7a565b508582101562000bb957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082018082111562000bf35762000bf362000bc9565b92915050565b634e487b7160e01b5f52603260045260245ffd5b5f6001820162000c215762000c2162000bc9565b5060010190565b6141b78062000c365f395ff3fe6080604052600436106102a8575f3560e01c80636817031b1161016f578063b66a0e5d116100d8578063e985e9c511610092578063f07e7fd01161006d578063f07e7fd014610906578063f2fde38b14610925578063f4e638be14610944578063fbfa77cf1461096b575f80fd5b8063e985e9c514610866578063eb5c60f2146108ad578063eee608a4146108d8575f80fd5b8063b66a0e5d146107cd578063b88d4fde146107e1578063b9b8311a14610800578063c87b56dd14610814578063dc78ac1c14610833578063e8a3d48514610852575f80fd5b80638cba1c67116101295780638cba1c67146107265780638da5cb5b146107455780638ef79e911461076257806395d89b4114610781578063a07c7ce414610795578063a22cb465146107ae575f80fd5b80636817031b1461065e5780636c19e7831461067d57806370a082311461069c578063715018a6146106bb5780637f06ee06146106cf5780638462151c146106fa575f80fd5b806323b872dd116102115780634e99b800116101cb5780634e99b8001461059a578063530da8ef146105ae57806355367ba9146105cc5780636352211e146105e057806363e60230146105ff57806365a46e081461063f575f80fd5b806323b872dd146104f65780632977e4b3146105155780632f745c591461052857806333e364cb1461054757806342842e0e1461055b5780634bf365df1461057a575f80fd5b80631623528f116102625780631623528f14610421578063167ddf6e1461044057806318160ddd1461047a57806321fe0c641461049d578063238ac933146104bc57806323aed228146104d9575f80fd5b806301ffc9a714610338578063031205061461036c57806306fdde031461038b578063081812fc146103ac578063095ea7b3146103e3578063114ba8ee14610402575f80fd5b3661033457600e546001600160a01b031633146103325760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b5f80fd5b348015610343575f80fd5b506103576103523660046133c8565b61098a565b60405190151581526020015b60405180910390f35b348015610377575f80fd5b50610332610386366004613405565b6109db565b348015610396575f80fd5b5061039f610a03565b604051610363919061346b565b3480156103b7575f80fd5b506103cb6103c636600461347d565b610a92565b6040516001600160a01b039091168152602001610363565b3480156103ee575f80fd5b506103326103fd366004613494565b610ab7565b34801561040d575f80fd5b5061033261041c366004613405565b610ad0565b34801561042c575f80fd5b5061033261043b366004613405565b610afa565b34801561044b575f80fd5b5061045f61045a36600461347d565b610ba3565b60408051825181526020928301519281019290925201610363565b348015610485575f80fd5b5061048f600c5481565b604051908152602001610363565b3480156104a8575f80fd5b506103326104b736600461358a565b610c04565b3480156104c7575f80fd5b506009546001600160a01b03166103cb565b3480156104e4575f80fd5b50600d5462010000900460ff16610357565b348015610501575f80fd5b506103326105103660046135bb565b610ced565b6103326105233660046135f4565b610d40565b348015610533575f80fd5b5061048f610542366004613494565b61130a565b348015610552575f80fd5b506103326113b0565b348015610566575f80fd5b506103326105753660046135bb565b611473565b348015610585575f80fd5b50600d54610357906301000000900460ff1681565b3480156105a5575f80fd5b5061039f6114c0565b3480156105b9575f80fd5b50600d5461035790610100900460ff1681565b3480156105d7575f80fd5b5061033261154c565b3480156105eb575f80fd5b506103cb6105fa36600461347d565b611600565b34801561060a575f80fd5b5061039f6040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561064a575f80fd5b5061033261065936600461365b565b611634565b348015610669575f80fd5b50610332610678366004613405565b611927565b348015610688575f80fd5b50610332610697366004613405565b6119bd565b3480156106a7575f80fd5b5061048f6106b6366004613405565b611a48565b3480156106c6575f80fd5b50610332611acc565b3480156106da575f80fd5b5061048f6106e936600461347d565b5f9081526010602052604090205490565b348015610705575f80fd5b50610719610714366004613405565b611adf565b6040516103639190613716565b348015610731575f80fd5b50610332610740366004613759565b611b48565b348015610750575f80fd5b506006546001600160a01b03166103cb565b34801561076d575f80fd5b5061033261077c36600461381b565b611c73565b34801561078c575f80fd5b5061039f611ce1565b3480156107a0575f80fd5b50600d546103579060ff1681565b3480156107b9575f80fd5b506103326107c8366004613877565b611cf0565b3480156107d8575f80fd5b50610332611d04565b3480156107ec575f80fd5b506103326107fb3660046138ac565b611d21565b34801561080b575f80fd5b50610332611d76565b34801561081f575f80fd5b5061039f61082e36600461347d565b611e13565b34801561083e575f80fd5b5061033261084d366004613405565b611f20565b34801561085d575f80fd5b5061039f611f4b565b348015610871575f80fd5b50610357610880366004613922565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b3480156108b8575f80fd5b5061048f6108c736600461347d565b5f908152600f602052604090205490565b3480156108e3575f80fd5b506103576108f2366004613405565b60076020525f908152604090205460ff1681565b348015610911575f80fd5b506008546103cb906001600160a01b031681565b348015610930575f80fd5b5061033261093f366004613405565b611f58565b34801561094f575f80fd5b50600d546103cb9064010000000090046001600160a01b031681565b348015610976575f80fd5b50600e546103cb906001600160a01b031681565b5f6001600160e01b031982166380ac58cd60e01b14806109ba57506001600160e01b03198216635b5e139f60e01b145b806109d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6109e3611fd1565b6001600160a01b03165f908152600760205260409020805460ff19169055565b60605f8054610a1190613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90613953565b8015610a885780601f10610a5f57610100808354040283529160200191610a88565b820191905f5260205f20905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b5f610a9c8261202b565b505f908152600460205260409020546001600160a01b031690565b81610ac181612050565b610acb8383612120565b505050565b610ad8611fd1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610b02611fd1565b6001600160a01b038116610b755760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b6064820152608401610329565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b604080518082019091525f8082526020820152610bbf8261222f565b610bdb5760405162461bcd60e51b81526004016103299061398b565b505f90815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610c6b5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b6064820152608401610329565b5f5b8151811015610ce957610c9933838381518110610c8c57610c8c6139c2565b602002602001015161224b565b610cb55760405162461bcd60e51b8152600401610329906139d6565b610cd7828281518110610cca57610cca6139c2565b60200260200101516122c8565b80610ce181613a37565b915050610c6d565b5050565b826001600160a01b0381163314610d0757610d0733612050565b306001600160a01b03841603610d2f5760405162461bcd60e51b815260040161032990613a4f565b610d3a84848461239a565b50505050565b600d5462010000900460ff16610dab5760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a2073616c65206973206e6044820152691bdd081cdd185c9d195960b21b6064820152608401610329565b610db36123cb565b610dbc81612444565b610dcc60e0820160c08301613aac565b610e3b5780353414610e365760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207060448201526c185e5b595b9d08185b5bdd5b9d609a1b6064820152608401610329565b610e9f565b600e54604051632eeee16360e01b81526001600160a01b0390911690632eeee16390610e71908790879087908790600401613ca9565b5f604051808303815f87803b158015610e88575f80fd5b505af1158015610e9a573d5f803e3d5ffd5b505050505b5f463083604051602001610eb593929190613cda565b604051602081830303815290604052805190602001209050610ed98186868661259c565b610f365760405162461bcd60e51b815260206004820152602860248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207360448201526769676e617475726560c01b6064820152608401610329565b5f602083013583351115610f6f57610f516080840184613d0c565b9050610f6260208501358535613d51565b610f6c9190613d64565b90505b5f805f5b610f806080870187613d0c565b905081101561122e57610fd530610f9d6080890160608a01613405565b610faa60808a018a613d0c565b85818110610fba57610fba6139c2565b9050602002013560405180602001604052805f8152506125f3565b83156111b0575f5b610fea60a0880188613d0c565b83818110610ffa57610ffa6139c2565b905060200281019061100c9190613d83565b90508110156111ae575f61271061102660a08a018a613d0c565b85818110611036576110366139c2565b90506020028101906110489190613d83565b84818110611058576110586139c2565b905060400201602001358761106d9190613dc8565b6110779190613d64565b600d5490915064010000000090046001600160a01b031661109b60a08a018a613d0c565b858181106110ab576110ab6139c2565b90506020028101906110bd9190613d83565b848181106110cd576110cd6139c2565b6110e39260206040909202019081019150613405565b6001600160a01b031603611103576110fb8185613ddf565b93505061119c565b61110d8186613ddf565b945061111c60a0890189613d0c565b8481811061112c5761112c6139c2565b905060200281019061113e9190613d83565b8381811061114e5761114e6139c2565b6111649260206040909202019081019150613405565b6001600160a01b03166108fc8290811502906040515f60405180830381858888f19350505050158015611199573d5f803e3d5ffd5b50505b806111a681613a37565b915050610fdd565b505b6111bd6080870187613d0c565b828181106111cd576111cd6139c2565b905060200201358660600160208101906111e79190613405565b6001600160a01b03167f0475389cd69b8d3163620b43283bf74e8fc71020c3c6cef2a529b5c405e9687f60405160405180910390a38061122681613a37565b915050610f73565b506112398183613ddf565b61124860208701358735613d51565b10156112ab5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f74616c2062707360448201526b0206f7665722031302c3030360a41b6064820152608401610329565b5f6112b7838735613d51565b905080156112ff57600d546040516401000000009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156112fd573d5f803e3d5ffd5b505b505050505050505050565b5f61131483611a48565b82106113765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610329565b6001600160a01b0383165f90815260126020526040902080548390811061139f5761139f6139c2565b905f5260205f200154905092915050565b6113b8611fd1565b600d546301000000900460ff16156113e25760405162461bcd60e51b815260040161032990613df2565b600d5462010000900460ff16156114585760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b6064820152608401610329565b6114606123cb565b600d805462ff0000191662010000179055565b826001600160a01b038116331461148d5761148d33612050565b306001600160a01b038416036114b55760405162461bcd60e51b815260040161032990613a4f565b610d3a848484612626565b600a80546114cd90613953565b80601f01602080910402602001604051908101604052809291908181526020018280546114f990613953565b80156115445780601f1061151b57610100808354040283529160200191611544565b820191905f5260205f20905b81548152906001019060200180831161152757829003601f168201915b505050505081565b611554611fd1565b600d546301000000900460ff161561157e5760405162461bcd60e51b815260040161032990613df2565b600d5462010000900460ff166115f25760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b6064820152608401610329565b600d805462ff000019169055565b5f818152600260205260408120546001600160a01b0316806109d55760405162461bcd60e51b81526004016103299061398b565b61163c611fd1565b5f825111801561164c57505f8151115b6116cc5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a401610329565b80518251146117585760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a401610329565b61176061154c565b305f818152601260209081526040808320805482518185028101850190935280835291929091908301828280156117b457602002820191905f5260205f20905b8154815260200190600101908083116117a0575b505050505090505f5b81518110156118aa575f8282815181106117d9576117d96139c2565b6020908102919091018101515f81815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff16101561189457878161ffff1681518110611830576118306139c2565b6020026020010151825f015103611882575f878261ffff1681518110611858576118586139c2565b6020026020010151905061187c87828660405180602001604052805f8152506125f3565b50611894565b8061188c81613e46565b91505061180d565b50505080806118a290613a37565b9150506117bd565b506118b482611a48565b15610d3a5760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f000000006064820152608401610329565b61192f611fd1565b6001600160a01b03811661199b5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a207661756c745f20697360448201526c207a65726f206164647265737360981b6064820152608401610329565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6119c5611fd1565b6001600160a01b038116611a265760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b6064820152608401610329565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216611ab15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610329565b506001600160a01b03165f9081526003602052604090205490565b611ad4611fd1565b611add5f612640565b565b6001600160a01b0381165f90815260126020908152604091829020805483518184028101840190945280845260609392830182828015611b3c57602002820191905f5260205f20905b815481526020019060010190808311611b28575b50505050509050919050565b335f9081526007602052604090205460ff1680611b6f57506006546001600160a01b031633145b611b77575f80fd5b600d546301000000900460ff16611bee5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b6064820152608401610329565b5f5b81811015610acb57611c61838383818110611c0d57611c0d6139c2565b9050606002015f0135848484818110611c2857611c286139c2565b90506060020160200135858585818110611c4457611c446139c2565b9050606002016040016020810190611c5c9190613405565b612691565b80611c6b81613a37565b915050611bf0565b611c7b611fd1565b5f815111611cd55760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b6064820152608401610329565b600a610ce98282613eb3565b606060018054610a1190613953565b81611cfa81612050565b610acb838361280e565b611d0c611fd1565b600d805463ff00000019169055611add6113b0565b836001600160a01b0381163314611d3b57611d3b33612050565b306001600160a01b03851603611d635760405162461bcd60e51b815260040161032990613a4f565b611d6f85858585612819565b5050505050565b611d7e611fd1565b611d8661154c565b305f90815260126020908152604080832080548251818502810185019093528083529192909190830182828015611dda57602002820191905f5260205f20905b815481526020019060010190808311611dc6575b505050505090505f5b8151811015610ce957611e01828281518110610cca57610cca6139c2565b80611e0b81613a37565b915050611de3565b60605f600a8054611e2390613953565b905011611e815760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b6064820152608401610329565b611e8a8261222f565b611eee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610329565b600a611ef98361284b565b604051602001611f0a929190613f6e565b6040516020818303038152906040529050919050565b611f28611fd1565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b600b80546114cd90613953565b611f60611fd1565b6001600160a01b038116611fc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610329565b611fce81612640565b50565b6006546001600160a01b03163314611add5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610329565b6120348161222f565b611fce5760405162461bcd60e51b81526004016103299061398b565b6008546001600160a01b03163b15611fce57600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190613ffe565b611fce5760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f7765640000000000000000006044820152606401610329565b5f61212a82611600565b9050806001600160a01b0316836001600160a01b0316036121975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610329565b336001600160a01b03821614806121b357506121b38133610880565b6122255760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610329565b610acb83836128db565b5f908152600260205260409020546001600160a01b0316151590565b5f8061225683611600565b9050806001600160a01b0316846001600160a01b0316148061229c57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b806122c05750836001600160a01b03166122b584610a92565b6001600160a01b0316145b949350505050565b6122d18161222f565b6122ed5760405162461bcd60e51b81526004016103299061398b565b5f8181526011602090815260408083208151808301835281548082526001928301548286015285526010909352908320805492939192909190612331908490613d51565b925050819055506001600c5f82825461234a9190613d51565b90915550505f8281526011602052604081208181556001015561236c82612948565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d5905f90a25050565b6123a4338261224b565b6123c05760405162461bcd60e51b8152600401610329906139d6565b610acb8383836129e7565b5f6123d530611a48565b90505f8111611fce5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b6064820152608401610329565b5f6124526080830183613d0c565b9050116124ad5760405162461bcd60e51b8152602060048201526024808201527f466572616c66696c6553616c65446174613a20746f6b656e49647320697320656044820152636d70747960e01b6064820152608401610329565b6124ba60a0820182613d0c565b90506124c96080830183613d0c565b90501461253e5760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6553616c65446174613a20746f6b656e49647320616e642060448201527f726576656e7565536861726573206c656e677468206d69736d617463680000006064820152608401610329565b42816040013511611fce5760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b6064820152608401610329565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c859052603c812081906125d890848787612b56565b6009546001600160a01b039081169116149695505050505050565b6125fe8484846129e7565b61260a84848484612b7c565b610d3a5760405162461bcd60e51b815260040161032990614019565b610acb83838360405180602001604052805f815250611d21565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f838152600f602052604090205415156126aa8461284b565b6040516020016126ba919061406b565b604051602081830303815290604052906126e75760405162461bcd60e51b8152600401610329919061346b565b505f838152600f6020908152604080832054601090925290912054106127615760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b6064820152608401610329565b6001600c5f8282546127739190613ddf565b90915550505f838152601060205260408120805460019290612796908490613ddf565b909155505060408051808201825284815260208082018581525f86815260119092529290209051815590516001909101556127d18183612c76565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610ce9338383612def565b612823338361224b565b61283f5760405162461bcd60e51b8152600401610329906139d6565b610d3a848484846125f3565b60605f61285783612ebc565b60010190505f816001600160401b03811115612875576128756134bc565b6040519080825280601f01601f19166020018201604052801561289f576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846128a9575b509392505050565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061290f82611600565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f61295282611600565b9050612961815f846001612f93565b61296a82611600565b5f83815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080545f190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b03166129fa82611600565b6001600160a01b031614612a205760405162461bcd60e51b8152600401610329906140c7565b6001600160a01b038216612a825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610329565b612a8f8383836001612f93565b826001600160a01b0316612aa282611600565b6001600160a01b031614612ac85760405162461bcd60e51b8152600401610329906140c7565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5f805f612b65878787876130a9565b91509150612b7281613166565b5095945050505050565b5f6001600160a01b0384163b15612c6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bbf90339089908890889060040161410c565b6020604051808303815f875af1925050508015612bf9575060408051601f3d908101601f19168201909252612bf69181019061413e565b60015b612c54573d808015612c26576040519150601f19603f3d011682016040523d82523d5f602084013e612c2b565b606091505b5080515f03612c4c5760405162461bcd60e51b815260040161032990614019565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c0565b5060016122c0565b6001600160a01b038216612ccc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610329565b612cd58161222f565b15612d225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610329565b612d2f5f83836001612f93565b612d388161222f565b15612d855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610329565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031603612e505760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610329565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612efa5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612f26576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f4457662386f26fc10000830492506010015b6305f5e1008310612f5c576305f5e100830492506008015b6127108310612f7057612710830492506004015b60648310612f82576064830492506002015b600a83106109d55760010192915050565b60018111156130025760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610329565b816001600160a01b0385161580159061302d5750836001600160a01b0316856001600160a01b031614155b1561303c5761303c85826132af565b6001600160a01b038416158015906130665750846001600160a01b0316846001600160a01b031614155b15611d6f576001600160a01b0384165f90815260126020908152604080832080546001810182559084528284208101859055848452601390925290912055611d6f565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156130de57505f9050600361315d565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561312f573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116613157575f6001925092505061315d565b91505f90505b94509492505050565b5f81600481111561317957613179614159565b036131815750565b600181600481111561319557613195614159565b036131e25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610329565b60028160048111156131f6576131f6614159565b036132435760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610329565b600381600481111561325757613257614159565b03611fce5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610329565b5f60016132bb84611a48565b6132c59190613d51565b5f83815260136020526040902054909150808214613365576001600160a01b0384165f908152601260205260408120805484908110613306576133066139c2565b905f5260205f20015490508060125f876001600160a01b03166001600160a01b031681526020019081526020015f208381548110613346576133466139c2565b5f91825260208083209091019290925591825260139052604090208190555b5f8381526013602090815260408083208390556001600160a01b03871683526012909152902080548061339a5761339a61416d565b600190038181905f5260205f20015f9055905550505050565b6001600160e01b031981168114611fce575f80fd5b5f602082840312156133d8575f80fd5b81356133e3816133b3565b9392505050565b80356001600160a01b0381168114613400575f80fd5b919050565b5f60208284031215613415575f80fd5b6133e3826133ea565b5f5b83811015613438578181015183820152602001613420565b50505f910152565b5f815180845261345781602086016020860161341e565b601f01601f19169290920160200192915050565b602081525f6133e36020830184613440565b5f6020828403121561348d575f80fd5b5035919050565b5f80604083850312156134a5575f80fd5b6134ae836133ea565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156134f8576134f86134bc565b604052919050565b5f6001600160401b03821115613518576135186134bc565b5060051b60200190565b5f82601f830112613531575f80fd5b8135602061354661354183613500565b6134d0565b82815260059290921b84018101918181019086841115613564575f80fd5b8286015b8481101561357f5780358352918301918301613568565b509695505050505050565b5f6020828403121561359a575f80fd5b81356001600160401b038111156135af575f80fd5b6122c084828501613522565b5f805f606084860312156135cd575f80fd5b6135d6846133ea565b92506135e4602085016133ea565b9150604084013590509250925092565b5f805f8060808587031215613607575f80fd5b8435935060208501359250604085013560ff81168114613625575f80fd5b915060608501356001600160401b0381111561363f575f80fd5b850160e08188031215613650575f80fd5b939692955090935050565b5f806040838503121561366c575f80fd5b82356001600160401b0380821115613682575f80fd5b61368e86838701613522565b93506020915081850135818111156136a4575f80fd5b85019050601f810186136136b6575f80fd5b80356136c461354182613500565b81815260059190911b820183019083810190888311156136e2575f80fd5b928401925b82841015613707576136f8846133ea565b825292840192908401906136e7565b80955050505050509250929050565b602080825282518282018190525f9190848201906040850190845b8181101561374d57835183529284019291840191600101613731565b50909695505050505050565b5f806020838503121561376a575f80fd5b82356001600160401b0380821115613780575f80fd5b818501915085601f830112613793575f80fd5b8135818111156137a1575f80fd5b8660206060830285010111156137b5575f80fd5b60209290920196919550909350505050565b5f6001600160401b038311156137df576137df6134bc565b6137f2601f8401601f19166020016134d0565b9050828152838383011115613805575f80fd5b828260208301375f602084830101529392505050565b5f6020828403121561382b575f80fd5b81356001600160401b03811115613840575f80fd5b8201601f81018413613850575f80fd5b6122c0848235602084016137c7565b8015158114611fce575f80fd5b80356134008161385f565b5f8060408385031215613888575f80fd5b613891836133ea565b915060208301356138a18161385f565b809150509250929050565b5f805f80608085870312156138bf575f80fd5b6138c8856133ea565b93506138d6602086016133ea565b92506040850135915060608501356001600160401b038111156138f7575f80fd5b8501601f81018713613907575f80fd5b613916878235602084016137c7565b91505092959194509250565b5f8060408385031215613933575f80fd5b61393c836133ea565b915061394a602084016133ea565b90509250929050565b600181811c9082168061396757607f821691505b60208210810361398557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b5f60018201613a4857613a48613a23565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b5f60208284031215613abc575f80fd5b81356133e38161385f565b5f808335601e19843603018112613adc575f80fd5b83016020810192503590506001600160401b03811115613afa575f80fd5b8060051b3603821315613b0b575f80fd5b9250929050565b8183525f60208085019450825f5b85811015613b56576001600160a01b03613b39836133ea565b168752818301358388015260409687019690910190600101613b20565b509495945050505050565b8183525f6020808501808196508560051b81019150845f5b87811015613be35782840389528135601e19883603018112613b99575f80fd5b870185810190356001600160401b03811115613bb3575f80fd5b8060061b3603821315613bc4575f80fd5b613bcf868284613b12565b9a87019a9550505090840190600101613b79565b5091979650505050505050565b8035825260208082013590830152604080820135908301526001600160a01b03613c1c606083016133ea565b1660608301525f613c306080830183613ac7565b60e06080860181905285018190526101006001600160fb1b03821115613c54575f80fd5b8160051b91508183828801378186019250613c7260a0860186613ac7565b9250818785030160a0880152613c8b8285018483613b61565b9350505050613c9c60c0840161386c565b80151560c08601526128d3565b84815283602082015260ff83166040820152608060608201525f613cd06080830184613bf0565b9695505050505050565b8381526001600160a01b03831660208201526060604082018190525f90613d0390830184613bf0565b95945050505050565b5f808335601e19843603018112613d21575f80fd5b8301803591506001600160401b03821115613d3a575f80fd5b6020019150600581901b3603821315613b0b575f80fd5b818103818111156109d5576109d5613a23565b5f82613d7e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f808335601e19843603018112613d98575f80fd5b8301803591506001600160401b03821115613db1575f80fd5b6020019150600681901b3603821315613b0b575f80fd5b80820281158282048414176109d5576109d5613a23565b808201808211156109d5576109d5613a23565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b5f61ffff808316818103613e5c57613e5c613a23565b6001019392505050565b601f821115610acb575f81815260208120601f850160051c81016020861015613e8c5750805b601f850160051c820191505b81811015613eab57828155600101613e98565b505050505050565b81516001600160401b03811115613ecc57613ecc6134bc565b613ee081613eda8454613953565b84613e66565b602080601f831160018114613f13575f8415613efc5750858301515b5f19600386901b1c1916600185901b178555613eab565b5f85815260208120601f198616915b82811015613f4157888601518255948401946001909101908401613f22565b5085821015613f5e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f808454613f7b81613953565b60018281168015613f935760018114613fa857613fd4565b60ff1984168752821515830287019450613fd4565b885f526020805f205f5b85811015613fcb5781548a820152908401908201613fb2565b50505082870194505b50602f60f81b845286519250613ff08382860160208a0161341e565b919092010195945050505050565b5f6020828403121561400e575f80fd5b81516133e38161385f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b60208201525f82516140ba81602f85016020870161341e565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90613cd090830184613440565b5f6020828403121561414e575f80fd5b81516133e3816133b3565b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220bb3ad1f622110883fcc52fdf46d7f18d71868ed97b6a403fa1d61f645615a56664736f6c634300081400330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000013466572616c2046696c6520e28094204e3d31320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303335000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d5144347a61436a62544a6f6251664e736f594a44386f72667158453536476f70533738764a367550354a56550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090

Deployed Bytecode

0x6080604052600436106102a8575f3560e01c80636817031b1161016f578063b66a0e5d116100d8578063e985e9c511610092578063f07e7fd01161006d578063f07e7fd014610906578063f2fde38b14610925578063f4e638be14610944578063fbfa77cf1461096b575f80fd5b8063e985e9c514610866578063eb5c60f2146108ad578063eee608a4146108d8575f80fd5b8063b66a0e5d146107cd578063b88d4fde146107e1578063b9b8311a14610800578063c87b56dd14610814578063dc78ac1c14610833578063e8a3d48514610852575f80fd5b80638cba1c67116101295780638cba1c67146107265780638da5cb5b146107455780638ef79e911461076257806395d89b4114610781578063a07c7ce414610795578063a22cb465146107ae575f80fd5b80636817031b1461065e5780636c19e7831461067d57806370a082311461069c578063715018a6146106bb5780637f06ee06146106cf5780638462151c146106fa575f80fd5b806323b872dd116102115780634e99b800116101cb5780634e99b8001461059a578063530da8ef146105ae57806355367ba9146105cc5780636352211e146105e057806363e60230146105ff57806365a46e081461063f575f80fd5b806323b872dd146104f65780632977e4b3146105155780632f745c591461052857806333e364cb1461054757806342842e0e1461055b5780634bf365df1461057a575f80fd5b80631623528f116102625780631623528f14610421578063167ddf6e1461044057806318160ddd1461047a57806321fe0c641461049d578063238ac933146104bc57806323aed228146104d9575f80fd5b806301ffc9a714610338578063031205061461036c57806306fdde031461038b578063081812fc146103ac578063095ea7b3146103e3578063114ba8ee14610402575f80fd5b3661033457600e546001600160a01b031633146103325760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b5f80fd5b348015610343575f80fd5b506103576103523660046133c8565b61098a565b60405190151581526020015b60405180910390f35b348015610377575f80fd5b50610332610386366004613405565b6109db565b348015610396575f80fd5b5061039f610a03565b604051610363919061346b565b3480156103b7575f80fd5b506103cb6103c636600461347d565b610a92565b6040516001600160a01b039091168152602001610363565b3480156103ee575f80fd5b506103326103fd366004613494565b610ab7565b34801561040d575f80fd5b5061033261041c366004613405565b610ad0565b34801561042c575f80fd5b5061033261043b366004613405565b610afa565b34801561044b575f80fd5b5061045f61045a36600461347d565b610ba3565b60408051825181526020928301519281019290925201610363565b348015610485575f80fd5b5061048f600c5481565b604051908152602001610363565b3480156104a8575f80fd5b506103326104b736600461358a565b610c04565b3480156104c7575f80fd5b506009546001600160a01b03166103cb565b3480156104e4575f80fd5b50600d5462010000900460ff16610357565b348015610501575f80fd5b506103326105103660046135bb565b610ced565b6103326105233660046135f4565b610d40565b348015610533575f80fd5b5061048f610542366004613494565b61130a565b348015610552575f80fd5b506103326113b0565b348015610566575f80fd5b506103326105753660046135bb565b611473565b348015610585575f80fd5b50600d54610357906301000000900460ff1681565b3480156105a5575f80fd5b5061039f6114c0565b3480156105b9575f80fd5b50600d5461035790610100900460ff1681565b3480156105d7575f80fd5b5061033261154c565b3480156105eb575f80fd5b506103cb6105fa36600461347d565b611600565b34801561060a575f80fd5b5061039f6040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561064a575f80fd5b5061033261065936600461365b565b611634565b348015610669575f80fd5b50610332610678366004613405565b611927565b348015610688575f80fd5b50610332610697366004613405565b6119bd565b3480156106a7575f80fd5b5061048f6106b6366004613405565b611a48565b3480156106c6575f80fd5b50610332611acc565b3480156106da575f80fd5b5061048f6106e936600461347d565b5f9081526010602052604090205490565b348015610705575f80fd5b50610719610714366004613405565b611adf565b6040516103639190613716565b348015610731575f80fd5b50610332610740366004613759565b611b48565b348015610750575f80fd5b506006546001600160a01b03166103cb565b34801561076d575f80fd5b5061033261077c36600461381b565b611c73565b34801561078c575f80fd5b5061039f611ce1565b3480156107a0575f80fd5b50600d546103579060ff1681565b3480156107b9575f80fd5b506103326107c8366004613877565b611cf0565b3480156107d8575f80fd5b50610332611d04565b3480156107ec575f80fd5b506103326107fb3660046138ac565b611d21565b34801561080b575f80fd5b50610332611d76565b34801561081f575f80fd5b5061039f61082e36600461347d565b611e13565b34801561083e575f80fd5b5061033261084d366004613405565b611f20565b34801561085d575f80fd5b5061039f611f4b565b348015610871575f80fd5b50610357610880366004613922565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b3480156108b8575f80fd5b5061048f6108c736600461347d565b5f908152600f602052604090205490565b3480156108e3575f80fd5b506103576108f2366004613405565b60076020525f908152604090205460ff1681565b348015610911575f80fd5b506008546103cb906001600160a01b031681565b348015610930575f80fd5b5061033261093f366004613405565b611f58565b34801561094f575f80fd5b50600d546103cb9064010000000090046001600160a01b031681565b348015610976575f80fd5b50600e546103cb906001600160a01b031681565b5f6001600160e01b031982166380ac58cd60e01b14806109ba57506001600160e01b03198216635b5e139f60e01b145b806109d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6109e3611fd1565b6001600160a01b03165f908152600760205260409020805460ff19169055565b60605f8054610a1190613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90613953565b8015610a885780601f10610a5f57610100808354040283529160200191610a88565b820191905f5260205f20905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b5f610a9c8261202b565b505f908152600460205260409020546001600160a01b031690565b81610ac181612050565b610acb8383612120565b505050565b610ad8611fd1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610b02611fd1565b6001600160a01b038116610b755760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b6064820152608401610329565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b604080518082019091525f8082526020820152610bbf8261222f565b610bdb5760405162461bcd60e51b81526004016103299061398b565b505f90815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610c6b5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b6064820152608401610329565b5f5b8151811015610ce957610c9933838381518110610c8c57610c8c6139c2565b602002602001015161224b565b610cb55760405162461bcd60e51b8152600401610329906139d6565b610cd7828281518110610cca57610cca6139c2565b60200260200101516122c8565b80610ce181613a37565b915050610c6d565b5050565b826001600160a01b0381163314610d0757610d0733612050565b306001600160a01b03841603610d2f5760405162461bcd60e51b815260040161032990613a4f565b610d3a84848461239a565b50505050565b600d5462010000900460ff16610dab5760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a2073616c65206973206e6044820152691bdd081cdd185c9d195960b21b6064820152608401610329565b610db36123cb565b610dbc81612444565b610dcc60e0820160c08301613aac565b610e3b5780353414610e365760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207060448201526c185e5b595b9d08185b5bdd5b9d609a1b6064820152608401610329565b610e9f565b600e54604051632eeee16360e01b81526001600160a01b0390911690632eeee16390610e71908790879087908790600401613ca9565b5f604051808303815f87803b158015610e88575f80fd5b505af1158015610e9a573d5f803e3d5ffd5b505050505b5f463083604051602001610eb593929190613cda565b604051602081830303815290604052805190602001209050610ed98186868661259c565b610f365760405162461bcd60e51b815260206004820152602860248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207360448201526769676e617475726560c01b6064820152608401610329565b5f602083013583351115610f6f57610f516080840184613d0c565b9050610f6260208501358535613d51565b610f6c9190613d64565b90505b5f805f5b610f806080870187613d0c565b905081101561122e57610fd530610f9d6080890160608a01613405565b610faa60808a018a613d0c565b85818110610fba57610fba6139c2565b9050602002013560405180602001604052805f8152506125f3565b83156111b0575f5b610fea60a0880188613d0c565b83818110610ffa57610ffa6139c2565b905060200281019061100c9190613d83565b90508110156111ae575f61271061102660a08a018a613d0c565b85818110611036576110366139c2565b90506020028101906110489190613d83565b84818110611058576110586139c2565b905060400201602001358761106d9190613dc8565b6110779190613d64565b600d5490915064010000000090046001600160a01b031661109b60a08a018a613d0c565b858181106110ab576110ab6139c2565b90506020028101906110bd9190613d83565b848181106110cd576110cd6139c2565b6110e39260206040909202019081019150613405565b6001600160a01b031603611103576110fb8185613ddf565b93505061119c565b61110d8186613ddf565b945061111c60a0890189613d0c565b8481811061112c5761112c6139c2565b905060200281019061113e9190613d83565b8381811061114e5761114e6139c2565b6111649260206040909202019081019150613405565b6001600160a01b03166108fc8290811502906040515f60405180830381858888f19350505050158015611199573d5f803e3d5ffd5b50505b806111a681613a37565b915050610fdd565b505b6111bd6080870187613d0c565b828181106111cd576111cd6139c2565b905060200201358660600160208101906111e79190613405565b6001600160a01b03167f0475389cd69b8d3163620b43283bf74e8fc71020c3c6cef2a529b5c405e9687f60405160405180910390a38061122681613a37565b915050610f73565b506112398183613ddf565b61124860208701358735613d51565b10156112ab5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f74616c2062707360448201526b0206f7665722031302c3030360a41b6064820152608401610329565b5f6112b7838735613d51565b905080156112ff57600d546040516401000000009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156112fd573d5f803e3d5ffd5b505b505050505050505050565b5f61131483611a48565b82106113765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610329565b6001600160a01b0383165f90815260126020526040902080548390811061139f5761139f6139c2565b905f5260205f200154905092915050565b6113b8611fd1565b600d546301000000900460ff16156113e25760405162461bcd60e51b815260040161032990613df2565b600d5462010000900460ff16156114585760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b6064820152608401610329565b6114606123cb565b600d805462ff0000191662010000179055565b826001600160a01b038116331461148d5761148d33612050565b306001600160a01b038416036114b55760405162461bcd60e51b815260040161032990613a4f565b610d3a848484612626565b600a80546114cd90613953565b80601f01602080910402602001604051908101604052809291908181526020018280546114f990613953565b80156115445780601f1061151b57610100808354040283529160200191611544565b820191905f5260205f20905b81548152906001019060200180831161152757829003601f168201915b505050505081565b611554611fd1565b600d546301000000900460ff161561157e5760405162461bcd60e51b815260040161032990613df2565b600d5462010000900460ff166115f25760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b6064820152608401610329565b600d805462ff000019169055565b5f818152600260205260408120546001600160a01b0316806109d55760405162461bcd60e51b81526004016103299061398b565b61163c611fd1565b5f825111801561164c57505f8151115b6116cc5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a401610329565b80518251146117585760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a401610329565b61176061154c565b305f818152601260209081526040808320805482518185028101850190935280835291929091908301828280156117b457602002820191905f5260205f20905b8154815260200190600101908083116117a0575b505050505090505f5b81518110156118aa575f8282815181106117d9576117d96139c2565b6020908102919091018101515f81815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff16101561189457878161ffff1681518110611830576118306139c2565b6020026020010151825f015103611882575f878261ffff1681518110611858576118586139c2565b6020026020010151905061187c87828660405180602001604052805f8152506125f3565b50611894565b8061188c81613e46565b91505061180d565b50505080806118a290613a37565b9150506117bd565b506118b482611a48565b15610d3a5760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f000000006064820152608401610329565b61192f611fd1565b6001600160a01b03811661199b5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a207661756c745f20697360448201526c207a65726f206164647265737360981b6064820152608401610329565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6119c5611fd1565b6001600160a01b038116611a265760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b6064820152608401610329565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216611ab15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610329565b506001600160a01b03165f9081526003602052604090205490565b611ad4611fd1565b611add5f612640565b565b6001600160a01b0381165f90815260126020908152604091829020805483518184028101840190945280845260609392830182828015611b3c57602002820191905f5260205f20905b815481526020019060010190808311611b28575b50505050509050919050565b335f9081526007602052604090205460ff1680611b6f57506006546001600160a01b031633145b611b77575f80fd5b600d546301000000900460ff16611bee5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b6064820152608401610329565b5f5b81811015610acb57611c61838383818110611c0d57611c0d6139c2565b9050606002015f0135848484818110611c2857611c286139c2565b90506060020160200135858585818110611c4457611c446139c2565b9050606002016040016020810190611c5c9190613405565b612691565b80611c6b81613a37565b915050611bf0565b611c7b611fd1565b5f815111611cd55760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b6064820152608401610329565b600a610ce98282613eb3565b606060018054610a1190613953565b81611cfa81612050565b610acb838361280e565b611d0c611fd1565b600d805463ff00000019169055611add6113b0565b836001600160a01b0381163314611d3b57611d3b33612050565b306001600160a01b03851603611d635760405162461bcd60e51b815260040161032990613a4f565b611d6f85858585612819565b5050505050565b611d7e611fd1565b611d8661154c565b305f90815260126020908152604080832080548251818502810185019093528083529192909190830182828015611dda57602002820191905f5260205f20905b815481526020019060010190808311611dc6575b505050505090505f5b8151811015610ce957611e01828281518110610cca57610cca6139c2565b80611e0b81613a37565b915050611de3565b60605f600a8054611e2390613953565b905011611e815760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b6064820152608401610329565b611e8a8261222f565b611eee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610329565b600a611ef98361284b565b604051602001611f0a929190613f6e565b6040516020818303038152906040529050919050565b611f28611fd1565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b600b80546114cd90613953565b611f60611fd1565b6001600160a01b038116611fc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610329565b611fce81612640565b50565b6006546001600160a01b03163314611add5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610329565b6120348161222f565b611fce5760405162461bcd60e51b81526004016103299061398b565b6008546001600160a01b03163b15611fce57600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190613ffe565b611fce5760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f7765640000000000000000006044820152606401610329565b5f61212a82611600565b9050806001600160a01b0316836001600160a01b0316036121975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610329565b336001600160a01b03821614806121b357506121b38133610880565b6122255760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610329565b610acb83836128db565b5f908152600260205260409020546001600160a01b0316151590565b5f8061225683611600565b9050806001600160a01b0316846001600160a01b0316148061229c57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b806122c05750836001600160a01b03166122b584610a92565b6001600160a01b0316145b949350505050565b6122d18161222f565b6122ed5760405162461bcd60e51b81526004016103299061398b565b5f8181526011602090815260408083208151808301835281548082526001928301548286015285526010909352908320805492939192909190612331908490613d51565b925050819055506001600c5f82825461234a9190613d51565b90915550505f8281526011602052604081208181556001015561236c82612948565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d5905f90a25050565b6123a4338261224b565b6123c05760405162461bcd60e51b8152600401610329906139d6565b610acb8383836129e7565b5f6123d530611a48565b90505f8111611fce5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b6064820152608401610329565b5f6124526080830183613d0c565b9050116124ad5760405162461bcd60e51b8152602060048201526024808201527f466572616c66696c6553616c65446174613a20746f6b656e49647320697320656044820152636d70747960e01b6064820152608401610329565b6124ba60a0820182613d0c565b90506124c96080830183613d0c565b90501461253e5760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6553616c65446174613a20746f6b656e49647320616e642060448201527f726576656e7565536861726573206c656e677468206d69736d617463680000006064820152608401610329565b42816040013511611fce5760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b6064820152608401610329565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c859052603c812081906125d890848787612b56565b6009546001600160a01b039081169116149695505050505050565b6125fe8484846129e7565b61260a84848484612b7c565b610d3a5760405162461bcd60e51b815260040161032990614019565b610acb83838360405180602001604052805f815250611d21565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f838152600f602052604090205415156126aa8461284b565b6040516020016126ba919061406b565b604051602081830303815290604052906126e75760405162461bcd60e51b8152600401610329919061346b565b505f838152600f6020908152604080832054601090925290912054106127615760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b6064820152608401610329565b6001600c5f8282546127739190613ddf565b90915550505f838152601060205260408120805460019290612796908490613ddf565b909155505060408051808201825284815260208082018581525f86815260119092529290209051815590516001909101556127d18183612c76565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610ce9338383612def565b612823338361224b565b61283f5760405162461bcd60e51b8152600401610329906139d6565b610d3a848484846125f3565b60605f61285783612ebc565b60010190505f816001600160401b03811115612875576128756134bc565b6040519080825280601f01601f19166020018201604052801561289f576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846128a9575b509392505050565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061290f82611600565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f61295282611600565b9050612961815f846001612f93565b61296a82611600565b5f83815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080545f190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b03166129fa82611600565b6001600160a01b031614612a205760405162461bcd60e51b8152600401610329906140c7565b6001600160a01b038216612a825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610329565b612a8f8383836001612f93565b826001600160a01b0316612aa282611600565b6001600160a01b031614612ac85760405162461bcd60e51b8152600401610329906140c7565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5f805f612b65878787876130a9565b91509150612b7281613166565b5095945050505050565b5f6001600160a01b0384163b15612c6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bbf90339089908890889060040161410c565b6020604051808303815f875af1925050508015612bf9575060408051601f3d908101601f19168201909252612bf69181019061413e565b60015b612c54573d808015612c26576040519150601f19603f3d011682016040523d82523d5f602084013e612c2b565b606091505b5080515f03612c4c5760405162461bcd60e51b815260040161032990614019565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c0565b5060016122c0565b6001600160a01b038216612ccc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610329565b612cd58161222f565b15612d225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610329565b612d2f5f83836001612f93565b612d388161222f565b15612d855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610329565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031603612e505760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610329565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612efa5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612f26576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f4457662386f26fc10000830492506010015b6305f5e1008310612f5c576305f5e100830492506008015b6127108310612f7057612710830492506004015b60648310612f82576064830492506002015b600a83106109d55760010192915050565b60018111156130025760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610329565b816001600160a01b0385161580159061302d5750836001600160a01b0316856001600160a01b031614155b1561303c5761303c85826132af565b6001600160a01b038416158015906130665750846001600160a01b0316846001600160a01b031614155b15611d6f576001600160a01b0384165f90815260126020908152604080832080546001810182559084528284208101859055848452601390925290912055611d6f565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156130de57505f9050600361315d565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561312f573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116613157575f6001925092505061315d565b91505f90505b94509492505050565b5f81600481111561317957613179614159565b036131815750565b600181600481111561319557613195614159565b036131e25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610329565b60028160048111156131f6576131f6614159565b036132435760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610329565b600381600481111561325757613257614159565b03611fce5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610329565b5f60016132bb84611a48565b6132c59190613d51565b5f83815260136020526040902054909150808214613365576001600160a01b0384165f908152601260205260408120805484908110613306576133066139c2565b905f5260205f20015490508060125f876001600160a01b03166001600160a01b031681526020019081526020015f208381548110613346576133466139c2565b5f91825260208083209091019290925591825260139052604090208190555b5f8381526013602090815260408083208390556001600160a01b03871683526012909152902080548061339a5761339a61416d565b600190038181905f5260205f20015f9055905550505050565b6001600160e01b031981168114611fce575f80fd5b5f602082840312156133d8575f80fd5b81356133e3816133b3565b9392505050565b80356001600160a01b0381168114613400575f80fd5b919050565b5f60208284031215613415575f80fd5b6133e3826133ea565b5f5b83811015613438578181015183820152602001613420565b50505f910152565b5f815180845261345781602086016020860161341e565b601f01601f19169290920160200192915050565b602081525f6133e36020830184613440565b5f6020828403121561348d575f80fd5b5035919050565b5f80604083850312156134a5575f80fd5b6134ae836133ea565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156134f8576134f86134bc565b604052919050565b5f6001600160401b03821115613518576135186134bc565b5060051b60200190565b5f82601f830112613531575f80fd5b8135602061354661354183613500565b6134d0565b82815260059290921b84018101918181019086841115613564575f80fd5b8286015b8481101561357f5780358352918301918301613568565b509695505050505050565b5f6020828403121561359a575f80fd5b81356001600160401b038111156135af575f80fd5b6122c084828501613522565b5f805f606084860312156135cd575f80fd5b6135d6846133ea565b92506135e4602085016133ea565b9150604084013590509250925092565b5f805f8060808587031215613607575f80fd5b8435935060208501359250604085013560ff81168114613625575f80fd5b915060608501356001600160401b0381111561363f575f80fd5b850160e08188031215613650575f80fd5b939692955090935050565b5f806040838503121561366c575f80fd5b82356001600160401b0380821115613682575f80fd5b61368e86838701613522565b93506020915081850135818111156136a4575f80fd5b85019050601f810186136136b6575f80fd5b80356136c461354182613500565b81815260059190911b820183019083810190888311156136e2575f80fd5b928401925b82841015613707576136f8846133ea565b825292840192908401906136e7565b80955050505050509250929050565b602080825282518282018190525f9190848201906040850190845b8181101561374d57835183529284019291840191600101613731565b50909695505050505050565b5f806020838503121561376a575f80fd5b82356001600160401b0380821115613780575f80fd5b818501915085601f830112613793575f80fd5b8135818111156137a1575f80fd5b8660206060830285010111156137b5575f80fd5b60209290920196919550909350505050565b5f6001600160401b038311156137df576137df6134bc565b6137f2601f8401601f19166020016134d0565b9050828152838383011115613805575f80fd5b828260208301375f602084830101529392505050565b5f6020828403121561382b575f80fd5b81356001600160401b03811115613840575f80fd5b8201601f81018413613850575f80fd5b6122c0848235602084016137c7565b8015158114611fce575f80fd5b80356134008161385f565b5f8060408385031215613888575f80fd5b613891836133ea565b915060208301356138a18161385f565b809150509250929050565b5f805f80608085870312156138bf575f80fd5b6138c8856133ea565b93506138d6602086016133ea565b92506040850135915060608501356001600160401b038111156138f7575f80fd5b8501601f81018713613907575f80fd5b613916878235602084016137c7565b91505092959194509250565b5f8060408385031215613933575f80fd5b61393c836133ea565b915061394a602084016133ea565b90509250929050565b600181811c9082168061396757607f821691505b60208210810361398557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b5f60018201613a4857613a48613a23565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b5f60208284031215613abc575f80fd5b81356133e38161385f565b5f808335601e19843603018112613adc575f80fd5b83016020810192503590506001600160401b03811115613afa575f80fd5b8060051b3603821315613b0b575f80fd5b9250929050565b8183525f60208085019450825f5b85811015613b56576001600160a01b03613b39836133ea565b168752818301358388015260409687019690910190600101613b20565b509495945050505050565b8183525f6020808501808196508560051b81019150845f5b87811015613be35782840389528135601e19883603018112613b99575f80fd5b870185810190356001600160401b03811115613bb3575f80fd5b8060061b3603821315613bc4575f80fd5b613bcf868284613b12565b9a87019a9550505090840190600101613b79565b5091979650505050505050565b8035825260208082013590830152604080820135908301526001600160a01b03613c1c606083016133ea565b1660608301525f613c306080830183613ac7565b60e06080860181905285018190526101006001600160fb1b03821115613c54575f80fd5b8160051b91508183828801378186019250613c7260a0860186613ac7565b9250818785030160a0880152613c8b8285018483613b61565b9350505050613c9c60c0840161386c565b80151560c08601526128d3565b84815283602082015260ff83166040820152608060608201525f613cd06080830184613bf0565b9695505050505050565b8381526001600160a01b03831660208201526060604082018190525f90613d0390830184613bf0565b95945050505050565b5f808335601e19843603018112613d21575f80fd5b8301803591506001600160401b03821115613d3a575f80fd5b6020019150600581901b3603821315613b0b575f80fd5b818103818111156109d5576109d5613a23565b5f82613d7e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f808335601e19843603018112613d98575f80fd5b8301803591506001600160401b03821115613db1575f80fd5b6020019150600681901b3603821315613b0b575f80fd5b80820281158282048414176109d5576109d5613a23565b808201808211156109d5576109d5613a23565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b5f61ffff808316818103613e5c57613e5c613a23565b6001019392505050565b601f821115610acb575f81815260208120601f850160051c81016020861015613e8c5750805b601f850160051c820191505b81811015613eab57828155600101613e98565b505050505050565b81516001600160401b03811115613ecc57613ecc6134bc565b613ee081613eda8454613953565b84613e66565b602080601f831160018114613f13575f8415613efc5750858301515b5f19600386901b1c1916600185901b178555613eab565b5f85815260208120601f198616915b82811015613f4157888601518255948401946001909101908401613f22565b5085821015613f5e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f808454613f7b81613953565b60018281168015613f935760018114613fa857613fd4565b60ff1984168752821515830287019450613fd4565b885f526020805f205f5b85811015613fcb5781548a820152908401908201613fb2565b50505082870194505b50602f60f81b845286519250613ff08382860160208a0161341e565b919092010195945050505050565b5f6020828403121561400e575f80fd5b81516133e38161385f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b60208201525f82516140ba81602f85016020870161341e565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90613cd090830184613440565b5f6020828403121561414e575f80fd5b81516133e3816133b3565b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220bb3ad1f622110883fcc52fdf46d7f18d71868ed97b6a403fa1d61f645615a56664736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000013466572616c2046696c6520e28094204e3d31320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303335000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d5144347a61436a62544a6f6251664e736f594a44386f72667158453536476f70533738764a367550354a56550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000090

-----Decoded View---------------
Arg [0] : name_ (string): Feral File — N=12
Arg [1] : symbol_ (string): FF035
Arg [2] : burnable_ (bool): False
Arg [3] : bridgeable_ (bool): True
Arg [4] : signer_ (address): 0xBEb9F810862c40A144925f568b1853d72Acc492F
Arg [5] : vault_ (address): 0x455464F0d369dAC13002e81e9fAB857f6aD21795
Arg [6] : costReceiver_ (address): 0xBEb9F810862c40A144925f568b1853d72Acc492F
Arg [7] : contractURI_ (string): https://ipfs.bitmark.com/ipfs/QmQD4zaCjbTJobQfNsoYJD8orfqXE56GopS78vJ6uP5JVU
Arg [8] : seriesIds_ (uint256[]): 1,2,3,4,5,6,7,8,9,10,11,12
Arg [9] : seriesMaxSupplies_ (uint256[]): 144,144,144,144,144,144,144,144,144,144,144,144

-----Encoded View---------------
44 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f
Arg [5] : 000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795
Arg [6] : 000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [9] : 00000000000000000000000000000000000000000000000000000000000003e0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [11] : 466572616c2046696c6520e28094204e3d313200000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 4646303335000000000000000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [15] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d
Arg [16] : 5144347a61436a62544a6f6251664e736f594a44386f72667158453536476f70
Arg [17] : 533738764a367550354a56550000000000000000000000000000000000000000
Arg [18] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [28] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [29] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [30] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [31] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [43] : 0000000000000000000000000000000000000000000000000000000000000090


Deployed Bytecode Sourcemap

74923:20159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94538:5;;-1:-1:-1;;;;;94538:5:0;94516:10;:28;94494:138;;;;-1:-1:-1;;;94494:138:0;;216:2:1;94494:138:0;;;198:21:1;255:2;235:18;;;228:30;294:34;274:18;;;267:62;365:30;345:18;;;338:58;413:19;;94494:138:0;;;;;;;;;74923:20159;;;;;58926:305;;;;;;;;;;-1:-1:-1;58926:305:0;;;;;:::i;:::-;;:::i;:::-;;;1090:14:1;;1083:22;1065:41;;1053:2;1038:18;58926:305:0;;;;;;;;36236:102;;;;;;;;;;-1:-1:-1;36236:102:0;;;;;:::i;:::-;;:::i;59854:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;61366:171::-;;;;;;;;;;-1:-1:-1;61366:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2591:32:1;;;2573:51;;2561:2;2546:18;61366:171:0;2427:203:1;83889:190:0;;;;;;;;;;-1:-1:-1;83889:190:0;;;;;:::i;:::-;;:::i;38833:241::-;;;;;;;;;;-1:-1:-1;38833:241:0;;;;;:::i;:::-;;:::i;86283:254::-;;;;;;;;;;-1:-1:-1;86283:254:0;;;;;:::i;:::-;;:::i;79993:211::-;;;;;;;;;;-1:-1:-1;79993:211:0;;;;;:::i;:::-;;:::i;:::-;;;;3108:13:1;;3090:32;;3178:4;3166:17;;;3160:24;3138:20;;;3131:54;;;;3063:18;79993:211:0;2894:297:1;75534:26:0;;;;;;;;;;;;;;;;;;;3342:25:1;;;3330:2;3315:18;75534:26:0;3196:177:1;93555:417:0;;;;;;;;;;-1:-1:-1;93555:417:0;;;;;:::i;:::-;;:::i;35251:83::-;;;;;;;;;;-1:-1:-1;35319:7:0;;-1:-1:-1;;;;;35319:7:0;35251:83;;80588:82;;;;;;;;;;-1:-1:-1;80654:8:0;;;;;;;80588:82;;84137:347;;;;;;;;;;-1:-1:-1;84137:347:0;;;;;:::i;:::-;;:::i;86940:2688::-;;;;;;:::i;:::-;;:::i;78793:303::-;;;;;;;;;;-1:-1:-1;78793:303:0;;;;;:::i;:::-;;:::i;81096:356::-;;;;;;;;;;;;;:::i;84542:355::-;;;;;;;;;;-1:-1:-1;84542:355:0;;;;;:::i;:::-;;:::i;75728:27::-;;;;;;;;;;-1:-1:-1;75728:27:0;;;;;;;;;;;75423:26;;;;;;;;;;;;;:::i;75634:22::-;;;;;;;;;;-1:-1:-1;75634:22:0;;;;;;;;;;;81494:315;;;;;;;;;;;;;:::i;59564:223::-;;;;;;;;;;-1:-1:-1;59564:223:0;;;;;:::i;:::-;;:::i;75331:60::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75331:60:0;;;;;82269:1295;;;;;;;;;;-1:-1:-1;82269:1295:0;;;;;:::i;:::-;;:::i;80303:238::-;;;;;;;;;;-1:-1:-1;80303:238:0;;;;;:::i;:::-;;:::i;35073:170::-;;;;;;;;;;-1:-1:-1;35073:170:0;;;;;:::i;:::-;;:::i;59295:207::-;;;;;;;;;;-1:-1:-1;59295:207:0;;;;;:::i;:::-;;:::i;33065:103::-;;;;;;;;;;;;;:::i;79690:157::-;;;;;;;;;;-1:-1:-1;79690:157:0;;;;;:::i;:::-;79782:7;79809:30;;;:20;:30;;;;;;;79690:157;79145:140;;;;;;;;;;-1:-1:-1;79145:140:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;92114:367::-;;;;;;;;;;-1:-1:-1;92114:367:0;;;;;:::i;:::-;;:::i;32424:87::-;;;;;;;;;;-1:-1:-1;32497:6:0;;-1:-1:-1;;;;;32497:6:0;32424:87;;85941:230;;;;;;;;;;-1:-1:-1;85941:230:0;;;;;:::i;:::-;;:::i;60023:104::-;;;;;;;;;;;;;:::i;75586:20::-;;;;;;;;;;-1:-1:-1;75586:20:0;;;;;;;;83622:209;;;;;;;;;;-1:-1:-1;83622:209:0;;;;;:::i;:::-;;:::i;80955:98::-;;;;;;;;;;;;;:::i;84955:389::-;;;;;;;;;;-1:-1:-1;84955:389:0;;;;;:::i;:::-;;:::i;81876:286::-;;;;;;;;;;;;;:::i;85433:448::-;;;;;;;;;;-1:-1:-1;85433:448:0;;;;;:::i;:::-;;:::i;36129:99::-;;;;;;;;;;-1:-1:-1;36129:99:0;;;;;:::i;:::-;;:::i;75479:25::-;;;;;;;;;;;;;:::i;61835:164::-;;;;;;;;;;-1:-1:-1;61835:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;61956:25:0;;;61932:4;61956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;61835:164;79409:153;;;;;;;;;;-1:-1:-1;79409:153:0;;;;;:::i;:::-;79499:7;79526:28;;;:18;:28;;;;;;;79409:153;35937:40;;;;;;;;;;-1:-1:-1;35937:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37379:130;;;;;;;;;;-1:-1:-1;37379:130:0;;;;-1:-1:-1;;;;;37379:130:0;;;33323:201;;;;;;;;;;-1:-1:-1;33323:201:0;;;;;:::i;:::-;;:::i;75786:27::-;;;;;;;;;;-1:-1:-1;75786:27:0;;;;;;;-1:-1:-1;;;;;75786:27:0;;;75854:28;;;;;;;;;;-1:-1:-1;75854:28:0;;;;-1:-1:-1;;;;;75854:28:0;;;58926:305;59028:4;-1:-1:-1;;;;;;59065:40:0;;-1:-1:-1;;;59065:40:0;;:105;;-1:-1:-1;;;;;;;59122:48:0;;-1:-1:-1;;;59122:48:0;59065:105;:158;;;-1:-1:-1;;;;;;;;;;51659:40:0;;;59187:36;59045:178;58926:305;-1:-1:-1;;58926:305:0:o;36236:102::-;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;36312:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;36305:25;;-1:-1:-1;;36305:25:0::1;::::0;;36236:102::o;59854:100::-;59908:13;59941:5;59934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59854:100;:::o;61366:171::-;61442:7;61462:23;61477:7;61462:14;:23::i;:::-;-1:-1:-1;61505:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;61505:24:0;;61366:171::o;83889:190::-;84018:8;38212:30;38233:8;38212:20;:30::i;:::-;84039:32:::1;84053:8;84063:7;84039:13;:32::i;:::-;83889:190:::0;;;:::o;38833:241::-;32310:13;:11;:13::i;:::-;38963:22:::1;:103:::0;;-1:-1:-1;;;;;;38963:103:0::1;-1:-1:-1::0;;;;;38963:103:0;;;::::1;::::0;;;::::1;::::0;;38833:241::o;86283:254::-;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;86383:27:0;::::1;86361:129;;;::::0;-1:-1:-1;;;86361:129:0;;11900:2:1;86361:129:0::1;::::0;::::1;11882:21:1::0;11939:2;11919:18;;;11912:30;11978:34;11958:18;;;11951:62;-1:-1:-1;;;12029:18:1;;;12022:50;12089:19;;86361:129:0::1;11698:416:1::0;86361:129:0::1;86501:12;:28:::0;;-1:-1:-1;;;;;86501:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;86501:28:0;;::::1;::::0;;;::::1;::::0;;86283:254::o;79993:211::-;-1:-1:-1;;;;;;;;;;;;;;;;;80112:16:0;80120:7;80112;:16::i;:::-;80104:53;;;;-1:-1:-1;;;80104:53:0;;;;;;;:::i;:::-;-1:-1:-1;80175:21:0;;;;:12;:21;;;;;;;;;80168:28;;;;;;;;;;;;;;;;;;;;79993:211::o;93555:417::-;93632:8;;;;93624:65;;;;-1:-1:-1;;;93624:65:0;;12674:2:1;93624:65:0;;;12656:21:1;12713:2;12693:18;;;12686:30;12752:34;12732:18;;;12725:62;-1:-1:-1;;;12803:18:1;;;12796:42;12855:19;;93624:65:0;12472:408:1;93624:65:0;93705:9;93700:265;93724:8;:15;93720:1;:19;93700:265;;;93787:45;31055:10;93820:8;93829:1;93820:11;;;;;;;;:::i;:::-;;;;;;;93787:18;:45::i;:::-;93761:152;;;;-1:-1:-1;;;93761:152:0;;;;;;;:::i;:::-;93928:25;93941:8;93950:1;93941:11;;;;;;;;:::i;:::-;;;;;;;93928:12;:25::i;:::-;93741:3;;;;:::i;:::-;;;;93700:265;;;;93555:417;:::o;84137:347::-;84280:4;-1:-1:-1;;;;;38032:18:0;;38040:10;38032:18;38028:83;;38067:32;38088:10;38067:20;:32::i;:::-;84333:4:::1;-1:-1:-1::0;;;;;84319:19:0;::::1;::::0;84297:131:::1;;;;-1:-1:-1::0;;;84297:131:0::1;;;;;;;:::i;:::-;84439:37;84458:4;84464:2;84468:7;84439:18;:37::i;:::-;84137:347:::0;;;;:::o;86940:2688::-;87103:8;;;;;;;87095:63;;;;-1:-1:-1;;;87095:63:0;;14336:2:1;87095:63:0;;;14318:21:1;14375:2;14355:18;;;14348:30;14414:34;14394:18;;;14387:62;-1:-1:-1;;;14465:18:1;;;14458:40;14515:19;;87095:63:0;14134:406:1;87095:63:0;87169:26;:24;:26::i;:::-;87206:27;87223:9;87206:16;:27::i;:::-;87246:28;;;;;;;;:::i;:::-;:234;;87371:15;;87390:9;87371:28;87345:135;;;;-1:-1:-1;;;87345:135:0;;14993:2:1;87345:135:0;;;14975:21:1;15032:2;15012:18;;;15005:30;15071:34;15051:18;;;15044:62;-1:-1:-1;;;15122:18:1;;;15115:43;15175:19;;87345:135:0;14791:409:1;87345:135:0;87246:234;;;87290:5;;:39;;-1:-1:-1;;;87290:39:0;;-1:-1:-1;;;;;87290:5:0;;;;:16;;:39;;87307:2;;87311;;87315;;87319:9;;87290:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87246:234;87493:15;87546:13;87569:4;87576:9;87535:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;87511:86;;;;;;87493:104;;87632:37;87649:7;87658:2;87662;87666;87632:16;:37::i;:::-;87610:127;;;;-1:-1:-1;;;87610:127:0;;19786:2:1;87610:127:0;;;19768:21:1;19825:2;19805:18;;;19798:30;19864:34;19844:18;;;19837:62;-1:-1:-1;;;19915:18:1;;;19908:38;19963:19;;87610:127:0;19584:404:1;87610:127:0;87750:19;87802:14;;;;87784:15;;:32;87780:175;;;87918:18;;;;:9;:18;:::i;:::-;:25;-1:-1:-1;87865:32:0;87883:14;;;;87865:15;;:32;:::i;:::-;87864:79;;;;:::i;:::-;87833:110;;87780:175;87967:26;88004:23;88043:9;88038:1160;88062:18;;;;:9;:18;:::i;:::-;:25;;88058:1;:29;88038:1160;;;88134:161;88174:4;88198:21;;;;;;;;:::i;:::-;88238:18;;;;:9;:18;:::i;:::-;88257:1;88238:21;;;;;;;:::i;:::-;;;;;;;88134:161;;;;;;;;;;;;:13;:161::i;:::-;88314:15;;88310:799;;88416:9;88389:705;88456:23;;;;:9;:23;:::i;:::-;88480:1;88456:26;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:33;;88452:1;:37;88389:705;;;88558:11;88649:5;88612:23;;;;:9;:23;:::i;:::-;88636:1;88612:26;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;88639:1;88612:29;;;;;;;:::i;:::-;;;;;;:33;;;88573:11;:72;;;;:::i;:::-;88572:82;;;;:::i;:::-;88750:12;;88558:96;;-1:-1:-1;88750:12:0;;;-1:-1:-1;;;;;88750:12:0;88707:23;;;;;;:::i;:::-;88731:1;88707:26;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;88734:1;88707:29;;;;;;;:::i;:::-;:39;;;:29;;;;;:39;;;;-1:-1:-1;88707:39:0;:::i;:::-;-1:-1:-1;;;;;88707:55:0;;88677:217;;88813:22;88832:3;88813:22;;:::i;:::-;;;88862:8;;;88677:217;88916:25;88938:3;88916:25;;:::i;:::-;;-1:-1:-1;88972:23:0;;;;:9;:23;:::i;:::-;88996:1;88972:26;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;88999:1;88972:29;;;;;;;:::i;:::-;:39;;;:29;;;;;:39;;;;-1:-1:-1;88972:39:0;:::i;:::-;-1:-1:-1;;;;;88964:57:0;:110;89048:3;88964:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88535:559;88389:705;88512:3;;;;:::i;:::-;;;;88389:705;;;;88310:799;89164:18;;;;:9;:18;:::i;:::-;89183:1;89164:21;;;;;;;:::i;:::-;;;;;;;89141:9;:21;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;89130:56:0;;;;;;;;;;;88089:3;;;;:::i;:::-;;;;88038:1160;;;-1:-1:-1;89285:36:0;89306:15;89285:18;:36;:::i;:::-;89232:32;89250:14;;;;89232:15;;:32;:::i;:::-;:89;;89210:183;;;;-1:-1:-1;;;89210:183:0;;22720:2:1;89210:183:0;;;22702:21:1;22759:2;22739:18;;;22732:30;22798:34;22778:18;;;22771:62;-1:-1:-1;;;22849:18:1;;;22842:42;22901:19;;89210:183:0;22518:408:1;89210:183:0;89470:16;89489:36;89507:18;89489:15;;:36;:::i;:::-;89470:55;-1:-1:-1;89540:12:0;;89536:85;;89577:12;;89569:40;;89577:12;;;;-1:-1:-1;;;;;89577:12:0;;89569:40;;;;;;;;;;;;89577:12;89569:40;;;;;;;;;;;;;;;;;;;;;89536:85;87084:2544;;;;;86940:2688;;;;:::o;78793:303::-;78900:7;78950:23;78967:5;78950:16;:23::i;:::-;78942:5;:31;78920:124;;;;-1:-1:-1;;;78920:124:0;;23133:2:1;78920:124:0;;;23115:21:1;23172:2;23152:18;;;23145:30;23211:34;23191:18;;;23184:62;-1:-1:-1;;;23262:18:1;;;23255:41;23313:19;;78920:124:0;22931:407:1;78920:124:0;-1:-1:-1;;;;;79062:19:0;;;;;;:12;:19;;;;;:26;;79082:5;;79062:26;;;;;;:::i;:::-;;;;;;;;;79055:33;;78793:303;;;;:::o;81096:356::-;32310:13;:11;:13::i;:::-;81169:8:::1;::::0;;;::::1;;;81168:9;81146:111;;;;-1:-1:-1::0;;;81146:111:0::1;;;;;;;:::i;:::-;81291:8;::::0;;;::::1;;;81290:9;81268:111;;;::::0;-1:-1:-1;;;81268:111:0;;23966:2:1;81268:111:0::1;::::0;::::1;23948:21:1::0;24005:2;23985:18;;;23978:30;24044:34;24024:18;;;24017:62;-1:-1:-1;;;24095:18:1;;;24088:50;24155:19;;81268:111:0::1;23764:416:1::0;81268:111:0::1;81390:26;:24;:26::i;:::-;81429:8;:15:::0;;-1:-1:-1;;81429:15:0::1;::::0;::::1;::::0;;81096:356::o;84542:355::-;84689:4;-1:-1:-1;;;;;38032:18:0;;38040:10;38032:18;38028:83;;38067:32;38088:10;38067:20;:32::i;:::-;84742:4:::1;-1:-1:-1::0;;;;;84728:19:0;::::1;::::0;84706:131:::1;;;;-1:-1:-1::0;;;84706:131:0::1;;;;;;;:::i;:::-;84848:41;84871:4;84877:2;84881:7;84848:22;:41::i;75423:26::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81494:315::-;32310:13;:11;:13::i;:::-;81566:8:::1;::::0;;;::::1;;;81565:9;81543:111;;;;-1:-1:-1::0;;;81543:111:0::1;;;;;;;:::i;:::-;81687:8;::::0;;;::::1;;;81665:109;;;::::0;-1:-1:-1;;;81665:109:0;;24387:2:1;81665:109:0::1;::::0;::::1;24369:21:1::0;24426:2;24406:18;;;24399:30;24465:34;24445:18;;;24438:62;-1:-1:-1;;;24516:18:1;;;24509:49;24575:19;;81665:109:0::1;24185:415:1::0;81665:109:0::1;81785:8;:16:::0;;-1:-1:-1;;81785:16:0::1;::::0;;81494:315::o;59564:223::-;59636:7;64297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;64297:16:0;;59700:56;;;;-1:-1:-1;;;59700:56:0;;;;;;;:::i;82269:1295::-;32310:13;:11;:13::i;:::-;82459:1:::1;82440:9;:16;:20;:53;;;;;82492:1;82464:18;:25;:29;82440:53;82418:172;;;::::0;-1:-1:-1;;;82418:172:0;;24807:2:1;82418:172:0::1;::::0;::::1;24789:21:1::0;24846:2;24826:18;;;24819:30;24885:34;24865:18;;;24858:62;24956:34;24936:18;;;24929:62;-1:-1:-1;;;25007:19:1;;;25000:36;25053:19;;82418:172:0::1;24605:473:1::0;82418:172:0::1;82643:18;:25;82623:9;:16;:45;82601:171;;;::::0;-1:-1:-1;;;82601:171:0;;25285:2:1;82601:171:0::1;::::0;::::1;25267:21:1::0;25324:2;25304:18;;;25297:30;25363:34;25343:18;;;25336:62;25434:34;25414:18;;;25407:62;-1:-1:-1;;;25485:19:1;;;25478:43;25538:19;;82601:171:0::1;25083:480:1::0;82601:171:0::1;82785:11;:9;:11::i;:::-;82882:4;82859:12;82926:18:::0;;;:12:::1;:18;::::0;;;;;;;82898:46;;;;;;::::1;::::0;;;;;;;;;;;;82926:18;;82898:46;;::::1;82926:18:::0;82898:46;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82960:9;82955:461;82979:8;:15;82975:1;:19;82955:461;;;83016:15;83034:8;83043:1;83034:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;83060:22:::1;83085:21:::0;;;:12:::1;:21:::0;;;;;;83060:46;;;;::::1;::::0;;;;;;;::::1;;::::0;;;::::1;::::0;;;;83034:11;;-1:-1:-1;83123:282:0::1;83146:9;:16;83142:1;:20;;;83123:282;;;83212:9;83222:1;83212:12;;;;;;;;;;:::i;:::-;;;;;;;83192:7;:16;;;:32:::0;83188:202:::1;;83249:10;83262:18;83281:1;83262:21;;;;;;;;;;:::i;:::-;;;;;;;83249:34;;83306:36;83320:4;83326:2;83330:7;83306:36;;;;;;;;;;;::::0;:13:::1;:36::i;:::-;83365:5;;;83188:202;83164:3:::0;::::1;::::0;::::1;:::i;:::-;;;;83123:282;;;;83001:415;;82996:3;;;;;:::i;:::-;;;;82955:461;;;;83448:15;83458:4;83448:9;:15::i;:::-;:20:::0;83426:130:::1;;;::::0;-1:-1:-1;;;83426:130:0;;25972:2:1;83426:130:0::1;::::0;::::1;25954:21:1::0;26011:2;25991:18;;;25984:30;26050:34;26030:18;;;26023:62;26121:30;26101:18;;;26094:58;26169:19;;83426:130:0::1;25770:424:1::0;80303:238:0;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;80389:20:0;::::1;80367:115;;;::::0;-1:-1:-1;;;80367:115:0;;26401:2:1;80367:115:0::1;::::0;::::1;26383:21:1::0;26440:2;26420:18;;;26413:30;26479:34;26459:18;;;26452:62;-1:-1:-1;;;26530:18:1;;;26523:43;26583:19;;80367:115:0::1;26199:409:1::0;80367:115:0::1;80493:5;:40:::0;;-1:-1:-1;;;;;;80493:40:0::1;-1:-1:-1::0;;;;;80493:40:0;;;::::1;::::0;;;::::1;::::0;;80303:238::o;35073:170::-;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;35147:21:0;::::1;35139:68;;;::::0;-1:-1:-1;;;35139:68:0;;26815:2:1;35139:68:0::1;::::0;::::1;26797:21:1::0;26854:2;26834:18;;;26827:30;26893:34;26873:18;;;26866:62;-1:-1:-1;;;26944:18:1;;;26937:32;26986:19;;35139:68:0::1;26613:398:1::0;35139:68:0::1;35218:7;:17:::0;;-1:-1:-1;;;;;;35218:17:0::1;-1:-1:-1::0;;;;;35218:17:0;;;::::1;::::0;;;::::1;::::0;;35073:170::o;59295:207::-;59367:7;-1:-1:-1;;;;;59395:19:0;;59387:73;;;;-1:-1:-1;;;59387:73:0;;27218:2:1;59387:73:0;;;27200:21:1;27257:2;27237:18;;;27230:30;27296:34;27276:18;;;27269:62;-1:-1:-1;;;27347:18:1;;;27340:39;27396:19;;59387:73:0;27016:405:1;59387:73:0;-1:-1:-1;;;;;;59478:16:0;;;;;:9;:16;;;;;;;59295:207::o;33065:103::-;32310:13;:11;:13::i;:::-;33130:30:::1;33157:1;33130:18;:30::i;:::-;33065:103::o:0;79145:140::-;-1:-1:-1;;;;;79258:19:0;;;;;;:12;:19;;;;;;;;;79251:26;;;;;;;;;;;;;;;;;79222:16;;79251:26;;;79258:19;79251:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79145:140;;;:::o;92114:367::-;36064:10;36055:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;32497:6:0;;-1:-1:-1;;;;;32497:6:0;36079:10;:21;36055:45;36047:54;;;;;;92243:8:::1;::::0;;;::::1;;;92221:111;;;::::0;-1:-1:-1;;;92221:111:0;;27628:2:1;92221:111:0::1;::::0;::::1;27610:21:1::0;27667:2;27647:18;;;27640:30;27706:34;27686:18;;;27679:62;-1:-1:-1;;;27757:18:1;;;27750:51;27818:19;;92221:111:0::1;27426:417:1::0;92221:111:0::1;92348:9;92343:131;92363:15:::0;;::::1;92343:131;;;92400:62;92413:4;;92418:1;92413:7;;;;;;;:::i;:::-;;;;;;:16;;;92431:4;;92436:1;92431:7;;;;;;;:::i;:::-;;;;;;:15;;;92448:4;;92453:1;92448:7;;;;;;;:::i;:::-;;;;;;:13;;;;;;;;;;:::i;:::-;92400:12;:62::i;:::-;92380:3:::0;::::1;::::0;::::1;:::i;:::-;;;;92343:131;;85941:230:::0;32310:13;:11;:13::i;:::-;86067:1:::1;86048:8;86042:22;:26;86020:109;;;::::0;-1:-1:-1;;;86020:109:0;;28050:2:1;86020:109:0::1;::::0;::::1;28032:21:1::0;28089:2;28069:18;;;28062:30;28128:34;28108:18;;;28101:62;-1:-1:-1;;;28179:18:1;;;28172:31;28220:19;;86020:109:0::1;27848:397:1::0;86020:109:0::1;86140:12;:23;86155:8:::0;86140:12;:23:::1;:::i;60023:104::-:0;60079:13;60112:7;60105:14;;;;;:::i;83622:209::-;83759:8;38212:30;38233:8;38212:20;:30::i;:::-;83780:43:::1;83804:8;83814;83780:23;:43::i;80955:98::-:0;32310:13;:11;:13::i;:::-;81006:8:::1;:16:::0;;-1:-1:-1;;81006:16:0::1;::::0;;81033:12:::1;:10;:12::i;84955:389::-:0;85130:4;-1:-1:-1;;;;;38032:18:0;;38040:10;38032:18;38028:83;;38067:32;38088:10;38067:20;:32::i;:::-;85183:4:::1;-1:-1:-1::0;;;;;85169:19:0;::::1;::::0;85147:131:::1;;;;-1:-1:-1::0;;;85147:131:0::1;;;;;;;:::i;:::-;85289:47;85312:4;85318:2;85322:7;85331:4;85289:22;:47::i;:::-;84955:389:::0;;;;;:::o;81876:286::-;32310:13;:11;:13::i;:::-;81933:11:::1;:9;:11::i;:::-;82040:4;81991:25;82019:27:::0;;;:12:::1;:27;::::0;;;;;;;81991:55;;;;;;::::1;::::0;;;;;;;;;;;;82019:27;;81991:55;;::::1;82019:27:::0;81991:55;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82062:9;82057:98;82081:8;:15;82077:1;:19;82057:98;;;82118:25;82131:8;82140:1;82131:11;;;;;;;;:::i;82118:25::-;82098:3:::0;::::1;::::0;::::1;:::i;:::-;;;;82057:98;;85433:448:::0;85522:13;85599:1;85576:12;85570:26;;;;;:::i;:::-;;;:30;85548:118;;;;-1:-1:-1;;;85548:118:0;;30656:2:1;85548:118:0;;;30638:21:1;30695:2;30675:18;;;30668:30;30734:34;30714:18;;;30707:62;-1:-1:-1;;;30785:18:1;;;30778:36;30831:19;;85548:118:0;30454:402:1;85548:118:0;85699:16;85707:7;85699;:16::i;:::-;85677:113;;;;-1:-1:-1;;;85677:113:0;;31063:2:1;85677:113:0;;;31045:21:1;31102:2;31082:18;;;31075:30;31141:34;31121:18;;;31114:62;-1:-1:-1;;;31192:18:1;;;31185:45;31247:19;;85677:113:0;30861:411:1;85677:113:0;85834:12;85853:18;:7;:16;:18::i;:::-;85817:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85803:70;;85433:448;;;:::o;36129:99::-;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;36195:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;36195:25:0::1;36216:4;36195:25;::::0;;36129:99::o;75479:25::-;;;;;;;:::i;33323:201::-;32310:13;:11;:13::i;:::-;-1:-1:-1;;;;;33412:22:0;::::1;33404:73;;;::::0;-1:-1:-1;;;33404:73:0;;32648:2:1;33404:73:0::1;::::0;::::1;32630:21:1::0;32687:2;32667:18;;;32660:30;32726:34;32706:18;;;32699:62;-1:-1:-1;;;32777:18:1;;;32770:36;32823:19;;33404:73:0::1;32446:402:1::0;33404:73:0::1;33488:28;33507:8;33488:18;:28::i;:::-;33323:201:::0;:::o;32589:132::-;32497:6;;-1:-1:-1;;;;;32497:6:0;31055:10;32653:23;32645:68;;;;-1:-1:-1;;;32645:68:0;;33055:2:1;32645:68:0;;;33037:21:1;;;33074:18;;;33067:30;33133:34;33113:18;;;33106:62;33185:18;;32645:68:0;32853:356:1;70929:135:0;71011:16;71019:7;71011;:16::i;:::-;71003:53;;;;-1:-1:-1;;;71003:53:0;;;;;;;:::i;38270:485::-;38469:22;;-1:-1:-1;;;;;38469:22:0;38461:43;:47;38457:291;;38551:22;;:126;;-1:-1:-1;;;38551:126:0;;38622:4;38551:126;;;33426:34:1;-1:-1:-1;;;;;33496:15:1;;;33476:18;;;33469:43;38551:22:0;;;;:40;;33361:18:1;;38551:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38525:211;;;;-1:-1:-1;;;38525:211:0;;33975:2:1;38525:211:0;;;33957:21:1;34014:2;33994:18;;;33987:30;34053:25;34033:18;;;34026:53;34096:18;;38525:211:0;33773:347:1;60884:416:0;60965:13;60981:23;60996:7;60981:14;:23::i;:::-;60965:39;;61029:5;-1:-1:-1;;;;;61023:11:0;:2;-1:-1:-1;;;;;61023:11:0;;61015:57;;;;-1:-1:-1;;;61015:57:0;;34327:2:1;61015:57:0;;;34309:21:1;34366:2;34346:18;;;34339:30;34405:34;34385:18;;;34378:62;-1:-1:-1;;;34456:18:1;;;34449:31;34497:19;;61015:57:0;34125:397:1;61015:57:0;31055:10;-1:-1:-1;;;;;61107:21:0;;;;:62;;-1:-1:-1;61132:37:0;61149:5;31055:10;61835:164;:::i;61132:37::-;61085:173;;;;-1:-1:-1;;;61085:173:0;;34729:2:1;61085:173:0;;;34711:21:1;34768:2;34748:18;;;34741:30;34807:34;34787:18;;;34780:62;34878:31;34858:18;;;34851:59;34927:19;;61085:173:0;34527:425:1;61085:173:0;61271:21;61280:2;61284:7;61271:8;:21::i;64634:128::-;64699:4;64297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;64297:16:0;64723:31;;;64634:128::o;64929:264::-;65022:4;65039:13;65055:23;65070:7;65055:14;:23::i;:::-;65039:39;;65108:5;-1:-1:-1;;;;;65097:16:0;:7;-1:-1:-1;;;;;65097:16:0;;:52;;;-1:-1:-1;;;;;;61956:25:0;;;61932:4;61956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;65117:32;65097:87;;;;65177:7;-1:-1:-1;;;;;65153:31:0;:20;65165:7;65153:11;:20::i;:::-;-1:-1:-1;;;;;65153:31:0;;65097:87;65089:96;64929:264;-1:-1:-1;;;;64929:264:0:o;93980:410::-;94047:16;94055:7;94047;:16::i;:::-;94039:53;;;;-1:-1:-1;;;94039:53:0;;;;;;;:::i;:::-;94130:22;94155:21;;;:12;:21;;;;;;;;94130:46;;;;;;;;;;;;;;;;;;;;;94187:38;;:20;:38;;;;;;:43;;94130:46;;;;94187:38;;94130:22;94187:43;;94130:46;;94187:43;:::i;:::-;;;;;;;;94256:1;94241:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;94275:21:0;;;;:12;:21;;;;;94268:28;;;;;;94307:14;94288:7;94307:5;:14::i;:::-;94362:20;;94374:7;;94362:20;;;;;94028:362;93980:410;:::o;62066:301::-;62227:41;31055:10;62260:7;62227:18;:41::i;:::-;62219:99;;;;-1:-1:-1;;;62219:99:0;;;;;;;:::i;:::-;62331:28;62341:4;62347:2;62351:7;62331:9;:28::i;80678:235::-;80738:15;80756:24;80774:4;80756:9;:24::i;:::-;80738:42;;80823:1;80813:7;:11;80791:114;;;;-1:-1:-1;;;80791:114:0;;35159:2:1;80791:114:0;;;35141:21:1;35198:2;35178:18;;;35171:30;35237:34;35217:18;;;35210:62;-1:-1:-1;;;35288:18:1;;;35281:51;35349:19;;80791:114:0;34957:417:1;816:517:0;946:1;918:18;;;;:9;:18;:::i;:::-;:25;;:29;896:115;;;;-1:-1:-1;;;896:115:0;;35581:2:1;896:115:0;;;35563:21:1;35620:2;35600:18;;;35593:30;35659:34;35639:18;;;35632:62;-1:-1:-1;;;35710:18:1;;;35703:34;35754:19;;896:115:0;35379:400:1;896:115:0;1073:23;;;;:9;:23;:::i;:::-;:30;-1:-1:-1;1044:18:0;;;;:9;:18;:::i;:::-;:25;;:59;1022:170;;;;-1:-1:-1;;;1022:170:0;;35986:2:1;1022:170:0;;;35968:21:1;36025:2;36005:18;;;35998:30;36064:34;36044:18;;;36037:62;36135:31;36115:18;;;36108:59;36184:19;;1022:170:0;35784:425:1;1022:170:0;1248:15;1225:9;:20;;;:38;1203:122;;;;-1:-1:-1;;;1203:122:0;;36416:2:1;1203:122:0;;;36398:21:1;36455:2;36435:18;;;36428:30;36494:34;36474:18;;;36467:62;-1:-1:-1;;;36545:18:1;;;36538:32;36587:19;;1203:122:0;36214:398:1;34630:355:0;28504:34;34774:4;28491:48;;;28560:4;28553:18;;;28612:4;28596:21;;34774:4;;34811:128;;34892:2;34909;34926;34811:13;:128::i;:::-;34970:7;;-1:-1:-1;;;;;34970:7:0;;;34957:20;;;;34630:355;-1:-1:-1;;;;;;34630:355:0:o;63820:270::-;63933:28;63943:4;63949:2;63953:7;63933:9;:28::i;:::-;63980:47;64003:4;64009:2;64013:7;64022:4;63980:22;:47::i;:::-;63972:110;;;;-1:-1:-1;;;63972:110:0;;;;;;;:::i;62438:151::-;62542:39;62559:4;62565:2;62569:7;62542:39;;;;;;;;;;;;:16;:39::i;33684:191::-;33777:6;;;-1:-1:-1;;;;;33794:17:0;;;-1:-1:-1;;;;;;33794:17:0;;;;;;;33827:40;;33777:6;;;33794:17;33777:6;;33827:40;;33758:16;;33827:40;33747:128;33684:191;:::o;92489:859::-;89764:4;89788:28;;;:18;:28;;;;;;:32;;92844:26;92861:8;92844:16;:26::i;:::-;92733:156;;;;;;;;:::i;:::-;;;;;;;;;;;;;92648:267;;;;;-1:-1:-1;;;92648:267:0;;;;;;;;:::i;:::-;-1:-1:-1;92981:28:0;;;;:18;:28;;;;;;;;;92948:20;:30;;;;;;;:61;92926:152;;;;-1:-1:-1;;;92926:152:0;;37753:2:1;92926:152:0;;;37735:21:1;37792:2;37772:18;;;37765:30;37831:34;37811:18;;;37804:62;-1:-1:-1;;;37882:18:1;;;37875:39;37931:19;;92926:152:0;37551:405:1;92926:152:0;93123:1;93108:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;93135:30:0;;;;:20;:30;;;;;:35;;93169:1;;93135:30;:35;;93169:1;;93135:35;:::i;:::-;;;;-1:-1:-1;;93205:26:0;;;;;;;;;;;;;;;;;;-1:-1:-1;93181:21:0;;;:12;:21;;;;;;:50;;;;;;;;;;;93242:21;93248:5;93223:7;93242:5;:21::i;:::-;93332:7;93322:8;93315:5;-1:-1:-1;;;;;93304:36:0;;;;;;;;;;;92489:859;;;:::o;61609:155::-;61704:52;31055:10;61737:8;61747;61704:18;:52::i;62660:279::-;62791:41;31055:10;62824:7;62791:18;:41::i;:::-;62783:99;;;;-1:-1:-1;;;62783:99:0;;;;;;;:::i;:::-;62893:38;62907:4;62913:2;62917:7;62926:4;62893:13;:38::i;18536:716::-;18592:13;18643:14;18660:17;18671:5;18660:10;:17::i;:::-;18680:1;18660:21;18643:38;;18696:20;18730:6;-1:-1:-1;;;;;18719:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18719:18:0;-1:-1:-1;18696:41:0;-1:-1:-1;18861:28:0;;;18877:2;18861:28;18918:288;-1:-1:-1;;18950:5:0;-1:-1:-1;;;19087:2:0;19076:14;;19071:30;18950:5;19058:44;19148:2;19139:11;;;-1:-1:-1;19169:21:0;18918:288;19169:21;18918:288;-1:-1:-1;19227:6:0;18536:716;-1:-1:-1;;;18536:716:0:o;70242:174::-;70317:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;70317:29:0;-1:-1:-1;;;;;70317:29:0;;;;;;;;:24;;70371:23;70317:24;70371:14;:23::i;:::-;-1:-1:-1;;;;;70362:46:0;;;;;;;;;;;70242:174;;:::o;67774:783::-;67834:13;67850:23;67865:7;67850:14;:23::i;:::-;67834:39;;67886:51;67907:5;67922:1;67926:7;67935:1;67886:20;:51::i;:::-;68050:23;68065:7;68050:14;:23::i;:::-;68121:24;;;;:15;:24;;;;;;;;68114:31;;-1:-1:-1;;;;;;68114:31:0;;;;;;-1:-1:-1;;;;;68366:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;68366:21:0;;;68416:16;;;:7;:16;;;;;;68409:23;;;;;;;68450:36;68042:31;;-1:-1:-1;68137:7:0;;68450:36;;68121:24;;68450:36;93700:265;93555:417;:::o;68894:1229::-;69019:4;-1:-1:-1;;;;;68992:31:0;:23;69007:7;68992:14;:23::i;:::-;-1:-1:-1;;;;;68992:31:0;;68984:81;;;;-1:-1:-1;;;68984:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69084:16:0;;69076:65;;;;-1:-1:-1;;;69076:65:0;;38569:2:1;69076:65:0;;;38551:21:1;38608:2;38588:18;;;38581:30;38647:34;38627:18;;;38620:62;-1:-1:-1;;;38698:18:1;;;38691:34;38742:19;;69076:65:0;38367:400:1;69076:65:0;69154:42;69175:4;69181:2;69185:7;69194:1;69154:20;:42::i;:::-;69326:4;-1:-1:-1;;;;;69299:31:0;:23;69314:7;69299:14;:23::i;:::-;-1:-1:-1;;;;;69299:31:0;;69291:81;;;;-1:-1:-1;;;69291:81:0;;;;;;;:::i;:::-;69444:24;;;;:15;:24;;;;;;;;69437:31;;-1:-1:-1;;;;;;69437:31:0;;;;;;-1:-1:-1;;;;;69920:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;69920:20:0;;;69955:13;;;;;;;;;:18;;69437:31;69955:18;;;69995:16;;;:7;:16;;;;;;:21;;;;;;;;;;70034:27;;69460:7;;70034:27;;;83889:190;;;:::o;27694:236::-;27779:7;27800:17;27819:18;27841:25;27852:4;27858:1;27861;27864;27841:10;:25::i;:::-;27799:67;;;;27877:18;27889:5;27877:11;:18::i;:::-;-1:-1:-1;27913:9:0;27694:236;-1:-1:-1;;;;;27694:236:0:o;71628:853::-;71782:4;-1:-1:-1;;;;;71803:13:0;;40850:19;:23;71799:675;;71839:71;;-1:-1:-1;;;71839:71:0;;-1:-1:-1;;;;;71839:36:0;;;;;:71;;31055:10;;71890:4;;71896:7;;71905:4;;71839:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71839:71:0;;;;;;;;-1:-1:-1;;71839:71:0;;;;;;;;;;;;:::i;:::-;;;71835:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72080:6;:13;72097:1;72080:18;72076:328;;72123:60;;-1:-1:-1;;;72123:60:0;;;;;;;:::i;72076:328::-;72354:6;72348:13;72339:6;72335:2;72331:15;72324:38;71835:584;-1:-1:-1;;;;;;71961:51:0;-1:-1:-1;;;71961:51:0;;-1:-1:-1;71954:58:0;;71799:675;-1:-1:-1;72458:4:0;72451:11;;66493:942;-1:-1:-1;;;;;66573:16:0;;66565:61;;;;-1:-1:-1;;;66565:61:0;;39722:2:1;66565:61:0;;;39704:21:1;;;39741:18;;;39734:30;39800:34;39780:18;;;39773:62;39852:18;;66565:61:0;39520:356:1;66565:61:0;66646:16;66654:7;66646;:16::i;:::-;66645:17;66637:58;;;;-1:-1:-1;;;66637:58:0;;40083:2:1;66637:58:0;;;40065:21:1;40122:2;40102:18;;;40095:30;40161;40141:18;;;40134:58;40209:18;;66637:58:0;39881:352:1;66637:58:0;66708:48;66737:1;66741:2;66745:7;66754:1;66708:20;:48::i;:::-;66855:16;66863:7;66855;:16::i;:::-;66854:17;66846:58;;;;-1:-1:-1;;;66846:58:0;;40083:2:1;66846:58:0;;;40065:21:1;40122:2;40102:18;;;40095:30;40161;40141:18;;;40134:58;40209:18;;66846:58:0;39881:352:1;66846:58:0;-1:-1:-1;;;;;67253:13:0;;;;;;:9;:13;;;;;;;;:18;;67270:1;67253:18;;;67295:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;67295:21:0;;;;;67334:33;67303:7;;67253:13;;67334:33;;67253:13;;67334:33;93700:265;93555:417;:::o;70559:281::-;70680:8;-1:-1:-1;;;;;70671:17:0;:5;-1:-1:-1;;;;;70671:17:0;;70663:55;;;;-1:-1:-1;;;70663:55:0;;40440:2:1;70663:55:0;;;40422:21:1;40479:2;40459:18;;;40452:30;40518:27;40498:18;;;40491:55;40563:18;;70663:55:0;40238:349:1;70663:55:0;-1:-1:-1;;;;;70729:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;70729:46:0;;;;;;;;;;70791:41;;1065::1;;;70791::0;;1038:18:1;70791:41:0;;;;;;;70559:281;;;:::o;15370:948::-;15423:7;;-1:-1:-1;;;15501:17:0;;15497:106;;-1:-1:-1;;;15539:17:0;;;-1:-1:-1;15585:2:0;15575:12;15497:106;15630:8;15621:5;:17;15617:106;;15668:8;15659:17;;;-1:-1:-1;15705:2:0;15695:12;15617:106;15750:8;15741:5;:17;15737:106;;15788:8;15779:17;;;-1:-1:-1;15825:2:0;15815:12;15737:106;15870:7;15861:5;:16;15857:103;;15907:7;15898:16;;;-1:-1:-1;15943:1:0;15933:11;15857:103;15987:7;15978:5;:16;15974:103;;16024:7;16015:16;;;-1:-1:-1;16060:1:0;16050:11;15974:103;16104:7;16095:5;:16;16091:103;;16141:7;16132:16;;;-1:-1:-1;16177:1:0;16167:11;16091:103;16221:7;16212:5;:16;16208:68;;16259:1;16249:11;16304:6;15370:948;-1:-1:-1;;15370:948:0:o;89879:758::-;90146:1;90134:9;:13;90130:222;;;90277:63;;-1:-1:-1;;;90277:63:0;;40794:2:1;90277:63:0;;;40776:21:1;40833:2;40813:18;;;40806:30;40872:34;40852:18;;;40845:62;-1:-1:-1;;;40923:18:1;;;40916:51;40984:19;;90277:63:0;40592:417:1;90130:222:0;90382:12;-1:-1:-1;;;;;90409:18:0;;;;;;:32;;;90439:2;-1:-1:-1;;;;;90431:10:0;:4;-1:-1:-1;;;;;90431:10:0;;;90409:32;90405:112;;;90458:47;90491:4;90497:7;90458:32;:47::i;:::-;-1:-1:-1;;;;;90531:16:0;;;;;;:30;;;90557:4;-1:-1:-1;;;;;90551:10:0;:2;-1:-1:-1;;;;;90551:10:0;;;90531:30;90527:103;;;-1:-1:-1;;;;;91768:16:0;;91741:24;91768:16;;;:12;:16;;;;;;;;91812:13;;91836:20;;;;;;;;;;;;;;;;91867:26;;;:17;:26;;;;;;:35;90578:40;91656:254;26078:1477;26166:7;;27100:66;27087:79;;27083:163;;;-1:-1:-1;27199:1:0;;-1:-1:-1;27203:30:0;27183:51;;27083:163;27360:24;;;27343:14;27360:24;;;;;;;;;41241:25:1;;;41314:4;41302:17;;41282:18;;;41275:45;;;;41336:18;;;41329:34;;;41379:18;;;41372:34;;;27360:24:0;;41213:19:1;;27360:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27360:24:0;;-1:-1:-1;;27360:24:0;;;-1:-1:-1;;;;;;;27399:20:0;;27395:103;;27452:1;27456:29;27436:50;;;;;;;27395:103;27518:6;-1:-1:-1;27526:20:0;;-1:-1:-1;26078:1477:0;;;;;;;;:::o;21538:521::-;21616:20;21607:5;:29;;;;;;;;:::i;:::-;;21603:449;;21538:521;:::o;21603:449::-;21714:29;21705:5;:38;;;;;;;;:::i;:::-;;21701:351;;21760:34;;-1:-1:-1;;;21760:34:0;;41751:2:1;21760:34:0;;;41733:21:1;41790:2;41770:18;;;41763:30;41829:26;41809:18;;;41802:54;41873:18;;21760:34:0;41549:348:1;21701:351:0;21825:35;21816:5;:44;;;;;;;;:::i;:::-;;21812:240;;21877:41;;-1:-1:-1;;;21877:41:0;;42104:2:1;21877:41:0;;;42086:21:1;42143:2;42123:18;;;42116:30;42182:33;42162:18;;;42155:61;42233:18;;21877:41:0;41902:355:1;21812:240:0;21949:30;21940:5;:39;;;;;;;;:::i;:::-;;21936:116;;21996:44;;-1:-1:-1;;;21996:44:0;;42464:2:1;21996:44:0;;;42446:21:1;42503:2;42483:18;;;42476:30;42542:34;42522:18;;;42515:62;-1:-1:-1;;;42593:18:1;;;42586:32;42635:19;;21996:44:0;42262:398:1;90688:917:0;90977:22;91027:1;91002:22;91019:4;91002:16;:22::i;:::-;:26;;;;:::i;:::-;91039:18;91060:26;;;:17;:26;;;;;;90977:51;;-1:-1:-1;91193:28:0;;;91189:328;;-1:-1:-1;;;;;91260:18:0;;91238:19;91260:18;;;:12;:18;;;;;:34;;91279:14;;91260:34;;;;;;:::i;:::-;;;;;;;;;91238:56;;91344:11;91311:12;:18;91324:4;-1:-1:-1;;;;;91311:18:0;-1:-1:-1;;;;;91311:18:0;;;;;;;;;;;;91330:10;91311:30;;;;;;;;:::i;:::-;;;;;;;;;;;;:44;;;;91428:30;;;:17;:30;;;;;:43;;;91189:328;91536:26;;;;:17;:26;;;;;;;;91529:33;;;-1:-1:-1;;;;;91573:18:0;;;;:12;:18;;;;;:24;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;90794:811;;90688:917;;:::o;443:131:1:-;-1:-1:-1;;;;;;517:32:1;;507:43;;497:71;;564:1;561;554:12;579:245;637:6;690:2;678:9;669:7;665:23;661:32;658:52;;;706:1;703;696:12;658:52;745:9;732:23;764:30;788:5;764:30;:::i;:::-;813:5;579:245;-1:-1:-1;;;579:245:1:o;1117:173::-;1185:20;;-1:-1:-1;;;;;1234:31:1;;1224:42;;1214:70;;1280:1;1277;1270:12;1214:70;1117:173;;;:::o;1295:186::-;1354:6;1407:2;1395:9;1386:7;1382:23;1378:32;1375:52;;;1423:1;1420;1413:12;1375:52;1446:29;1465:9;1446:29;:::i;1486:250::-;1571:1;1581:113;1595:6;1592:1;1589:13;1581:113;;;1671:11;;;1665:18;1652:11;;;1645:39;1617:2;1610:10;1581:113;;;-1:-1:-1;;1728:1:1;1710:16;;1703:27;1486:250::o;1741:271::-;1783:3;1821:5;1815:12;1848:6;1843:3;1836:19;1864:76;1933:6;1926:4;1921:3;1917:14;1910:4;1903:5;1899:16;1864:76;:::i;:::-;1994:2;1973:15;-1:-1:-1;;1969:29:1;1960:39;;;;2001:4;1956:50;;1741:271;-1:-1:-1;;1741:271:1:o;2017:220::-;2166:2;2155:9;2148:21;2129:4;2186:45;2227:2;2216:9;2212:18;2204:6;2186:45;:::i;2242:180::-;2301:6;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;-1:-1:-1;2393:23:1;;2242:180;-1:-1:-1;2242:180:1:o;2635:254::-;2703:6;2711;2764:2;2752:9;2743:7;2739:23;2735:32;2732:52;;;2780:1;2777;2770:12;2732:52;2803:29;2822:9;2803:29;:::i;:::-;2793:39;2879:2;2864:18;;;;2851:32;;-1:-1:-1;;;2635:254:1:o;3378:127::-;3439:10;3434:3;3430:20;3427:1;3420:31;3470:4;3467:1;3460:15;3494:4;3491:1;3484:15;3510:275;3581:2;3575:9;3646:2;3627:13;;-1:-1:-1;;3623:27:1;3611:40;;-1:-1:-1;;;;;3666:34:1;;3702:22;;;3663:62;3660:88;;;3728:18;;:::i;:::-;3764:2;3757:22;3510:275;;-1:-1:-1;3510:275:1:o;3790:183::-;3850:4;-1:-1:-1;;;;;3875:6:1;3872:30;3869:56;;;3905:18;;:::i;:::-;-1:-1:-1;3950:1:1;3946:14;3962:4;3942:25;;3790:183::o;3978:662::-;4032:5;4085:3;4078:4;4070:6;4066:17;4062:27;4052:55;;4103:1;4100;4093:12;4052:55;4139:6;4126:20;4165:4;4189:60;4205:43;4245:2;4205:43;:::i;:::-;4189:60;:::i;:::-;4283:15;;;4369:1;4365:10;;;;4353:23;;4349:32;;;4314:12;;;;4393:15;;;4390:35;;;4421:1;4418;4411:12;4390:35;4457:2;4449:6;4445:15;4469:142;4485:6;4480:3;4477:15;4469:142;;;4551:17;;4539:30;;4589:12;;;;4502;;4469:142;;;-1:-1:-1;4629:5:1;3978:662;-1:-1:-1;;;;;;3978:662:1:o;4645:348::-;4729:6;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4838:9;4825:23;-1:-1:-1;;;;;4863:6:1;4860:30;4857:50;;;4903:1;4900;4893:12;4857:50;4926:61;4979:7;4970:6;4959:9;4955:22;4926:61;:::i;4998:328::-;5075:6;5083;5091;5144:2;5132:9;5123:7;5119:23;5115:32;5112:52;;;5160:1;5157;5150:12;5112:52;5183:29;5202:9;5183:29;:::i;:::-;5173:39;;5231:38;5265:2;5254:9;5250:18;5231:38;:::i;:::-;5221:48;;5316:2;5305:9;5301:18;5288:32;5278:42;;4998:328;;;;;:::o;5331:680::-;5441:6;5449;5457;5465;5518:3;5506:9;5497:7;5493:23;5489:33;5486:53;;;5535:1;5532;5525:12;5486:53;5571:9;5558:23;5548:33;;5628:2;5617:9;5613:18;5600:32;5590:42;;5682:2;5671:9;5667:18;5654:32;5726:4;5719:5;5715:16;5708:5;5705:27;5695:55;;5746:1;5743;5736:12;5695:55;5769:5;-1:-1:-1;5825:2:1;5810:18;;5797:32;-1:-1:-1;;;;;5841:30:1;;5838:50;;;5884:1;5881;5874:12;5838:50;5907:22;;5963:3;5945:16;;;5941:26;5938:46;;;5980:1;5977;5970:12;5938:46;5331:680;;;;-1:-1:-1;5331:680:1;;-1:-1:-1;;5331:680:1:o;6016:1144::-;6134:6;6142;6195:2;6183:9;6174:7;6170:23;6166:32;6163:52;;;6211:1;6208;6201:12;6163:52;6251:9;6238:23;-1:-1:-1;;;;;6321:2:1;6313:6;6310:14;6307:34;;;6337:1;6334;6327:12;6307:34;6360:61;6413:7;6404:6;6393:9;6389:22;6360:61;:::i;:::-;6350:71;;6440:2;6430:12;;6495:2;6484:9;6480:18;6467:32;6524:2;6514:8;6511:16;6508:36;;;6540:1;6537;6530:12;6508:36;6563:24;;;-1:-1:-1;6618:4:1;6610:13;;6606:27;-1:-1:-1;6596:55:1;;6647:1;6644;6637:12;6596:55;6683:2;6670:16;6706:60;6722:43;6762:2;6722:43;:::i;6706:60::-;6800:15;;;6882:1;6878:10;;;;6870:19;;6866:28;;;6831:12;;;;6906:19;;;6903:39;;;6938:1;6935;6928:12;6903:39;6962:11;;;;6982:148;6998:6;6993:3;6990:15;6982:148;;;7064:23;7083:3;7064:23;:::i;:::-;7052:36;;7015:12;;;;7108;;;;6982:148;;;7149:5;7139:15;;;;;;;6016:1144;;;;;:::o;7165:632::-;7336:2;7388:21;;;7458:13;;7361:18;;;7480:22;;;7307:4;;7336:2;7559:15;;;;7533:2;7518:18;;;7307:4;7602:169;7616:6;7613:1;7610:13;7602:169;;;7677:13;;7665:26;;7746:15;;;;7711:12;;;;7638:1;7631:9;7602:169;;;-1:-1:-1;7788:3:1;;7165:632;-1:-1:-1;;;;;;7165:632:1:o;7802:646::-;7916:6;7924;7977:2;7965:9;7956:7;7952:23;7948:32;7945:52;;;7993:1;7990;7983:12;7945:52;8033:9;8020:23;-1:-1:-1;;;;;8103:2:1;8095:6;8092:14;8089:34;;;8119:1;8116;8109:12;8089:34;8157:6;8146:9;8142:22;8132:32;;8202:7;8195:4;8191:2;8187:13;8183:27;8173:55;;8224:1;8221;8214:12;8173:55;8264:2;8251:16;8290:2;8282:6;8279:14;8276:34;;;8306:1;8303;8296:12;8276:34;8362:7;8357:2;8349:4;8341:6;8337:17;8333:2;8329:26;8325:35;8322:48;8319:68;;;8383:1;8380;8373:12;8319:68;8414:2;8406:11;;;;;8436:6;;-1:-1:-1;7802:646:1;;-1:-1:-1;;;;7802:646:1:o;8453:407::-;8518:5;-1:-1:-1;;;;;8544:6:1;8541:30;8538:56;;;8574:18;;:::i;:::-;8612:57;8657:2;8636:15;;-1:-1:-1;;8632:29:1;8663:4;8628:40;8612:57;:::i;:::-;8603:66;;8692:6;8685:5;8678:21;8732:3;8723:6;8718:3;8714:16;8711:25;8708:45;;;8749:1;8746;8739:12;8708:45;8798:6;8793:3;8786:4;8779:5;8775:16;8762:43;8852:1;8845:4;8836:6;8829:5;8825:18;8821:29;8814:40;8453:407;;;;;:::o;8865:451::-;8934:6;8987:2;8975:9;8966:7;8962:23;8958:32;8955:52;;;9003:1;9000;8993:12;8955:52;9043:9;9030:23;-1:-1:-1;;;;;9068:6:1;9065:30;9062:50;;;9108:1;9105;9098:12;9062:50;9131:22;;9184:4;9176:13;;9172:27;-1:-1:-1;9162:55:1;;9213:1;9210;9203:12;9162:55;9236:74;9302:7;9297:2;9284:16;9279:2;9275;9271:11;9236:74;:::i;9321:118::-;9407:5;9400:13;9393:21;9386:5;9383:32;9373:60;;9429:1;9426;9419:12;9444:128;9509:20;;9538:28;9509:20;9538:28;:::i;9577:315::-;9642:6;9650;9703:2;9691:9;9682:7;9678:23;9674:32;9671:52;;;9719:1;9716;9709:12;9671:52;9742:29;9761:9;9742:29;:::i;:::-;9732:39;;9821:2;9810:9;9806:18;9793:32;9834:28;9856:5;9834:28;:::i;:::-;9881:5;9871:15;;;9577:315;;;;;:::o;9897:667::-;9992:6;10000;10008;10016;10069:3;10057:9;10048:7;10044:23;10040:33;10037:53;;;10086:1;10083;10076:12;10037:53;10109:29;10128:9;10109:29;:::i;:::-;10099:39;;10157:38;10191:2;10180:9;10176:18;10157:38;:::i;:::-;10147:48;;10242:2;10231:9;10227:18;10214:32;10204:42;;10297:2;10286:9;10282:18;10269:32;-1:-1:-1;;;;;10316:6:1;10313:30;10310:50;;;10356:1;10353;10346:12;10310:50;10379:22;;10432:4;10424:13;;10420:27;-1:-1:-1;10410:55:1;;10461:1;10458;10451:12;10410:55;10484:74;10550:7;10545:2;10532:16;10527:2;10523;10519:11;10484:74;:::i;:::-;10474:84;;;9897:667;;;;;;;:::o;10569:260::-;10637:6;10645;10698:2;10686:9;10677:7;10673:23;10669:32;10666:52;;;10714:1;10711;10704:12;10666:52;10737:29;10756:9;10737:29;:::i;:::-;10727:39;;10785:38;10819:2;10808:9;10804:18;10785:38;:::i;:::-;10775:48;;10569:260;;;;;:::o;11313:380::-;11392:1;11388:12;;;;11435;;;11456:61;;11510:4;11502:6;11498:17;11488:27;;11456:61;11563:2;11555:6;11552:14;11532:18;11529:38;11526:161;;11609:10;11604:3;11600:20;11597:1;11590:31;11644:4;11641:1;11634:15;11672:4;11669:1;11662:15;11526:161;;11313:380;;;:::o;12119:348::-;12321:2;12303:21;;;12360:2;12340:18;;;12333:30;12399:26;12394:2;12379:18;;12372:54;12458:2;12443:18;;12119:348::o;12885:127::-;12946:10;12941:3;12937:20;12934:1;12927:31;12977:4;12974:1;12967:15;13001:4;12998:1;12991:15;13017:409;13219:2;13201:21;;;13258:2;13238:18;;;13231:30;13297:34;13292:2;13277:18;;13270:62;-1:-1:-1;;;13363:2:1;13348:18;;13341:43;13416:3;13401:19;;13017:409::o;13431:127::-;13492:10;13487:3;13483:20;13480:1;13473:31;13523:4;13520:1;13513:15;13547:4;13544:1;13537:15;13563:135;13602:3;13623:17;;;13620:43;;13643:18;;:::i;:::-;-1:-1:-1;13690:1:1;13679:13;;13563:135::o;13703:426::-;13905:2;13887:21;;;13944:2;13924:18;;;13917:30;13983:34;13978:2;13963:18;;13956:62;14054:32;14049:2;14034:18;;14027:60;14119:3;14104:19;;13703:426::o;14545:241::-;14601:6;14654:2;14642:9;14633:7;14629:23;14625:32;14622:52;;;14670:1;14667;14660:12;14622:52;14709:9;14696:23;14728:28;14750:5;14728:28;:::i;15205:520::-;15275:5;15282:6;15342:3;15329:17;15428:2;15424:7;15413:8;15397:14;15393:29;15389:43;15369:18;15365:68;15355:96;;15447:1;15444;15437:12;15355:96;15475:33;;15579:4;15566:18;;;-1:-1:-1;15527:21:1;;-1:-1:-1;;;;;;15596:30:1;;15593:50;;;15639:1;15636;15629:12;15593:50;15693:6;15690:1;15686:14;15670;15666:35;15659:5;15655:47;15652:67;;;15715:1;15712;15705:12;15652:67;15205:520;;;;;:::o;15730:559::-;15851:6;15846:3;15839:19;15821:3;15877:4;15906:2;15901:3;15897:12;15890:19;;15932:5;15955:1;15965:299;15979:6;15976:1;15973:13;15965:299;;;-1:-1:-1;;;;;16044:26:1;16063:6;16044:26;:::i;:::-;16040:52;16028:65;;16140:15;;;16127:29;16113:12;;;16106:51;16180:4;16204:12;;;;16239:15;;;;16001:1;15994:9;15965:299;;;-1:-1:-1;16280:3:1;;15730:559;-1:-1:-1;;;;;15730:559:1:o;16294:1141::-;16434:6;16429:3;16422:19;16404:3;16460:4;16501:2;16496:3;16492:12;16526:11;16553;16546:18;;16603:6;16600:1;16596:14;16589:5;16585:26;16573:38;;16634:5;16657:1;16667:742;16681:6;16678:1;16675:13;16667:742;;;16752:5;16746:4;16742:16;16737:3;16730:29;16811:6;16798:20;16901:2;16897:7;16889:5;16873:14;16869:26;16865:40;16845:18;16841:65;16831:93;;16920:1;16917;16910:12;16831:93;16952:30;;17060:16;;;;17011:21;-1:-1:-1;;;;;17092:32:1;;17089:52;;;17137:1;17134;17127:12;17089:52;17197:8;17194:1;17190:16;17174:14;17170:37;17161:7;17157:51;17154:71;;;17221:1;17218;17211:12;17154:71;17246:83;17324:4;17314:8;17305:7;17246:83;:::i;:::-;17387:12;;;;17238:91;-1:-1:-1;;;17352:15:1;;;;16703:1;16696:9;16667:742;;;-1:-1:-1;17425:4:1;;16294:1141;-1:-1:-1;;;;;;;16294:1141:1:o;17440:1203::-;17530:19;;17518:32;;17606:4;17595:16;;;17582:30;17566:14;;;17559:54;17669:4;17658:16;;;17645:30;17629:14;;;17622:54;-1:-1:-1;;;;;17712:36:1;17742:4;17731:16;;17712:36;:::i;:::-;17708:62;17701:4;17696:3;17692:14;17685:86;17500:3;17814:67;17875:4;17868:5;17864:16;17857:5;17814:67;:::i;:::-;17913:4;17906;17897:14;;17890:28;;;17934:14;;17927:36;;;17982:3;-1:-1:-1;;;;;17997:37:1;;17994:57;;;18047:1;18044;18037:12;17994:57;18081:12;18078:1;18074:20;18060:34;;18144:6;18130:12;18125:2;18120:3;18116:12;18103:48;18179:6;18174:3;18170:16;18160:26;;18233:67;18294:4;18287:5;18283:16;18276:5;18233:67;:::i;:::-;18195:105;;18350:2;18344:3;18340:2;18336:12;18332:21;18325:4;18320:3;18316:14;18309:45;18375:122;18493:2;18489;18485:11;18469:14;18453;18375:122;:::i;:::-;18363:134;;;;;18528:33;18555:4;18548:5;18544:16;18528:33;:::i;:::-;899:13;;892:21;18611:4;18602:14;;880:34;18570:47;829:91;18648:490;18907:6;18896:9;18889:25;18950:6;18945:2;18934:9;18930:18;18923:34;19005:4;18997:6;18993:17;18988:2;18977:9;18973:18;18966:45;19047:3;19042:2;19031:9;19027:18;19020:31;18870:4;19068:64;19127:3;19116:9;19112:19;19104:6;19068:64;:::i;:::-;19060:72;18648:490;-1:-1:-1;;;;;;18648:490:1:o;19143:436::-;19360:25;;;-1:-1:-1;;;;;19421:32:1;;19416:2;19401:18;;19394:60;19490:2;19485;19470:18;;19463:30;;;-1:-1:-1;;19510:63:1;;19554:18;;19546:6;19510:63;:::i;:::-;19502:71;19143:436;-1:-1:-1;;;;;19143:436:1:o;19993:545::-;20086:4;20092:6;20152:11;20139:25;20246:2;20242:7;20231:8;20215:14;20211:29;20207:43;20187:18;20183:68;20173:96;;20265:1;20262;20255:12;20173:96;20292:33;;20344:20;;;-1:-1:-1;;;;;;20376:30:1;;20373:50;;;20419:1;20416;20409:12;20373:50;20452:4;20440:17;;-1:-1:-1;20503:1:1;20499:14;;;20483;20479:35;20469:46;;20466:66;;;20528:1;20525;20518:12;20543:128;20610:9;;;20631:11;;;20628:37;;;20645:18;;:::i;20808:217::-;20848:1;20874;20864:132;;20918:10;20913:3;20909:20;20906:1;20899:31;20953:4;20950:1;20943:15;20981:4;20978:1;20971:15;20864:132;-1:-1:-1;21010:9:1;;20808:217::o;21636:574::-;21758:4;21764:6;21824:11;21811:25;21918:2;21914:7;21903:8;21887:14;21883:29;21879:43;21859:18;21855:68;21845:96;;21937:1;21934;21927:12;21845:96;21964:33;;22016:20;;;-1:-1:-1;;;;;;22048:30:1;;22045:50;;;22091:1;22088;22081:12;22045:50;22124:4;22112:17;;-1:-1:-1;22175:1:1;22171:14;;;22155;22151:35;22141:46;;22138:66;;;22200:1;22197;22190:12;22215:168;22288:9;;;22319;;22336:15;;;22330:22;;22316:37;22306:71;;22357:18;;:::i;22388:125::-;22453:9;;;22474:10;;;22471:36;;;22487:18;;:::i;23343:416::-;23545:2;23527:21;;;23584:2;23564:18;;;23557:30;23623:34;23618:2;23603:18;;23596:62;-1:-1:-1;;;23689:2:1;23674:18;;23667:50;23749:3;23734:19;;23343:416::o;25568:197::-;25606:3;25634:6;25675:2;25668:5;25664:14;25702:2;25693:7;25690:15;25687:41;;25708:18;;:::i;:::-;25757:1;25744:15;;25568:197;-1:-1:-1;;;25568:197:1:o;28376:545::-;28478:2;28473:3;28470:11;28467:448;;;28514:1;28539:5;28535:2;28528:17;28584:4;28580:2;28570:19;28654:2;28642:10;28638:19;28635:1;28631:27;28625:4;28621:38;28690:4;28678:10;28675:20;28672:47;;;-1:-1:-1;28713:4:1;28672:47;28768:2;28763:3;28759:12;28756:1;28752:20;28746:4;28742:31;28732:41;;28823:82;28841:2;28834:5;28831:13;28823:82;;;28886:17;;;28867:1;28856:13;28823:82;;;28827:3;;;28376:545;;;:::o;29097:1352::-;29223:3;29217:10;-1:-1:-1;;;;;29242:6:1;29239:30;29236:56;;;29272:18;;:::i;:::-;29301:97;29391:6;29351:38;29383:4;29377:11;29351:38;:::i;:::-;29345:4;29301:97;:::i;:::-;29453:4;;29517:2;29506:14;;29534:1;29529:663;;;;30236:1;30253:6;30250:89;;;-1:-1:-1;30305:19:1;;;30299:26;30250:89;-1:-1:-1;;29054:1:1;29050:11;;;29046:24;29042:29;29032:40;29078:1;29074:11;;;29029:57;30352:81;;29499:944;;29529:663;28323:1;28316:14;;;28360:4;28347:18;;-1:-1:-1;;29565:20:1;;;29683:236;29697:7;29694:1;29691:14;29683:236;;;29786:19;;;29780:26;29765:42;;29878:27;;;;29846:1;29834:14;;;;29713:19;;29683:236;;;29687:3;29947:6;29938:7;29935:19;29932:201;;;30008:19;;;30002:26;-1:-1:-1;;30091:1:1;30087:14;;;30103:3;30083:24;30079:37;30075:42;30060:58;30045:74;;29932:201;-1:-1:-1;;;;;30179:1:1;30163:14;;;30159:22;30146:36;;-1:-1:-1;29097:1352:1:o;31277:1164::-;31554:3;31583:1;31616:6;31610:13;31646:36;31672:9;31646:36;:::i;:::-;31701:1;31718:18;;;31745:133;;;;31892:1;31887:356;;;;31711:532;;31745:133;-1:-1:-1;;31778:24:1;;31766:37;;31851:14;;31844:22;31832:35;;31823:45;;;-1:-1:-1;31745:133:1;;31887:356;31918:6;31915:1;31908:17;31948:4;31993:2;31990:1;31980:16;32018:1;32032:165;32046:6;32043:1;32040:13;32032:165;;;32124:14;;32111:11;;;32104:35;32167:16;;;;32061:10;;32032:165;;;32036:3;;;32226:6;32221:3;32217:16;32210:23;;31711:532;;-1:-1:-1;;;32259:3:1;32252:16;32299:6;32293:13;32277:29;;32315:77;32383:8;32378:2;32373:3;32369:12;32362:4;32354:6;32350:17;32315:77;:::i;:::-;32412:18;;;;32408:27;;;-1:-1:-1;;;;;31277:1164:1:o;33523:245::-;33590:6;33643:2;33631:9;33622:7;33618:23;33614:32;33611:52;;;33659:1;33656;33649:12;33611:52;33691:9;33685:16;33710:28;33732:5;33710:28;:::i;36617:414::-;36819:2;36801:21;;;36858:2;36838:18;;;36831:30;36897:34;36892:2;36877:18;;36870:62;-1:-1:-1;;;36963:2:1;36948:18;;36941:48;37021:3;37006:19;;36617:414::o;37036:510::-;37298:34;37293:3;37286:47;-1:-1:-1;;;37358:2:1;37353:3;37349:12;37342:39;37268:3;37410:6;37404:13;37426:73;37492:6;37487:2;37482:3;37478:12;37473:2;37465:6;37461:15;37426:73;:::i;:::-;37519:16;;;;37537:2;37515:25;;37036:510;-1:-1:-1;;37036:510:1:o;37961:401::-;38163:2;38145:21;;;38202:2;38182:18;;;38175:30;38241:34;38236:2;38221:18;;38214:62;-1:-1:-1;;;38307:2:1;38292:18;;38285:35;38352:3;38337:19;;37961:401::o;38772:489::-;-1:-1:-1;;;;;39041:15:1;;;39023:34;;39093:15;;39088:2;39073:18;;39066:43;39140:2;39125:18;;39118:34;;;39188:3;39183:2;39168:18;;39161:31;;;38966:4;;39209:46;;39235:19;;39227:6;39209:46;:::i;39266:249::-;39335:6;39388:2;39376:9;39367:7;39363:23;39359:32;39356:52;;;39404:1;39401;39394:12;39356:52;39436:9;39430:16;39455:30;39479:5;39455:30;:::i;41417:127::-;41478:10;41473:3;41469:20;41466:1;41459:31;41509:4;41506:1;41499:15;41533:4;41530:1;41523:15;42665:127;42726:10;42721:3;42717:20;42714:1;42707:31;42757:4;42754:1;42747:15;42781:4;42778:1;42771:15

Swarm Source

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