ETH Price: $3,299.70 (+1.53%)

Token

Feral File — The Experiment (FF034)
 

Overview

Max Total Supply

148 FF034

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yoshisodeoka.eth
Balance
4 FF034
0x632A997DDf40a6ee93ab1A239AA6870C90561A2F
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:
FeralfileExhibitionV2

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-16
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    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)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    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
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the 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 = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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


pragma solidity ^0.8.0;





contract FeralfileExhibitionV2 is ERC721Enumerable, Authorizable, IERC2981 {
    using Strings for uint256;

    // royalty payout address
    address public royaltyPayoutAddress;

    // The maximum limit of edition size for each exhibitions
    uint256 public immutable maxEditionPerArtwork;

    // the basis points of royalty payments for each secondary sales
    uint256 public immutable secondarySaleRoyaltyBPS;

    // the maximum basis points of royalty payments
    uint256 public constant MAX_ROYALITY_BPS = 100_00;

    // token base URI
    string private _tokenBaseURI;

    // contract URI
    string private _contractURI;

    /// @notice A structure for Feral File artwork
    struct Artwork {
        string title;
        string artistName;
        string fingerprint;
        uint256 editionSize;
    }

    struct ArtworkEdition {
        uint256 editionID;
        string ipfsCID;
    }

    uint256[] private _allArtworks;
    mapping(uint256 => Artwork) public artworks; // artworkID => Artwork
    mapping(uint256 => ArtworkEdition) public artworkEditions; // artworkEditionID => ArtworkEdition
    mapping(uint256 => uint256[]) internal allArtworkEditions; // artworkID => []ArtworkEditionID
    mapping(uint256 => bool) internal registeredBitmarks; // bitmarkID => bool
    mapping(string => bool) internal registeredIPFSCIDs; // ipfsCID => bool

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxEditionPerArtwork_,
        uint256 secondarySaleRoyaltyBPS_,
        address royaltyPayoutAddress_,
        string memory contractURI_,
        string memory tokenBaseURI_
    ) ERC721(name_, symbol_) {
        require(
            maxEditionPerArtwork_ > 0,
            "maxEdition of each artwork in an exhibition needs to be greater than zero"
        );
        require(
            secondarySaleRoyaltyBPS_ <= MAX_ROYALITY_BPS,
            "royalty BPS for secondary sales can not be greater than the maximum royalty BPS"
        );
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );

        maxEditionPerArtwork = maxEditionPerArtwork_;
        secondarySaleRoyaltyBPS = secondarySaleRoyaltyBPS_;
        royaltyPayoutAddress = royaltyPayoutAddress_;
        _contractURI = contractURI_;
        _tokenBaseURI = tokenBaseURI_;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @notice Call to create an artwork in the exhibition
    /// @param fingerprint - the fingerprint of an artwork
    /// @param title - the title of an artwork
    /// @param artistName - the artist of an artwork
    /// @param editionSize - the maximum edition size of an artwork
    function createArtwork(
        string memory fingerprint,
        string memory title,
        string memory artistName,
        uint256 editionSize
    ) external onlyAuthorized {
        require(bytes(title).length != 0, "title can not be empty");
        require(bytes(artistName).length != 0, "artist can not be empty");
        require(bytes(fingerprint).length != 0, "fingerprint can not be empty");
        require(editionSize > 0, "edition size needs to be at least 1");
        require(
            editionSize <= maxEditionPerArtwork,
            "artwork edition size exceeds the maximum edition size of the exhibition"
        );

        uint256 artworkID = uint256(keccak256(abi.encode(fingerprint)));

        /// @notice make sure the artwork have not been registered
        require(
            bytes(artworks[artworkID].fingerprint).length == 0,
            "an artwork with the same fingerprint has already registered"
        );

        Artwork memory artwork = Artwork(
            title = title,
            artistName = artistName,
            fingerprint = fingerprint,
            editionSize = editionSize
        );

        _allArtworks.push(artworkID);
        artworks[artworkID] = artwork;

        emit NewArtwork(artworkID);
    }

    /// @notice Return a count of artworks registered in this exhibition
    function totalArtworks() public view virtual returns (uint256) {
        return _allArtworks.length;
    }

    /// @notice Return the token identifier for the `index`th artwork
    function getArtworkByIndex(uint256 index)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            index < totalArtworks(),
            "artworks: global index out of bounds"
        );
        return _allArtworks[index];
    }

    /// @notice Swap an existent artwork from bitmark to ERC721
    /// @param artworkID - the artwork id where the new edition is referenced to
    /// @param bitmarkID - the bitmark id of artwork edition before swapped
    /// @param editionNumber - the edition number of the artwork edition
    /// @param owner - the owner address of the new minted token
    /// @param ipfsCID - the IPFS cid for the new token
    function swapArtworkFromBitmark(
        uint256 artworkID,
        uint256 bitmarkID,
        uint256 editionNumber,
        address owner,
        string memory ipfsCID
    ) external onlyAuthorized {
        /// @notice the edition size is not set implies the artwork is not created
        require(artworks[artworkID].editionSize > 0, "artwork is not found");
        /// @notice The range of editionNumber should be between 0 (AP) ~ artwork.editionSize
        require(
            editionNumber <= artworks[artworkID].editionSize,
            "edition number exceed the edition size of the artwork"
        );
        require(owner != address(0), "invalid owner address");
        require(!registeredBitmarks[bitmarkID], "bitmark id has registered");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        uint256 editionID = artworkID + editionNumber;
        require(
            artworkEditions[editionID].editionID == 0,
            "the edition is existent"
        );

        ArtworkEdition memory edition = ArtworkEdition(
            editionID = editionID,
            ipfsCID = ipfsCID
        );

        artworkEditions[editionID] = edition;
        allArtworkEditions[artworkID].push(editionID);

        registeredBitmarks[bitmarkID] = true;
        registeredIPFSCIDs[ipfsCID] = true;

        _safeMint(owner, editionID);
        emit NewArtworkEdition(owner, artworkID, editionID);
    }

    /// @notice Update the IPFS cid of an edition to a new value
    function updateArtworkEditionIPFSCid(uint256 tokenId, string memory ipfsCID)
        external
        onlyAuthorized
    {
        require(_exists(tokenId), "artwork edition is not found");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        ArtworkEdition storage edition = artworkEditions[tokenId];
        delete registeredIPFSCIDs[edition.ipfsCID];
        registeredIPFSCIDs[ipfsCID] = true;
        edition.ipfsCID = ipfsCID;
    }

    /// @notice setRoyaltyPayoutAddress assigns a payout address so
    //          that we can split the royalty.
    /// @param royaltyPayoutAddress_ - the new royalty payout address
    function setRoyaltyPayoutAddress(address royaltyPayoutAddress_)
        external
        onlyAuthorized
    {
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );
        royaltyPayoutAddress = royaltyPayoutAddress_;
    }

    /// @notice Return the edition counts for an artwork
    function totalEditionOfArtwork(uint256 artworkID)
        public
        view
        returns (uint256)
    {
        return allArtworkEditions[artworkID].length;
    }

    /// @notice Return the edition id of an artwork by index
    function getArtworkEditionByIndex(uint256 artworkID, uint256 index)
        public
        view
        returns (uint256)
    {
        require(index < totalEditionOfArtwork(artworkID));
        return allArtworkEditions[artworkID][index];
    }

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

        string memory baseURI = _tokenBaseURI;
        if (bytes(baseURI).length == 0) {
            baseURI = "ipfs://";
        }

        return
            string(
                abi.encodePacked(
                    baseURI,
                    artworkEditions[tokenId].ipfsCID,
                    "/metadata.json"
                )
            );
    }

    /// @notice Update the base URI for all tokens
    function setTokenBaseURI(string memory baseURI_) external onlyAuthorized {
        _tokenBaseURI = baseURI_;
    }

    /// @notice A URL for the opensea storefront-level metadata
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param tokenId - the NFT asset queried for royalty information
    /// @param salePrice - the sale price of the NFT asset specified by tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for salePrice
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(tokenId),
            "ERC2981: query royalty info for nonexistent token"
        );

        receiver = royaltyPayoutAddress;

        royaltyAmount =
            (salePrice * secondarySaleRoyaltyBPS) /
            MAX_ROYALITY_BPS;
    }

    event NewArtwork(uint256 indexed artworkID);
    event NewArtworkEdition(
        address indexed owner,
        uint256 indexed artworkID,
        uint256 indexed editionID
    );
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxEditionPerArtwork_","type":"uint256"},{"internalType":"uint256","name":"secondarySaleRoyaltyBPS_","type":"uint256"},{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"editionID","type":"uint256"}],"name":"NewArtworkEdition","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":"MAX_ROYALITY_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworkEditions","outputs":[{"internalType":"uint256","name":"editionID","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworks","outputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"}],"name":"createArtwork","outputs":[],"stateMutability":"nonpayable","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":"index","type":"uint256"}],"name":"getArtworkByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkEditionByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxEditionPerArtwork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"secondarySaleRoyaltyBPS","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":"royaltyPayoutAddress_","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","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":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"bitmarkID","type":"uint256"},{"internalType":"uint256","name":"editionNumber","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"swapArtworkFromBitmark","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"totalArtworks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"totalEditionOfArtwork","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"updateArtworkEditionIPFSCid","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b506040516200343938038062003439833981016040819052620000349162000370565b86866000620000448382620004de565b506001620000538282620004de565b505050620000706200006a6200023860201b60201c565b6200023c565b60008511620000fe5760405162461bcd60e51b815260206004820152604960248201527f6d617845646974696f6e206f66206561636820617274776f726b20696e20616e60448201527f2065786869626974696f6e206e6565647320746f2062652067726561746572206064820152687468616e207a65726f60b81b608482015260a4015b60405180910390fd5b612710841115620001905760405162461bcd60e51b815260206004820152604f60248201527f726f79616c74792042505320666f72207365636f6e646172792073616c65732060448201527f63616e206e6f742062652067726561746572207468616e20746865206d61786960648201526e6d756d20726f79616c74792042505360881b608482015260a401620000f5565b6001600160a01b038316620001e85760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401620000f5565b608085905260a0849052600c80546001600160a01b0319166001600160a01b038516179055600e6200021b8382620004de565b50600d6200022a8282620004de565b5050505050505050620005aa565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b657600080fd5b81516001600160401b0380821115620002d357620002d36200028e565b604051601f8301601f19908116603f01168101908282118183101715620002fe57620002fe6200028e565b816040528381526020925086838588010111156200031b57600080fd5b600091505b838210156200033f578582018301518183018401529082019062000320565b600093810190920192909252949350505050565b80516001600160a01b03811681146200036b57600080fd5b919050565b600080600080600080600060e0888a0312156200038c57600080fd5b87516001600160401b0380821115620003a457600080fd5b620003b28b838c01620002a4565b985060208a0151915080821115620003c957600080fd5b620003d78b838c01620002a4565b975060408a0151965060608a01519550620003f560808b0162000353565b945060a08a01519150808211156200040c57600080fd5b6200041a8b838c01620002a4565b935060c08a01519150808211156200043157600080fd5b50620004408a828b01620002a4565b91505092959891949750929550565b600181811c908216806200046457607f821691505b6020821081036200048557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d957600081815260208120601f850160051c81016020861015620004b45750805b601f850160051c820191505b81811015620004d557828155600101620004c0565b5050505b505050565b81516001600160401b03811115620004fa57620004fa6200028e565b62000512816200050b84546200044f565b846200048b565b602080601f8311600181146200054a5760008415620005315750858301515b600019600386901b1c1916600185901b178555620004d5565b600085815260208120601f198616915b828110156200057b578886015182559484019460019091019084016200055a565b50858210156200059a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051612e5b620005de600039600081816105490152610a1801526000818161044b0152610c610152612e5b6000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063c87b56dd116100b8578063ea211d7c1161007c578063ea211d7c14610544578063ec9cbb441461056b578063eee608a414610574578063f2fde38b14610597578063fe2a3bf3146105aa57600080fd5b8063c87b56dd146104d2578063dc78ac1c146104e5578063e4a233e1146104f8578063e8a3d48514610500578063e985e9c51461050857600080fd5b80638ef79e91116100ff5780638ef79e911461047e57806395d89b4114610491578063a22cb46514610499578063b4883703146104ac578063b88d4fde146104bf57600080fd5b806370a0823114610418578063715018a61461042b5780637f34c0dd1461043357806384ad61af146104465780638da5cb5b1461046d57600080fd5b80632f745c59116101c95780634b6026731161018d5780634b6026731461039b5780634f6ccce7146103be57806362fe2131146103d15780636352211e146103f2578063641b18e91461040557600080fd5b80632f745c591461033c5780633afb021a1461034f5780633f6805ba1461036257806342842e0e1461037557806345aeefde1461038857600080fd5b8063095ea7b311610210578063095ea7b3146102bf5780630cfcb5f1146102d257806318160ddd146102e557806323b872dd146102f75780632a55205a1461030a57600080fd5b806301ffc9a714610242578063031205061461026a57806306fdde031461027f578063081812fc14610294575b600080fd5b61025561025036600461255d565b6105ca565b60405190151581526020015b60405180910390f35b61027d61027836600461259d565b6105f5565b005b61028761061e565b6040516102619190612608565b6102a76102a236600461261b565b6106b0565b6040516001600160a01b039091168152602001610261565b61027d6102cd366004612634565b6106d7565b61027d6102e036600461270a565b6107f1565b6008545b604051908152602001610261565b61027d610305366004612751565b61095f565b61031d61031836600461278d565b610990565b604080516001600160a01b039093168352602083019190915201610261565b6102e961034a366004612634565b610a50565b61027d61035d3660046127af565b610ae6565b600c546102a7906001600160a01b031681565b61027d610383366004612751565b610e9f565b61027d61039636600461259d565b610eba565b6103ae6103a936600461261b565b610f63565b604051610261949392919061283f565b6102e96103cc36600461261b565b611123565b6103e46103df36600461261b565b6111b6565b60405161026192919061288a565b6102a761040036600461261b565b61125b565b6102e961041336600461278d565b6112bb565b6102e961042636600461259d565b611308565b61027d61138e565b61027d6104413660046128a3565b6113a2565b6102e97f000000000000000000000000000000000000000000000000000000000000000081565b600a546001600160a01b03166102a7565b61027d61048c36600461290e565b61171a565b61028761175b565b61027d6104a7366004612943565b61176a565b6102e96104ba36600461261b565b611775565b61027d6104cd36600461297f565b6117ed565b6102876104e036600461261b565b61181f565b61027d6104f336600461259d565b611985565b600f546102e9565b6102876119b1565b6102556105163660046129fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e97f000000000000000000000000000000000000000000000000000000000000000081565b6102e961271081565b61025561058236600461259d565b600b6020526000908152604090205460ff1681565b61027d6105a536600461259d565b6119c0565b6102e96105b836600461261b565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105ef57506105ef82611a39565b92915050565b6105fd611a5e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b60606000805461062d90612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612a25565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb82611ab8565b506000908152600460205260409020546001600160a01b031690565b60006106e28261125b565b9050806001600160a01b0316836001600160a01b0316036107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061077057506107708133610516565b6107e25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161074b565b6107ec8383611b08565b505050565b336000908152600b602052604090205460ff16806108195750600a546001600160a01b031633145b61082257600080fd5b61082b82611b76565b6108775760405162461bcd60e51b815260206004820152601c60248201527f617274776f726b2065646974696f6e206973206e6f7420666f756e6400000000604482015260640161074b565b6014816040516108879190612a5f565b9081526040519081900360200190205460ff16156108e05760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604482015260640161074b565b600082815260116020526040908190209051601490610903906001840190612aee565b908152604051908190036020018120805460ff1916905560019060149061092b908590612a5f565b908152604051908190036020019020805491151560ff19909216919091179055600181016109598382612b48565b50505050565b6109693382611b93565b6109855760405162461bcd60e51b815260040161074b90612c08565b6107ec838383611c12565b60008061099c84611b76565b610a025760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161074b565b600c546001600160a01b03169150612710610a3d7f000000000000000000000000000000000000000000000000000000000000000085612c6b565b610a479190612c82565b90509250929050565b6000610a5b83611308565b8210610abd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff1680610b0e5750600a546001600160a01b031633145b610b1757600080fd5b8251600003610b615760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b604482015260640161074b565b8151600003610bb25760405162461bcd60e51b815260206004820152601760248201527f6172746973742063616e206e6f7420626520656d707479000000000000000000604482015260640161074b565b8351600003610c035760405162461bcd60e51b815260206004820152601c60248201527f66696e6765727072696e742063616e206e6f7420626520656d70747900000000604482015260640161074b565b60008111610c5f5760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b606482015260840161074b565b7f0000000000000000000000000000000000000000000000000000000000000000811115610d055760405162461bcd60e51b815260206004820152604760248201527f617274776f726b2065646974696f6e2073697a6520657863656564732074686560448201527f206d6178696d756d2065646974696f6e2073697a65206f66207468652065786860648201526634b134ba34b7b760c91b608482015260a40161074b565b600084604051602001610d189190612608565b60408051601f198184030181529181528151602092830120600081815260109093529120600201805491925090610d4e90612a25565b159050610dc35760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527f72696e742068617320616c726561647920726567697374657265640000000000606482015260840161074b565b60408051608081018252858152602080820186905281830188905260608201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201849055600084815260109091529190912081518291908190610e349082612b48565b5060208201516001820190610e499082612b48565b5060408201516002820190610e5e9082612b48565b506060919091015160039091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a2505050505050565b6107ec838383604051806020016040528060008152506117ed565b336000908152600b602052604090205460ff1680610ee25750600a546001600160a01b031633145b610eeb57600080fd5b6001600160a01b038116610f415760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f757420616464726573730000604482015260640161074b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610f7e90612a25565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa90612a25565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b50505050509080600101805461100c90612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461103890612a25565b80156110855780601f1061105a57610100808354040283529160200191611085565b820191906000526020600020905b81548152906001019060200180831161106857829003601f168201915b50505050509080600201805461109a90612a25565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690612a25565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050908060030154905084565b600061112e60085490565b82106111915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074b565b600882815481106111a4576111a4612ca4565b90600052602060002001549050919050565b601160205260009081526040902080546001820180549192916111d890612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461120490612a25565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105ef5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b60008281526012602052604081205482106112d557600080fd5b60008381526012602052604090208054839081106112f5576112f5612ca4565b9060005260206000200154905092915050565b60006001600160a01b0382166113725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161074b565b506001600160a01b031660009081526003602052604090205490565b611396611a5e565b6113a06000611d83565b565b336000908152600b602052604090205460ff16806113ca5750600a546001600160a01b031633145b6113d357600080fd5b6000858152601060205260409020600301546114285760405162461bcd60e51b8152602060048201526014602482015273185c9d1ddbdc9ac81a5cc81b9bdd08199bdd5b9960621b604482015260640161074b565b6000858152601060205260409020600301548311156114a75760405162461bcd60e51b815260206004820152603560248201527f65646974696f6e206e756d62657220657863656564207468652065646974696f6044820152746e2073697a65206f662074686520617274776f726b60581b606482015260840161074b565b6001600160a01b0382166114f55760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b604482015260640161074b565b60008481526013602052604090205460ff16156115545760405162461bcd60e51b815260206004820152601960248201527f6269746d61726b20696420686173207265676973746572656400000000000000604482015260640161074b565b6014816040516115649190612a5f565b9081526040519081900360200190205460ff16156115bd5760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604482015260640161074b565b60006115c98487612cba565b600081815260116020526040902054909150156116285760405162461bcd60e51b815260206004820152601760248201527f7468652065646974696f6e206973206578697374656e74000000000000000000604482015260640161074b565b6040805180820182528281526020808201858152600085815260119092529290208151815591519091829160018201906116629082612b48565b505050600087815260126020908152604080832080546001818101835591855283852001869055898452601390925291829020805460ff19168217905590516014906116af908690612a5f565b908152604051908190036020019020805491151560ff199092169190911790556116d98483611dd5565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b336000908152600b602052604090205460ff16806117425750600a546001600160a01b031633145b61174b57600080fd5b600d6117578282612b48565b5050565b60606001805461062d90612a25565b611757338383611def565b6000611780600f5490565b82106117da5760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b606482015260840161074b565b600f82815481106111a4576111a4612ca4565b6117f73383611b93565b6118135760405162461bcd60e51b815260040161074b90612c08565b61095984848484611ebd565b606061182a82611b76565b61188e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074b565b6000600d805461189d90612a25565b80601f01602080910402602001604051908101604052809291908181526020018280546118c990612a25565b80156119165780601f106118eb57610100808354040283529160200191611916565b820191906000526020600020905b8154815290600101906020018083116118f957829003601f168201915b5050505050905080516000036119465750604080518082019091526007815266697066733a2f2f60c81b60208201525b806011600085815260200190815260200160002060010160405160200161196e929190612ccd565b604051602081830303815290604052915050919050565b61198d611a5e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e805461062d90612a25565b6119c8611a5e565b6001600160a01b038116611a2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074b565b611a3681611d83565b50565b60006001600160e01b0319821663780e9d6360e01b14806105ef57506105ef82611ef0565b600a546001600160a01b031633146113a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b611ac181611b76565b611a365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3d8261125b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600080611b9f8361125b565b9050806001600160a01b0316846001600160a01b03161480611be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611c0a5750836001600160a01b0316611bff846106b0565b6001600160a01b0316145b949350505050565b826001600160a01b0316611c258261125b565b6001600160a01b031614611c4b5760405162461bcd60e51b815260040161074b90612d0b565b6001600160a01b038216611cad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074b565b611cba8383836001611f40565b826001600160a01b0316611ccd8261125b565b6001600160a01b031614611cf35760405162461bcd60e51b815260040161074b90612d0b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611757828260405180602001604052806000815250612080565b816001600160a01b0316836001600160a01b031603611e505760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ec8848484611c12565b611ed4848484846120b3565b6109595760405162461bcd60e51b815260040161074b90612d50565b60006001600160e01b031982166380ac58cd60e01b1480611f2157506001600160e01b03198216635b5e139f60e01b145b806105ef57506301ffc9a760e01b6001600160e01b03198316146105ef565b611f4c848484846121b4565b6001811115611fbb5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161074b565b816001600160a01b0385166120175761201281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61203a565b836001600160a01b0316856001600160a01b03161461203a5761203a858261223c565b6001600160a01b03841661205657612051816122d9565b612079565b846001600160a01b0316846001600160a01b031614612079576120798482612388565b5050505050565b61208a83836123cc565b61209760008484846120b3565b6107ec5760405162461bcd60e51b815260040161074b90612d50565b60006001600160a01b0384163b156121a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120f7903390899088908890600401612da2565b6020604051808303816000875af1925050508015612132575060408051601f3d908101601f1916820190925261212f91810190612ddf565b60015b61218f573d808015612160576040519150601f19603f3d011682016040523d82523d6000602084013e612165565b606091505b5080516000036121875760405162461bcd60e51b815260040161074b90612d50565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c0a565b506001949350505050565b6001811115610959576001600160a01b038416156121fa576001600160a01b038416600090815260036020526040812080548392906121f4908490612dfc565b90915550505b6001600160a01b03831615610959576001600160a01b03831660009081526003602052604081208054839290612231908490612cba565b909155505050505050565b6000600161224984611308565b6122539190612dfc565b6000838152600760205260409020549091508082146122a6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122eb90600190612dfc565b6000838152600960205260408120546008805493945090928490811061231357612313612ca4565b90600052602060002001549050806008838154811061233457612334612ca4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061236c5761236c612e0f565b6001900381819060005260206000200160009055905550505050565b600061239383611308565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074b565b61242b81611b76565b156124785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b612486600083836001611f40565b61248f81611b76565b156124dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114611a3657600080fd5b60006020828403121561256f57600080fd5b813561257a81612547565b9392505050565b80356001600160a01b038116811461259857600080fd5b919050565b6000602082840312156125af57600080fd5b61257a82612581565b60005b838110156125d35781810151838201526020016125bb565b50506000910152565b600081518084526125f48160208601602086016125b8565b601f01601f19169290920160200192915050565b60208152600061257a60208301846125dc565b60006020828403121561262d57600080fd5b5035919050565b6000806040838503121561264757600080fd5b61265083612581565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268f5761268f61265e565b604051601f8501601f19908116603f011681019082821181831017156126b7576126b761265e565b816040528093508581528686860111156126d057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126fb57600080fd5b61257a83833560208501612674565b6000806040838503121561271d57600080fd5b82359150602083013567ffffffffffffffff81111561273b57600080fd5b612747858286016126ea565b9150509250929050565b60008060006060848603121561276657600080fd5b61276f84612581565b925061277d60208501612581565b9150604084013590509250925092565b600080604083850312156127a057600080fd5b50508035926020909101359150565b600080600080608085870312156127c557600080fd5b843567ffffffffffffffff808211156127dd57600080fd5b6127e9888389016126ea565b955060208701359150808211156127ff57600080fd5b61280b888389016126ea565b9450604087013591508082111561282157600080fd5b5061282e878288016126ea565b949793965093946060013593505050565b60808152600061285260808301876125dc565b828103602084015261286481876125dc565b9050828103604084015261287881866125dc565b91505082606083015295945050505050565b828152604060208201526000611c0a60408301846125dc565b600080600080600060a086880312156128bb57600080fd5b8535945060208601359350604086013592506128d960608701612581565b9150608086013567ffffffffffffffff8111156128f557600080fd5b612901888289016126ea565b9150509295509295909350565b60006020828403121561292057600080fd5b813567ffffffffffffffff81111561293757600080fd5b611c0a848285016126ea565b6000806040838503121561295657600080fd5b61295f83612581565b91506020830135801515811461297457600080fd5b809150509250929050565b6000806000806080858703121561299557600080fd5b61299e85612581565b93506129ac60208601612581565b925060408501359150606085013567ffffffffffffffff8111156129cf57600080fd5b8501601f810187136129e057600080fd5b6129ef87823560208401612674565b91505092959194509250565b60008060408385031215612a0e57600080fd5b612a1783612581565b9150610a4760208401612581565b600181811c90821680612a3957607f821691505b602082108103612a5957634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612a718184602087016125b8565b9190910192915050565b60008154612a8881612a25565b60018281168015612aa05760018114612ab557612ae4565b60ff1984168752821515830287019450612ae4565b8560005260208060002060005b85811015612adb5781548a820152908401908201612ac2565b50505082870194505b5050505092915050565b600061257a8284612a7b565b601f8211156107ec57600081815260208120601f850160051c81016020861015612b215750805b601f850160051c820191505b81811015612b4057828155600101612b2d565b505050505050565b815167ffffffffffffffff811115612b6257612b6261265e565b612b7681612b708454612a25565b84612afa565b602080601f831160018114612bab5760008415612b935750858301515b600019600386901b1c1916600185901b178555612b40565b600085815260208120601f198616915b82811015612bda57888601518255948401946001909101908401612bbb565b5085821015612bf85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105ef576105ef612c55565b600082612c9f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b808201808211156105ef576105ef612c55565b60008351612cdf8184602088016125b8565b612ceb81840185612a7b565b6d17b6b2ba30b230ba30973539b7b760911b8152600e0195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dd5908301846125dc565b9695505050505050565b600060208284031215612df157600080fd5b815161257a81612547565b818103818111156105ef576105ef612c55565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200775791814d504f4aeecdac5949479e8c95f1c0c93c4ee0d878e9b25c02a1eb164736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001d466572616c2046696c6520e2809420546865204578706572696d656e7400000000000000000000000000000000000000000000000000000000000000000000054646303334000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d534143326b366141394432373575414b33787532344a746e55784d586d716a387a67737a70777a337152746b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063c87b56dd116100b8578063ea211d7c1161007c578063ea211d7c14610544578063ec9cbb441461056b578063eee608a414610574578063f2fde38b14610597578063fe2a3bf3146105aa57600080fd5b8063c87b56dd146104d2578063dc78ac1c146104e5578063e4a233e1146104f8578063e8a3d48514610500578063e985e9c51461050857600080fd5b80638ef79e91116100ff5780638ef79e911461047e57806395d89b4114610491578063a22cb46514610499578063b4883703146104ac578063b88d4fde146104bf57600080fd5b806370a0823114610418578063715018a61461042b5780637f34c0dd1461043357806384ad61af146104465780638da5cb5b1461046d57600080fd5b80632f745c59116101c95780634b6026731161018d5780634b6026731461039b5780634f6ccce7146103be57806362fe2131146103d15780636352211e146103f2578063641b18e91461040557600080fd5b80632f745c591461033c5780633afb021a1461034f5780633f6805ba1461036257806342842e0e1461037557806345aeefde1461038857600080fd5b8063095ea7b311610210578063095ea7b3146102bf5780630cfcb5f1146102d257806318160ddd146102e557806323b872dd146102f75780632a55205a1461030a57600080fd5b806301ffc9a714610242578063031205061461026a57806306fdde031461027f578063081812fc14610294575b600080fd5b61025561025036600461255d565b6105ca565b60405190151581526020015b60405180910390f35b61027d61027836600461259d565b6105f5565b005b61028761061e565b6040516102619190612608565b6102a76102a236600461261b565b6106b0565b6040516001600160a01b039091168152602001610261565b61027d6102cd366004612634565b6106d7565b61027d6102e036600461270a565b6107f1565b6008545b604051908152602001610261565b61027d610305366004612751565b61095f565b61031d61031836600461278d565b610990565b604080516001600160a01b039093168352602083019190915201610261565b6102e961034a366004612634565b610a50565b61027d61035d3660046127af565b610ae6565b600c546102a7906001600160a01b031681565b61027d610383366004612751565b610e9f565b61027d61039636600461259d565b610eba565b6103ae6103a936600461261b565b610f63565b604051610261949392919061283f565b6102e96103cc36600461261b565b611123565b6103e46103df36600461261b565b6111b6565b60405161026192919061288a565b6102a761040036600461261b565b61125b565b6102e961041336600461278d565b6112bb565b6102e961042636600461259d565b611308565b61027d61138e565b61027d6104413660046128a3565b6113a2565b6102e97f000000000000000000000000000000000000000000000000000000000000000a81565b600a546001600160a01b03166102a7565b61027d61048c36600461290e565b61171a565b61028761175b565b61027d6104a7366004612943565b61176a565b6102e96104ba36600461261b565b611775565b61027d6104cd36600461297f565b6117ed565b6102876104e036600461261b565b61181f565b61027d6104f336600461259d565b611985565b600f546102e9565b6102876119b1565b6102556105163660046129fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e97f00000000000000000000000000000000000000000000000000000000000003e881565b6102e961271081565b61025561058236600461259d565b600b6020526000908152604090205460ff1681565b61027d6105a536600461259d565b6119c0565b6102e96105b836600461261b565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105ef57506105ef82611a39565b92915050565b6105fd611a5e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b60606000805461062d90612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612a25565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb82611ab8565b506000908152600460205260409020546001600160a01b031690565b60006106e28261125b565b9050806001600160a01b0316836001600160a01b0316036107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061077057506107708133610516565b6107e25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161074b565b6107ec8383611b08565b505050565b336000908152600b602052604090205460ff16806108195750600a546001600160a01b031633145b61082257600080fd5b61082b82611b76565b6108775760405162461bcd60e51b815260206004820152601c60248201527f617274776f726b2065646974696f6e206973206e6f7420666f756e6400000000604482015260640161074b565b6014816040516108879190612a5f565b9081526040519081900360200190205460ff16156108e05760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604482015260640161074b565b600082815260116020526040908190209051601490610903906001840190612aee565b908152604051908190036020018120805460ff1916905560019060149061092b908590612a5f565b908152604051908190036020019020805491151560ff19909216919091179055600181016109598382612b48565b50505050565b6109693382611b93565b6109855760405162461bcd60e51b815260040161074b90612c08565b6107ec838383611c12565b60008061099c84611b76565b610a025760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161074b565b600c546001600160a01b03169150612710610a3d7f00000000000000000000000000000000000000000000000000000000000003e885612c6b565b610a479190612c82565b90509250929050565b6000610a5b83611308565b8210610abd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff1680610b0e5750600a546001600160a01b031633145b610b1757600080fd5b8251600003610b615760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b604482015260640161074b565b8151600003610bb25760405162461bcd60e51b815260206004820152601760248201527f6172746973742063616e206e6f7420626520656d707479000000000000000000604482015260640161074b565b8351600003610c035760405162461bcd60e51b815260206004820152601c60248201527f66696e6765727072696e742063616e206e6f7420626520656d70747900000000604482015260640161074b565b60008111610c5f5760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b606482015260840161074b565b7f000000000000000000000000000000000000000000000000000000000000000a811115610d055760405162461bcd60e51b815260206004820152604760248201527f617274776f726b2065646974696f6e2073697a6520657863656564732074686560448201527f206d6178696d756d2065646974696f6e2073697a65206f66207468652065786860648201526634b134ba34b7b760c91b608482015260a40161074b565b600084604051602001610d189190612608565b60408051601f198184030181529181528151602092830120600081815260109093529120600201805491925090610d4e90612a25565b159050610dc35760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527f72696e742068617320616c726561647920726567697374657265640000000000606482015260840161074b565b60408051608081018252858152602080820186905281830188905260608201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201849055600084815260109091529190912081518291908190610e349082612b48565b5060208201516001820190610e499082612b48565b5060408201516002820190610e5e9082612b48565b506060919091015160039091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a2505050505050565b6107ec838383604051806020016040528060008152506117ed565b336000908152600b602052604090205460ff1680610ee25750600a546001600160a01b031633145b610eeb57600080fd5b6001600160a01b038116610f415760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f757420616464726573730000604482015260640161074b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610f7e90612a25565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa90612a25565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b50505050509080600101805461100c90612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461103890612a25565b80156110855780601f1061105a57610100808354040283529160200191611085565b820191906000526020600020905b81548152906001019060200180831161106857829003601f168201915b50505050509080600201805461109a90612a25565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690612a25565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050908060030154905084565b600061112e60085490565b82106111915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074b565b600882815481106111a4576111a4612ca4565b90600052602060002001549050919050565b601160205260009081526040902080546001820180549192916111d890612a25565b80601f016020809104026020016040519081016040528092919081815260200182805461120490612a25565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105ef5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b60008281526012602052604081205482106112d557600080fd5b60008381526012602052604090208054839081106112f5576112f5612ca4565b9060005260206000200154905092915050565b60006001600160a01b0382166113725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161074b565b506001600160a01b031660009081526003602052604090205490565b611396611a5e565b6113a06000611d83565b565b336000908152600b602052604090205460ff16806113ca5750600a546001600160a01b031633145b6113d357600080fd5b6000858152601060205260409020600301546114285760405162461bcd60e51b8152602060048201526014602482015273185c9d1ddbdc9ac81a5cc81b9bdd08199bdd5b9960621b604482015260640161074b565b6000858152601060205260409020600301548311156114a75760405162461bcd60e51b815260206004820152603560248201527f65646974696f6e206e756d62657220657863656564207468652065646974696f6044820152746e2073697a65206f662074686520617274776f726b60581b606482015260840161074b565b6001600160a01b0382166114f55760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b604482015260640161074b565b60008481526013602052604090205460ff16156115545760405162461bcd60e51b815260206004820152601960248201527f6269746d61726b20696420686173207265676973746572656400000000000000604482015260640161074b565b6014816040516115649190612a5f565b9081526040519081900360200190205460ff16156115bd5760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604482015260640161074b565b60006115c98487612cba565b600081815260116020526040902054909150156116285760405162461bcd60e51b815260206004820152601760248201527f7468652065646974696f6e206973206578697374656e74000000000000000000604482015260640161074b565b6040805180820182528281526020808201858152600085815260119092529290208151815591519091829160018201906116629082612b48565b505050600087815260126020908152604080832080546001818101835591855283852001869055898452601390925291829020805460ff19168217905590516014906116af908690612a5f565b908152604051908190036020019020805491151560ff199092169190911790556116d98483611dd5565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b336000908152600b602052604090205460ff16806117425750600a546001600160a01b031633145b61174b57600080fd5b600d6117578282612b48565b5050565b60606001805461062d90612a25565b611757338383611def565b6000611780600f5490565b82106117da5760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b606482015260840161074b565b600f82815481106111a4576111a4612ca4565b6117f73383611b93565b6118135760405162461bcd60e51b815260040161074b90612c08565b61095984848484611ebd565b606061182a82611b76565b61188e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074b565b6000600d805461189d90612a25565b80601f01602080910402602001604051908101604052809291908181526020018280546118c990612a25565b80156119165780601f106118eb57610100808354040283529160200191611916565b820191906000526020600020905b8154815290600101906020018083116118f957829003601f168201915b5050505050905080516000036119465750604080518082019091526007815266697066733a2f2f60c81b60208201525b806011600085815260200190815260200160002060010160405160200161196e929190612ccd565b604051602081830303815290604052915050919050565b61198d611a5e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e805461062d90612a25565b6119c8611a5e565b6001600160a01b038116611a2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074b565b611a3681611d83565b50565b60006001600160e01b0319821663780e9d6360e01b14806105ef57506105ef82611ef0565b600a546001600160a01b031633146113a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b611ac181611b76565b611a365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3d8261125b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600080611b9f8361125b565b9050806001600160a01b0316846001600160a01b03161480611be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611c0a5750836001600160a01b0316611bff846106b0565b6001600160a01b0316145b949350505050565b826001600160a01b0316611c258261125b565b6001600160a01b031614611c4b5760405162461bcd60e51b815260040161074b90612d0b565b6001600160a01b038216611cad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074b565b611cba8383836001611f40565b826001600160a01b0316611ccd8261125b565b6001600160a01b031614611cf35760405162461bcd60e51b815260040161074b90612d0b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611757828260405180602001604052806000815250612080565b816001600160a01b0316836001600160a01b031603611e505760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ec8848484611c12565b611ed4848484846120b3565b6109595760405162461bcd60e51b815260040161074b90612d50565b60006001600160e01b031982166380ac58cd60e01b1480611f2157506001600160e01b03198216635b5e139f60e01b145b806105ef57506301ffc9a760e01b6001600160e01b03198316146105ef565b611f4c848484846121b4565b6001811115611fbb5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161074b565b816001600160a01b0385166120175761201281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61203a565b836001600160a01b0316856001600160a01b03161461203a5761203a858261223c565b6001600160a01b03841661205657612051816122d9565b612079565b846001600160a01b0316846001600160a01b031614612079576120798482612388565b5050505050565b61208a83836123cc565b61209760008484846120b3565b6107ec5760405162461bcd60e51b815260040161074b90612d50565b60006001600160a01b0384163b156121a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120f7903390899088908890600401612da2565b6020604051808303816000875af1925050508015612132575060408051601f3d908101601f1916820190925261212f91810190612ddf565b60015b61218f573d808015612160576040519150601f19603f3d011682016040523d82523d6000602084013e612165565b606091505b5080516000036121875760405162461bcd60e51b815260040161074b90612d50565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c0a565b506001949350505050565b6001811115610959576001600160a01b038416156121fa576001600160a01b038416600090815260036020526040812080548392906121f4908490612dfc565b90915550505b6001600160a01b03831615610959576001600160a01b03831660009081526003602052604081208054839290612231908490612cba565b909155505050505050565b6000600161224984611308565b6122539190612dfc565b6000838152600760205260409020549091508082146122a6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122eb90600190612dfc565b6000838152600960205260408120546008805493945090928490811061231357612313612ca4565b90600052602060002001549050806008838154811061233457612334612ca4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061236c5761236c612e0f565b6001900381819060005260206000200160009055905550505050565b600061239383611308565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074b565b61242b81611b76565b156124785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b612486600083836001611f40565b61248f81611b76565b156124dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114611a3657600080fd5b60006020828403121561256f57600080fd5b813561257a81612547565b9392505050565b80356001600160a01b038116811461259857600080fd5b919050565b6000602082840312156125af57600080fd5b61257a82612581565b60005b838110156125d35781810151838201526020016125bb565b50506000910152565b600081518084526125f48160208601602086016125b8565b601f01601f19169290920160200192915050565b60208152600061257a60208301846125dc565b60006020828403121561262d57600080fd5b5035919050565b6000806040838503121561264757600080fd5b61265083612581565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268f5761268f61265e565b604051601f8501601f19908116603f011681019082821181831017156126b7576126b761265e565b816040528093508581528686860111156126d057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126fb57600080fd5b61257a83833560208501612674565b6000806040838503121561271d57600080fd5b82359150602083013567ffffffffffffffff81111561273b57600080fd5b612747858286016126ea565b9150509250929050565b60008060006060848603121561276657600080fd5b61276f84612581565b925061277d60208501612581565b9150604084013590509250925092565b600080604083850312156127a057600080fd5b50508035926020909101359150565b600080600080608085870312156127c557600080fd5b843567ffffffffffffffff808211156127dd57600080fd5b6127e9888389016126ea565b955060208701359150808211156127ff57600080fd5b61280b888389016126ea565b9450604087013591508082111561282157600080fd5b5061282e878288016126ea565b949793965093946060013593505050565b60808152600061285260808301876125dc565b828103602084015261286481876125dc565b9050828103604084015261287881866125dc565b91505082606083015295945050505050565b828152604060208201526000611c0a60408301846125dc565b600080600080600060a086880312156128bb57600080fd5b8535945060208601359350604086013592506128d960608701612581565b9150608086013567ffffffffffffffff8111156128f557600080fd5b612901888289016126ea565b9150509295509295909350565b60006020828403121561292057600080fd5b813567ffffffffffffffff81111561293757600080fd5b611c0a848285016126ea565b6000806040838503121561295657600080fd5b61295f83612581565b91506020830135801515811461297457600080fd5b809150509250929050565b6000806000806080858703121561299557600080fd5b61299e85612581565b93506129ac60208601612581565b925060408501359150606085013567ffffffffffffffff8111156129cf57600080fd5b8501601f810187136129e057600080fd5b6129ef87823560208401612674565b91505092959194509250565b60008060408385031215612a0e57600080fd5b612a1783612581565b9150610a4760208401612581565b600181811c90821680612a3957607f821691505b602082108103612a5957634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612a718184602087016125b8565b9190910192915050565b60008154612a8881612a25565b60018281168015612aa05760018114612ab557612ae4565b60ff1984168752821515830287019450612ae4565b8560005260208060002060005b85811015612adb5781548a820152908401908201612ac2565b50505082870194505b5050505092915050565b600061257a8284612a7b565b601f8211156107ec57600081815260208120601f850160051c81016020861015612b215750805b601f850160051c820191505b81811015612b4057828155600101612b2d565b505050505050565b815167ffffffffffffffff811115612b6257612b6261265e565b612b7681612b708454612a25565b84612afa565b602080601f831160018114612bab5760008415612b935750858301515b600019600386901b1c1916600185901b178555612b40565b600085815260208120601f198616915b82811015612bda57888601518255948401946001909101908401612bbb565b5085821015612bf85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105ef576105ef612c55565b600082612c9f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b808201808211156105ef576105ef612c55565b60008351612cdf8184602088016125b8565b612ceb81840185612a7b565b6d17b6b2ba30b230ba30973539b7b760911b8152600e0195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dd5908301846125dc565b9695505050505050565b600060208284031215612df157600080fd5b815161257a81612547565b818103818111156105ef576105ef612c55565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200775791814d504f4aeecdac5949479e8c95f1c0c93c4ee0d878e9b25c02a1eb164736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001d466572616c2046696c6520e2809420546865204578706572696d656e7400000000000000000000000000000000000000000000000000000000000000000000054646303334000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d534143326b366141394432373575414b33787532344a746e55784d586d716a387a67737a70777a337152746b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

-----Decoded View---------------
Arg [0] : name_ (string): Feral File — The Experiment
Arg [1] : symbol_ (string): FF034
Arg [2] : maxEditionPerArtwork_ (uint256): 10
Arg [3] : secondarySaleRoyaltyBPS_ (uint256): 1000
Arg [4] : royaltyPayoutAddress_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [5] : contractURI_ (string): https://ipfs.bitmark.com/ipfs/QmSAC2k6aA9D275uAK3xu24JtnUxMXmqj8zgszpwz3qRtk
Arg [6] : tokenBaseURI_ (string): https://ipfs.bitmark.com/ipfs/

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [8] : 466572616c2046696c6520e2809420546865204578706572696d656e74000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4646303334000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [12] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d
Arg [13] : 534143326b366141394432373575414b33787532344a746e55784d586d716a38
Arg [14] : 7a67737a70777a337152746b0000000000000000000000000000000000000000
Arg [15] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [16] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000


Deployed Bytecode Sourcemap

64042:10590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66498:310;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;66498:310:0;;;;;;;;19265:102;;;;;;:::i;:::-;;:::i;:::-;;42032:100;;;:::i;:::-;;;;;;;:::i;43544:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;43544:171:0;1902:203:1;43062:416:0;;;;;;:::i;:::-;;:::i;70940:478::-;;;;;;:::i;:::-;;:::i;58610:113::-;58698:10;:17;58610:113;;;3906:25:1;;;3894:2;3879:18;58610:113:0;3760:177:1;44244:335:0;;;;;;:::i;:::-;;:::i;73976:460::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4720:32:1;;;4702:51;;4784:2;4769:18;;4762:34;;;;4675:18;73976:460:0;4528:274:1;58278:256:0;;;;;;:::i;:::-;;:::i;67108:1300::-;;;;;;:::i;:::-;;:::i;64189:35::-;;;;;-1:-1:-1;;;;;64189:35:0;;;44650:185;;;;;;:::i;:::-;;:::i;71614:300::-;;;;;;:::i;:::-;;:::i;65026:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;58800:233::-;;;;;;:::i;:::-;;:::i;65100:57::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41742:223::-;;;;;;:::i;:::-;;:::i;72224:252::-;;;;;;:::i;:::-;;:::i;41473:207::-;;;;;;:::i;:::-;;:::i;17975:103::-;;;:::i;69392:1474::-;;;;;;:::i;:::-;;:::i;64296:45::-;;;;;17327:87;17400:6;;-1:-1:-1;;;;;17400:6:0;17327:87;;73265:116;;;;;;:::i;:::-;;:::i;42201:104::-;;;:::i;43787:155::-;;;;;;:::i;:::-;;:::i;68677:286::-;;;;;;:::i;:::-;;:::i;44906:322::-;;;;;;:::i;:::-;;:::i;72565:640::-;;;;;;:::i;:::-;;:::i;19158:99::-;;;;;;:::i;:::-;;:::i;68490:108::-;68571:12;:19;68490:108;;73454:97;;;:::i;44013:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;44134:25:0;;;44110:4;44134:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44013:164;64420:48;;;;;64530:49;;64573:6;64530:49;;18966:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18233:201;;;;;;:::i;:::-;;:::i;71980:174::-;;;;;;:::i;:::-;72078:7;72110:29;;;:18;:29;;;;;:36;;71980:174;66498:310;66655:4;-1:-1:-1;;;;;;66697:50:0;;-1:-1:-1;;;66697:50:0;;:103;;;66764:36;66788:11;66764:23;:36::i;:::-;66677:123;66498:310;-1:-1:-1;;66498:310:0:o;19265:102::-;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;19341:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;19334:25;;-1:-1:-1;;19334:25:0::1;::::0;;19265:102::o;42032:100::-;42086:13;42119:5;42112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42032:100;:::o;43544:171::-;43620:7;43640:23;43655:7;43640:14;:23::i;:::-;-1:-1:-1;43683:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43683:24:0;;43544:171::o;43062:416::-;43143:13;43159:23;43174:7;43159:14;:23::i;:::-;43143:39;;43207:5;-1:-1:-1;;;;;43201:11:0;:2;-1:-1:-1;;;;;43201:11:0;;43193:57;;;;-1:-1:-1;;;43193:57:0;;9354:2:1;43193:57:0;;;9336:21:1;9393:2;9373:18;;;9366:30;9432:34;9412:18;;;9405:62;-1:-1:-1;;;9483:18:1;;;9476:31;9524:19;;43193:57:0;;;;;;;;;15958:10;-1:-1:-1;;;;;43285:21:0;;;;:62;;-1:-1:-1;43310:37:0;43327:5;15958:10;44013:164;:::i;43310:37::-;43263:173;;;;-1:-1:-1;;;43263:173:0;;9756:2:1;43263:173:0;;;9738:21:1;9795:2;9775:18;;;9768:30;9834:34;9814:18;;;9807:62;9905:31;9885:18;;;9878:59;9954:19;;43263:173:0;9554:425:1;43263:173:0;43449:21;43458:2;43462:7;43449:8;:21::i;:::-;43132:346;43062:416;;:::o;70940:478::-;19093:10;19084:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;19108:10;:21;19084:45;19076:54;;;;;;71083:16:::1;71091:7;71083;:16::i;:::-;71075:57;;;::::0;-1:-1:-1;;;71075:57:0;;10186:2:1;71075:57:0::1;::::0;::::1;10168:21:1::0;10225:2;10205:18;;;10198:30;10264;10244:18;;;10237:58;10312:18;;71075:57:0::1;9984:352:1::0;71075:57:0::1;71152:18;71171:7;71152:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;71151:28;71143:63;;;::::0;-1:-1:-1;;;71143:63:0;;10837:2:1;71143:63:0::1;::::0;::::1;10819:21:1::0;10876:2;10856:18;;;10849:30;-1:-1:-1;;;10895:18:1;;;10888:52;10957:18;;71143:63:0::1;10635:346:1::0;71143:63:0::1;71219:30;71252:24:::0;;;:15:::1;:24;::::0;;;;;;71294:35;;:18:::1;::::0;:35:::1;::::0;71313:15:::1;::::0;::::1;::::0;71294:35:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;71287:42;;-1:-1:-1;;71287:42:0::1;::::0;;;;71340:18:::1;::::0;:27:::1;::::0;71359:7;;71340:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;71340:34:0;;::::1;::::0;;;::::1;::::0;;;71385:15;::::1;:25;71403:7:::0;71385:15;:25:::1;:::i;:::-;;71064:354;70940:478:::0;;:::o;44244:335::-;44439:41;15958:10;44472:7;44439:18;:41::i;:::-;44431:99;;;;-1:-1:-1;;;44431:99:0;;;;;;;:::i;:::-;44543:28;44553:4;44559:2;44563:7;44543:9;:28::i;73976:460::-;74101:16;74119:21;74180:16;74188:7;74180;:16::i;:::-;74158:115;;;;-1:-1:-1;;;74158:115:0;;14735:2:1;74158:115:0;;;14717:21:1;14774:2;14754:18;;;14747:30;14813:34;14793:18;;;14786:62;-1:-1:-1;;;14864:18:1;;;14857:47;14921:19;;74158:115:0;14533:413:1;74158:115:0;74297:20;;-1:-1:-1;;;;;74297:20:0;;-1:-1:-1;64573:6:0;74360:35;74372:23;74360:9;:35;:::i;:::-;74359:69;;;;:::i;:::-;74330:98;;73976:460;;;;;:::o;58278:256::-;58375:7;58411:23;58428:5;58411:16;:23::i;:::-;58403:5;:31;58395:87;;;;-1:-1:-1;;;58395:87:0;;15680:2:1;58395:87:0;;;15662:21:1;15719:2;15699:18;;;15692:30;15758:34;15738:18;;;15731:62;-1:-1:-1;;;15809:18:1;;;15802:41;15860:19;;58395:87:0;15478:407:1;58395:87:0;-1:-1:-1;;;;;;58500:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;58278:256::o;67108:1300::-;19093:10;19084:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;19108:10;:21;19084:45;19076:54;;;;;;67318:5:::1;67312:19;67335:1;67312:24:::0;67304:59:::1;;;::::0;-1:-1:-1;;;67304:59:0;;16092:2:1;67304:59:0::1;::::0;::::1;16074:21:1::0;16131:2;16111:18;;;16104:30;-1:-1:-1;;;16150:18:1;;;16143:52;16212:18;;67304:59:0::1;15890:346:1::0;67304:59:0::1;67388:10;67382:24;67410:1;67382:29:::0;67374:65:::1;;;::::0;-1:-1:-1;;;67374:65:0;;16443:2:1;67374:65:0::1;::::0;::::1;16425:21:1::0;16482:2;16462:18;;;16455:30;16521:25;16501:18;;;16494:53;16564:18;;67374:65:0::1;16241:347:1::0;67374:65:0::1;67464:11;67458:25;67487:1;67458:30:::0;67450:71:::1;;;::::0;-1:-1:-1;;;67450:71:0;;16795:2:1;67450:71:0::1;::::0;::::1;16777:21:1::0;16834:2;16814:18;;;16807:30;16873;16853:18;;;16846:58;16921:18;;67450:71:0::1;16593:352:1::0;67450:71:0::1;67554:1;67540:11;:15;67532:63;;;::::0;-1:-1:-1;;;67532:63:0;;17152:2:1;67532:63:0::1;::::0;::::1;17134:21:1::0;17191:2;17171:18;;;17164:30;17230:34;17210:18;;;17203:62;-1:-1:-1;;;17281:18:1;;;17274:33;17324:19;;67532:63:0::1;16950:399:1::0;67532:63:0::1;67643:20;67628:11;:35;;67606:156;;;::::0;-1:-1:-1;;;67606:156:0;;17556:2:1;67606:156:0::1;::::0;::::1;17538:21:1::0;17595:2;17575:18;;;17568:30;17634:34;17614:18;;;17607:62;17705:34;17685:18;;;17678:62;-1:-1:-1;;;17756:19:1;;;17749:38;17804:19;;67606:156:0::1;17354:475:1::0;67606:156:0::1;67775:17;67824:11;67813:23;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;67813:23:0;;::::1;::::0;;;;;;67803:34;;67813:23:::1;67803:34:::0;;::::1;::::0;67795:43:::1;67947:19:::0;;;:8:::1;:19:::0;;;;;:31:::1;;67941:45:::0;;67803:34;;-1:-1:-1;67947:31:0;67941:45:::1;::::0;::::1;:::i;:::-;:50:::0;;-1:-1:-1;67919:159:0::1;;;::::0;-1:-1:-1;;;67919:159:0;;18036:2:1;67919:159:0::1;::::0;::::1;18018:21:1::0;18075:2;18055:18;;;18048:30;18114:34;18094:18;;;18087:62;18185:29;18165:18;;;18158:57;18232:19;;67919:159:0::1;17834:423:1::0;67919:159:0::1;68116:164;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;68293:12:::1;:28:::0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;68091:22:::1;68332:19:::0;;;:8:::1;:19:::0;;;;;;;:29;;68116:164;;68332:19;;;:29:::1;::::0;:19;:29:::1;:::i;:::-;-1:-1:-1::0;68332:29:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;68332:29:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;68332:29:0::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;68379:21:::1;::::0;68390:9;;68379:21:::1;::::0;;;::::1;67293:1115;;67108:1300:::0;;;;:::o;44650:185::-;44788:39;44805:4;44811:2;44815:7;44788:39;;;;;;;;;;;;:16;:39::i;71614:300::-;19093:10;19084:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;19108:10;:21;19084:45;19076:54;;;;;;-1:-1:-1;;;;;71758:35:0;::::1;71736:115;;;::::0;-1:-1:-1;;;71736:115:0;;18464:2:1;71736:115:0::1;::::0;::::1;18446:21:1::0;18503:2;18483:18;;;18476:30;18542:32;18522:18;;;18515:60;18592:18;;71736:115:0::1;18262:354:1::0;71736:115:0::1;71862:20;:44:::0;;-1:-1:-1;;;;;;71862:44:0::1;-1:-1:-1::0;;;;;71862:44:0;;;::::1;::::0;;;::::1;::::0;;71614:300::o;65026:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58800:233::-;58875:7;58911:30;58698:10;:17;;58610:113;58911:30;58903:5;:38;58895:95;;;;-1:-1:-1;;;58895:95:0;;18823:2:1;58895:95:0;;;18805:21:1;18862:2;18842:18;;;18835:30;18901:34;18881:18;;;18874:62;-1:-1:-1;;;18952:18:1;;;18945:42;19004:19;;58895:95:0;18621:408:1;58895:95:0;59008:10;59019:5;59008:17;;;;;;;;:::i;:::-;;;;;;;;;59001:24;;58800:233;;;:::o;65100:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41742:223::-;41814:7;46629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46629:16:0;;41878:56;;;;-1:-1:-1;;;41878:56:0;;19368:2:1;41878:56:0;;;19350:21:1;19407:2;19387:18;;;19380:30;-1:-1:-1;;;19426:18:1;;;19419:54;19490:18;;41878:56:0;19166:348:1;72224:252:0;72340:7;72110:29;;;:18;:29;;;;;:36;72373:5;:40;72365:49;;;;;;72432:29;;;;:18;:29;;;;;:36;;72462:5;;72432:36;;;;;;:::i;:::-;;;;;;;;;72425:43;;72224:252;;;;:::o;41473:207::-;41545:7;-1:-1:-1;;;;;41573:19:0;;41565:73;;;;-1:-1:-1;;;41565:73:0;;19721:2:1;41565:73:0;;;19703:21:1;19760:2;19740:18;;;19733:30;19799:34;19779:18;;;19772:62;-1:-1:-1;;;19850:18:1;;;19843:39;19899:19;;41565:73:0;19519:405:1;41565:73:0;-1:-1:-1;;;;;;41656:16:0;;;;;:9;:16;;;;;;;41473:207::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;69392:1474::-;19093:10;19084:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;19108:10;:21;19084:45;19076:54;;;;;;69736:1:::1;69702:19:::0;;;:8:::1;:19;::::0;;;;:31:::1;;::::0;69694:68:::1;;;::::0;-1:-1:-1;;;69694:68:0;;20131:2:1;69694:68:0::1;::::0;::::1;20113:21:1::0;20170:2;20150:18;;;20143:30;-1:-1:-1;;;20189:18:1;;;20182:50;20249:18;;69694:68:0::1;19929:344:1::0;69694:68:0::1;69907:19;::::0;;;:8:::1;:19;::::0;;;;:31:::1;;::::0;69890:48;::::1;;69868:151;;;::::0;-1:-1:-1;;;69868:151:0;;20480:2:1;69868:151:0::1;::::0;::::1;20462:21:1::0;20519:2;20499:18;;;20492:30;20558:34;20538:18;;;20531:62;-1:-1:-1;;;20609:18:1;;;20602:51;20670:19;;69868:151:0::1;20278:417:1::0;69868:151:0::1;-1:-1:-1::0;;;;;70038:19:0;::::1;70030:53;;;::::0;-1:-1:-1;;;70030:53:0;;20902:2:1;70030:53:0::1;::::0;::::1;20884:21:1::0;20941:2;20921:18;;;20914:30;-1:-1:-1;;;20960:18:1;;;20953:51;21021:18;;70030:53:0::1;20700:345:1::0;70030:53:0::1;70103:29;::::0;;;:18:::1;:29;::::0;;;;;::::1;;70102:30;70094:68;;;::::0;-1:-1:-1;;;70094:68:0;;21252:2:1;70094:68:0::1;::::0;::::1;21234:21:1::0;21291:2;21271:18;;;21264:30;21330:27;21310:18;;;21303:55;21375:18;;70094:68:0::1;21050:349:1::0;70094:68:0::1;70182:18;70201:7;70182:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;70181:28;70173:63;;;::::0;-1:-1:-1;;;70173:63:0;;10837:2:1;70173:63:0::1;::::0;::::1;10819:21:1::0;10876:2;10856:18;;;10849:30;-1:-1:-1;;;10895:18:1;;;10888:52;10957:18;;70173:63:0::1;10635:346:1::0;70173:63:0::1;70249:17;70269:25;70281:13:::0;70269:9;:25:::1;:::i;:::-;70327:26;::::0;;;:15:::1;:26;::::0;;;;:36;70249:45;;-1:-1:-1;70327:41:0;70305:114:::1;;;::::0;-1:-1:-1;;;70305:114:0;;21736:2:1;70305:114:0::1;::::0;::::1;21718:21:1::0;21775:2;21755:18;;;21748:30;21814:25;21794:18;;;21787:53;21857:18;;70305:114:0::1;21534:347:1::0;70305:114:0::1;70464:93;::::0;;;;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;70432:29:::1;70570:26:::0;;;:15:::1;:26:::0;;;;;;:36;;;;;;70464:93;;;;70570:36:::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;;;70617:29:0::1;::::0;;;:18:::1;:29;::::0;;;;;;;:45;;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;;70675:29;;;:18:::1;:29:::0;;;;;;;:36;;-1:-1:-1;;70675:36:0::1;::::0;::::1;::::0;;70722:27;;:18:::1;::::0;:27:::1;::::0;70741:7;;70722:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;70722:34:0;;::::1;::::0;;;::::1;::::0;;70769:27:::1;70779:5:::0;70786:9;70769::::1;:27::i;:::-;70848:9;70837;70830:5;-1:-1:-1::0;;;;;70812:46:0::1;;;;;;;;;;;69599:1267;;69392:1474:::0;;;;;:::o;73265:116::-;19093:10;19084:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;19108:10;:21;19084:45;19076:54;;;;;;73349:13:::1;:24;73365:8:::0;73349:13;:24:::1;:::i;:::-;;73265:116:::0;:::o;42201:104::-;42257:13;42290:7;42283:14;;;;;:::i;43787:155::-;43882:52;15958:10;43915:8;43925;43882:18;:52::i;68677:286::-;68784:7;68839:15;68571:12;:19;;68490:108;68839:15;68831:5;:23;68809:109;;;;-1:-1:-1;;;68809:109:0;;22088:2:1;68809:109:0;;;22070:21:1;22127:2;22107:18;;;22100:30;22166:34;22146:18;;;22139:62;-1:-1:-1;;;22217:18:1;;;22210:34;22261:19;;68809:109:0;21886:400:1;68809:109:0;68936:12;68949:5;68936:19;;;;;;;;:::i;44906:322::-;45080:41;15958:10;45113:7;45080:18;:41::i;:::-;45072:99;;;;-1:-1:-1;;;45072:99:0;;;;;;;:::i;:::-;45182:38;45196:4;45202:2;45206:7;45215:4;45182:13;:38::i;72565:640::-;72683:13;72736:16;72744:7;72736;:16::i;:::-;72714:113;;;;-1:-1:-1;;;72714:113:0;;22493:2:1;72714:113:0;;;22475:21:1;22532:2;22512:18;;;22505:30;22571:34;22551:18;;;22544:62;-1:-1:-1;;;22622:18:1;;;22615:45;22677:19;;72714:113:0;22291:411:1;72714:113:0;72840:21;72864:13;72840:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72898:7;72892:21;72917:1;72892:26;72888:78;;-1:-1:-1;72935:19:0;;;;;;;;;;;;-1:-1:-1;;;72935:19:0;;;;72888:78;73062:7;73092:15;:24;73108:7;73092:24;;;;;;;;;;;:32;;73023:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72978:219;;;72565:640;;;:::o;19158:99::-;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;19224:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;19224:25:0::1;19245:4;19224:25;::::0;;19158:99::o;73454:97::-;73498:13;73531:12;73524:19;;;;;:::i;18233:201::-;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;18322:22:0;::::1;18314:73;;;::::0;-1:-1:-1;;;18314:73:0;;23451:2:1;18314:73:0::1;::::0;::::1;23433:21:1::0;23490:2;23470:18;;;23463:30;23529:34;23509:18;;;23502:62;-1:-1:-1;;;23580:18:1;;;23573:36;23626:19;;18314:73:0::1;23249:402:1::0;18314:73:0::1;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;57970:224::-;58072:4;-1:-1:-1;;;;;;58096:50:0;;-1:-1:-1;;;58096:50:0;;:90;;;58150:36;58174:11;58150:23;:36::i;17492:132::-;17400:6;;-1:-1:-1;;;;;17400:6:0;15958:10;17556:23;17548:68;;;;-1:-1:-1;;;17548:68:0;;23858:2:1;17548:68:0;;;23840:21:1;;;23877:18;;;23870:30;23936:34;23916:18;;;23909:62;23988:18;;17548:68:0;23656:356:1;53363:135:0;53445:16;53453:7;53445;:16::i;:::-;53437:53;;;;-1:-1:-1;;;53437:53:0;;19368:2:1;53437:53:0;;;19350:21:1;19407:2;19387:18;;;19380:30;-1:-1:-1;;;19426:18:1;;;19419:54;19490:18;;53437:53:0;19166:348:1;52642:174:0;52717:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52717:29:0;-1:-1:-1;;;;;52717:29:0;;;;;;;;:24;;52771:23;52717:24;52771:14;:23::i;:::-;-1:-1:-1;;;;;52762:46:0;;;;;;;;;;;52642:174;;:::o;46966:128::-;47031:4;46629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46629:16:0;47055:31;;;46966:128::o;47261:264::-;47354:4;47371:13;47387:23;47402:7;47387:14;:23::i;:::-;47371:39;;47440:5;-1:-1:-1;;;;;47429:16:0;:7;-1:-1:-1;;;;;47429:16:0;;:52;;;-1:-1:-1;;;;;;44134:25:0;;;44110:4;44134:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47449:32;47429:87;;;;47509:7;-1:-1:-1;;;;;47485:31:0;:20;47497:7;47485:11;:20::i;:::-;-1:-1:-1;;;;;47485:31:0;;47429:87;47421:96;47261:264;-1:-1:-1;;;;47261:264:0:o;51260:1263::-;51419:4;-1:-1:-1;;;;;51392:31:0;:23;51407:7;51392:14;:23::i;:::-;-1:-1:-1;;;;;51392:31:0;;51384:81;;;;-1:-1:-1;;;51384:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51484:16:0;;51476:65;;;;-1:-1:-1;;;51476:65:0;;24625:2:1;51476:65:0;;;24607:21:1;24664:2;24644:18;;;24637:30;24703:34;24683:18;;;24676:62;-1:-1:-1;;;24754:18:1;;;24747:34;24798:19;;51476:65:0;24423:400:1;51476:65:0;51554:42;51575:4;51581:2;51585:7;51594:1;51554:20;:42::i;:::-;51726:4;-1:-1:-1;;;;;51699:31:0;:23;51714:7;51699:14;:23::i;:::-;-1:-1:-1;;;;;51699:31:0;;51691:81;;;;-1:-1:-1;;;51691:81:0;;;;;;;:::i;:::-;51844:24;;;;:15;:24;;;;;;;;51837:31;;-1:-1:-1;;;;;;51837:31:0;;;;;;-1:-1:-1;;;;;52320:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;52320:20:0;;;52355:13;;;;;;;;;:18;;51837:31;52355:18;;;52395:16;;;:7;:16;;;;;;:21;;;;;;;;;;52434:27;;51860:7;;52434:27;;;43132:346;43062:416;;:::o;18594:191::-;18687:6;;;-1:-1:-1;;;;;18704:17:0;;;-1:-1:-1;;;;;;18704:17:0;;;;;;;18737:40;;18687:6;;;18704:17;18687:6;;18737:40;;18668:16;;18737:40;18657:128;18594:191;:::o;47867:110::-;47943:26;47953:2;47957:7;47943:26;;;;;;;;;;;;:9;:26::i;52959:315::-;53114:8;-1:-1:-1;;;;;53105:17:0;:5;-1:-1:-1;;;;;53105:17:0;;53097:55;;;;-1:-1:-1;;;53097:55:0;;25030:2:1;53097:55:0;;;25012:21:1;25069:2;25049:18;;;25042:30;25108:27;25088:18;;;25081:55;25153:18;;53097:55:0;24828:349:1;53097:55:0;-1:-1:-1;;;;;53163:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53163:46:0;;;;;;;;;;53225:41;;540::1;;;53225::0;;513:18:1;53225:41:0;;;;;;;52959:315;;;:::o;46109:313::-;46265:28;46275:4;46281:2;46285:7;46265:9;:28::i;:::-;46312:47;46335:4;46341:2;46345:7;46354:4;46312:22;:47::i;:::-;46304:110;;;;-1:-1:-1;;;46304:110:0;;;;;;;:::i;41104:305::-;41206:4;-1:-1:-1;;;;;;41243:40:0;;-1:-1:-1;;;41243:40:0;;:105;;-1:-1:-1;;;;;;;41300:48:0;;-1:-1:-1;;;41300:48:0;41243:105;:158;;;-1:-1:-1;;;;;;;;;;32645:40:0;;;41365:36;32536:157;59107:915;59284:61;59311:4;59317:2;59321:12;59335:9;59284:26;:61::i;:::-;59374:1;59362:9;:13;59358:222;;;59505:63;;-1:-1:-1;;;59505:63:0;;25803:2:1;59505:63:0;;;25785:21:1;25842:2;25822:18;;;25815:30;25881:34;25861:18;;;25854:62;-1:-1:-1;;;25932:18:1;;;25925:51;25993:19;;59505:63:0;25601:417:1;59358:222:0;59610:12;-1:-1:-1;;;;;59639:18:0;;59635:187;;59674:40;59706:7;60849:10;:17;;60822:24;;;;:15;:24;;;;;:44;;;60877:24;;;;;;;;;;;;60745:164;59674:40;59635:187;;;59744:2;-1:-1:-1;;;;;59736:10:0;:4;-1:-1:-1;;;;;59736:10:0;;59732:90;;59763:47;59796:4;59802:7;59763:32;:47::i;:::-;-1:-1:-1;;;;;59836:16:0;;59832:183;;59869:45;59906:7;59869:36;:45::i;:::-;59832:183;;;59942:4;-1:-1:-1;;;;;59936:10:0;:2;-1:-1:-1;;;;;59936:10:0;;59932:83;;59963:40;59991:2;59995:7;59963:27;:40::i;:::-;59273:749;59107:915;;;;:::o;48204:319::-;48333:18;48339:2;48343:7;48333:5;:18::i;:::-;48384:53;48415:1;48419:2;48423:7;48432:4;48384:22;:53::i;:::-;48362:153;;;;-1:-1:-1;;;48362:153:0;;;;;;;:::i;54062:853::-;54216:4;-1:-1:-1;;;;;54237:13:0;;20902:19;:23;54233:675;;54273:71;;-1:-1:-1;;;54273:71:0;;-1:-1:-1;;;;;54273:36:0;;;;;:71;;15958:10;;54324:4;;54330:7;;54339:4;;54273:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54273:71:0;;;;;;;;-1:-1:-1;;54273:71:0;;;;;;;;;;;;:::i;:::-;;;54269:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54514:6;:13;54531:1;54514:18;54510:328;;54557:60;;-1:-1:-1;;;54557:60:0;;;;;;;:::i;54510:328::-;54788:6;54782:13;54773:6;54769:2;54765:15;54758:38;54269:584;-1:-1:-1;;;;;;54395:51:0;-1:-1:-1;;;54395:51:0;;-1:-1:-1;54388:58:0;;54233:675;-1:-1:-1;54892:4:0;54062:853;;;;;;:::o;55647:410::-;55837:1;55825:9;:13;55821:229;;;-1:-1:-1;;;;;55859:18:0;;;55855:87;;-1:-1:-1;;;;;55898:15:0;;;;;;:9;:15;;;;;:28;;55917:9;;55898:15;:28;;55917:9;;55898:28;:::i;:::-;;;;-1:-1:-1;;55855:87:0;-1:-1:-1;;;;;55960:16:0;;;55956:83;;-1:-1:-1;;;;;55997:13:0;;;;;;:9;:13;;;;;:26;;56014:9;;55997:13;:26;;56014:9;;55997:26;:::i;:::-;;;;-1:-1:-1;;55647:410:0;;;;:::o;61536:988::-;61802:22;61852:1;61827:22;61844:4;61827:16;:22::i;:::-;:26;;;;:::i;:::-;61864:18;61885:26;;;:17;:26;;;;;;61802:51;;-1:-1:-1;62018:28:0;;;62014:328;;-1:-1:-1;;;;;62085:18:0;;62063:19;62085:18;;;:12;:18;;;;;;;;:34;;;;;;;;;62136:30;;;;;;:44;;;62253:30;;:17;:30;;;;;:43;;;62014:328;-1:-1:-1;62438:26:0;;;;:17;:26;;;;;;;;62431:33;;;-1:-1:-1;;;;;62482:18:0;;;;;:12;:18;;;;;:34;;;;;;;62475:41;61536:988::o;62819:1079::-;63097:10;:17;63072:22;;63097:21;;63117:1;;63097:21;:::i;:::-;63129:18;63150:24;;;:15;:24;;;;;;63523:10;:26;;63072:46;;-1:-1:-1;63150:24:0;;63072:46;;63523:26;;;;;;:::i;:::-;;;;;;;;;63501:48;;63587:11;63562:10;63573;63562:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;63667:28;;;:15;:28;;;;;;;:41;;;63839:24;;;;;63832:31;63874:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62890:1008;;;62819:1079;:::o;60323:221::-;60408:14;60425:20;60442:2;60425:16;:20::i;:::-;-1:-1:-1;;;;;60456:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;60501:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;60323:221:0:o;48859:942::-;-1:-1:-1;;;;;48939:16:0;;48931:61;;;;-1:-1:-1;;;48931:61:0;;27238:2:1;48931:61:0;;;27220:21:1;;;27257:18;;;27250:30;27316:34;27296:18;;;27289:62;27368:18;;48931:61:0;27036:356:1;48931:61:0;49012:16;49020:7;49012;:16::i;:::-;49011:17;49003:58;;;;-1:-1:-1;;;49003:58:0;;27599:2:1;49003:58:0;;;27581:21:1;27638:2;27618:18;;;27611:30;27677;27657:18;;;27650:58;27725:18;;49003:58:0;27397:352:1;49003:58:0;49074:48;49103:1;49107:2;49111:7;49120:1;49074:20;:48::i;:::-;49221:16;49229:7;49221;:16::i;:::-;49220:17;49212:58;;;;-1:-1:-1;;;49212:58:0;;27599:2:1;49212:58:0;;;27581:21:1;27638:2;27618:18;;;27611:30;27677;27657:18;;;27650:58;27725:18;;49212:58:0;27397:352:1;49212:58:0;-1:-1:-1;;;;;49619:13:0;;;;;;:9;:13;;;;;;;;:18;;49636:1;49619:18;;;49661:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49661:21:0;;;;;49700:33;49669:7;;49619:13;;49700:33;;49619:13;;49700:33;73349:24:::1;73265:116:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2369:127::-;2430:10;2425:3;2421:20;2418:1;2411:31;2461:4;2458:1;2451:15;2485:4;2482:1;2475:15;2501:632;2566:5;2596:18;2637:2;2629:6;2626:14;2623:40;;;2643:18;;:::i;:::-;2718:2;2712:9;2686:2;2772:15;;-1:-1:-1;;2768:24:1;;;2794:2;2764:33;2760:42;2748:55;;;2818:18;;;2838:22;;;2815:46;2812:72;;;2864:18;;:::i;:::-;2904:10;2900:2;2893:22;2933:6;2924:15;;2963:6;2955;2948:22;3003:3;2994:6;2989:3;2985:16;2982:25;2979:45;;;3020:1;3017;3010:12;2979:45;3070:6;3065:3;3058:4;3050:6;3046:17;3033:44;3125:1;3118:4;3109:6;3101;3097:19;3093:30;3086:41;;;;2501:632;;;;;:::o;3138:222::-;3181:5;3234:3;3227:4;3219:6;3215:17;3211:27;3201:55;;3252:1;3249;3242:12;3201:55;3274:80;3350:3;3341:6;3328:20;3321:4;3313:6;3309:17;3274:80;:::i;3365:390::-;3443:6;3451;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3556:9;3543:23;3533:33;;3617:2;3606:9;3602:18;3589:32;3644:18;3636:6;3633:30;3630:50;;;3676:1;3673;3666:12;3630:50;3699;3741:7;3732:6;3721:9;3717:22;3699:50;:::i;:::-;3689:60;;;3365:390;;;;;:::o;3942:328::-;4019:6;4027;4035;4088:2;4076:9;4067:7;4063:23;4059:32;4056:52;;;4104:1;4101;4094:12;4056:52;4127:29;4146:9;4127:29;:::i;:::-;4117:39;;4175:38;4209:2;4198:9;4194:18;4175:38;:::i;:::-;4165:48;;4260:2;4249:9;4245:18;4232:32;4222:42;;3942:328;;;;;:::o;4275:248::-;4343:6;4351;4404:2;4392:9;4383:7;4379:23;4375:32;4372:52;;;4420:1;4417;4410:12;4372:52;-1:-1:-1;;4443:23:1;;;4513:2;4498:18;;;4485:32;;-1:-1:-1;4275:248:1:o;4807:812::-;4923:6;4931;4939;4947;5000:3;4988:9;4979:7;4975:23;4971:33;4968:53;;;5017:1;5014;5007:12;4968:53;5057:9;5044:23;5086:18;5127:2;5119:6;5116:14;5113:34;;;5143:1;5140;5133:12;5113:34;5166:50;5208:7;5199:6;5188:9;5184:22;5166:50;:::i;:::-;5156:60;;5269:2;5258:9;5254:18;5241:32;5225:48;;5298:2;5288:8;5285:16;5282:36;;;5314:1;5311;5304:12;5282:36;5337:52;5381:7;5370:8;5359:9;5355:24;5337:52;:::i;:::-;5327:62;;5442:2;5431:9;5427:18;5414:32;5398:48;;5471:2;5461:8;5458:16;5455:36;;;5487:1;5484;5477:12;5455:36;;5510:52;5554:7;5543:8;5532:9;5528:24;5510:52;:::i;:::-;4807:812;;;;-1:-1:-1;5500:62:1;;5609:2;5594:18;5581:32;;-1:-1:-1;;;4807:812:1:o;5624:619::-;5897:3;5886:9;5879:22;5860:4;5924:46;5965:3;5954:9;5950:19;5942:6;5924:46;:::i;:::-;6018:9;6010:6;6006:22;6001:2;5990:9;5986:18;5979:50;6052:33;6078:6;6070;6052:33;:::i;:::-;6038:47;;6133:9;6125:6;6121:22;6116:2;6105:9;6101:18;6094:50;6161:33;6187:6;6179;6161:33;:::i;:::-;6153:41;;;6230:6;6225:2;6214:9;6210:18;6203:34;5624:619;;;;;;;:::o;6248:291::-;6425:6;6414:9;6407:25;6468:2;6463;6452:9;6448:18;6441:30;6388:4;6488:45;6529:2;6518:9;6514:18;6506:6;6488:45;:::i;6544:602::-;6649:6;6657;6665;6673;6681;6734:3;6722:9;6713:7;6709:23;6705:33;6702:53;;;6751:1;6748;6741:12;6702:53;6787:9;6774:23;6764:33;;6844:2;6833:9;6829:18;6816:32;6806:42;;6895:2;6884:9;6880:18;6867:32;6857:42;;6918:38;6952:2;6941:9;6937:18;6918:38;:::i;:::-;6908:48;;7007:3;6996:9;6992:19;6979:33;7035:18;7027:6;7024:30;7021:50;;;7067:1;7064;7057:12;7021:50;7090;7132:7;7123:6;7112:9;7108:22;7090:50;:::i;:::-;7080:60;;;6544:602;;;;;;;;:::o;7151:322::-;7220:6;7273:2;7261:9;7252:7;7248:23;7244:32;7241:52;;;7289:1;7286;7279:12;7241:52;7329:9;7316:23;7362:18;7354:6;7351:30;7348:50;;;7394:1;7391;7384:12;7348:50;7417;7459:7;7450:6;7439:9;7435:22;7417:50;:::i;7478:347::-;7543:6;7551;7604:2;7592:9;7583:7;7579:23;7575:32;7572:52;;;7620:1;7617;7610:12;7572:52;7643:29;7662:9;7643:29;:::i;:::-;7633:39;;7722:2;7711:9;7707:18;7694:32;7769:5;7762:13;7755:21;7748:5;7745:32;7735:60;;7791:1;7788;7781:12;7735:60;7814:5;7804:15;;;7478:347;;;;;:::o;7830:667::-;7925:6;7933;7941;7949;8002:3;7990:9;7981:7;7977:23;7973:33;7970:53;;;8019:1;8016;8009:12;7970:53;8042:29;8061:9;8042:29;:::i;:::-;8032:39;;8090:38;8124:2;8113:9;8109:18;8090:38;:::i;:::-;8080:48;;8175:2;8164:9;8160:18;8147:32;8137:42;;8230:2;8219:9;8215:18;8202:32;8257:18;8249:6;8246:30;8243:50;;;8289:1;8286;8279:12;8243:50;8312:22;;8365:4;8357:13;;8353:27;-1:-1:-1;8343:55:1;;8394:1;8391;8384:12;8343:55;8417:74;8483:7;8478:2;8465:16;8460:2;8456;8452:11;8417:74;:::i;:::-;8407:84;;;7830:667;;;;;;;:::o;8502:260::-;8570:6;8578;8631:2;8619:9;8610:7;8606:23;8602:32;8599:52;;;8647:1;8644;8637:12;8599:52;8670:29;8689:9;8670:29;:::i;:::-;8660:39;;8718:38;8752:2;8741:9;8737:18;8718:38;:::i;8767:380::-;8846:1;8842:12;;;;8889;;;8910:61;;8964:4;8956:6;8952:17;8942:27;;8910:61;9017:2;9009:6;9006:14;8986:18;8983:38;8980:161;;9063:10;9058:3;9054:20;9051:1;9044:31;9098:4;9095:1;9088:15;9126:4;9123:1;9116:15;8980:161;;8767:380;;;:::o;10341:289::-;10472:3;10510:6;10504:13;10526:66;10585:6;10580:3;10573:4;10565:6;10561:17;10526:66;:::i;:::-;10608:16;;;;;10341:289;-1:-1:-1;;10341:289:1:o;11112:722::-;11162:3;11203:5;11197:12;11232:36;11258:9;11232:36;:::i;:::-;11287:1;11304:18;;;11331:133;;;;11478:1;11473:355;;;;11297:531;;11331:133;-1:-1:-1;;11364:24:1;;11352:37;;11437:14;;11430:22;11418:35;;11409:45;;;-1:-1:-1;11331:133:1;;11473:355;11504:5;11501:1;11494:16;11533:4;11578:2;11575:1;11565:16;11603:1;11617:165;11631:6;11628:1;11625:13;11617:165;;;11709:14;;11696:11;;;11689:35;11752:16;;;;11646:10;;11617:165;;;11621:3;;;11811:6;11806:3;11802:16;11795:23;;11297:531;;;;;11112:722;;;;:::o;11839:197::-;11967:3;11992:38;12026:3;12018:6;11992:38;:::i;12041:545::-;12143:2;12138:3;12135:11;12132:448;;;12179:1;12204:5;12200:2;12193:17;12249:4;12245:2;12235:19;12319:2;12307:10;12303:19;12300:1;12296:27;12290:4;12286:38;12355:4;12343:10;12340:20;12337:47;;;-1:-1:-1;12378:4:1;12337:47;12433:2;12428:3;12424:12;12421:1;12417:20;12411:4;12407:31;12397:41;;12488:82;12506:2;12499:5;12496:13;12488:82;;;12551:17;;;12532:1;12521:13;12488:82;;;12492:3;;;12041:545;;;:::o;12762:1352::-;12888:3;12882:10;12915:18;12907:6;12904:30;12901:56;;;12937:18;;:::i;:::-;12966:97;13056:6;13016:38;13048:4;13042:11;13016:38;:::i;:::-;13010:4;12966:97;:::i;:::-;13118:4;;13182:2;13171:14;;13199:1;13194:663;;;;13901:1;13918:6;13915:89;;;-1:-1:-1;13970:19:1;;;13964:26;13915:89;-1:-1:-1;;12719:1:1;12715:11;;;12711:24;12707:29;12697:40;12743:1;12739:11;;;12694:57;14017:81;;13164:944;;13194:663;11059:1;11052:14;;;11096:4;11083:18;;-1:-1:-1;;13230:20:1;;;13348:236;13362:7;13359:1;13356:14;13348:236;;;13451:19;;;13445:26;13430:42;;13543:27;;;;13511:1;13499:14;;;;13378:19;;13348:236;;;13352:3;13612:6;13603:7;13600:19;13597:201;;;13673:19;;;13667:26;-1:-1:-1;;13756:1:1;13752:14;;;13768:3;13748:24;13744:37;13740:42;13725:58;13710:74;;13597:201;-1:-1:-1;;;;;13844:1:1;13828:14;;;13824:22;13811:36;;-1:-1:-1;12762:1352:1:o;14119:409::-;14321:2;14303:21;;;14360:2;14340:18;;;14333:30;14399:34;14394:2;14379:18;;14372:62;-1:-1:-1;;;14465:2:1;14450:18;;14443:43;14518:3;14503:19;;14119:409::o;14951:127::-;15012:10;15007:3;15003:20;15000:1;14993:31;15043:4;15040:1;15033:15;15067:4;15064:1;15057:15;15083:168;15156:9;;;15187;;15204:15;;;15198:22;;15184:37;15174:71;;15225:18;;:::i;15256:217::-;15296:1;15322;15312:132;;15366:10;15361:3;15357:20;15354:1;15347:31;15401:4;15398:1;15391:15;15429:4;15426:1;15419:15;15312:132;-1:-1:-1;15458:9:1;;15256:217::o;19034:127::-;19095:10;19090:3;19086:20;19083:1;19076:31;19126:4;19123:1;19116:15;19150:4;19147:1;19140:15;21404:125;21469:9;;;21490:10;;;21487:36;;;21503:18;;:::i;22707:537::-;22984:3;23022:6;23016:13;23038:66;23097:6;23092:3;23085:4;23077:6;23073:17;23038:66;:::i;:::-;23123:51;23166:6;23161:3;23157:16;23149:6;23123:51;:::i;:::-;-1:-1:-1;;;23183:28:1;;23235:2;23227:11;;22707:537;-1:-1:-1;;;;;22707:537:1:o;24017:401::-;24219:2;24201:21;;;24258:2;24238:18;;;24231:30;24297:34;24292:2;24277:18;;24270:62;-1:-1:-1;;;24363:2:1;24348:18;;24341:35;24408:3;24393:19;;24017:401::o;25182:414::-;25384:2;25366:21;;;25423:2;25403:18;;;25396:30;25462:34;25457:2;25442:18;;25435:62;-1:-1:-1;;;25528:2:1;25513:18;;25506:48;25586:3;25571:19;;25182:414::o;26023:489::-;-1:-1:-1;;;;;26292:15:1;;;26274:34;;26344:15;;26339:2;26324:18;;26317:43;26391:2;26376:18;;26369:34;;;26439:3;26434:2;26419:18;;26412:31;;;26217:4;;26460:46;;26486:19;;26478:6;26460:46;:::i;:::-;26452:54;26023:489;-1:-1:-1;;;;;;26023:489:1:o;26517:249::-;26586:6;26639:2;26627:9;26618:7;26614:23;26610:32;26607:52;;;26655:1;26652;26645:12;26607:52;26687:9;26681:16;26706:30;26730:5;26706:30;:::i;26771:128::-;26838:9;;;26859:11;;;26856:37;;;26873:18;;:::i;26904:127::-;26965:10;26960:3;26956:20;26953:1;26946:31;26996:4;26993:1;26986:15;27020:4;27017:1;27010:15

Swarm Source

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