ETH Price: $2,423.03 (-0.08%)

Token

crystalline work (FERALFILE)
 

Overview

Max Total Supply

9,048 FERALFILE

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FERALFILE
0x1cBb87BB9a4Dd0316189EEde2277a58590dc124A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FeralfileExhibitionV4_2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion
File 1 of 27 : FeralfileArtworkV4_2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {Nonces} from "./Nonces.sol";
import {FeralfileExhibitionV4_1} from "./FeralfileArtworkV4_1.sol";
import {IFeralfileVaultV2} from "./IFeralfileVaultV2.sol";
import {FeralfileSaleDataV2} from "./FeralfileSaleDataV2.sol";

contract FeralfileExhibitionV4_2 is
    FeralfileExhibitionV4_1,
    FeralfileSaleDataV2,
    Nonces
{
    error SeriesLengthMismatch();
    error NotEnoughToken();
    error TokenIDNotFound();
    error FunctionNotSupported();
    error SaleNotStarted();
    error InvalidPaymentAmount();
    error TotalBpsOver();
    error InvalidAddress();

    // vault contract instance
    IFeralfileVaultV2 public vaultV2;

    mapping(uint256 => uint256) private seriesNextPurchasableTokenIds; // seriesID -> tokenID

    constructor(
        string memory name_,
        string memory symbol_,
        bool burnable_,
        bool bridgeable_,
        address signer_,
        address vault_,
        address costReceiver_,
        string memory contractURI_,
        uint256[] memory seriesIds_,
        uint256[] memory seriesMaxSupplies_,
        uint256[] memory seriesNextPurchasableTokenIds_
    )
        FeralfileExhibitionV4_1(
            name_,
            symbol_,
            burnable_,
            bridgeable_,
            signer_,
            vault_,
            costReceiver_,
            contractURI_,
            seriesIds_,
            seriesMaxSupplies_
        )
    {
        if(seriesIds_.length != seriesNextPurchasableTokenIds_.length) {
            revert SeriesLengthMismatch();
        }

        vaultV2 = IFeralfileVaultV2(payable(vault_));
        for (uint256 i = 0; i < seriesIds_.length; i++) {
            seriesNextPurchasableTokenIds[seriesIds_[i]] = seriesNextPurchasableTokenIds_[i];
        }
    }

    /// @notice Set vaultV2 contract
    /// @dev don't allow to set vaultV2 as zero address
    function setVaultV2(address vault_) external onlyOwner {
        if (vault_ == address(0)) {
            revert InvalidAddress();
        }

        vaultV2 = IFeralfileVaultV2(payable(vault_));
    }

    /// @notice override revert setVault
    function setVault(address) external pure override {
        revert FunctionNotSupported();
    }

    /// @notice pay to get artworks to a destination address. The pricing, costs and other details is included in the saleData
    /// @param r_ - part of signature for validating parameters integrity
    /// @param s_ - part of signature for validating parameters integrity
    /// @param v_ - part of signature for validating parameters integrity
    /// @param saleData_ - the sale data
    function buyBulkArtworks(
        bytes32 r_,
        bytes32 s_,
        uint8 v_,
        SaleDataV2 calldata saleData_
    ) external payable {
        if (!_selling) {
            revert SaleNotStarted();
        }

        uint256 balance = balanceOf(address(this));
        if (balance < saleData_.quantity) {
            revert NotEnoughToken();
        }
        
        validateSaleDataV2(saleData_);

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

        if (!isValidSignature(message, r_, s_, v_)) {
            revert InvalidSignature();
        }

        //check nonce
        _useCheckedNonce(saleData_.destination, saleData_.nonce);

        if (saleData_.payByVaultContract) {
            vaultV2.payForSaleV2(r_, s_, v_, saleData_);
        } else {
            if (saleData_.price != msg.value) {
                revert InvalidPaymentAmount();
            }
        }

        if (saleData_.price < saleData_.cost) {
            revert InvalidPaymentAmount();
        }
        uint256 totalRevenue = saleData_.price - saleData_.cost;

        uint256 nextPurchasableTokenId = seriesNextPurchasableTokenIds[saleData_.seriesID];
        uint256 i = 0;
        while (i < saleData_.quantity) {
            uint256 tokenIdForSale = nextPurchasableTokenId;

            if (!_exists(tokenIdForSale)) {
                revert TokenIDNotFound();
            }

            nextPurchasableTokenId++;
            if (ownerOf(tokenIdForSale) != address(this)) {
                continue;
            }

            // send NFT
            _safeTransfer(
                address(this),
                saleData_.destination,
                tokenIdForSale,
                ""
            );

            emit BuyArtworkV2(
                saleData_.destination,
                tokenIdForSale,
                saleData_.nonce
            );
            i++;
        }

        // save next sale token id for seriesID
        seriesNextPurchasableTokenIds[saleData_.seriesID] = nextPurchasableTokenId;

        // distribute royalty
        uint256 distributedRevenue;
        uint256 platformRevenue;

        RevenueShare[] memory revenueShares = saleData_.revenueShares;
        uint256 remainingRev = totalRevenue;

        // deduct advances payment from revenue
        for (uint256 j = 0; j < revenueShares.length && remainingRev > 0; j++) {
            uint256 remainingAdvanceAmount = advances[
                revenueShares[j].recipient
            ];

            if (remainingAdvanceAmount == 0) {
                continue;
            }
            
            uint256 prePaidRev = remainingAdvanceAmount >= remainingRev
                ? remainingRev
                : remainingAdvanceAmount;
            platformRevenue += prePaidRev;
            advances[revenueShares[j].recipient] -= prePaidRev;
            remainingRev -= prePaidRev;
        }

        // distribute revenue
        if (remainingRev > 0) {
            for (uint256 j = 0; j < revenueShares.length; j++) {
                address recipient = revenueShares[j].recipient;
                uint256 rev = (remainingRev * revenueShares[j].bps) / 10000;
                if (recipient == costReceiver) {
                    platformRevenue += rev;
                    continue;
                }
                distributedRevenue += rev;
                payable(recipient).transfer(rev);
            }
        }

        if (
            saleData_.price - saleData_.cost <
            distributedRevenue + platformRevenue
        ) {
            revert TotalBpsOver();
        }

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

    /// @notice override revert buyArtworks
    function buyArtworks(
        bytes32,
        bytes32,
        uint8,
        SaleData calldata
    ) external payable override {
        revert FunctionNotSupported();
    }

    /// @notice Event emitted when Artwork has been sold with the additional nonce
    event BuyArtworkV2(
        address indexed buyer,
        uint256 indexed tokenId,
        uint256 nonce
    );
}

File 2 of 27 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

File 3 of 27 : UpdateableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./operator-filter-registry/IOperatorFilterRegistry.sol";

import "./Authorizable.sol";

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

    address constant DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS =
        address(0x000000000000AAeB6D7670E522A718067333cd4E);

    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    IOperatorFilterRegistry public OperatorFilterRegistry =
        IOperatorFilterRegistry(DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

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

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

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

File 4 of 27 : Nonces.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Provides tracking nonces for addresses. Nonces will only increment.
 */
abstract contract Nonces {
    /**
     * @dev The nonce used for an `account` is not the expected current nonce.
     */
    error InvalidAccountNonce(address account, uint256 currentNonce);

    mapping(address => uint256) private _nonces;

    /**
     * @dev Returns the next unused nonce for an address.
     */
    function nonces(address owner) public view virtual returns (uint256) {
        return _nonces[owner];
    }

    /**
     * @dev Consumes a nonce.
     *
     * Returns the current value and increments nonce.
     */
    function _useNonce(address owner) internal virtual returns (uint256) {
        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
        // decremented or reset. This guarantees that the nonce never overflows.
        unchecked {
            // It is important to do x++ and not ++x here.
            return _nonces[owner]++;
        }
    }

    /**
     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
     */
    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
        uint256 current = _useNonce(owner);
        if (nonce != current) {
            revert InvalidAccountNonce(owner, current);
        }
    }
}

File 5 of 27 : IFeralfileVaultV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IFeralfileSaleDataV2} from "./IFeralfileSaleDataV2.sol";

interface IFeralfileVaultV2 is IFeralfileSaleDataV2 {
    function payForSaleV2(
        bytes32 r_,
        bytes32 s_,
        uint8 v_,
        SaleDataV2 calldata saleData_
    ) external;

    function withdrawFund(uint256 weiAmount) external;

    receive() external payable;
}

File 6 of 27 : IFeralfileVault.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

import "./IFeralfileSaleData.sol";
import "./ECDSASigner.sol";

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

    function withdrawFund(uint256 weiAmount) external;

    receive() external payable;
}

File 7 of 27 : IFeralfileSaleDataV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IFeralfileSaleData} from "./IFeralfileSaleData.sol";

interface IFeralfileSaleDataV2 is IFeralfileSaleData {
    struct SaleDataV2 {
        uint256 price; // in wei
        uint256 cost; // in wei
        uint256 expiryTime;
        address destination;
        uint256 nonce;
        uint256 seriesID;
        uint16 quantity;
        RevenueShare[] revenueShares; // address and royalty bps (500 means 5%)
        bool payByVaultContract; // get eth from vault contract, used by credit card pay that proxy by ITX
    }
}

File 8 of 27 : IFeralfileSaleData.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

File 9 of 27 : FeralfileSaleDataV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IFeralfileSaleDataV2} from "./IFeralfileSaleDataV2.sol";

contract FeralfileSaleDataV2 is IFeralfileSaleDataV2 {
    function validateSaleDataV2(SaleDataV2 calldata saleData_) internal view {
        require(
            saleData_.expiryTime > block.timestamp,
            "FeralfileSaleData: sale is expired"
        );
    }
}

File 10 of 27 : FeralfileSaleData.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./IFeralfileSaleData.sol";

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

File 11 of 27 : FeralfileArtworkV4_1.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./FeralfileArtworkV4.sol";

contract FeralfileExhibitionV4_1 is FeralfileExhibitionV4 {
    mapping(address => uint256) public advances;

    error InvalidAdvanceAddressesAndAmounts();
    error InvalidAdvanceAddress();
    error InvalidAdvanceAmount();
    error InvalidSignature();
    error AdvanceAddressAlreadyUsed();

    constructor(
        string memory name_,
        string memory symbol_,
        bool burnable_,
        bool bridgeable_,
        address signer_,
        address vault_,
        address costReceiver_,
        string memory contractURI_,
        uint256[] memory seriesIds_,
        uint256[] memory seriesMaxSupplies_
    )
        FeralfileExhibitionV4(
            name_,
            symbol_,
            burnable_,
            bridgeable_,
            signer_,
            vault_,
            costReceiver_,
            contractURI_,
            seriesIds_,
            seriesMaxSupplies_
        )
    {}

    /// @notice set advances setting
    /// @param addresses_ - the addresses to set advances
    /// @param amounts_ - the amounts to set advances
    function setAdvanceSetting(
        address[] calldata addresses_,
        uint256[] calldata amounts_
    ) external onlyOwner {
        if (addresses_.length != amounts_.length) {
            revert InvalidAdvanceAddressesAndAmounts();
        }
        for (uint256 i = 0; i < addresses_.length; i++) {
            if (addresses_[i] == address(0)) {
                revert InvalidAdvanceAddress();
            }
            if (amounts_[i] == 0) {
                revert InvalidAdvanceAmount();
            }
            if (advances[addresses_[i]] > 0) {
                revert AdvanceAddressAlreadyUsed();
            }
            advances[addresses_[i]] = amounts_[i];
        }
    }

    /// @notice replace advance addresses
    /// @param oldAddresses_ - the old addresses to replace
    /// @param newAddresses_ - the new addresses to replace
    function replaceAdvanceAddresses(
        address[] calldata oldAddresses_,
        address[] calldata newAddresses_
    ) external onlyOwner {
        if (oldAddresses_.length != newAddresses_.length) {
            revert InvalidAdvanceAddressesAndAmounts();
        }
        for (uint256 i = 0; i < oldAddresses_.length; i++) {
            if (newAddresses_[i] == address(0)) {
                revert InvalidAdvanceAddress();
            }
            if (advances[newAddresses_[i]] > 0) {
                revert AdvanceAddressAlreadyUsed();
            }
            advances[newAddresses_[i]] = advances[oldAddresses_[i]];
            delete advances[oldAddresses_[i]];
        }
    }

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

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

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

        if (!isValidSignature(message, r_, s_, v_)) {
            revert InvalidSignature();
        }

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

        uint256 distributedRevenue;
        uint256 platformRevenue;
        for (uint256 i = 0; i < saleData_.tokenIds.length; i++) {
            // send NFT
            _safeTransfer(
                address(this),
                saleData_.destination,
                saleData_.tokenIds[i],
                ""
            );
            // distribute royalty
            RevenueShare[] memory revenueShares = saleData_.revenueShares[i];
            uint256 remainingRev = itemRevenue;

            // deduct advances payment from revenue
            for (
                uint256 j = 0;
                j < revenueShares.length && remainingRev > 0;
                j++
            ) {
                uint256 remainingAdvanceAmount = advances[
                    revenueShares[j].recipient
                ];
                uint256 rev = remainingAdvanceAmount >= remainingRev
                    ? remainingRev
                    : remainingAdvanceAmount;
                platformRevenue += rev;
                advances[revenueShares[j].recipient] -= rev;
                remainingRev -= rev;
            }

            // distribute revenue
            if (remainingRev > 0) {
                for (uint256 j = 0; j < revenueShares.length; j++) {
                    address recipient = revenueShares[j].recipient;
                    uint256 rev = (remainingRev * revenueShares[j].bps) / 10000;
                    if (recipient == costReceiver) {
                        platformRevenue += rev;
                        continue;
                    }
                    distributedRevenue += rev;
                    payable(recipient).transfer(rev);
                }
            }

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

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

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

File 12 of 27 : FeralfileArtworkV4.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./Authorizable.sol";
import "./UpdateableOperatorFilterer.sol";
import "./FeralfileSaleData.sol";
import "./ECDSASigner.sol";

import "./IFeralfileVault.sol";

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

    struct Artwork {
        uint256 seriesId;
        uint256 tokenId;
    }

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

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

    // token base URI
    string public tokenBaseURI;

    // contract URI
    string public contractURI;

    // total supply
    uint256 public totalSupply;

    // burnable
    bool public burnable;

    // bridgeable
    bool public bridgeable;

    // selling
    bool internal _selling;

    // mintable
    bool public mintable = true;

    // cost receiver
    address public costReceiver;

    // vault contract instance
    IFeralfileVault public vault;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _selling = true;
    }

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

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

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

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

        pauseSale();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // emit event
        emit BurnArtwork(tokenId);
    }

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

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

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

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

File 13 of 27 : ECDSASigner.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ECDSASigner is Ownable {
    address private _signer;

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

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

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

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

File 14 of 27 : Authorizable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";

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 15 of 27 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 16 of 27 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 27 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 18 of 27 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 19 of 27 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

File 20 of 27 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

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

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

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

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

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

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

File 21 of 27 : Context.sol
// SPDX-License-Identifier: MIT
// 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 22 of 27 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 23 of 27 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 24 of 27 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 25 of 27 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 26 of 27 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

File 27 of 27 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"bool","name":"burnable_","type":"bool"},{"internalType":"bool","name":"bridgeable_","type":"bool"},{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"vault_","type":"address"},{"internalType":"address","name":"costReceiver_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"uint256[]","name":"seriesIds_","type":"uint256[]"},{"internalType":"uint256[]","name":"seriesMaxSupplies_","type":"uint256[]"},{"internalType":"uint256[]","name":"seriesNextPurchasableTokenIds_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdvanceAddressAlreadyUsed","type":"error"},{"inputs":[],"name":"FunctionNotSupported","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAdvanceAddress","type":"error"},{"inputs":[],"name":"InvalidAdvanceAddressesAndAmounts","type":"error"},{"inputs":[],"name":"InvalidAdvanceAmount","type":"error"},{"inputs":[],"name":"InvalidPaymentAmount","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"NotEnoughToken","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"SeriesLengthMismatch","type":"error"},{"inputs":[],"name":"TokenIDNotFound","type":"error"},{"inputs":[],"name":"TotalBpsOver","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BurnArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BuyArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"BuyArtworkV2","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"seriesId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OperatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"advances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint8","name":"","type":"uint8"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"expiryTime","type":"uint256"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"internalType":"struct IFeralfileSaleData.RevenueShare[][]","name":"revenueShares","type":"tuple[][]"},{"internalType":"bool","name":"payByVaultContract","type":"bool"}],"internalType":"struct IFeralfileSaleData.SaleData","name":"","type":"tuple"}],"name":"buyArtworks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"expiryTime","type":"uint256"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"seriesID","type":"uint256"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"internalType":"struct IFeralfileSaleData.RevenueShare[]","name":"revenueShares","type":"tuple[]"},{"internalType":"bool","name":"payByVaultContract","type":"bool"}],"internalType":"struct IFeralfileSaleDataV2.SaleDataV2","name":"saleData_","type":"tuple"}],"name":"buyBulkArtworks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getArtwork","outputs":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct FeralfileExhibitionV4.Artwork","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"internalType":"struct FeralfileExhibitionV4.MintData[]","name":"data","type":"tuple[]"}],"name":"mintArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"oldAddresses_","type":"address[]"},{"internalType":"address[]","name":"newAddresses_","type":"address[]"}],"name":"replaceAdvanceAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"selling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"setAdvanceSetting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"costReceiver_","type":"address"}],"name":"setCostReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"vault_","type":"address"}],"name":"setVaultV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSaleAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"seriesIds","type":"uint256[]"},{"internalType":"address[]","name":"recipientAddresses","type":"address[]"}],"name":"stopSaleAndTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operatorFilterRegisterAddress","type":"address"}],"name":"updateOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract IFeralfileVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vaultV2","outputs":[{"internalType":"contract IFeralfileVaultV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b0319166daaeb6d7670e522a718067333cd4e179055600d805463ff000000191663010000001790553480156200004457600080fd5b506040516200559338038062005593833981016040819052620000679162000a38565b8a8a8a8a8a8a8a8a8a8a89898989898989898989858a8a60006200008c838262000c55565b5060016200009b828262000c55565b505050620000b8620000b26200085660201b60201c565b6200085a565b6008546001600160a01b03163b156200014557600854604051633e9f1edf60e11b8152306004820152733cc6cdda760b79bafa08df41ecfa224f810dceb660248201526001600160a01b0390911690637d3e3dbe90604401600060405180830381600087803b1580156200012b57600080fd5b505af115801562000140573d6000803e3d6000fd5b505050505b6001600160a01b038116620001ac5760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b60648201526084015b60405180910390fd5b600980546001600160a01b0319166001600160a01b039290921691909117905589516200022a5760405162461bcd60e51b815260206004820152602560248201527f466572616c66696c6545786869626974696f6e56343a206e616d655f20697320604482015264656d70747960d81b6064820152608401620001a3565b60008951116200028d5760405162461bcd60e51b815260206004820152602760248201527f466572616c66696c6545786869626974696f6e56343a2073796d626f6c5f20696044820152667320656d70747960c81b6064820152608401620001a3565b6001600160a01b0385166200030b5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a207661756c744164647260448201527f6573735f206973207a65726f20616464726573730000000000000000000000006064820152608401620001a3565b6001600160a01b038416620003895760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f7374526563656960448201527f7665725f206973207a65726f20616464726573730000000000000000000000006064820152608401620001a3565b6000835111620003f15760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20636f6e74726163745560448201526b52495f20697320656d70747960a01b6064820152608401620001a3565b6000825111620004575760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a207365726965734964736044820152695f20697320656d70747960b01b6064820152608401620001a3565b6000815111620004c55760405162461bcd60e51b815260206004820152603260248201527f466572616c66696c6545786869626974696f6e56343a205f7365726965734d6160448201527178537570706c69657320697320656d70747960701b6064820152608401620001a3565b8051825114620005585760405162461bcd60e51b815260206004820152605160248201527f466572616c66696c6545786869626974696f6e56343a207365726965734d617860448201527f537570706c6965735f20616e64207365726965734964735f206c656e6774687360648201527020617265206e6f74207468652073616d6560781b608482015260a401620001a3565b600d805461ffff191689151561ff001916176101008915150217600160201b600160c01b0319166401000000006001600160a01b038781169190910291909117909155600e80546001600160a01b031916918716919091179055600b620005c0848262000c55565b5060005b82518110156200077e576000620005dd82600162000d37565b90505b83518110156200069a57838181518110620005ff57620005ff62000d53565b60200260200101518483815181106200061c576200061c62000d53565b602002602001015103620006855760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206475706c6963617465604482015268081cd95c9a595cd25960ba1b6064820152608401620001a3565b80620006918162000d69565b915050620005e0565b506000828281518110620006b257620006b262000d53565b602002602001015111620007185760405162461bcd60e51b815260206004820152602660248201527f466572616c66696c6545786869626974696f6e56343a207a65726f206d617820604482015265737570706c7960d01b6064820152608401620001a3565b8181815181106200072d576200072d62000d53565b6020026020010151600f60008584815181106200074e576200074e62000d53565b60200260200101518152602001908152602001600020819055508080620007759062000d69565b915050620005c4565b5050505050505050505050505050505050505050508051835114620007b6576040516330fa3f3b60e21b815260040160405180910390fd5b601680546001600160a01b0319166001600160a01b03881617905560005b83518110156200084457818181518110620007f357620007f362000d53565b60200260200101516017600086848151811062000814576200081462000d53565b602002602001015181526020019081526020016000208190555080806200083b9062000d69565b915050620007d4565b50505050505050505050505062000d85565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620008ed57620008ed620008ac565b604052919050565b600082601f8301126200090757600080fd5b81516001600160401b03811115620009235762000923620008ac565b602062000939601f8301601f19168201620008c2565b82815285828487010111156200094e57600080fd5b60005b838110156200096e57858101830151828201840152820162000951565b506000928101909101919091529392505050565b805180151581146200099357600080fd5b919050565b80516001600160a01b03811681146200099357600080fd5b600082601f830112620009c257600080fd5b815160206001600160401b03821115620009e057620009e0620008ac565b8160051b620009f1828201620008c2565b928352848101820192828101908785111562000a0c57600080fd5b83870192505b8483101562000a2d5782518252918301919083019062000a12565b979650505050505050565b60008060008060008060008060008060006101608c8e03121562000a5b57600080fd5b8b516001600160401b0381111562000a7257600080fd5b62000a808e828f01620008f5565b60208e0151909c5090506001600160401b0381111562000a9f57600080fd5b62000aad8e828f01620008f5565b9a505062000abe60408d0162000982565b985062000ace60608d0162000982565b975062000ade60808d0162000998565b965062000aee60a08d0162000998565b955062000afe60c08d0162000998565b60e08d01519095506001600160401b0381111562000b1b57600080fd5b62000b298e828f01620008f5565b6101008e015190955090506001600160401b0381111562000b4957600080fd5b62000b578e828f01620009b0565b6101208e015190945090506001600160401b0381111562000b7757600080fd5b62000b858e828f01620009b0565b6101408e015190935090506001600160401b0381111562000ba557600080fd5b62000bb38e828f01620009b0565b9150509295989b509295989b9093969950565b600181811c9082168062000bdb57607f821691505b60208210810362000bfc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c5057600081815260208120601f850160051c8101602086101562000c2b5750805b601f850160051c820191505b8181101562000c4c5782815560010162000c37565b5050505b505050565b81516001600160401b0381111562000c715762000c71620008ac565b62000c898162000c82845462000bc6565b8462000c02565b602080601f83116001811462000cc1576000841562000ca85750858301515b600019600386901b1c1916600185901b17855562000c4c565b600085815260208120601f198616915b8281101562000cf25788860151825594840194600190910190840162000cd1565b508582101562000d115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000d4d5762000d4d62000d21565b92915050565b634e487b7160e01b600052603260045260246000fd5b60006001820162000d7e5762000d7e62000d21565b5060010190565b6147fe8062000d956000396000f3fe60806040526004361061036f5760003560e01c80636817031b116101c6578063a74cebab116100f7578063e985e9c511610095578063f07e7fd01161006f578063f07e7fd014610aef578063f2fde38b14610b0f578063f4e638be14610b2f578063fbfa77cf14610b5757600080fd5b8063e985e9c514610a49578063eb5c60f214610a92578063eee608a414610abf57600080fd5b8063b9b8311a116100d1578063b9b8311a146109df578063c87b56dd146109f4578063dc78ac1c14610a14578063e8a3d48514610a3457600080fd5b8063a74cebab1461098a578063b66a0e5d146109aa578063b88d4fde146109bf57600080fd5b80638cba1c6711610164578063926ce44e1161013e578063926ce44e1461090e57806395d89b411461093b578063a07c7ce414610950578063a22cb4651461096a57600080fd5b80638cba1c67146108b05780638da5cb5b146108d05780638ef79e91146108ee57600080fd5b8063715018a6116101a0578063715018a61461080b5780637ecebe00146108205780637f06ee06146108565780638462151c1461088357600080fd5b80636817031b146107b05780636c19e783146107cb57806370a08231146107eb57600080fd5b80632f745c59116102a05780634e99b8001161023e5780635eb9bad6116102185780635eb9bad61461070f5780636352211e1461072f57806363e602301461074f57806365a46e081461079057600080fd5b80634e99b800146106c6578063530da8ef146106db57806355367ba9146106fa57600080fd5b806341a5626a1161027a57806341a5626a1461065257806342842e0e146106725780634bda5d89146106925780634bf365df146106a557600080fd5b80632f745c59146105fd57806333e364cb1461061d5780633c352b0d1461063257600080fd5b8063167ddf6e1161030d578063238ac933116102e7578063238ac9331461058e57806323aed228146105ac57806323b872dd146105ca5780632977e4b3146105ea57600080fd5b8063167ddf6e1461050f57806318160ddd1461054a57806321fe0c641461056e57600080fd5b8063081812fc11610349578063081812fc14610477578063095ea7b3146104af578063114ba8ee146104cf5780631623528f146104ef57600080fd5b806301ffc9a714610400578063031205061461043557806306fdde031461045557600080fd5b366103fb57600e546001600160a01b031633146103f95760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b600080fd5b34801561040c57600080fd5b5061042061041b3660046138fc565b610b77565b60405190151581526020015b60405180910390f35b34801561044157600080fd5b506103f961045036600461393c565b610bc9565b34801561046157600080fd5b5061046a610bf2565b60405161042c91906139a7565b34801561048357600080fd5b506104976104923660046139ba565b610c84565b6040516001600160a01b03909116815260200161042c565b3480156104bb57600080fd5b506103f96104ca3660046139d3565b610cab565b3480156104db57600080fd5b506103f96104ea36600461393c565b610cc4565b3480156104fb57600080fd5b506103f961050a36600461393c565b610cee565b34801561051b57600080fd5b5061052f61052a3660046139ba565b610d97565b6040805182518152602092830151928101929092520161042c565b34801561055657600080fd5b50610560600c5481565b60405190815260200161042c565b34801561057a57600080fd5b506103f9610589366004613ad1565b610dfa565b34801561059a57600080fd5b506009546001600160a01b0316610497565b3480156105b857600080fd5b50600d5462010000900460ff16610420565b3480156105d657600080fd5b506103f96105e5366004613b05565b610ee4565b6103f96105f8366004613b52565b610f37565b34801561060957600080fd5b506105606106183660046139d3565b610f50565b34801561062957600080fd5b506103f9610ffa565b34801561063e57600080fd5b506103f961064d366004613c02565b6110bd565b34801561065e57600080fd5b506103f961066d366004613c02565b61125d565b34801561067e57600080fd5b506103f961068d366004613b05565b611441565b6103f96106a0366004613c6d565b61148e565b3480156106b157600080fd5b50600d54610420906301000000900460ff1681565b3480156106d257600080fd5b5061046a611a8b565b3480156106e757600080fd5b50600d5461042090610100900460ff1681565b34801561070657600080fd5b506103f9611b19565b34801561071b57600080fd5b50601654610497906001600160a01b031681565b34801561073b57600080fd5b5061049761074a3660046139ba565b611bcd565b34801561075b57600080fd5b5061046a6040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561079c57600080fd5b506103f96107ab366004613cc8565b611c02565b3480156107bc57600080fd5b506103f96105f836600461393c565b3480156107d757600080fd5b506103f96107e636600461393c565b611f00565b3480156107f757600080fd5b5061056061080636600461393c565b611f8b565b34801561081757600080fd5b506103f9612011565b34801561082c57600080fd5b5061056061083b36600461393c565b6001600160a01b031660009081526015602052604090205490565b34801561086257600080fd5b506105606108713660046139ba565b60009081526010602052604090205490565b34801561088f57600080fd5b506108a361089e36600461393c565b612025565b60405161042c9190613d89565b3480156108bc57600080fd5b506103f96108cb366004613dcd565b612091565b3480156108dc57600080fd5b506006546001600160a01b0316610497565b3480156108fa57600080fd5b506103f9610909366004613e98565b6121c0565b34801561091a57600080fd5b5061056061092936600461393c565b60146020526000908152604090205481565b34801561094757600080fd5b5061046a61222f565b34801561095c57600080fd5b50600d546104209060ff1681565b34801561097657600080fd5b506103f9610985366004613ef9565b61223e565b34801561099657600080fd5b506103f96109a536600461393c565b612252565b3480156109b657600080fd5b506103f96122a3565b3480156109cb57600080fd5b506103f96109da366004613f30565b6122c0565b3480156109eb57600080fd5b506103f961230e565b348015610a0057600080fd5b5061046a610a0f3660046139ba565b6123af565b348015610a2057600080fd5b506103f9610a2f36600461393c565b6124bd565b348015610a4057600080fd5b5061046a6124e9565b348015610a5557600080fd5b50610420610a64366004613fab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9e57600080fd5b50610560610aad3660046139ba565b6000908152600f602052604090205490565b348015610acb57600080fd5b50610420610ada36600461393c565b60076020526000908152604090205460ff1681565b348015610afb57600080fd5b50600854610497906001600160a01b031681565b348015610b1b57600080fd5b506103f9610b2a36600461393c565b6124f6565b348015610b3b57600080fd5b50600d546104979064010000000090046001600160a01b031681565b348015610b6357600080fd5b50600e54610497906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b1480610ba857506001600160e01b03198216635b5e139f60e01b145b80610bc357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610bd161256f565b6001600160a01b03166000908152600760205260409020805460ff19169055565b606060008054610c0190613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2d90613fde565b8015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b5050505050905090565b6000610c8f826125c9565b506000908152600460205260409020546001600160a01b031690565b81610cb5816125ee565b610cbf83836126c0565b505050565b610ccc61256f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610cf661256f565b6001600160a01b038116610d695760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b60648201526084016103f0565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b6040805180820190915260008082526020820152610db4826127d0565b610dd05760405162461bcd60e51b81526004016103f090614018565b50600090815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610e615760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b60648201526084016103f0565b60005b8151811015610ee057610e9033838381518110610e8357610e8361404f565b60200260200101516127ed565b610eac5760405162461bcd60e51b81526004016103f090614065565b610ece828281518110610ec157610ec161404f565b602002602001015161286c565b80610ed8816140c8565b915050610e64565b5050565b826001600160a01b0381163314610efe57610efe336125ee565b306001600160a01b03841603610f265760405162461bcd60e51b81526004016103f0906140e1565b610f31848484612942565b50505050565b6040516369bd111d60e11b815260040160405180910390fd5b6000610f5b83611f8b565b8210610fbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103f0565b6001600160a01b0383166000908152601260205260409020805483908110610fe757610fe761404f565b9060005260206000200154905092915050565b61100261256f565b600d546301000000900460ff161561102c5760405162461bcd60e51b81526004016103f09061413e565b600d5462010000900460ff16156110a25760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b60648201526084016103f0565b6110aa612973565b600d805462ff0000191662010000179055565b6110c561256f565b8281146110e5576040516313086eff60e21b815260040160405180910390fd5b60005b838110156112565760008585838181106111045761110461404f565b9050602002016020810190611119919061393c565b6001600160a01b03160361114057604051630107349760e51b815260040160405180910390fd5b8282828181106111525761115261404f565b9050602002013560000361117957604051636745f8fb60e01b815260040160405180910390fd5b6000601460008787858181106111915761119161404f565b90506020020160208101906111a6919061393c565b6001600160a01b03166001600160a01b031681526020019081526020016000205411156111e6576040516328547bdf60e01b815260040160405180910390fd5b8282828181106111f8576111f861404f565b90506020020135601460008787858181106112155761121561404f565b905060200201602081019061122a919061393c565b6001600160a01b031681526020810191909152604001600020558061124e816140c8565b9150506110e8565b5050505050565b61126561256f565b828114611285576040516313086eff60e21b815260040160405180910390fd5b60005b838110156112565760008383838181106112a4576112a461404f565b90506020020160208101906112b9919061393c565b6001600160a01b0316036112e057604051630107349760e51b815260040160405180910390fd5b6000601460008585858181106112f8576112f861404f565b905060200201602081019061130d919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054111561134d576040516328547bdf60e01b815260040160405180910390fd5b601460008686848181106113635761136361404f565b9050602002016020810190611378919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054601460008585858181106113af576113af61404f565b90506020020160208101906113c4919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550601460008686848181106113fe576113fe61404f565b9050602002016020810190611413919061393c565b6001600160a01b03168152602081019190915260400160009081205580611439816140c8565b915050611288565b826001600160a01b038116331461145b5761145b336125ee565b306001600160a01b038416036114835760405162461bcd60e51b81526004016103f0906140e1565b610f318484846129ee565b600d5462010000900460ff166114b7576040516316851a3760e11b815260040160405180910390fd5b60006114c230611f8b565b90506114d460e0830160c084016141a4565b61ffff168110156114f857604051632d65aa3b60e11b815260040160405180910390fd5b61150182612a09565b6000463084604051602001611518939291906142f9565b60405160208183030381529060405280519060200120905061153c81878787612a67565b61155957604051638baa579f60e01b815260040160405180910390fd5b61157661156c608085016060860161393c565b8460800135612abf565b6115886101208401610100850161432c565b156115fa5760165460405163cdb1f66360e01b81526001600160a01b039091169063cdb1f663906115c3908990899089908990600401614349565b600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b5050505061161b565b8235341461161b57604051637e2897ef60e11b815260040160405180910390fd5b60208301358335101561164157604051637e2897ef60e11b815260040160405180910390fd5b60006116526020850135853561437b565b60a08501356000908152601760205260408120549192505b61167a60e0870160c088016141a4565b61ffff1681101561176c578161168f816127d0565b6116ac576040516352a7a53160e11b815260040160405180910390fd5b826116b6816140c8565b93503090506116c482611bcd565b6001600160a01b0316146116d8575061166a565b611702306116ec60808a0160608b0161393c565b8360405180602001604052806000815250612b12565b806117136080890160608a0161393c565b6001600160a01b03167fba8636482fa7bb52433c25b1cf79e47571bf179a48a271361b50bb78b1d63d7b896080013560405161175191815260200190565b60405180910390a381611763816140c8565b9250505061166a565b60a08601356000908152601760205260408120839055808061179160e08a018a61438e565b808060200260200160405190810160405280939291908181526020016000905b828210156117dd576117ce604083028601368190038101906143d7565b815260200190600101906117b1565b50505050509050600086905060005b8251811080156117fc5750600082115b156118ef576000601460008584815181106118195761181961404f565b6020026020010151600001516001600160a01b03166001600160a01b031681526020019081526020016000205490508060000361185657506118dd565b6000838210156118665781611868565b835b9050611874818761442d565b9550806014600087868151811061188d5761188d61404f565b6020026020010151600001516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546118c8919061437b565b909155506118d89050818561437b565b935050505b806118e7816140c8565b9150506117ec565b5080156119eb5760005b82518110156119e95760008382815181106119165761191661404f565b6020026020010151600001519050600061271085848151811061193b5761193b61404f565b602002602001015160200151856119529190614440565b61195c9190614457565b600d549091506001600160a01b0364010000000090910481169083160361199057611987818761442d565b955050506119d7565b61199a818861442d565b6040519097506001600160a01b0383169082156108fc029083906000818181858888f193505050501580156119d3573d6000803e3d6000fd5b5050505b806119e1816140c8565b9150506118f9565b505b6119f5838561442d565b611a0460208c01358c3561437b565b1015611a23576040516372ef2a9d60e01b815260040160405180910390fd5b6000611a30858c3561437b565b90508015611a7b57600d546040516401000000009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015611a79573d6000803e3d6000fd5b505b5050505050505050505050505050565b600a8054611a9890613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac490613fde565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b505050505081565b611b2161256f565b600d546301000000900460ff1615611b4b5760405162461bcd60e51b81526004016103f09061413e565b600d5462010000900460ff16611bbf5760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b60648201526084016103f0565b600d805462ff000019169055565b6000818152600260205260408120546001600160a01b031680610bc35760405162461bcd60e51b81526004016103f090614018565b611c0a61256f565b60008251118015611c1c575060008151115b611c9c5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a4016103f0565b8051825114611d285760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a4016103f0565b611d30611b19565b30600081815260126020908152604080832080548251818502810185019093528083529192909190830182828015611d8757602002820191906000526020600020905b815481526020019060010190808311611d73575b5050505050905060005b8151811015611e83576000828281518110611dae57611dae61404f565b602090810291909101810151600081815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff161015611e6d57878161ffff1681518110611e0657611e0661404f565b6020026020010151826000015103611e5b576000878261ffff1681518110611e3057611e3061404f565b60200260200101519050611e5587828660405180602001604052806000815250612b12565b50611e6d565b80611e6581614479565b915050611de3565b5050508080611e7b906140c8565b915050611d91565b50611e8d82611f8b565b15610f315760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f0000000060648201526084016103f0565b611f0861256f565b6001600160a01b038116611f695760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b60648201526084016103f0565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611ff55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016103f0565b506001600160a01b031660009081526003602052604090205490565b61201961256f565b6120236000612b45565b565b6001600160a01b03811660009081526012602090815260409182902080548351818402810184019094528084526060939283018282801561208557602002820191906000526020600020905b815481526020019060010190808311612071575b50505050509050919050565b3360009081526007602052604090205460ff16806120b957506006546001600160a01b031633145b6120c257600080fd5b600d546301000000900460ff166121395760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b60648201526084016103f0565b60005b81811015610cbf576121ae8383838181106121595761215961404f565b905060600201600001358484848181106121755761217561404f565b905060600201602001358585858181106121915761219161404f565b90506060020160400160208101906121a9919061393c565b612b97565b806121b8816140c8565b91505061213c565b6121c861256f565b60008151116122235760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b60648201526084016103f0565b600a610ee082826144e8565b606060018054610c0190613fde565b81612248816125ee565b610cbf8383612d19565b61225a61256f565b6001600160a01b0381166122815760405163e6c4247b60e01b815260040160405180910390fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6122ab61256f565b600d805463ff00000019169055612023610ffa565b836001600160a01b03811633146122da576122da336125ee565b306001600160a01b038516036123025760405162461bcd60e51b81526004016103f0906140e1565b61125685858585612d24565b61231661256f565b61231e611b19565b3060009081526012602090815260408083208054825181850281018501909352808352919290919083018282801561237557602002820191906000526020600020905b815481526020019060010190808311612361575b5050505050905060005b8151811015610ee05761239d828281518110610ec157610ec161404f565b806123a7816140c8565b91505061237f565b60606000600a80546123c090613fde565b90501161241e5760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b60648201526084016103f0565b612427826127d0565b61248b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103f0565b600a61249683612d56565b6040516020016124a79291906145a7565b6040516020818303038152906040529050919050565b6124c561256f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600b8054611a9890613fde565b6124fe61256f565b6001600160a01b0381166125635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f0565b61256c81612b45565b50565b6006546001600160a01b031633146120235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f0565b6125d2816127d0565b61256c5760405162461bcd60e51b81526004016103f090614018565b6008546001600160a01b03163b1561256c57600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa158015612650573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612674919061463b565b61256c5760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f77656400000000000000000060448201526064016103f0565b60006126cb82611bcd565b9050806001600160a01b0316836001600160a01b0316036127385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103f0565b336001600160a01b038216148061275457506127548133610a64565b6127c65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016103f0565b610cbf8383612de8565b6000908152600260205260409020546001600160a01b0316151590565b6000806127f983611bcd565b9050806001600160a01b0316846001600160a01b0316148061284057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806128645750836001600160a01b031661285984610c84565b6001600160a01b0316145b949350505050565b612875816127d0565b6128915760405162461bcd60e51b81526004016103f090614018565b600081815260116020908152604080832081518083018352815480825260019283015482860152855260109093529083208054929391929091906128d690849061437b565b925050819055506001600c60008282546128f0919061437b565b909155505060008281526011602052604081208181556001015561291382612e56565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d590600090a25050565b61294c33826127ed565b6129685760405162461bcd60e51b81526004016103f090614065565b610cbf838383612ef9565b600061297e30611f8b565b90506000811161256c5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b60648201526084016103f0565b610cbf838383604051806020016040528060008152506122c0565b4281604001351161256c5760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b60648201526084016103f0565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c81208190612aa49084878761306a565b6009546001600160a01b039081169116149695505050505050565b6001600160a01b0382166000908152601560205260409020805460018101909155818114610cbf576040516301d4b62360e61b81526001600160a01b0384166004820152602481018290526044016103f0565b612b1d848484612ef9565b612b2984848484613092565b610f315760405162461bcd60e51b81526004016103f090614658565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000838152600f60205260409020541515612bb184612d56565b604051602001612bc191906146aa565b60405160208183030381529060405290612bee5760405162461bcd60e51b81526004016103f091906139a7565b506000838152600f602090815260408083205460109092529091205410612c695760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b60648201526084016103f0565b6001600c6000828254612c7c919061442d565b90915550506000838152601060205260408120805460019290612ca090849061442d565b9091555050604080518082018252848152602080820185815260008681526011909252929020905181559051600190910155612cdc8183613190565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610ee033838361330b565b612d2e33836127ed565b612d4a5760405162461bcd60e51b81526004016103f090614065565b610f3184848484612b12565b60606000612d63836133d9565b60010190506000816001600160401b03811115612d8257612d826139fd565b6040519080825280601f01601f191660200182016040528015612dac576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612db657509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612e1d82611bcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e6182611bcd565b9050612e718160008460016134b1565b612e7a82611bcd565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b0316612f0c82611bcd565b6001600160a01b031614612f325760405162461bcd60e51b81526004016103f090614707565b6001600160a01b038216612f945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f0565b612fa183838360016134b1565b826001600160a01b0316612fb482611bcd565b6001600160a01b031614612fda5760405162461bcd60e51b81526004016103f090614707565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600061307b878787876135c8565b915091506130888161368c565b5095945050505050565b60006001600160a01b0384163b1561318857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130d690339089908890889060040161474c565b6020604051808303816000875af1925050508015613111575060408051601f3d908101601f1916820190925261310e9181019061477f565b60015b61316e573d80801561313f576040519150601f19603f3d011682016040523d82523d6000602084013e613144565b606091505b5080516000036131665760405162461bcd60e51b81526004016103f090614658565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612864565b506001612864565b6001600160a01b0382166131e65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103f0565b6131ef816127d0565b1561323c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103f0565b61324a6000838360016134b1565b613253816127d0565b156132a05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103f0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03160361336c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103f0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106134185772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613444576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061346257662386f26fc10000830492506010015b6305f5e100831061347a576305f5e100830492506008015b612710831061348e57612710830492506004015b606483106134a0576064830492506002015b600a8310610bc35760010192915050565b60018111156135205760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016103f0565b816001600160a01b0385161580159061354b5750836001600160a01b0316856001600160a01b031614155b1561355a5761355a85826137d6565b6001600160a01b038416158015906135845750846001600160a01b0316846001600160a01b031614155b15611256576001600160a01b038416600090815260126020908152604080832080546001810182559084528284208101859055848452601390925290912055611256565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135ff5750600090506003613683565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613653573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661367c57600060019250925050613683565b9150600090505b94509492505050565b60008160048111156136a0576136a061479c565b036136a85750565b60018160048111156136bc576136bc61479c565b036137095760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103f0565b600281600481111561371d5761371d61479c565b0361376a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103f0565b600381600481111561377e5761377e61479c565b0361256c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016103f0565b600060016137e384611f8b565b6137ed919061437b565b600083815260136020526040902054909150808214613894576001600160a01b03841660009081526012602052604081208054849081106138305761383061404f565b906000526020600020015490508060126000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106138745761387461404f565b600091825260208083209091019290925591825260139052604090208190555b60008381526013602090815260408083208390556001600160a01b0387168352601290915290208054806138ca576138ca6147b2565b6001900381819060005260206000200160009055905550505050565b6001600160e01b03198116811461256c57600080fd5b60006020828403121561390e57600080fd5b8135613919816138e6565b9392505050565b80356001600160a01b038116811461393757600080fd5b919050565b60006020828403121561394e57600080fd5b61391982613920565b60005b8381101561397257818101518382015260200161395a565b50506000910152565b60008151808452613993816020860160208601613957565b601f01601f19169290920160200192915050565b602081526000613919602083018461397b565b6000602082840312156139cc57600080fd5b5035919050565b600080604083850312156139e657600080fd5b6139ef83613920565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613a3b57613a3b6139fd565b604052919050565b60006001600160401b03821115613a5c57613a5c6139fd565b5060051b60200190565b600082601f830112613a7757600080fd5b81356020613a8c613a8783613a43565b613a13565b82815260059290921b84018101918181019086841115613aab57600080fd5b8286015b84811015613ac65780358352918301918301613aaf565b509695505050505050565b600060208284031215613ae357600080fd5b81356001600160401b03811115613af957600080fd5b61286484828501613a66565b600080600060608486031215613b1a57600080fd5b613b2384613920565b9250613b3160208501613920565b9150604084013590509250925092565b803560ff8116811461393757600080fd5b60008060008060808587031215613b6857600080fd5b8435935060208501359250613b7f60408601613b41565b915060608501356001600160401b03811115613b9a57600080fd5b850160e08188031215613bac57600080fd5b939692955090935050565b60008083601f840112613bc957600080fd5b5081356001600160401b03811115613be057600080fd5b6020830191508360208260051b8501011115613bfb57600080fd5b9250929050565b60008060008060408587031215613c1857600080fd5b84356001600160401b0380821115613c2f57600080fd5b613c3b88838901613bb7565b90965094506020870135915080821115613c5457600080fd5b50613c6187828801613bb7565b95989497509550505050565b60008060008060808587031215613c8357600080fd5b8435935060208501359250613c9a60408601613b41565b915060608501356001600160401b03811115613cb557600080fd5b85016101208188031215613bac57600080fd5b60008060408385031215613cdb57600080fd5b82356001600160401b0380821115613cf257600080fd5b613cfe86838701613a66565b9350602091508185013581811115613d1557600080fd5b85019050601f81018613613d2857600080fd5b8035613d36613a8782613a43565b81815260059190911b82018301908381019088831115613d5557600080fd5b928401925b82841015613d7a57613d6b84613920565b82529284019290840190613d5a565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613dc157835183529284019291840191600101613da5565b50909695505050505050565b60008060208385031215613de057600080fd5b82356001600160401b0380821115613df757600080fd5b818501915085601f830112613e0b57600080fd5b813581811115613e1a57600080fd5b866020606083028501011115613e2f57600080fd5b60209290920196919550909350505050565b60006001600160401b03831115613e5a57613e5a6139fd565b613e6d601f8401601f1916602001613a13565b9050828152838383011115613e8157600080fd5b828260208301376000602084830101529392505050565b600060208284031215613eaa57600080fd5b81356001600160401b03811115613ec057600080fd5b8201601f81018413613ed157600080fd5b61286484823560208401613e41565b801515811461256c57600080fd5b803561393781613ee0565b60008060408385031215613f0c57600080fd5b613f1583613920565b91506020830135613f2581613ee0565b809150509250929050565b60008060008060808587031215613f4657600080fd5b613f4f85613920565b9350613f5d60208601613920565b92506040850135915060608501356001600160401b03811115613f7f57600080fd5b8501601f81018713613f9057600080fd5b613f9f87823560208401613e41565b91505092959194509250565b60008060408385031215613fbe57600080fd5b613fc783613920565b9150613fd560208401613920565b90509250929050565b600181811c90821680613ff257607f821691505b60208210810361401257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016140da576140da6140b2565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b803561ffff8116811461393757600080fd5b6000602082840312156141b657600080fd5b61391982614192565b6000808335601e198436030181126141d657600080fd5b83016020810192503590506001600160401b038111156141f557600080fd5b8060061b3603821315613bfb57600080fd5b8183526000602080850194508260005b8581101561424d576001600160a01b0361423083613920565b168752818301358388015260409687019690910190600101614217565b509495945050505050565b80358252602080820135908301526040808201359083015260006101206001600160a01b0361428960608501613920565b1660608501526080830135608085015260a083013560a08501526142af60c08401614192565b61ffff1660c08501526142c560e08401846141bf565b8260e08701526142d88387018284614207565b925050506101006142ea818501613eee565b15159401939093525090919050565b8381526001600160a01b038316602082015260606040820181905260009061432390830184614258565b95945050505050565b60006020828403121561433e57600080fd5b813561391981613ee0565b84815283602082015260ff831660408201526080606082015260006143716080830184614258565b9695505050505050565b81810381811115610bc357610bc36140b2565b6000808335601e198436030181126143a557600080fd5b8301803591506001600160401b038211156143bf57600080fd5b6020019150600681901b3603821315613bfb57600080fd5b6000604082840312156143e957600080fd5b604051604081018181106001600160401b038211171561440b5761440b6139fd565b60405261441783613920565b8152602083013560208201528091505092915050565b80820180821115610bc357610bc36140b2565b8082028115828204841417610bc357610bc36140b2565b60008261447457634e487b7160e01b600052601260045260246000fd5b500490565b600061ffff808316818103614490576144906140b2565b6001019392505050565b601f821115610cbf57600081815260208120601f850160051c810160208610156144c15750805b601f850160051c820191505b818110156144e0578281556001016144cd565b505050505050565b81516001600160401b03811115614501576145016139fd565b6145158161450f8454613fde565b8461449a565b602080601f83116001811461454a57600084156145325750858301515b600019600386901b1c1916600185901b1785556144e0565b600085815260208120601f198616915b828110156145795788860151825594840194600190910190840161455a565b50858210156145975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546145b581613fde565b600182811680156145cd57600181146145e257614611565b60ff1984168752821515830287019450614611565b8860005260208060002060005b858110156146085781548a8201529084019082016145ef565b50505082870194505b50602f60f81b84528651925061462d8382860160208a01613957565b919092010195945050505050565b60006020828403121561464d57600080fd5b815161391981613ee0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b6020820152600082516146fa81602f850160208701613957565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906143719083018461397b565b60006020828403121561479157600080fd5b8151613919816138e6565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea264697066735822122061952a0646dbfc435143d74406e7aec786d8b20824dd230206a2f12f63173e7a64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000cbfaf4bde69c9b37835761e5228f9fe9e25b452f000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd100000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000106372797374616c6c696e6520776f726b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009464552414c46494c4500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a75796762676556445a384e42427044336f5356554169625454674b596e4b765957696b6447703748774e6200000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002358000000000000000000000000000000000000000000000000000000000000000146a0f68ba657436492a032a88b65fbd9000000000000000000000000000f4361

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80636817031b116101c6578063a74cebab116100f7578063e985e9c511610095578063f07e7fd01161006f578063f07e7fd014610aef578063f2fde38b14610b0f578063f4e638be14610b2f578063fbfa77cf14610b5757600080fd5b8063e985e9c514610a49578063eb5c60f214610a92578063eee608a414610abf57600080fd5b8063b9b8311a116100d1578063b9b8311a146109df578063c87b56dd146109f4578063dc78ac1c14610a14578063e8a3d48514610a3457600080fd5b8063a74cebab1461098a578063b66a0e5d146109aa578063b88d4fde146109bf57600080fd5b80638cba1c6711610164578063926ce44e1161013e578063926ce44e1461090e57806395d89b411461093b578063a07c7ce414610950578063a22cb4651461096a57600080fd5b80638cba1c67146108b05780638da5cb5b146108d05780638ef79e91146108ee57600080fd5b8063715018a6116101a0578063715018a61461080b5780637ecebe00146108205780637f06ee06146108565780638462151c1461088357600080fd5b80636817031b146107b05780636c19e783146107cb57806370a08231146107eb57600080fd5b80632f745c59116102a05780634e99b8001161023e5780635eb9bad6116102185780635eb9bad61461070f5780636352211e1461072f57806363e602301461074f57806365a46e081461079057600080fd5b80634e99b800146106c6578063530da8ef146106db57806355367ba9146106fa57600080fd5b806341a5626a1161027a57806341a5626a1461065257806342842e0e146106725780634bda5d89146106925780634bf365df146106a557600080fd5b80632f745c59146105fd57806333e364cb1461061d5780633c352b0d1461063257600080fd5b8063167ddf6e1161030d578063238ac933116102e7578063238ac9331461058e57806323aed228146105ac57806323b872dd146105ca5780632977e4b3146105ea57600080fd5b8063167ddf6e1461050f57806318160ddd1461054a57806321fe0c641461056e57600080fd5b8063081812fc11610349578063081812fc14610477578063095ea7b3146104af578063114ba8ee146104cf5780631623528f146104ef57600080fd5b806301ffc9a714610400578063031205061461043557806306fdde031461045557600080fd5b366103fb57600e546001600160a01b031633146103f95760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b600080fd5b34801561040c57600080fd5b5061042061041b3660046138fc565b610b77565b60405190151581526020015b60405180910390f35b34801561044157600080fd5b506103f961045036600461393c565b610bc9565b34801561046157600080fd5b5061046a610bf2565b60405161042c91906139a7565b34801561048357600080fd5b506104976104923660046139ba565b610c84565b6040516001600160a01b03909116815260200161042c565b3480156104bb57600080fd5b506103f96104ca3660046139d3565b610cab565b3480156104db57600080fd5b506103f96104ea36600461393c565b610cc4565b3480156104fb57600080fd5b506103f961050a36600461393c565b610cee565b34801561051b57600080fd5b5061052f61052a3660046139ba565b610d97565b6040805182518152602092830151928101929092520161042c565b34801561055657600080fd5b50610560600c5481565b60405190815260200161042c565b34801561057a57600080fd5b506103f9610589366004613ad1565b610dfa565b34801561059a57600080fd5b506009546001600160a01b0316610497565b3480156105b857600080fd5b50600d5462010000900460ff16610420565b3480156105d657600080fd5b506103f96105e5366004613b05565b610ee4565b6103f96105f8366004613b52565b610f37565b34801561060957600080fd5b506105606106183660046139d3565b610f50565b34801561062957600080fd5b506103f9610ffa565b34801561063e57600080fd5b506103f961064d366004613c02565b6110bd565b34801561065e57600080fd5b506103f961066d366004613c02565b61125d565b34801561067e57600080fd5b506103f961068d366004613b05565b611441565b6103f96106a0366004613c6d565b61148e565b3480156106b157600080fd5b50600d54610420906301000000900460ff1681565b3480156106d257600080fd5b5061046a611a8b565b3480156106e757600080fd5b50600d5461042090610100900460ff1681565b34801561070657600080fd5b506103f9611b19565b34801561071b57600080fd5b50601654610497906001600160a01b031681565b34801561073b57600080fd5b5061049761074a3660046139ba565b611bcd565b34801561075b57600080fd5b5061046a6040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561079c57600080fd5b506103f96107ab366004613cc8565b611c02565b3480156107bc57600080fd5b506103f96105f836600461393c565b3480156107d757600080fd5b506103f96107e636600461393c565b611f00565b3480156107f757600080fd5b5061056061080636600461393c565b611f8b565b34801561081757600080fd5b506103f9612011565b34801561082c57600080fd5b5061056061083b36600461393c565b6001600160a01b031660009081526015602052604090205490565b34801561086257600080fd5b506105606108713660046139ba565b60009081526010602052604090205490565b34801561088f57600080fd5b506108a361089e36600461393c565b612025565b60405161042c9190613d89565b3480156108bc57600080fd5b506103f96108cb366004613dcd565b612091565b3480156108dc57600080fd5b506006546001600160a01b0316610497565b3480156108fa57600080fd5b506103f9610909366004613e98565b6121c0565b34801561091a57600080fd5b5061056061092936600461393c565b60146020526000908152604090205481565b34801561094757600080fd5b5061046a61222f565b34801561095c57600080fd5b50600d546104209060ff1681565b34801561097657600080fd5b506103f9610985366004613ef9565b61223e565b34801561099657600080fd5b506103f96109a536600461393c565b612252565b3480156109b657600080fd5b506103f96122a3565b3480156109cb57600080fd5b506103f96109da366004613f30565b6122c0565b3480156109eb57600080fd5b506103f961230e565b348015610a0057600080fd5b5061046a610a0f3660046139ba565b6123af565b348015610a2057600080fd5b506103f9610a2f36600461393c565b6124bd565b348015610a4057600080fd5b5061046a6124e9565b348015610a5557600080fd5b50610420610a64366004613fab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9e57600080fd5b50610560610aad3660046139ba565b6000908152600f602052604090205490565b348015610acb57600080fd5b50610420610ada36600461393c565b60076020526000908152604090205460ff1681565b348015610afb57600080fd5b50600854610497906001600160a01b031681565b348015610b1b57600080fd5b506103f9610b2a36600461393c565b6124f6565b348015610b3b57600080fd5b50600d546104979064010000000090046001600160a01b031681565b348015610b6357600080fd5b50600e54610497906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b1480610ba857506001600160e01b03198216635b5e139f60e01b145b80610bc357506301ffc9a760e01b6001600160e01b03198316145b92915050565b610bd161256f565b6001600160a01b03166000908152600760205260409020805460ff19169055565b606060008054610c0190613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2d90613fde565b8015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b5050505050905090565b6000610c8f826125c9565b506000908152600460205260409020546001600160a01b031690565b81610cb5816125ee565b610cbf83836126c0565b505050565b610ccc61256f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610cf661256f565b6001600160a01b038116610d695760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b60648201526084016103f0565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b6040805180820190915260008082526020820152610db4826127d0565b610dd05760405162461bcd60e51b81526004016103f090614018565b50600090815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610e615760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b60648201526084016103f0565b60005b8151811015610ee057610e9033838381518110610e8357610e8361404f565b60200260200101516127ed565b610eac5760405162461bcd60e51b81526004016103f090614065565b610ece828281518110610ec157610ec161404f565b602002602001015161286c565b80610ed8816140c8565b915050610e64565b5050565b826001600160a01b0381163314610efe57610efe336125ee565b306001600160a01b03841603610f265760405162461bcd60e51b81526004016103f0906140e1565b610f31848484612942565b50505050565b6040516369bd111d60e11b815260040160405180910390fd5b6000610f5b83611f8b565b8210610fbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103f0565b6001600160a01b0383166000908152601260205260409020805483908110610fe757610fe761404f565b9060005260206000200154905092915050565b61100261256f565b600d546301000000900460ff161561102c5760405162461bcd60e51b81526004016103f09061413e565b600d5462010000900460ff16156110a25760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b60648201526084016103f0565b6110aa612973565b600d805462ff0000191662010000179055565b6110c561256f565b8281146110e5576040516313086eff60e21b815260040160405180910390fd5b60005b838110156112565760008585838181106111045761110461404f565b9050602002016020810190611119919061393c565b6001600160a01b03160361114057604051630107349760e51b815260040160405180910390fd5b8282828181106111525761115261404f565b9050602002013560000361117957604051636745f8fb60e01b815260040160405180910390fd5b6000601460008787858181106111915761119161404f565b90506020020160208101906111a6919061393c565b6001600160a01b03166001600160a01b031681526020019081526020016000205411156111e6576040516328547bdf60e01b815260040160405180910390fd5b8282828181106111f8576111f861404f565b90506020020135601460008787858181106112155761121561404f565b905060200201602081019061122a919061393c565b6001600160a01b031681526020810191909152604001600020558061124e816140c8565b9150506110e8565b5050505050565b61126561256f565b828114611285576040516313086eff60e21b815260040160405180910390fd5b60005b838110156112565760008383838181106112a4576112a461404f565b90506020020160208101906112b9919061393c565b6001600160a01b0316036112e057604051630107349760e51b815260040160405180910390fd5b6000601460008585858181106112f8576112f861404f565b905060200201602081019061130d919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054111561134d576040516328547bdf60e01b815260040160405180910390fd5b601460008686848181106113635761136361404f565b9050602002016020810190611378919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002054601460008585858181106113af576113af61404f565b90506020020160208101906113c4919061393c565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550601460008686848181106113fe576113fe61404f565b9050602002016020810190611413919061393c565b6001600160a01b03168152602081019190915260400160009081205580611439816140c8565b915050611288565b826001600160a01b038116331461145b5761145b336125ee565b306001600160a01b038416036114835760405162461bcd60e51b81526004016103f0906140e1565b610f318484846129ee565b600d5462010000900460ff166114b7576040516316851a3760e11b815260040160405180910390fd5b60006114c230611f8b565b90506114d460e0830160c084016141a4565b61ffff168110156114f857604051632d65aa3b60e11b815260040160405180910390fd5b61150182612a09565b6000463084604051602001611518939291906142f9565b60405160208183030381529060405280519060200120905061153c81878787612a67565b61155957604051638baa579f60e01b815260040160405180910390fd5b61157661156c608085016060860161393c565b8460800135612abf565b6115886101208401610100850161432c565b156115fa5760165460405163cdb1f66360e01b81526001600160a01b039091169063cdb1f663906115c3908990899089908990600401614349565b600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b5050505061161b565b8235341461161b57604051637e2897ef60e11b815260040160405180910390fd5b60208301358335101561164157604051637e2897ef60e11b815260040160405180910390fd5b60006116526020850135853561437b565b60a08501356000908152601760205260408120549192505b61167a60e0870160c088016141a4565b61ffff1681101561176c578161168f816127d0565b6116ac576040516352a7a53160e11b815260040160405180910390fd5b826116b6816140c8565b93503090506116c482611bcd565b6001600160a01b0316146116d8575061166a565b611702306116ec60808a0160608b0161393c565b8360405180602001604052806000815250612b12565b806117136080890160608a0161393c565b6001600160a01b03167fba8636482fa7bb52433c25b1cf79e47571bf179a48a271361b50bb78b1d63d7b896080013560405161175191815260200190565b60405180910390a381611763816140c8565b9250505061166a565b60a08601356000908152601760205260408120839055808061179160e08a018a61438e565b808060200260200160405190810160405280939291908181526020016000905b828210156117dd576117ce604083028601368190038101906143d7565b815260200190600101906117b1565b50505050509050600086905060005b8251811080156117fc5750600082115b156118ef576000601460008584815181106118195761181961404f565b6020026020010151600001516001600160a01b03166001600160a01b031681526020019081526020016000205490508060000361185657506118dd565b6000838210156118665781611868565b835b9050611874818761442d565b9550806014600087868151811061188d5761188d61404f565b6020026020010151600001516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546118c8919061437b565b909155506118d89050818561437b565b935050505b806118e7816140c8565b9150506117ec565b5080156119eb5760005b82518110156119e95760008382815181106119165761191661404f565b6020026020010151600001519050600061271085848151811061193b5761193b61404f565b602002602001015160200151856119529190614440565b61195c9190614457565b600d549091506001600160a01b0364010000000090910481169083160361199057611987818761442d565b955050506119d7565b61199a818861442d565b6040519097506001600160a01b0383169082156108fc029083906000818181858888f193505050501580156119d3573d6000803e3d6000fd5b5050505b806119e1816140c8565b9150506118f9565b505b6119f5838561442d565b611a0460208c01358c3561437b565b1015611a23576040516372ef2a9d60e01b815260040160405180910390fd5b6000611a30858c3561437b565b90508015611a7b57600d546040516401000000009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015611a79573d6000803e3d6000fd5b505b5050505050505050505050505050565b600a8054611a9890613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac490613fde565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b505050505081565b611b2161256f565b600d546301000000900460ff1615611b4b5760405162461bcd60e51b81526004016103f09061413e565b600d5462010000900460ff16611bbf5760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b60648201526084016103f0565b600d805462ff000019169055565b6000818152600260205260408120546001600160a01b031680610bc35760405162461bcd60e51b81526004016103f090614018565b611c0a61256f565b60008251118015611c1c575060008151115b611c9c5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a4016103f0565b8051825114611d285760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a4016103f0565b611d30611b19565b30600081815260126020908152604080832080548251818502810185019093528083529192909190830182828015611d8757602002820191906000526020600020905b815481526020019060010190808311611d73575b5050505050905060005b8151811015611e83576000828281518110611dae57611dae61404f565b602090810291909101810151600081815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff161015611e6d57878161ffff1681518110611e0657611e0661404f565b6020026020010151826000015103611e5b576000878261ffff1681518110611e3057611e3061404f565b60200260200101519050611e5587828660405180602001604052806000815250612b12565b50611e6d565b80611e6581614479565b915050611de3565b5050508080611e7b906140c8565b915050611d91565b50611e8d82611f8b565b15610f315760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f0000000060648201526084016103f0565b611f0861256f565b6001600160a01b038116611f695760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b60648201526084016103f0565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611ff55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016103f0565b506001600160a01b031660009081526003602052604090205490565b61201961256f565b6120236000612b45565b565b6001600160a01b03811660009081526012602090815260409182902080548351818402810184019094528084526060939283018282801561208557602002820191906000526020600020905b815481526020019060010190808311612071575b50505050509050919050565b3360009081526007602052604090205460ff16806120b957506006546001600160a01b031633145b6120c257600080fd5b600d546301000000900460ff166121395760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b60648201526084016103f0565b60005b81811015610cbf576121ae8383838181106121595761215961404f565b905060600201600001358484848181106121755761217561404f565b905060600201602001358585858181106121915761219161404f565b90506060020160400160208101906121a9919061393c565b612b97565b806121b8816140c8565b91505061213c565b6121c861256f565b60008151116122235760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b60648201526084016103f0565b600a610ee082826144e8565b606060018054610c0190613fde565b81612248816125ee565b610cbf8383612d19565b61225a61256f565b6001600160a01b0381166122815760405163e6c4247b60e01b815260040160405180910390fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6122ab61256f565b600d805463ff00000019169055612023610ffa565b836001600160a01b03811633146122da576122da336125ee565b306001600160a01b038516036123025760405162461bcd60e51b81526004016103f0906140e1565b61125685858585612d24565b61231661256f565b61231e611b19565b3060009081526012602090815260408083208054825181850281018501909352808352919290919083018282801561237557602002820191906000526020600020905b815481526020019060010190808311612361575b5050505050905060005b8151811015610ee05761239d828281518110610ec157610ec161404f565b806123a7816140c8565b91505061237f565b60606000600a80546123c090613fde565b90501161241e5760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b60648201526084016103f0565b612427826127d0565b61248b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103f0565b600a61249683612d56565b6040516020016124a79291906145a7565b6040516020818303038152906040529050919050565b6124c561256f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600b8054611a9890613fde565b6124fe61256f565b6001600160a01b0381166125635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f0565b61256c81612b45565b50565b6006546001600160a01b031633146120235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f0565b6125d2816127d0565b61256c5760405162461bcd60e51b81526004016103f090614018565b6008546001600160a01b03163b1561256c57600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa158015612650573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612674919061463b565b61256c5760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f77656400000000000000000060448201526064016103f0565b60006126cb82611bcd565b9050806001600160a01b0316836001600160a01b0316036127385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103f0565b336001600160a01b038216148061275457506127548133610a64565b6127c65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016103f0565b610cbf8383612de8565b6000908152600260205260409020546001600160a01b0316151590565b6000806127f983611bcd565b9050806001600160a01b0316846001600160a01b0316148061284057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806128645750836001600160a01b031661285984610c84565b6001600160a01b0316145b949350505050565b612875816127d0565b6128915760405162461bcd60e51b81526004016103f090614018565b600081815260116020908152604080832081518083018352815480825260019283015482860152855260109093529083208054929391929091906128d690849061437b565b925050819055506001600c60008282546128f0919061437b565b909155505060008281526011602052604081208181556001015561291382612e56565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d590600090a25050565b61294c33826127ed565b6129685760405162461bcd60e51b81526004016103f090614065565b610cbf838383612ef9565b600061297e30611f8b565b90506000811161256c5760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b60648201526084016103f0565b610cbf838383604051806020016040528060008152506122c0565b4281604001351161256c5760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b60648201526084016103f0565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c81208190612aa49084878761306a565b6009546001600160a01b039081169116149695505050505050565b6001600160a01b0382166000908152601560205260409020805460018101909155818114610cbf576040516301d4b62360e61b81526001600160a01b0384166004820152602481018290526044016103f0565b612b1d848484612ef9565b612b2984848484613092565b610f315760405162461bcd60e51b81526004016103f090614658565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000838152600f60205260409020541515612bb184612d56565b604051602001612bc191906146aa565b60405160208183030381529060405290612bee5760405162461bcd60e51b81526004016103f091906139a7565b506000838152600f602090815260408083205460109092529091205410612c695760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b60648201526084016103f0565b6001600c6000828254612c7c919061442d565b90915550506000838152601060205260408120805460019290612ca090849061442d565b9091555050604080518082018252848152602080820185815260008681526011909252929020905181559051600190910155612cdc8183613190565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610ee033838361330b565b612d2e33836127ed565b612d4a5760405162461bcd60e51b81526004016103f090614065565b610f3184848484612b12565b60606000612d63836133d9565b60010190506000816001600160401b03811115612d8257612d826139fd565b6040519080825280601f01601f191660200182016040528015612dac576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612db657509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612e1d82611bcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e6182611bcd565b9050612e718160008460016134b1565b612e7a82611bcd565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b0316612f0c82611bcd565b6001600160a01b031614612f325760405162461bcd60e51b81526004016103f090614707565b6001600160a01b038216612f945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f0565b612fa183838360016134b1565b826001600160a01b0316612fb482611bcd565b6001600160a01b031614612fda5760405162461bcd60e51b81526004016103f090614707565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600061307b878787876135c8565b915091506130888161368c565b5095945050505050565b60006001600160a01b0384163b1561318857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130d690339089908890889060040161474c565b6020604051808303816000875af1925050508015613111575060408051601f3d908101601f1916820190925261310e9181019061477f565b60015b61316e573d80801561313f576040519150601f19603f3d011682016040523d82523d6000602084013e613144565b606091505b5080516000036131665760405162461bcd60e51b81526004016103f090614658565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612864565b506001612864565b6001600160a01b0382166131e65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103f0565b6131ef816127d0565b1561323c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103f0565b61324a6000838360016134b1565b613253816127d0565b156132a05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103f0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03160361336c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103f0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106134185772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613444576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061346257662386f26fc10000830492506010015b6305f5e100831061347a576305f5e100830492506008015b612710831061348e57612710830492506004015b606483106134a0576064830492506002015b600a8310610bc35760010192915050565b60018111156135205760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016103f0565b816001600160a01b0385161580159061354b5750836001600160a01b0316856001600160a01b031614155b1561355a5761355a85826137d6565b6001600160a01b038416158015906135845750846001600160a01b0316846001600160a01b031614155b15611256576001600160a01b038416600090815260126020908152604080832080546001810182559084528284208101859055848452601390925290912055611256565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135ff5750600090506003613683565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613653573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661367c57600060019250925050613683565b9150600090505b94509492505050565b60008160048111156136a0576136a061479c565b036136a85750565b60018160048111156136bc576136bc61479c565b036137095760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103f0565b600281600481111561371d5761371d61479c565b0361376a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103f0565b600381600481111561377e5761377e61479c565b0361256c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016103f0565b600060016137e384611f8b565b6137ed919061437b565b600083815260136020526040902054909150808214613894576001600160a01b03841660009081526012602052604081208054849081106138305761383061404f565b906000526020600020015490508060126000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106138745761387461404f565b600091825260208083209091019290925591825260139052604090208190555b60008381526013602090815260408083208390556001600160a01b0387168352601290915290208054806138ca576138ca6147b2565b6001900381819060005260206000200160009055905550505050565b6001600160e01b03198116811461256c57600080fd5b60006020828403121561390e57600080fd5b8135613919816138e6565b9392505050565b80356001600160a01b038116811461393757600080fd5b919050565b60006020828403121561394e57600080fd5b61391982613920565b60005b8381101561397257818101518382015260200161395a565b50506000910152565b60008151808452613993816020860160208601613957565b601f01601f19169290920160200192915050565b602081526000613919602083018461397b565b6000602082840312156139cc57600080fd5b5035919050565b600080604083850312156139e657600080fd5b6139ef83613920565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613a3b57613a3b6139fd565b604052919050565b60006001600160401b03821115613a5c57613a5c6139fd565b5060051b60200190565b600082601f830112613a7757600080fd5b81356020613a8c613a8783613a43565b613a13565b82815260059290921b84018101918181019086841115613aab57600080fd5b8286015b84811015613ac65780358352918301918301613aaf565b509695505050505050565b600060208284031215613ae357600080fd5b81356001600160401b03811115613af957600080fd5b61286484828501613a66565b600080600060608486031215613b1a57600080fd5b613b2384613920565b9250613b3160208501613920565b9150604084013590509250925092565b803560ff8116811461393757600080fd5b60008060008060808587031215613b6857600080fd5b8435935060208501359250613b7f60408601613b41565b915060608501356001600160401b03811115613b9a57600080fd5b850160e08188031215613bac57600080fd5b939692955090935050565b60008083601f840112613bc957600080fd5b5081356001600160401b03811115613be057600080fd5b6020830191508360208260051b8501011115613bfb57600080fd5b9250929050565b60008060008060408587031215613c1857600080fd5b84356001600160401b0380821115613c2f57600080fd5b613c3b88838901613bb7565b90965094506020870135915080821115613c5457600080fd5b50613c6187828801613bb7565b95989497509550505050565b60008060008060808587031215613c8357600080fd5b8435935060208501359250613c9a60408601613b41565b915060608501356001600160401b03811115613cb557600080fd5b85016101208188031215613bac57600080fd5b60008060408385031215613cdb57600080fd5b82356001600160401b0380821115613cf257600080fd5b613cfe86838701613a66565b9350602091508185013581811115613d1557600080fd5b85019050601f81018613613d2857600080fd5b8035613d36613a8782613a43565b81815260059190911b82018301908381019088831115613d5557600080fd5b928401925b82841015613d7a57613d6b84613920565b82529284019290840190613d5a565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613dc157835183529284019291840191600101613da5565b50909695505050505050565b60008060208385031215613de057600080fd5b82356001600160401b0380821115613df757600080fd5b818501915085601f830112613e0b57600080fd5b813581811115613e1a57600080fd5b866020606083028501011115613e2f57600080fd5b60209290920196919550909350505050565b60006001600160401b03831115613e5a57613e5a6139fd565b613e6d601f8401601f1916602001613a13565b9050828152838383011115613e8157600080fd5b828260208301376000602084830101529392505050565b600060208284031215613eaa57600080fd5b81356001600160401b03811115613ec057600080fd5b8201601f81018413613ed157600080fd5b61286484823560208401613e41565b801515811461256c57600080fd5b803561393781613ee0565b60008060408385031215613f0c57600080fd5b613f1583613920565b91506020830135613f2581613ee0565b809150509250929050565b60008060008060808587031215613f4657600080fd5b613f4f85613920565b9350613f5d60208601613920565b92506040850135915060608501356001600160401b03811115613f7f57600080fd5b8501601f81018713613f9057600080fd5b613f9f87823560208401613e41565b91505092959194509250565b60008060408385031215613fbe57600080fd5b613fc783613920565b9150613fd560208401613920565b90509250929050565b600181811c90821680613ff257607f821691505b60208210810361401257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016140da576140da6140b2565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b803561ffff8116811461393757600080fd5b6000602082840312156141b657600080fd5b61391982614192565b6000808335601e198436030181126141d657600080fd5b83016020810192503590506001600160401b038111156141f557600080fd5b8060061b3603821315613bfb57600080fd5b8183526000602080850194508260005b8581101561424d576001600160a01b0361423083613920565b168752818301358388015260409687019690910190600101614217565b509495945050505050565b80358252602080820135908301526040808201359083015260006101206001600160a01b0361428960608501613920565b1660608501526080830135608085015260a083013560a08501526142af60c08401614192565b61ffff1660c08501526142c560e08401846141bf565b8260e08701526142d88387018284614207565b925050506101006142ea818501613eee565b15159401939093525090919050565b8381526001600160a01b038316602082015260606040820181905260009061432390830184614258565b95945050505050565b60006020828403121561433e57600080fd5b813561391981613ee0565b84815283602082015260ff831660408201526080606082015260006143716080830184614258565b9695505050505050565b81810381811115610bc357610bc36140b2565b6000808335601e198436030181126143a557600080fd5b8301803591506001600160401b038211156143bf57600080fd5b6020019150600681901b3603821315613bfb57600080fd5b6000604082840312156143e957600080fd5b604051604081018181106001600160401b038211171561440b5761440b6139fd565b60405261441783613920565b8152602083013560208201528091505092915050565b80820180821115610bc357610bc36140b2565b8082028115828204841417610bc357610bc36140b2565b60008261447457634e487b7160e01b600052601260045260246000fd5b500490565b600061ffff808316818103614490576144906140b2565b6001019392505050565b601f821115610cbf57600081815260208120601f850160051c810160208610156144c15750805b601f850160051c820191505b818110156144e0578281556001016144cd565b505050505050565b81516001600160401b03811115614501576145016139fd565b6145158161450f8454613fde565b8461449a565b602080601f83116001811461454a57600084156145325750858301515b600019600386901b1c1916600185901b1785556144e0565b600085815260208120601f198616915b828110156145795788860151825594840194600190910190840161455a565b50858210156145975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546145b581613fde565b600182811680156145cd57600181146145e257614611565b60ff1984168752821515830287019450614611565b8860005260208060002060005b858110156146085781548a8201529084019082016145ef565b50505082870194505b50602f60f81b84528651925061462d8382860160208a01613957565b919092010195945050505050565b60006020828403121561464d57600080fd5b815161391981613ee0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b6020820152600082516146fa81602f850160208701613957565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906143719083018461397b565b60006020828403121561479157600080fd5b8151613919816138e6565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea264697066735822122061952a0646dbfc435143d74406e7aec786d8b20824dd230206a2f12f63173e7a64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000cbfaf4bde69c9b37835761e5228f9fe9e25b452f000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd100000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000106372797374616c6c696e6520776f726b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009464552414c46494c4500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a75796762676556445a384e42427044336f5356554169625454674b596e4b765957696b6447703748774e6200000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002358000000000000000000000000000000000000000000000000000000000000000146a0f68ba657436492a032a88b65fbd9000000000000000000000000000f4361

-----Decoded View---------------
Arg [0] : name_ (string): crystalline work
Arg [1] : symbol_ (string): FERALFILE
Arg [2] : burnable_ (bool): True
Arg [3] : bridgeable_ (bool): True
Arg [4] : signer_ (address): 0xBEb9F810862c40A144925f568b1853d72Acc492F
Arg [5] : vault_ (address): 0xcBFaf4BDE69C9b37835761E5228f9fe9E25b452f
Arg [6] : costReceiver_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [7] : contractURI_ (string): ipfs://QmZuygbgeVDZ8NBBpD3oSVUAibTTgKYnKvYWikdGp7HwNb
Arg [8] : seriesIds_ (uint256[]): 1
Arg [9] : seriesMaxSupplies_ (uint256[]): 9048
Arg [10] : seriesNextPurchasableTokenIds_ (uint256[]): 31946296525744824328753280828797417080692251952513183340713878305007073182561

-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f
Arg [5] : 000000000000000000000000cbfaf4bde69c9b37835761e5228f9fe9e25b452f
Arg [6] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [10] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [12] : 6372797374616c6c696e6520776f726b00000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [14] : 464552414c46494c450000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [16] : 697066733a2f2f516d5a75796762676556445a384e42427044336f5356554169
Arg [17] : 625454674b596e4b765957696b6447703748774e620000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [21] : 0000000000000000000000000000000000000000000000000000000000002358
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [23] : 46a0f68ba657436492a032a88b65fbd9000000000000000000000000000f4361


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.