Address Details
contract

0xad337077480134028B7C68AF290E891ce28076Eb

Contract Name
CeloHedgeyOTC
Creator
0x26adb9–1007f3 at 0x7fed31–1e283b
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
14134389
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CeloHedgeyOTC




Optimization enabled
true
Compiler version
v0.8.13+commit.abaa5c0e




Optimization runs
200
EVM Version
london




Verified at
2022-04-01T14:28:12.155103Z

contracts/CeloHedgeyOTC.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.13;

import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './interfaces/Decimals.sol';
import './libraries/TransferHelper.sol';
import './libraries/NFTHelper.sol';

/**
 * @title HedgeyOTC is an over the counter peer to peer trading contract
 * @notice This contract allows for a seller to generate a unique over the counter deal, which can be private or public
 * @notice The public deals allow anyone to participate and purchase tokens from the seller, whereas a private deal allows only a single whitelisted address to participate
 * @notice The Seller decides how much tokens to sell and at what price
 * @notice The Seller also decides if the tokens being sold must be time locked - which means that there is a vesting period before the buyers can access those tokens
 */
contract CeloHedgeyOTC is ReentrancyGuard {
  using SafeERC20 for IERC20;

  /// @dev d is a basic counter, used for indexing all of the deals - and deals are mapped to each index d
  uint256 public d = 0;
  /// @dev the futureContract is used to time lock tokens. This contract points to one specific contract for time locking
  /// @dev the futureContract is an ERC721 contract that locks the tokens for users until they are unlocked and can be redeemed
  address public futureContract;

  constructor(address _fc) {
    futureContract = _fc;
  }

  /**
   * @notice Deal is the struct that defines a single OTC offer, created by a seller
   * @dev  Deal struct contains the following parameter definitions:
   * @dev 1) seller: This is the creator and seller of the deal
   * @dev 2) token: This is the token that the seller is selling! Must be a standard ERC20 token, parameter is the contract address of the ERC20
   * @dev ... the ERC20 contract is required to have a public call function decimals() that returns a uint. This is required to price the amount of tokens being purchase
   * @dev ... by the buyer - calculating exactly how much to deliver to the seller.
   * @dev 3) paymentCurrency: This is also an ERC20 which the seller will get paid in during the act of a buyer buying tokens - also the ERC20 contract address
   * @dev 4) remainingAmount: This initially is the entire deposit the seller is selling, but as people purchase chunks of the deal, the remaining amount is decreased to 0
   * @dev 5) minimumPurchase: This is the minimum chunk size that a buyer can purchase, defined by the seller, must be greater than 0.
   * @dev 6) price: The Price is the per token cost which buyers pay to the seller, denominated in the payment currency. This is not the total price of the deal
   * @dev ... the total price is calculated by the remainingAmount * price (then adjusting for the decimals of the payment currency)
   * @dev 7) maturity: this is the unix time defining the period in which the deal is valid. After the maturity no purchases can be made.
   * @dev 8) unlockDate: this is the unix time which may be used to time lock tokens that are sold. If the unlock date is 0 or less than current block time
   * @dev ... at the time of purchase, the tokens are not locked but rather delivered directly to the buyer from the contract
   * @dev 9) buyer: this is a whitelist address for the buyer. It can either be the Zero address - which indicates that Anyone can purchase
   * @dev ... or it is a single address that only that owner of the address can participate in purchasing the tokens
   */
  struct Deal {
    address seller;
    address token;
    address paymentCurrency;
    uint256 remainingAmount;
    uint256 minimumPurchase;
    uint256 price;
    uint256 maturity;
    uint256 unlockDate;
    address buyer;
  }

  /// @dev the Deals are all mapped via the indexer d to deals mapping
  mapping(uint256 => Deal) public deals;

  /**
   * @notice This function is what the seller uses to create a new OTC offering
   * @notice Once this function has been completed - buyers can purchase tokens from the seller based on the price and parameters set
   * @dev this function will pull in tokens from the seller, create a new Deal struct and mapped to the current index d
   * @dev this function does not allow for taxed / deflationary tokens - as the amount that is pulled into the contract must match with what is being sent
   * @dev this function requires that the _token has a decimals() public function on its ERC20 contract to be called
   * @param _token is the ERC20 contract address that the seller is going to create the over the counter offering for
   * @param _paymentCurrency is the ERC20 contract address of the opposite ERC20 that the seller wants to get paid in when selling the token
   * ... this can also be used for a token SWAP - where the ERC20 address of the token being swapped to is input as the paymentCurrency
   * @param _amount is the amount of tokens that you as the seller want to sell
   * @param _min is the minimum amount of tokens that a buyer can purchase from you. this should be less than or equal to the total amount
   * @param _price is the price per token which the seller will get paid, denominated in the payment currency
   * ... if this is a token SWAP, then the _price needs to be set as the ratio of the tokens being swapped - ie 10 for 10 paymentCurrency tokens to 1 token
   * @param _maturity is how long you would like to allow buyers to purchase tokens from this deal, in unix time. this needs to be beyond current block time
   * @param _unlockDate is used if you are requiring that tokens purchased by buyers are locked. If this is set to 0 or anything less than current block time
   * ... any tokens purchased will not be locked but immediately delivered to the buyers. Otherwise the unlockDate will lock the tokens in the associated
   * ... futureContract and mint the buyer an NFT - which will hold the tokens in escrow until the unlockDate has passed - whereupon the owner of the NFT can redeem the tokens
   * @param _buyer is a special option to make this a private deal - where only a specific buyer's address can participate and make the purchase. If this is set to the
   * ... Zero address - then it is publicly available and anyone can purchase tokens from this deal
   */
  function create(
    address _token,
    address _paymentCurrency,
    uint256 _amount,
    uint256 _min,
    uint256 _price,
    uint256 _maturity,
    uint256 _unlockDate,
    address _buyer
  ) external nonReentrant {
    /// @dev check to make sure that the maturity is beyond current block time
    require(_maturity > block.timestamp, 'OTC01');
    /// @dev check to make sure that the total amount is grater than or equal to the minimum
    require(_amount >= _min, 'OTC02');
    /// @dev this checks to make sure that if someone purchases the minimum amount, it is never equal to 0
    /// @dev where someone could find a small enough minimum to purchase all of the tokens for free
    require((_min * _price) / (10**Decimals(_token).decimals()) > 0, 'OTC03');
    /// @dev creates the Deal struct with all of the parameters for inputs - and set the bool 'open' to true so that this offer can now be purchased
    deals[d++] = Deal(msg.sender, _token, _paymentCurrency, _amount, _min, _price, _maturity, _unlockDate, _buyer);
    /// @dev pulls the tokens into this contract so that they can be purchased
    TransferHelper.transferTokens(_token, msg.sender, address(this), _amount);
    /// @dev emit an event with the parameters of the deal, because counter d has already been increased by 1, need to subtract one when emitting the event
    emit NewDeal(d - 1, msg.sender, _token, _paymentCurrency, _amount, _min, _price, _maturity, _unlockDate, _buyer);
  }

  /**
   * @notice This function lets a seller cancel their existing deal anytime they if they want to, including before the maturity date
   * @notice all that is required is that the deal has not been closed, and that there is still a reamining balance
   * @dev you need to know the index _d of the deal you are trying to close and that is it
   * @dev only the seller can close this deal
   * @dev once this has been called the Deal struct in storage is deleted so that it cannot be accessed for any further methods
   * @param _d is the dealID that is mapped to the Struct Deal
   */
  function close(uint256 _d) external nonReentrant {
    /// @dev grabs from storage the deal, and temporarily stores in memory
    Deal memory deal = deals[_d];
    /// @dev only the seller can call this function
    require(msg.sender == deal.seller, 'OTC04');
    /// @dev the remaining amount must be greater than 0
    require(deal.remainingAmount > 0, 'OTC05');
    /// @dev delete the struct so it can no longer be used
    delete deals[_d];
    /// @dev withdraw the reamining tokens to the seller (msg.sender)
    TransferHelper.withdrawTokens(deal.token, msg.sender, deal.remainingAmount);
    /// @dev emit an event to announce the deal has been closed
    emit DealClosed(_d);
  }

  /**
   * @notice This function is what buyers use to make purchases from the sellers
   * @param _d is the index of the deal that a buyer wants to participate in and make a purchase
   * @param _amount is the amount of tokens the buyer is purchasing, which must be at least the minimumPurchase
   * ... and at most the remainingAmount for this deal (or the remainingAmount if that is less than the minimum)
   * @notice ensure when using this function that you are aware of the minimums, and price per token to ensure sufficient balances to make a purchase
   * @notice if the deal has an unlockDate that is beyond the current block time - no tokens will be received by the buyer, but rather they will receive
   * @notice an NFT, which represents their ability to redeem and claim the locked tokens after the unlockDate has passed
   * @notice the NFT is minted from the futureContract, where the locked tokens are delivered to and held
   * @notice the Seller will receive payment in full immediately when triggering this function, there is no lock on payments
   * @dev this function can also be used to execute a token SWAP function, where the swap is executed through this function
   */
  function buy(uint256 _d, uint256 _amount) external nonReentrant {
    /// @dev pull the deal details from storage, placed in memory
    Deal memory deal = deals[_d];
    /// @dev we do not let the seller sell to themselves, must be a separate buyer
    require(msg.sender != deal.seller, 'OTC06');
    /// @dev require that the deal order is still valid by checking if the block time is not passed the maturity date
    require(deal.maturity >= block.timestamp, 'OTC07');
    /// @dev if the deal had a whitelist - then require the msg.sender to be that buyer, otherwise if there was no whitelist, anyone can buy
    require(msg.sender == deal.buyer || deal.buyer == address(0x0), 'OTC08');
    /// @dev require that the amount being purchased is greater than the deal minimum, or that the amount being purchased is the entire remainder of whats left
    /// @dev AND require that the remaining amount in the deal actually equals or exceeds what the buyer wants to purchase
    require(
      (_amount >= deal.minimumPurchase || _amount == deal.remainingAmount) && deal.remainingAmount >= _amount,
      'OTC09'
    );
    /// @dev we calculate the purchase amount taking the decimals from the token first
    /// @dev then multiply the amount by the per token price, and now to get back to an amount denominated in the payment currency divide by the factor of token decimals
    uint256 decimals = Decimals(deal.token).decimals();
    uint256 purchase = (_amount * deal.price) / (10**decimals);
    /// @dev transfer the paymentCurrency purchase amount from the buyer to the seller's address
    TransferHelper.transferTokens(deal.paymentCurrency, msg.sender, deal.seller, purchase);
    /// @dev reduce the deal remaining amount by how much was purchased
    deal.remainingAmount -= _amount;
    /// @dev emit an even signifying that the buyer has purchased tokens from the seller, what amount, and how much remains to be purchased in this deal
    emit TokensBought(_d, _amount, deal.remainingAmount);
    if (deal.unlockDate > block.timestamp) {
      /// @dev if the unlockdate is the in future, then tokens will be sent to the futureContract, and NFT minted to the buyer
      /// @dev the buyer can redeem and unlock their tokens interacting with the futureContract after the unlockDate has passed
      NFTHelper.lockTokens(futureContract, msg.sender, deal.token, _amount, deal.unlockDate);
      /// @dev emit an event that a Future, ie locked tokens event, has happened
      emit FutureCreated(msg.sender, deal.token, _amount, deal.unlockDate);
    } else {
      /// @dev if the unlockDate is in the past or now - then tokens are already unlocked and delivered directly to the buyer
      TransferHelper.withdrawTokens(deal.token, msg.sender, _amount);
    }
    /// @dev if the reaminder is 0, then we simply delete the storage struct Deal so that it is effectively closed
    if (deal.remainingAmount == 0) {
      delete deals[_d];
    } else {
      /// @dev if there is still a remainder - we need to update our global public deal struct in storage
      deals[_d].remainingAmount = deal.remainingAmount;
    }
  }

  /// @dev events for each function
  event NewDeal(
    uint256 _d,
    address _seller,
    address _token,
    address _paymentCurrency,
    uint256 _remainingAmount,
    uint256 _minimumPurchase,
    uint256 _price,
    uint256 _maturity,
    uint256 _unlockDate,
    address _buyer
  );
  event TokensBought(uint256 _d, uint256 _amount, uint256 _remainingAmount);
  event DealClosed(uint256 _d);
  event FutureCreated(address _owner, address _token, uint256 _amount, uint256 _unlockDate);
}
        

/_openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/_openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
          

/_openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}
          

/_openzeppelin/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
          

/contracts/interfaces/Decimals.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.13;

/// @dev this interface is a critical addition that is not part of the standard ERC-20 specifications
/// @dev this is required to do the calculation of the total price required, when pricing things in the payment currency
/// @dev only the payment currency is required to have a decimals impelementation on the ERC20 contract, otherwise it will fail
interface Decimals {
  function decimals() external view returns (uint256);
}
          

/contracts/interfaces/INFT.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.13;

/// @dev this is the one contract call that the OTC needs to interact with the NFT contract
interface INFT {
  /// @notice function for publicly viewing a lockedToken (future) details
  /// @param _id is the id of the NFT which is mapped to the future struct
  /// @dev this returns the amount of tokens locked, the token address and the date that they are unlocked
  function futures(uint256 _id)
    external
    view
    returns (
      uint256 amount,
      address token,
      uint256 unlockDate
    );

  /// @param _holder is the new owner of the NFT and timelock future - this can be any address
  /// @param _amount is the amount of tokens that are going to be locked
  /// @param _token is the token address to be locked by the NFT. Use WETH address for ETH - but WETH must be held by the msg.sender
  /// ... as there is no automatic wrapping from ETH to WETH for this function.
  /// @param _unlockDate is the date which the tokens become unlocked and available to be redeemed and withdrawn from the contract
  /// @dev this is a public function that anyone can call
  /// @dev the _holder can be defined as your address, or any chose address - and so you can directly mint NFTs to other addresses
  /// ... in a way to airdrop NFTs directly to contributors
  function createNFT(
    address _holder,
    uint256 _amount,
    address _token,
    uint256 _unlockDate
  ) external returns (uint256);

  /// @dev function for redeeming an NFT
  /// @notice this function will burn the NFT and delete the future struct - in return the locked tokens will be delivered
  function redeemNFT(uint256 _id) external returns (bool);

  /// @notice this event spits out the details of the NFT and future struct when a new NFT & Future is minted
  event NFTCreated(uint256 _i, address _holder, uint256 _amount, address _token, uint256 _unlockDate);

  /// @notice this event spits out the details of the NFT and future structe when an existing NFT and Future is redeemed
  event NFTRedeemed(uint256 _i, address _holder, uint256 _amount, address _token, uint256 _unlockDate);

  /// @notice this event is fired the one time when the baseURI is updated
  event URISet(string newURI);
}
          

/contracts/interfaces/IWETH.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.13;

/// @dev used for handling ETH wrapping into WETH to be stored in smart contracts upon deposit,
/// ... and used to unwrap WETH into ETH to deliver when withdrawing from smart contracts
interface IWETH {
  function deposit() external payable;

  function transfer(address to, uint256 value) external returns (bool);

  function withdraw(uint256) external;
}
          

/contracts/libraries/NFTHelper.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '../interfaces/INFT.sol';

/// @notice Library to lock tokens and mint an NFT
/// @notice this NFTHelper is used by the HedgeyOTC contract to lock tokens and instruct the Hedgeys contract to mint an NFT
library NFTHelper {
  /// @dev internal function that handles the locking of the tokens in the NFT Futures contract
  /// @param futureContract is the address of the NFT contract that will mint the NFT and lock tokens
  /// @param _holder address here becomes the owner of the newly minted NFT
  /// @param _token address here is the ERC20 contract address of the tokens being locked by the NFT contract
  /// @param _amount is the amount of tokens that will be locked
  /// @param _unlockDate provides the unlock date which is the expiration date for the Future generated
  function lockTokens(
    address futureContract,
    address _holder,
    address _token,
    uint256 _amount,
    uint256 _unlockDate
  ) internal {
    /// @dev ensure that the _unlockDate is in the future compared to the current block timestamp
    require(_unlockDate > block.timestamp, 'NHL01');
    /// @dev similar to checking the balances for the OTC contract when creating a new deal - we check the current and post balance in the NFT contract
    /// @dev to ensure that 100% of the amount of tokens to be locked are in fact locked in the contract address
    uint256 currentBalance = IERC20(_token).balanceOf(futureContract);
    /// @dev increase allowance so that the NFT contract can pull the total funds
    /// @dev this is a safer way to ensure that the entire amount is delivered to the NFT contract
    SafeERC20.safeIncreaseAllowance(IERC20(_token), futureContract, _amount);
    /// @dev this function points to the NFT Futures contract and calls its function to mint an NFT and generate the locked tokens future struct
    INFT(futureContract).createNFT(_holder, _amount, _token, _unlockDate);
    /// @dev check to make sure that _holder is received by the futures contract equals the total amount we have delivered
    /// @dev this prevents functionality with deflationary or tax tokens that have not whitelisted these address
    uint256 postBalance = IERC20(_token).balanceOf(futureContract);
    assert(postBalance - currentBalance == _amount);
  }
}
          

/contracts/libraries/TransferHelper.sol

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.13;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '../interfaces/IWETH.sol';

/// @notice Library to help safely transfer tokens and handle ETH wrapping and unwrapping of WETH
library TransferHelper {
  using SafeERC20 for IERC20;

  /// @notice Internal function used for standard ERC20 transferFrom method
  /// @notice it contains a pre and post balance check
  /// @notice as well as a check on the msg.senders balance
  /// @param token is the address of the ERC20 being transferred
  /// @param from is the remitting address
  /// @param to is the location where they are being delivered
  function transferTokens(
    address token,
    address from,
    address to,
    uint256 amount
  ) internal {
    uint256 priorBalance = IERC20(token).balanceOf(address(to));
    require(IERC20(token).balanceOf(msg.sender) >= amount, 'THL01');
    SafeERC20.safeTransferFrom(IERC20(token), from, to, amount);
    uint256 postBalance = IERC20(token).balanceOf(address(to));
    require(postBalance - priorBalance == amount, 'THL02');
  }

  /// @notice Internal function is used with standard ERC20 transfer method
  /// @notice this function ensures that the amount received is the amount sent with pre and post balance checking
  /// @param token is the ERC20 contract address that is being transferred
  /// @param to is the address of the recipient
  /// @param amount is the amount of tokens that are being transferred
  function withdrawTokens(
    address token,
    address to,
    uint256 amount
  ) internal {
    uint256 priorBalance = IERC20(token).balanceOf(address(to));
    SafeERC20.safeTransfer(IERC20(token), to, amount);
    uint256 postBalance = IERC20(token).balanceOf(address(to));
    require(postBalance - priorBalance == amount, 'THL02');
  }

  /// @dev Internal function that handles transfering payments from buyers to sellers with special WETH handling
  /// @dev this function assumes that if the recipient address is a contract, it cannot handle ETH - so we always deliver WETH
  /// @dev special care needs to be taken when using contract addresses to sell deals - to ensure it can handle WETH properly when received
  function transferPayment(
    address weth,
    address token,
    address from,
    address payable to,
    uint256 amount
  ) internal {
    if (token == weth) {
      require(msg.value == amount, 'THL03');
      if (!Address.isContract(to)) {
        (bool success, ) = to.call{value: amount}('');
        require(success, 'THL04');
      } else {
        /// @dev we want to deliver WETH from ETH here for better handling at contract
        IWETH(weth).deposit{value: amount}();
        assert(IWETH(weth).transfer(to, amount));
      }
    } else {
      transferTokens(token, from, to, amount);
    }
  }

  /// @dev Internal funciton that handles withdrawing tokens and WETH that are up for sale to buyers
  /// @dev this function is only called if the tokens are not timelocked
  /// @dev this function handles weth specially and delivers ETH to the recipient
  function withdrawPayment(
    address weth,
    address token,
    address payable to,
    uint256 amount
  ) internal {
    if (token == weth) {
      IWETH(weth).withdraw(amount);
      (bool success, ) = to.call{value: amount}('');
      require(success, 'THL04');
    } else {
      withdrawTokens(token, to, amount);
    }
  }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_fc","internalType":"address"}]},{"type":"event","name":"DealClosed","inputs":[{"type":"uint256","name":"_d","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"FutureCreated","inputs":[{"type":"address","name":"_owner","internalType":"address","indexed":false},{"type":"address","name":"_token","internalType":"address","indexed":false},{"type":"uint256","name":"_amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"_unlockDate","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewDeal","inputs":[{"type":"uint256","name":"_d","internalType":"uint256","indexed":false},{"type":"address","name":"_seller","internalType":"address","indexed":false},{"type":"address","name":"_token","internalType":"address","indexed":false},{"type":"address","name":"_paymentCurrency","internalType":"address","indexed":false},{"type":"uint256","name":"_remainingAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"_minimumPurchase","internalType":"uint256","indexed":false},{"type":"uint256","name":"_price","internalType":"uint256","indexed":false},{"type":"uint256","name":"_maturity","internalType":"uint256","indexed":false},{"type":"uint256","name":"_unlockDate","internalType":"uint256","indexed":false},{"type":"address","name":"_buyer","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"TokensBought","inputs":[{"type":"uint256","name":"_d","internalType":"uint256","indexed":false},{"type":"uint256","name":"_amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"_remainingAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"buy","inputs":[{"type":"uint256","name":"_d","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"close","inputs":[{"type":"uint256","name":"_d","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"create","inputs":[{"type":"address","name":"_token","internalType":"address"},{"type":"address","name":"_paymentCurrency","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"uint256","name":"_min","internalType":"uint256"},{"type":"uint256","name":"_price","internalType":"uint256"},{"type":"uint256","name":"_maturity","internalType":"uint256"},{"type":"uint256","name":"_unlockDate","internalType":"uint256"},{"type":"address","name":"_buyer","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"d","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"seller","internalType":"address"},{"type":"address","name":"token","internalType":"address"},{"type":"address","name":"paymentCurrency","internalType":"address"},{"type":"uint256","name":"remainingAmount","internalType":"uint256"},{"type":"uint256","name":"minimumPurchase","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"},{"type":"uint256","name":"maturity","internalType":"uint256"},{"type":"uint256","name":"unlockDate","internalType":"uint256"},{"type":"address","name":"buyer","internalType":"address"}],"name":"deals","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"futureContract","inputs":[]}]
              

Contract Creation Code

0x6080604052600060015534801561001557600080fd5b5060405161175e38038061175e8339810160408190526100349161005e565b6001600055600280546001600160a01b0319166001600160a01b039290921691909117905561008e565b60006020828403121561007057600080fd5b81516001600160a01b038116811461008757600080fd5b9392505050565b6116c18061009d6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c806303988f84146100675780630aebeb4e146101295780638a054ac21461013e5780638ba08646146101555780638eca84dd14610180578063d6febde814610193575b600080fd5b6100d061007536600461132c565b60036020819052600091825260409091208054600182015460028301549383015460048401546005850154600686015460078701546008909701546001600160a01b0396871698958716979587169694959394929391921689565b604080516001600160a01b039a8b168152988a1660208a0152968916968801969096526060870194909452608086019290925260a085015260c084015260e0830152909116610100820152610120015b60405180910390f35b61013c61013736600461132c565b6101a6565b005b61014760015481565b604051908152602001610120565b600254610168906001600160a01b031681565b6040516001600160a01b039091168152602001610120565b61013c61018e366004611361565b610382565b61013c6101a13660046113d5565b61069a565b6002600054036101d15760405162461bcd60e51b81526004016101c8906113f7565b60405180910390fd5b600260008181558281526003602081815260409283902083516101208101855281546001600160a01b0390811680835260018401548216948301949094529582015486169481019490945291820154606084015260048201546080840152600582015460a0840152600682015460c0840152600782015460e08401526008909101549092166101008201529033146102935760405162461bcd60e51b815260206004820152600560248201526413d510cc0d60da1b60448201526064016101c8565b60008160600151116102cf5760405162461bcd60e51b81526020600482015260056024820152644f5443303560d81b60448201526064016101c8565b6000828152600360208181526040832080546001600160a01b0319908116825560018201805482169055600282018054821690559281018490556004810184905560058101849055600681018490556007810193909355600890920180549091169055810151606082015161034691903390610ab2565b6040518281527fb0f2e6b073efd0dc79dfbeb0e9a1e324fd70506f44f6d2b63301d17deebaeada9060200160405180910390a150506001600055565b6002600054036103a45760405162461bcd60e51b81526004016101c8906113f7565b60026000554283116103e05760405162461bcd60e51b81526020600482015260056024820152644f5443303160d81b60448201526064016101c8565b848610156104185760405162461bcd60e51b815260206004820152600560248201526427aa21981960d91b60448201526064016101c8565b6000886001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047c919061142e565b61048790600a611543565b610491868861154f565b61049b919061156e565b116104d05760405162461bcd60e51b81526020600482015260056024820152644f5443303360d81b60448201526064016101c8565b604051806101200160405280336001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001838152602001826001600160a01b0316815250600360006001600081548092919061054b90611590565b9091555081526020808201929092526040908101600020835181546001600160a01b03199081166001600160a01b03928316178355938501516001830180548616918316919091179055918401516002820180548516918416919091179055606084015160038201556080840151600482015560a0840151600582015560c0840151600682015560e084015160078201556101009093015160089093018054909216921691909117905561060188333089610be4565b7f0f8dac0017ef55c48baace6a061ab5281233f0165360cdd8b8ebba8a450a798b6001805461063091906115a9565b604080519182523360208301526001600160a01b038b8116838301528a81166060840152608083018a905260a0830189905260c0830188905260e083018790526101008301869052841661012083015251908190036101400190a150506001600055505050505050565b6002600054036106bc5760405162461bcd60e51b81526004016101c8906113f7565b600260008181558381526003602081815260409283902083516101208101855281546001600160a01b0390811680835260018401548216948301949094529582015486169481019490945291820154606084015260048201546080840152600582015460a0840152600682015460c0840152600782015460e084015260089091015490921661010082015290330361077e5760405162461bcd60e51b815260206004820152600560248201526427aa21981b60d91b60448201526064016101c8565b428160c0015110156107ba5760405162461bcd60e51b81526020600482015260056024820152644f5443303760d81b60448201526064016101c8565b8061010001516001600160a01b0316336001600160a01b031614806107eb57506101008101516001600160a01b0316155b61081f5760405162461bcd60e51b815260206004820152600560248201526409ea88660760db1b60448201526064016101c8565b8060800151821015806108355750806060015182145b8015610845575081816060015110155b6108795760405162461bcd60e51b81526020600482015260056024820152644f5443303960d81b60448201526064016101c8565b600081602001516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e1919061142e565b905060006108f082600a611543565b60a08401516108ff908661154f565b610909919061156e565b905061091f836040015133856000015184610be4565b838360600181815161093191906115a9565b9052506060838101516040805188815260208101889052908101919091527f75499acf39b289689a6306fb81b430fa17d1644fac07b37e4c4d61111098cba5910160405180910390a1428360e001511115610a0a57600254602084015160e08501516109aa926001600160a01b03169133918890610db9565b60208381015160e0850151604080513381526001600160a01b0390931693830193909352818301879052606082015290517f7410f498d287c36bb83a441c8d4ab19e77c6d0d382bde1f858b627c1c330852b9181900360800190a1610a19565b610a1983602001513386610ab2565b8260600151600003610a8d576000858152600360208190526040822080546001600160a01b0319908116825560018201805482169055600282018054821690559181018390556004810183905560058101839055600681018390556007810192909255600890910180549091169055610aa6565b6060830151600086815260036020819052604090912001555b50506001600055505050565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908516906370a0823190602401602060405180830381865afa158015610afc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b20919061142e565b9050610b2d848484610f7f565b6040516370a0823160e01b81526001600160a01b038481166004830152600091908616906370a0823190602401602060405180830381865afa158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b919061142e565b905082610ba883836115a9565b14610bdd5760405162461bcd60e51b81526020600482015260056024820152642a2426181960d91b60448201526064016101c8565b5050505050565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015610c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c52919061142e565b6040516370a0823160e01b815233600482015290915082906001600160a01b038716906370a0823190602401602060405180830381865afa158015610c9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbf919061142e565b1015610cf55760405162461bcd60e51b815260206004820152600560248201526454484c303160d81b60448201526064016101c8565b610d0185858585610fe7565b6040516370a0823160e01b81526001600160a01b038481166004830152600091908716906370a0823190602401602060405180830381865afa158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f919061142e565b905082610d7c83836115a9565b14610db15760405162461bcd60e51b81526020600482015260056024820152642a2426181960d91b60448201526064016101c8565b505050505050565b428111610df05760405162461bcd60e51b81526020600482015260056024820152644e484c303160d81b60448201526064016101c8565b6040516370a0823160e01b81526001600160a01b038681166004830152600091908516906370a0823190602401602060405180830381865afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e919061142e565b9050610e6b848785611025565b60405163b273e65360e01b81526001600160a01b0386811660048301526024820185905285811660448301526064820184905287169063b273e653906084016020604051808303816000875af1158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061142e565b506040516370a0823160e01b81526001600160a01b038781166004830152600091908616906370a0823190602401602060405180830381865afa158015610f38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5c919061142e565b905083610f6983836115a9565b14610f7657610f766115c0565b50505050505050565b6040516001600160a01b038316602482015260448101829052610fe290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526110d7565b505050565b6040516001600160a01b038085166024830152831660448201526064810182905261101f9085906323b872dd60e01b90608401610fab565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a919061142e565b6110a491906115d6565b6040516001600160a01b03851660248201526044810182905290915061101f90859063095ea7b360e01b90606401610fab565b600061112c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111a99092919063ffffffff16565b805190915015610fe2578080602001905181019061114a91906115ee565b610fe25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016101c8565b60606111b884846000856111c2565b90505b9392505050565b6060824710156112235760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016101c8565b6001600160a01b0385163b61127a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101c8565b600080866001600160a01b03168587604051611296919061163c565b60006040518083038185875af1925050503d80600081146112d3576040519150601f19603f3d011682016040523d82523d6000602084013e6112d8565b606091505b50915091506112e88282866112f3565b979650505050505050565b606083156113025750816111bb565b8251156113125782518084602001fd5b8160405162461bcd60e51b81526004016101c89190611658565b60006020828403121561133e57600080fd5b5035919050565b80356001600160a01b038116811461135c57600080fd5b919050565b600080600080600080600080610100898b03121561137e57600080fd5b61138789611345565b975061139560208a01611345565b965060408901359550606089013594506080890135935060a0890135925060c089013591506113c660e08a01611345565b90509295985092959890939650565b600080604083850312156113e857600080fd5b50508035926020909101359150565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006020828403121561144057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561149857816000190482111561147e5761147e611447565b8085161561148b57918102915b93841c9390800290611462565b509250929050565b6000826114af5750600161153d565b816114bc5750600061153d565b81600181146114d257600281146114dc576114f8565b600191505061153d565b60ff8411156114ed576114ed611447565b50506001821b61153d565b5060208310610133831016604e8410600b841016171561151b575081810a61153d565b611525838361145d565b806000190482111561153957611539611447565b0290505b92915050565b60006111bb83836114a0565b600081600019048311821515161561156957611569611447565b500290565b60008261158b57634e487b7160e01b600052601260045260246000fd5b500490565b6000600182016115a2576115a2611447565b5060010190565b6000828210156115bb576115bb611447565b500390565b634e487b7160e01b600052600160045260246000fd5b600082198211156115e9576115e9611447565b500190565b60006020828403121561160057600080fd5b815180151581146111bb57600080fd5b60005b8381101561162b578181015183820152602001611613565b8381111561101f5750506000910152565b6000825161164e818460208701611610565b9190910192915050565b6020815260008251806020840152611677816040850160208701611610565b601f01601f1916919091016040019291505056fea26469706673582212205a7a0f59e152c6356ae8626c3dac80fa5c4c49d46be569ae5f4cf41f0c08694b64736f6c634300080d00330000000000000000000000002aa5d15eb36e5960d056e8fea6e7bb3e2a06a351

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106100625760003560e01c806303988f84146100675780630aebeb4e146101295780638a054ac21461013e5780638ba08646146101555780638eca84dd14610180578063d6febde814610193575b600080fd5b6100d061007536600461132c565b60036020819052600091825260409091208054600182015460028301549383015460048401546005850154600686015460078701546008909701546001600160a01b0396871698958716979587169694959394929391921689565b604080516001600160a01b039a8b168152988a1660208a0152968916968801969096526060870194909452608086019290925260a085015260c084015260e0830152909116610100820152610120015b60405180910390f35b61013c61013736600461132c565b6101a6565b005b61014760015481565b604051908152602001610120565b600254610168906001600160a01b031681565b6040516001600160a01b039091168152602001610120565b61013c61018e366004611361565b610382565b61013c6101a13660046113d5565b61069a565b6002600054036101d15760405162461bcd60e51b81526004016101c8906113f7565b60405180910390fd5b600260008181558281526003602081815260409283902083516101208101855281546001600160a01b0390811680835260018401548216948301949094529582015486169481019490945291820154606084015260048201546080840152600582015460a0840152600682015460c0840152600782015460e08401526008909101549092166101008201529033146102935760405162461bcd60e51b815260206004820152600560248201526413d510cc0d60da1b60448201526064016101c8565b60008160600151116102cf5760405162461bcd60e51b81526020600482015260056024820152644f5443303560d81b60448201526064016101c8565b6000828152600360208181526040832080546001600160a01b0319908116825560018201805482169055600282018054821690559281018490556004810184905560058101849055600681018490556007810193909355600890920180549091169055810151606082015161034691903390610ab2565b6040518281527fb0f2e6b073efd0dc79dfbeb0e9a1e324fd70506f44f6d2b63301d17deebaeada9060200160405180910390a150506001600055565b6002600054036103a45760405162461bcd60e51b81526004016101c8906113f7565b60026000554283116103e05760405162461bcd60e51b81526020600482015260056024820152644f5443303160d81b60448201526064016101c8565b848610156104185760405162461bcd60e51b815260206004820152600560248201526427aa21981960d91b60448201526064016101c8565b6000886001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047c919061142e565b61048790600a611543565b610491868861154f565b61049b919061156e565b116104d05760405162461bcd60e51b81526020600482015260056024820152644f5443303360d81b60448201526064016101c8565b604051806101200160405280336001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001838152602001826001600160a01b0316815250600360006001600081548092919061054b90611590565b9091555081526020808201929092526040908101600020835181546001600160a01b03199081166001600160a01b03928316178355938501516001830180548616918316919091179055918401516002820180548516918416919091179055606084015160038201556080840151600482015560a0840151600582015560c0840151600682015560e084015160078201556101009093015160089093018054909216921691909117905561060188333089610be4565b7f0f8dac0017ef55c48baace6a061ab5281233f0165360cdd8b8ebba8a450a798b6001805461063091906115a9565b604080519182523360208301526001600160a01b038b8116838301528a81166060840152608083018a905260a0830189905260c0830188905260e083018790526101008301869052841661012083015251908190036101400190a150506001600055505050505050565b6002600054036106bc5760405162461bcd60e51b81526004016101c8906113f7565b600260008181558381526003602081815260409283902083516101208101855281546001600160a01b0390811680835260018401548216948301949094529582015486169481019490945291820154606084015260048201546080840152600582015460a0840152600682015460c0840152600782015460e084015260089091015490921661010082015290330361077e5760405162461bcd60e51b815260206004820152600560248201526427aa21981b60d91b60448201526064016101c8565b428160c0015110156107ba5760405162461bcd60e51b81526020600482015260056024820152644f5443303760d81b60448201526064016101c8565b8061010001516001600160a01b0316336001600160a01b031614806107eb57506101008101516001600160a01b0316155b61081f5760405162461bcd60e51b815260206004820152600560248201526409ea88660760db1b60448201526064016101c8565b8060800151821015806108355750806060015182145b8015610845575081816060015110155b6108795760405162461bcd60e51b81526020600482015260056024820152644f5443303960d81b60448201526064016101c8565b600081602001516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e1919061142e565b905060006108f082600a611543565b60a08401516108ff908661154f565b610909919061156e565b905061091f836040015133856000015184610be4565b838360600181815161093191906115a9565b9052506060838101516040805188815260208101889052908101919091527f75499acf39b289689a6306fb81b430fa17d1644fac07b37e4c4d61111098cba5910160405180910390a1428360e001511115610a0a57600254602084015160e08501516109aa926001600160a01b03169133918890610db9565b60208381015160e0850151604080513381526001600160a01b0390931693830193909352818301879052606082015290517f7410f498d287c36bb83a441c8d4ab19e77c6d0d382bde1f858b627c1c330852b9181900360800190a1610a19565b610a1983602001513386610ab2565b8260600151600003610a8d576000858152600360208190526040822080546001600160a01b0319908116825560018201805482169055600282018054821690559181018390556004810183905560058101839055600681018390556007810192909255600890910180549091169055610aa6565b6060830151600086815260036020819052604090912001555b50506001600055505050565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908516906370a0823190602401602060405180830381865afa158015610afc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b20919061142e565b9050610b2d848484610f7f565b6040516370a0823160e01b81526001600160a01b038481166004830152600091908616906370a0823190602401602060405180830381865afa158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b919061142e565b905082610ba883836115a9565b14610bdd5760405162461bcd60e51b81526020600482015260056024820152642a2426181960d91b60448201526064016101c8565b5050505050565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015610c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c52919061142e565b6040516370a0823160e01b815233600482015290915082906001600160a01b038716906370a0823190602401602060405180830381865afa158015610c9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbf919061142e565b1015610cf55760405162461bcd60e51b815260206004820152600560248201526454484c303160d81b60448201526064016101c8565b610d0185858585610fe7565b6040516370a0823160e01b81526001600160a01b038481166004830152600091908716906370a0823190602401602060405180830381865afa158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f919061142e565b905082610d7c83836115a9565b14610db15760405162461bcd60e51b81526020600482015260056024820152642a2426181960d91b60448201526064016101c8565b505050505050565b428111610df05760405162461bcd60e51b81526020600482015260056024820152644e484c303160d81b60448201526064016101c8565b6040516370a0823160e01b81526001600160a01b038681166004830152600091908516906370a0823190602401602060405180830381865afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e919061142e565b9050610e6b848785611025565b60405163b273e65360e01b81526001600160a01b0386811660048301526024820185905285811660448301526064820184905287169063b273e653906084016020604051808303816000875af1158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061142e565b506040516370a0823160e01b81526001600160a01b038781166004830152600091908616906370a0823190602401602060405180830381865afa158015610f38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5c919061142e565b905083610f6983836115a9565b14610f7657610f766115c0565b50505050505050565b6040516001600160a01b038316602482015260448101829052610fe290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526110d7565b505050565b6040516001600160a01b038085166024830152831660448201526064810182905261101f9085906323b872dd60e01b90608401610fab565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a919061142e565b6110a491906115d6565b6040516001600160a01b03851660248201526044810182905290915061101f90859063095ea7b360e01b90606401610fab565b600061112c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111a99092919063ffffffff16565b805190915015610fe2578080602001905181019061114a91906115ee565b610fe25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016101c8565b60606111b884846000856111c2565b90505b9392505050565b6060824710156112235760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016101c8565b6001600160a01b0385163b61127a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101c8565b600080866001600160a01b03168587604051611296919061163c565b60006040518083038185875af1925050503d80600081146112d3576040519150601f19603f3d011682016040523d82523d6000602084013e6112d8565b606091505b50915091506112e88282866112f3565b979650505050505050565b606083156113025750816111bb565b8251156113125782518084602001fd5b8160405162461bcd60e51b81526004016101c89190611658565b60006020828403121561133e57600080fd5b5035919050565b80356001600160a01b038116811461135c57600080fd5b919050565b600080600080600080600080610100898b03121561137e57600080fd5b61138789611345565b975061139560208a01611345565b965060408901359550606089013594506080890135935060a0890135925060c089013591506113c660e08a01611345565b90509295985092959890939650565b600080604083850312156113e857600080fd5b50508035926020909101359150565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006020828403121561144057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561149857816000190482111561147e5761147e611447565b8085161561148b57918102915b93841c9390800290611462565b509250929050565b6000826114af5750600161153d565b816114bc5750600061153d565b81600181146114d257600281146114dc576114f8565b600191505061153d565b60ff8411156114ed576114ed611447565b50506001821b61153d565b5060208310610133831016604e8410600b841016171561151b575081810a61153d565b611525838361145d565b806000190482111561153957611539611447565b0290505b92915050565b60006111bb83836114a0565b600081600019048311821515161561156957611569611447565b500290565b60008261158b57634e487b7160e01b600052601260045260246000fd5b500490565b6000600182016115a2576115a2611447565b5060010190565b6000828210156115bb576115bb611447565b500390565b634e487b7160e01b600052600160045260246000fd5b600082198211156115e9576115e9611447565b500190565b60006020828403121561160057600080fd5b815180151581146111bb57600080fd5b60005b8381101561162b578181015183820152602001611613565b8381111561101f5750506000910152565b6000825161164e818460208701611610565b9190910192915050565b6020815260008251806020840152611677816040850160208701611610565b601f01601f1916919091016040019291505056fea26469706673582212205a7a0f59e152c6356ae8626c3dac80fa5c4c49d46be569ae5f4cf41f0c08694b64736f6c634300080d0033