ETH Price: $3,313.27 (-3.52%)
Gas: 19 Gwei

Contract

0x53C2a1bA37FF3cDaCcb3EA030DB3De39358e5593
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Permit201303722024-06-20 3:50:4713 days ago1718855447IN
0x53C2a1bA...9358e5593
0 ETH0.00017494.67498954
Permit200992432024-06-15 19:20:2317 days ago1718479223IN
0x53C2a1bA...9358e5593
0 ETH0.000163533
Approve198370112024-05-10 3:40:1154 days ago1715312411IN
0x53C2a1bA...9358e5593
0 ETH0.000081273.34911284
Permit191094062024-01-29 3:09:23156 days ago1706497763IN
0x53C2a1bA...9358e5593
0 ETH0.0005554110.18888885
Permit182978912023-10-07 10:04:35270 days ago1696673075IN
0x53C2a1bA...9358e5593
0 ETH0.00029835.47236469
Permit179852722023-08-24 14:51:35313 days ago1692888695IN
0x53C2a1bA...9358e5593
0 ETH0.0019977536.64789632
Permit175651022023-06-26 17:33:11372 days ago1687800791IN
0x53C2a1bA...9358e5593
0 ETH0.0008282115.19334744
Permit175549492023-06-25 7:16:11374 days ago1687677371IN
0x53C2a1bA...9358e5593
0 ETH0.0005195113.88643478
Approve175439482023-06-23 18:07:23375 days ago1687543643IN
0x53C2a1bA...9358e5593
0 ETH0.0009619620.81999764
Permit172386272023-05-11 17:37:11418 days ago1683826631IN
0x53C2a1bA...9358e5593
0 ETH0.00633611169.36044716
Permit172372572023-05-11 12:57:47419 days ago1683809867IN
0x53C2a1bA...9358e5593
0 ETH0.0032807687.69274091
Approve170509202023-04-15 7:24:23445 days ago1681543463IN
0x53C2a1bA...9358e5593
0 ETH0.0005558122.90335486
Transfer164338822023-01-18 13:06:35532 days ago1674047195IN
0x53C2a1bA...9358e5593
0 ETH0.0009082619.39161169
Transfer164327652023-01-18 9:22:47532 days ago1674033767IN
0x53C2a1bA...9358e5593
0 ETH0.0007397615.79414539
Approve163698962023-01-09 14:38:59540 days ago1673275139IN
0x53C2a1bA...9358e5593
0 ETH0.0009677120.78773986
Approve163698362023-01-09 14:26:59540 days ago1673274419IN
0x53C2a1bA...9358e5593
0 ETH0.0007950417.07871979
Approve163695752023-01-09 13:34:35541 days ago1673271275IN
0x53C2a1bA...9358e5593
0 ETH0.0007925417.02490591
Transfer161828562022-12-14 12:12:47567 days ago1671019967IN
0x53C2a1bA...9358e5593
0 ETH0.0004245814.69664183
Transfer161823982022-12-14 10:40:47567 days ago1671014447IN
0x53C2a1bA...9358e5593
0 ETH0.0006878214.68513336
Transfer160680342022-11-28 10:57:47583 days ago1669633067IN
0x53C2a1bA...9358e5593
0 ETH0.0009927221.19480739
Approve158701112022-10-31 19:24:35610 days ago1667244275IN
0x53C2a1bA...9358e5593
0 ETH0.0009745921.08226213
Approve153016212022-08-08 12:41:14695 days ago1659962474IN
0x53C2a1bA...9358e5593
0 ETH0.0005743512.33796809
Approve152642722022-08-02 16:53:22700 days ago1659459202IN
0x53C2a1bA...9358e5593
0 ETH0.001620634.81272058
Approve150444192022-06-29 9:50:11735 days ago1656496211IN
0x53C2a1bA...9358e5593
0 ETH0.0010999523.80022851
Approve149572512022-06-13 17:40:41750 days ago1655142041IN
0x53C2a1bA...9358e5593
0 ETH0.002675957.48216325
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FYToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 19 : FYToken.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.6;

import "erc3156/contracts/interfaces/IERC3156FlashBorrower.sol";
import "erc3156/contracts/interfaces/IERC3156FlashLender.sol";
import "@yield-protocol/utils-v2/contracts/token/ERC20Permit.sol";
import "@yield-protocol/utils-v2/contracts/token/SafeERC20Namer.sol";
import "@yield-protocol/vault-interfaces/IFYToken.sol";
import "@yield-protocol/vault-interfaces/IJoin.sol";
import "@yield-protocol/vault-interfaces/IOracle.sol";
import "@yield-protocol/utils-v2/contracts/access/AccessControl.sol";
import "@yield-protocol/utils-v2/contracts/math/WMul.sol";
import "@yield-protocol/utils-v2/contracts/math/WDiv.sol";
import "@yield-protocol/utils-v2/contracts/cast/CastU256U128.sol";
import "@yield-protocol/utils-v2/contracts/cast/CastU256U32.sol";
import "./constants/Constants.sol";


contract FYToken is IFYToken, IERC3156FlashLender, AccessControl(), ERC20Permit, Constants {
    using WMul for uint256;
    using WDiv for uint256;
    using CastU256U128 for uint256;
    using CastU256U32 for uint256;

    event Point(bytes32 indexed param, address value);
    event FlashFeeFactorSet(uint256 indexed fee);
    event SeriesMatured(uint256 chiAtMaturity);
    event Redeemed(address indexed from, address indexed to, uint256 amount, uint256 redeemed);

    uint256 constant CHI_NOT_SET = type(uint256).max;

    uint256 constant internal MAX_TIME_TO_MATURITY = 126144000; // seconds in four years
    bytes32 constant internal FLASH_LOAN_RETURN = keccak256("ERC3156FlashBorrower.onFlashLoan");
    uint256 constant FLASH_LOANS_DISABLED = type(uint256).max;
    uint256 public flashFeeFactor = FLASH_LOANS_DISABLED;       // Fee on flash loans, as a percentage in fixed point with 18 decimals. Flash loans disabled by default by overflow from `flashFee`.

    IOracle public oracle;                                      // Oracle for the savings rate.
    IJoin public join;                                          // Source of redemption funds.
    address public immutable override underlying;
    bytes6 public immutable underlyingId;                       // Needed to access the oracle
    uint256 public immutable override maturity;
    uint256 public chiAtMaturity = CHI_NOT_SET;                 // Spot price (exchange rate) between the base and an interest accruing token at maturity 

    constructor(
        bytes6 underlyingId_,
        IOracle oracle_, // Underlying vs its interest-bearing version
        IJoin join_,
        uint256 maturity_,
        string memory name,
        string memory symbol
    ) ERC20Permit(name, symbol, SafeERC20Namer.tokenDecimals(address(IJoin(join_).asset()))) { // The join asset is this fyToken's underlying, from which we inherit the decimals
        uint256 now_ = block.timestamp;
        require(
            maturity_ > now_ &&
            maturity_ < now_ + MAX_TIME_TO_MATURITY &&
            maturity_ < type(uint32).max,
            "Invalid maturity"
        );

        underlyingId = underlyingId_;
        join = join_;
        maturity = maturity_;
        underlying = address(IJoin(join_).asset());
        oracle = oracle_;
    }

    modifier afterMaturity() {
        require(
            uint32(block.timestamp) >= maturity,
            "Only after maturity"
        );
        _;
    }

    modifier beforeMaturity() {
        require(
            uint32(block.timestamp) < maturity,
            "Only before maturity"
        );
        _;
    }

    /// @dev Point to a different Oracle or Join
    function point(bytes32 param, address value) external auth {
        if (param == "oracle") oracle = IOracle(value);
        else if (param == "join") join = IJoin(value);
        else revert("Unrecognized parameter");
        emit Point(param, value);
    }

    /// @dev Set the flash loan fee factor
    function setFlashFeeFactor(uint256 flashFeeFactor_)
        external
        auth
    {
        flashFeeFactor = flashFeeFactor_;
        emit FlashFeeFactorSet(flashFeeFactor_);
    }

    /// @dev Mature the fyToken by recording the chi.
    /// If called more than once, it will revert.
    function mature()
        external override
        afterMaturity
    {
        require (chiAtMaturity == CHI_NOT_SET, "Already matured");
        _mature();
    }

    /// @dev Mature the fyToken by recording the chi.
    function _mature() 
        private
        returns (uint256 _chiAtMaturity)
    {
        (_chiAtMaturity,) = oracle.get(underlyingId, CHI, 0);   // The value returned is an accumulator, it doesn't need an input amount
        chiAtMaturity = _chiAtMaturity;
        emit SeriesMatured(_chiAtMaturity);
    }

    /// @dev Retrieve the chi accrual since maturity, maturing if necessary.
    function accrual()
        external
        afterMaturity
        returns (uint256)
    {
        return _accrual();
    }

    /// @dev Retrieve the chi accrual since maturity, maturing if necessary.
    /// Note: Call only after checking we are past maturity
    function _accrual()
        private
        returns (uint256 accrual_)
    {
        if (chiAtMaturity == CHI_NOT_SET) {  // After maturity, but chi not yet recorded. Let's record it, and accrual is then 1.
            _mature();
        } else {
            (uint256 chi,) = oracle.get(underlyingId, CHI, 0);   // The value returned is an accumulator, it doesn't need an input amount
            accrual_ = chi.wdiv(chiAtMaturity);
        }
        accrual_ = accrual_ >= 1e18 ? accrual_ : 1e18;     // The accrual can't be below 1 (with 18 decimals)
    }

    /// @dev Burn fyToken after maturity for an amount that increases according to `chi`
    /// If `amount` is 0, the contract will redeem instead the fyToken balance of this contract. Useful for batches.
    function redeem(address to, uint256 amount)
        external override
        afterMaturity
        returns (uint256 redeemed)
    {
        uint256 amount_ = (amount == 0) ? _balanceOf[address(this)] : amount;
        _burn(msg.sender, amount_);
        redeemed = amount_.wmul(_accrual());
        join.exit(to, redeemed.u128());
        
        emit Redeemed(msg.sender, to, amount_, redeemed);
    }

    /// @dev Mint fyToken providing an equal amount of underlying to the protocol
    function mintWithUnderlying(address to, uint256 amount)
        external override
        beforeMaturity
    {
        _mint(to, amount);
        join.join(msg.sender, amount.u128());
    }

    /// @dev Mint fyTokens.
    function mint(address to, uint256 amount)
        external override
        beforeMaturity
        auth
    {
        _mint(to, amount);
    }

    /// @dev Burn fyTokens. The user needs to have either transferred the tokens to this contract, or have approved this contract to take them. 
    function burn(address from, uint256 amount)
        external override
        auth
    {
        _burn(from, amount);
    }

    /// @dev Burn fyTokens. 
    /// Any tokens locked in this contract will be burned first and subtracted from the amount to burn from the user's wallet.
    /// This feature allows someone to transfer fyToken to this contract to enable a `burn`, potentially saving the cost of `approve` or `permit`.
    function _burn(address from, uint256 amount)
        internal override
        returns (bool)
    {
        // First use any tokens locked in this contract
        uint256 available = _balanceOf[address(this)];
        if (available >= amount) {
            return super._burn(address(this), amount);
        } else {
            if (available > 0 ) super._burn(address(this), available);
            unchecked { _decreaseAllowance(from, amount - available); }
            unchecked { return super._burn(from, amount - available); }
        }
    }

    /**
     * @dev From ERC-3156. The amount of currency available to be lended.
     * @param token The loan currency. It must be a FYDai contract.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token)
        external view override
        beforeMaturity
        returns (uint256)
    {
        return token == address(this) ? type(uint256).max - _totalSupply : 0;
    }

    /**
     * @dev From ERC-3156. The fee to be charged for a given loan.
     * @param token The loan currency. It must be the asset.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount)
        external view override
        returns (uint256)
    {
        require(token == address(this), "Unsupported currency");
        return _flashFee(amount);
    }

    /**
     * @dev The fee to be charged for a given loan.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function _flashFee(uint256 amount) internal view returns (uint256) {
        return amount.wmul(flashFeeFactor);
    }

    /**
     * @dev From ERC-3156. Loan `amount` fyDai to `receiver`, which needs to return them plus fee to this contract within the same transaction.
     * Note that if the initiator and the borrower are the same address, no approval is needed for this contract to take the principal + fee from the borrower.
     * If the borrower transfers the principal + fee to this contract, they will be burnt here instead of pulled from the borrower.
     * @param receiver The contract receiving the tokens, needs to implement the `onFlashLoan(address user, uint256 amount, uint256 fee, bytes calldata)` interface.
     * @param token The loan currency. Must be a fyDai contract.
     * @param amount The amount of tokens lent.
     * @param data A data parameter to be passed on to the `receiver` for any custom use.
     */
    function flashLoan(IERC3156FlashBorrower receiver, address token, uint256 amount, bytes memory data)
        external override
        beforeMaturity
        returns(bool)
    {
        require(token == address(this), "Unsupported currency");
        _mint(address(receiver), amount);
        uint128 fee = _flashFee(amount).u128();
        require(receiver.onFlashLoan(msg.sender, token, amount, fee, data) == FLASH_LOAN_RETURN, "Non-compliant borrower");
        _burn(address(receiver), amount + fee);
        return true;
    }
}

File 2 of 19 : IERC3156FlashBorrower.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;


interface IERC3156FlashBorrower {

    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

File 3 of 19 : IERC3156FlashLender.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
import "./IERC3156FlashBorrower.sol";


interface IERC3156FlashLender {

    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(
        address token
    ) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(
        address token,
        uint256 amount
    ) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

File 4 of 19 : ERC20Permit.sol
// SPDX-License-Identifier: MIT
// Adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/53516bc555a454862470e7860a9b5254db4d00f5/contracts/token/ERC20/ERC20Permit.sol
pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./IERC2612.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to use their tokens
 * without sending any transactions by setting {IERC20-allowance} with a
 * signature using the {permit} method, and then spend them via
 * {IERC20-transferFrom}.
 *
 * The {permit} signature mechanism conforms to the {IERC2612} interface.
 */
abstract contract ERC20Permit is ERC20, IERC2612 {
    mapping (address => uint256) public override nonces;

    bytes32 public immutable PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 private immutable _DOMAIN_SEPARATOR;
    uint256 public immutable deploymentChainId;

    constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_, decimals_) {
        deploymentChainId = block.chainid;
        _DOMAIN_SEPARATOR = _calculateDomainSeparator(block.chainid);
    }

    /// @dev Calculate the DOMAIN_SEPARATOR.
    function _calculateDomainSeparator(uint256 chainId) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(name)),
                keccak256(bytes(version())),
                chainId,
                address(this)
            )
        );
    }

    /// @dev Return the DOMAIN_SEPARATOR.
    function DOMAIN_SEPARATOR() external view returns (bytes32) {
        return block.chainid == deploymentChainId ? _DOMAIN_SEPARATOR : _calculateDomainSeparator(block.chainid);
    }

    /// @dev Setting the version as a function so that it can be overriden
    function version() public pure virtual returns(string memory) { return "1"; }

    /**
     * @dev See {IERC2612-permit}.
     *
     * In cases where the free option is not a concern, deadline can simply be
     * set to uint(-1), so it should be seen as an optional parameter
     */
    function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external virtual override {
        require(deadline >= block.timestamp, "ERC20Permit: expired deadline");

        bytes32 hashStruct = keccak256(
            abi.encode(
                PERMIT_TYPEHASH,
                owner,
                spender,
                amount,
                nonces[owner]++,
                deadline
            )
        );

        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19\x01",
                block.chainid == deploymentChainId ? _DOMAIN_SEPARATOR : _calculateDomainSeparator(block.chainid),
                hashStruct
            )
        );

        address signer = ecrecover(hash, v, r, s);
        require(
            signer != address(0) && signer == owner,
            "ERC20Permit: invalid signature"
        );

        _setAllowance(owner, spender, amount);
    }
}

File 5 of 19 : SafeERC20Namer.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "../token/IERC20Metadata.sol";
import "../utils/AddressStringUtil.sol";

// produces token descriptors from inconsistent or absent ERC20 symbol implementations that can return string or bytes32
// this library will always produce a string symbol to represent the token
library SafeERC20Namer {
    function bytes32ToString(bytes32 x) private pure returns (string memory) {
        bytes memory bytesString = new bytes(32);
        uint256 charCount = 0;
        for (uint256 j = 0; j < 32; j++) {
            bytes1 char = x[j];
            if (char != 0) {
                bytesString[charCount] = char;
                charCount++;
            }
        }
        bytes memory bytesStringTrimmed = new bytes(charCount);
        for (uint256 j = 0; j < charCount; j++) {
            bytesStringTrimmed[j] = bytesString[j];
        }
        return string(bytesStringTrimmed);
    }

    // assumes the data is in position 2
    function parseStringData(bytes memory b) private pure returns (string memory) {
        uint256 charCount = 0;
        // first parse the charCount out of the data
        for (uint256 i = 32; i < 64; i++) {
            charCount <<= 8;
            charCount += uint8(b[i]);
        }

        bytes memory bytesStringTrimmed = new bytes(charCount);
        for (uint256 i = 0; i < charCount; i++) {
            bytesStringTrimmed[i] = b[i + 64];
        }

        return string(bytesStringTrimmed);
    }

    // uses a heuristic to produce a token name from the address
    // the heuristic returns the full hex of the address string in upper case
    function addressToName(address token) private pure returns (string memory) {
        return AddressStringUtil.toAsciiString(token, 40);
    }

    // uses a heuristic to produce a token symbol from the address
    // the heuristic returns the first 6 hex of the address string in upper case
    function addressToSymbol(address token) private pure returns (string memory) {
        return AddressStringUtil.toAsciiString(token, 6);
    }

    // calls an external view token contract method that returns a symbol or name, and parses the output into a string
    function callAndParseStringReturn(address token, bytes4 selector) private view returns (string memory) {
        (bool success, bytes memory data) = token.staticcall(abi.encodeWithSelector(selector));
        // if not implemented, or returns empty data, return empty string
        if (!success || data.length == 0) {
            return "";
        }
        // bytes32 data always has length 32
        if (data.length == 32) {
            bytes32 decoded = abi.decode(data, (bytes32));
            return bytes32ToString(decoded);
        } else if (data.length > 64) {
            return abi.decode(data, (string));
        }
        return "";
    }

    // attempts to extract the token symbol. if it does not implement symbol, returns a symbol derived from the address
    function tokenSymbol(address token) public view returns (string memory) {
        string memory symbol = callAndParseStringReturn(token, IERC20Metadata.symbol.selector);
        if (bytes(symbol).length == 0) {
            // fallback to 6 uppercase hex of address
            return addressToSymbol(token);
        }
        return symbol;
    }

    // attempts to extract the token name. if it does not implement name, returns a name derived from the address
    function tokenName(address token) public view returns (string memory) {
        string memory name = callAndParseStringReturn(token, IERC20Metadata.name.selector);
        if (bytes(name).length == 0) {
            // fallback to full hex of address
            return addressToName(token);
        }
        return name;
    }

    /// @notice Provides a safe ERC20.decimals version which returns '18' as fallback value.
    /// @param token The address of the ERC-20 token contract.
    /// @return (uint8) Token decimals.
    function tokenDecimals(address token) public view returns (uint8) {
        (bool success, bytes memory data) = token.staticcall(abi.encodeWithSelector(IERC20Metadata.decimals.selector));
        return success && data.length == 32 ? abi.decode(data, (uint8)) : 18;
    }
}

File 6 of 19 : IFYToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@yield-protocol/utils-v2/contracts/token/IERC20.sol";

interface IFYToken is IERC20 {
    /// @dev Asset that is returned on redemption.
    function underlying() external view returns (address);

    /// @dev Unix time at which redemption of fyToken for underlying are possible
    function maturity() external view returns (uint256);

    /// @dev Record price data at maturity
    function mature() external;

    /// @dev Mint fyToken providing an equal amount of underlying to the protocol
    function mintWithUnderlying(address to, uint256 amount) external;

    /// @dev Burn fyToken after maturity for an amount of underlying.
    function redeem(address to, uint256 amount) external returns (uint256);

    /// @dev Mint fyToken.
    /// This function can only be called by other Yield contracts, not users directly.
    /// @param to Wallet to mint the fyToken in.
    /// @param fyTokenAmount Amount of fyToken to mint.
    function mint(address to, uint256 fyTokenAmount) external;

    /// @dev Burn fyToken.
    /// This function can only be called by other Yield contracts, not users directly.
    /// @param from Wallet to burn the fyToken from.
    /// @param fyTokenAmount Amount of fyToken to burn.
    function burn(address from, uint256 fyTokenAmount) external;
}

File 7 of 19 : IJoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@yield-protocol/utils-v2/contracts/token/IERC20.sol";

interface IJoin {
    /// @dev asset managed by this contract
    function asset() external view returns (address);

    /// @dev Add tokens to this contract.
    function join(address user, uint128 wad) external returns (uint128);

    /// @dev Remove tokens to this contract.
    function exit(address user, uint128 wad) external returns (uint128);
}

File 8 of 19 : IOracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IOracle {
    /**
     * @notice Doesn't refresh the price, but returns the latest value available without doing any transactional operations:
     * @return value in wei
     */
    function peek(
        bytes32 base,
        bytes32 quote,
        uint256 amount
    ) external view returns (uint256 value, uint256 updateTime);

    /**
     * @notice Does whatever work or queries will yield the most up-to-date price, and returns it.
     * @return value in wei
     */
    function get(
        bytes32 base,
        bytes32 quote,
        uint256 amount
    ) external returns (uint256 value, uint256 updateTime);
}

File 9 of 19 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes4` identifier. These are expected to be the 
 * signatures for all the functions in the contract. Special roles should be exposed
 * in the external API and be unique:
 *
 * ```
 * bytes4 public constant ROOT = 0x00000000;
 * ```
 *
 * Roles represent restricted access to a function call. For that purpose, use {auth}:
 *
 * ```
 * function foo() public auth {
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `ROOT`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {setRoleAdmin}.
 *
 * WARNING: The `ROOT` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
contract AccessControl {
    struct RoleData {
        mapping (address => bool) members;
        bytes4 adminRole;
    }

    mapping (bytes4 => RoleData) private _roles;

    bytes4 public constant ROOT = 0x00000000;
    bytes4 public constant ROOT4146650865 = 0x00000000; // Collision protection for ROOT, test with ROOT12007226833()
    bytes4 public constant LOCK = 0xFFFFFFFF;           // Used to disable further permissioning of a function
    bytes4 public constant LOCK8605463013 = 0xFFFFFFFF; // Collision protection for LOCK, test with LOCK10462387368()

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role
     *
     * `ROOT` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes4 indexed role, bytes4 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call.
     */
    event RoleGranted(bytes4 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes4 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Give msg.sender the ROOT role and create a LOCK role with itself as the admin role and no members. 
     * Calling setRoleAdmin(msg.sig, LOCK) means no one can grant that msg.sig role anymore.
     */
    constructor () {
        _grantRole(ROOT, msg.sender);   // Grant ROOT to msg.sender
        _setRoleAdmin(LOCK, LOCK);      // Create the LOCK role by setting itself as its own admin, creating an independent role tree
    }

    /**
     * @dev Each function in the contract has its own role, identified by their msg.sig signature.
     * ROOT can give and remove access to each function, lock any further access being granted to
     * a specific action, or even create other roles to delegate admin control over a function.
     */
    modifier auth() {
        require (_hasRole(msg.sig, msg.sender), "Access denied");
        _;
    }

    /**
     * @dev Allow only if the caller has been granted the admin role of `role`.
     */
    modifier admin(bytes4 role) {
        require (_hasRole(_getRoleAdmin(role), msg.sender), "Only admin");
        _;
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes4 role, address account) external view returns (bool) {
        return _hasRole(role, account);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes4 role) external view returns (bytes4) {
        return _getRoleAdmin(role);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.

     * If ``role``'s admin role is not `adminRole` emits a {RoleAdminChanged} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function setRoleAdmin(bytes4 role, bytes4 adminRole) external virtual admin(role) {
        _setRoleAdmin(role, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes4 role, address account) external virtual admin(role) {
        _grantRole(role, account);
    }

    
    /**
     * @dev Grants all of `role` in `roles` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - For each `role` in `roles`, the caller must have ``role``'s admin role.
     */
    function grantRoles(bytes4[] memory roles, address account) external virtual {
        for (uint256 i = 0; i < roles.length; i++) {
            require (_hasRole(_getRoleAdmin(roles[i]), msg.sender), "Only admin");
            _grantRole(roles[i], account);
        }
    }

    /**
     * @dev Sets LOCK as ``role``'s admin role. LOCK has no members, so this disables admin management of ``role``.

     * Emits a {RoleAdminChanged} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function lockRole(bytes4 role) external virtual admin(role) {
        _setRoleAdmin(role, LOCK);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes4 role, address account) external virtual admin(role) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes all of `role` in `roles` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - For each `role` in `roles`, the caller must have ``role``'s admin role.
     */
    function revokeRoles(bytes4[] memory roles, address account) external virtual {
        for (uint256 i = 0; i < roles.length; i++) {
            require (_hasRole(_getRoleAdmin(roles[i]), msg.sender), "Only admin");
            _revokeRole(roles[i], account);
        }
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes4 role, address account) external virtual {
        require(account == msg.sender, "Renounce only for self");

        _revokeRole(role, account);
    }

    function _hasRole(bytes4 role, address account) internal view returns (bool) {
        return _roles[role].members[account];
    }

    function _getRoleAdmin(bytes4 role) internal view returns (bytes4) {
        return _roles[role].adminRole;
    }

    function _setRoleAdmin(bytes4 role, bytes4 adminRole) internal virtual {
        if (_getRoleAdmin(role) != adminRole) {
            _roles[role].adminRole = adminRole;
            emit RoleAdminChanged(role, adminRole);
        }
    }

    function _grantRole(bytes4 role, address account) internal {
        if (!_hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, msg.sender);
        }
    }

    function _revokeRole(bytes4 role, address account) internal {
        if (_hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, msg.sender);
        }
    }
}

File 10 of 19 : WMul.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;


library WMul {
    // Taken from https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol
    /// @dev Multiply an amount by a fixed point factor with 18 decimals, rounds down.
    function wmul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x * y;
        unchecked { z /= 1e18; }
    }
}

File 11 of 19 : WDiv.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;


library WDiv { // Fixed point arithmetic in 18 decimal units
    // Taken from https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol
    /// @dev Divide an amount by a fixed point factor with 18 decimals
    function wdiv(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = (x * 1e18) / y;
    }
}

File 12 of 19 : CastU256U128.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;


library CastU256U128 {
    /// @dev Safely cast an uint256 to an uint128
    function u128(uint256 x) internal pure returns (uint128 y) {
        require (x <= type(uint128).max, "Cast overflow");
        y = uint128(x);
    }
}

File 13 of 19 : CastU256U32.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;


library CastU256U32 {
    /// @dev Safely cast an uint256 to an u32
    function u32(uint256 x) internal pure returns (uint32 y) {
        require (x <= type(uint32).max, "Cast overflow");
        y = uint32(x);
    }
}

File 14 of 19 : Constants.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.6;

contract Constants {
    bytes32 CHI = "CHI";
    bytes32 RATE = "RATE";
    bytes6 ETH = "00";
}

File 15 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT
// Inspired on token.sol from DappHub. Natspec adpated from OpenZeppelin.

pragma solidity ^0.8.0;
import "./IERC20Metadata.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 * 
 * Calls to {transferFrom} do not check for allowance if the caller is the owner
 * of the funds. This allows to reduce the number of approvals that are necessary.
 *
 * Finally, {transferFrom} does not decrease the allowance if it is set to
 * type(uint256).max. This reduces the gas costs without any likely impact.
 */
contract ERC20 is IERC20Metadata {
    uint256                                           internal  _totalSupply;
    mapping (address => uint256)                      internal  _balanceOf;
    mapping (address => mapping (address => uint256)) internal  _allowance;
    string                                            public override name = "???";
    string                                            public override symbol = "???";
    uint8                                             public override decimals = 18;

    /**
     *  @dev Sets the values for {name}, {symbol} and {decimals}.
     */
    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        name = name_;
        symbol = symbol_;
        decimals = decimals_;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() external view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address guy) external view virtual override returns (uint256) {
        return _balanceOf[guy];
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) external view virtual override returns (uint256) {
        return _allowance[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     */
    function approve(address spender, uint wad) external virtual override returns (bool) {
        return _setAllowance(msg.sender, spender, wad);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - the caller must have a balance of at least `wad`.
     */
    function transfer(address dst, uint wad) external virtual override returns (bool) {
        return _transfer(msg.sender, dst, wad);
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `src` must have a balance of at least `wad`.
     * - the caller is not `src`, it must have allowance for ``src``'s tokens of at least
     * `wad`.
     */
    /// if_succeeds {:msg "TransferFrom - decrease allowance"} msg.sender != src ==> old(_allowance[src][msg.sender]) >= wad;
    function transferFrom(address src, address dst, uint wad) external virtual override returns (bool) {
        _decreaseAllowance(src, wad);

        return _transfer(src, dst, wad);
    }

    /**
     * @dev Moves tokens `wad` from `src` to `dst`.
     * 
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `src` must have a balance of at least `amount`.
     */
    /// if_succeeds {:msg "Transfer - src decrease"} old(_balanceOf[src]) >= _balanceOf[src];
    /// if_succeeds {:msg "Transfer - dst increase"} _balanceOf[dst] >= old(_balanceOf[dst]);
    /// if_succeeds {:msg "Transfer - supply"} old(_balanceOf[src]) + old(_balanceOf[dst]) == _balanceOf[src] + _balanceOf[dst];
    function _transfer(address src, address dst, uint wad) internal virtual returns (bool) {
        require(_balanceOf[src] >= wad, "ERC20: Insufficient balance");
        unchecked { _balanceOf[src] = _balanceOf[src] - wad; }
        _balanceOf[dst] = _balanceOf[dst] + wad;

        emit Transfer(src, dst, wad);

        return true;
    }

    /**
     * @dev Sets the allowance granted to `spender` by `owner`.
     *
     * Emits an {Approval} event indicating the updated allowance.
     */
    function _setAllowance(address owner, address spender, uint wad) internal virtual returns (bool) {
        _allowance[owner][spender] = wad;
        emit Approval(owner, spender, wad);

        return true;
    }

    /**
     * @dev Decreases the allowance granted to the caller by `src`, unless src == msg.sender or _allowance[src][msg.sender] == MAX
     *
     * Emits an {Approval} event indicating the updated allowance, if the allowance is updated.
     *
     * Requirements:
     *
     * - `spender` must have allowance for the caller of at least
     * `wad`, unless src == msg.sender
     */
    /// if_succeeds {:msg "Decrease allowance - underflow"} old(_allowance[src][msg.sender]) <= _allowance[src][msg.sender];
    function _decreaseAllowance(address src, uint wad) internal virtual returns (bool) {
        if (src != msg.sender) {
            uint256 allowed = _allowance[src][msg.sender];
            if (allowed != type(uint).max) {
                require(allowed >= wad, "ERC20: Insufficient approval");
                unchecked { _setAllowance(src, msg.sender, allowed - wad); }
            }
        }

        return true;
    }

    /** @dev Creates `wad` tokens and assigns them to `dst`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    /// if_succeeds {:msg "Mint - balance overflow"} old(_balanceOf[dst]) >= _balanceOf[dst];
    /// if_succeeds {:msg "Mint - supply overflow"} old(_totalSupply) >= _totalSupply;
    function _mint(address dst, uint wad) internal virtual returns (bool) {
        _balanceOf[dst] = _balanceOf[dst] + wad;
        _totalSupply = _totalSupply + wad;
        emit Transfer(address(0), dst, wad);

        return true;
    }

    /**
     * @dev Destroys `wad` tokens from `src`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `src` must have at least `wad` tokens.
     */
    /// if_succeeds {:msg "Burn - balance underflow"} old(_balanceOf[src]) <= _balanceOf[src];
    /// if_succeeds {:msg "Burn - supply underflow"} old(_totalSupply) <= _totalSupply;
    function _burn(address src, uint wad) internal virtual returns (bool) {
        unchecked {
            require(_balanceOf[src] >= wad, "ERC20: Insufficient balance");
            _balanceOf[src] = _balanceOf[src] - wad;
            _totalSupply = _totalSupply - wad;
            emit Transfer(src, address(0), wad);
        }

        return true;
    }
}

File 16 of 19 : IERC2612.sol
// SPDX-License-Identifier: MIT
// Code adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC2612 standard as defined in the EIP.
 *
 * Adds the {permit} method, which can be used to change one's
 * {IERC20-allowance} without having to send a transaction, by signing a
 * message. This allows users to spend tokens without having to hold Ether.
 *
 * See https://eips.ethereum.org/EIPS/eip-2612.
 */
interface IERC2612 {
    /**
     * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens,
     * given `owner`'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;

    /**
     * @dev Returns the current ERC2612 nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);
}

File 17 of 19 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// Taken from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 18 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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);
}

File 19 of 19 : AddressStringUtil.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

library AddressStringUtil {
    // converts an address to the uppercase hex string, extracting only len bytes (up to 20, multiple of 2)
    function toAsciiString(address addr, uint256 len) internal pure returns (string memory) {
        require(len % 2 == 0 && len > 0 && len <= 40, "AddressStringUtil: INVALID_LEN");
        bytes memory s = new bytes(len);
        uint256 addrNum = uint256(uint160(addr));
        for (uint256 ii = 0; ii < len ; ii +=2) {
            uint8 b = uint8(addrNum >> (4 * (38 - ii)));
            s[ii] = char(b >> 4);
            s[ii + 1] = char(b & 0x0f);
        }
        return string(s);
    }

    // hi and lo are only 4 bits and between 0 and 16
    // this method converts those values to the unicode/ascii code point for the hex representation
    // uses upper case for the characters
    function char(uint8 b) private pure returns (bytes1 c) {
        if (b < 10) {
            return bytes1(b + 0x30);
        } else {
            return bytes1(b + 0x37);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {
    "@yield-protocol/utils-v2/contracts/token/SafeERC20Namer.sol": {
      "SafeERC20Namer": "0x39bb9cBe0221D769E30bD08d185842065BcE1706"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes6","name":"underlyingId_","type":"bytes6"},{"internalType":"contract IOracle","name":"oracle_","type":"address"},{"internalType":"contract IJoin","name":"join_","type":"address"},{"internalType":"uint256","name":"maturity_","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FlashFeeFactorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"param","type":"bytes32"},{"indexed":false,"internalType":"address","name":"value","type":"address"}],"name":"Point","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemed","type":"uint256"}],"name":"Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes4","name":"role","type":"bytes4"},{"indexed":true,"internalType":"bytes4","name":"newAdminRole","type":"bytes4"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes4","name":"role","type":"bytes4"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes4","name":"role","type":"bytes4"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chiAtMaturity","type":"uint256"}],"name":"SeriesMatured","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK8605463013","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT4146650865","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrual","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"wad","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"guy","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chiAtMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deploymentChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flashFeeFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4[]","name":"roles","type":"bytes4[]"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"join","outputs":[{"internalType":"contract IJoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"}],"name":"lockRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintWithUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract IOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"param","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"point","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"redeemed","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4[]","name":"roles","type":"bytes4[]"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"flashFeeFactor_","type":"uint256"}],"name":"setFlashFeeFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"bytes4","name":"adminRole","type":"bytes4"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underlyingId","outputs":[{"internalType":"bytes6","name":"","type":"bytes6"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

6101806040526003610140819052623f3f3f60e81b610160908152620000299160049190620005bd565b50604080518082019091526003808252623f3f3f60e81b60209092019182526200005691600591620005bd565b506006805460ff191660121790557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c96080526243484960e81b600855635241544560e01b600955600a80546530300000000065ffffffffffff19909116179055600019600b819055600e55348015620000ce57600080fd5b50604051620033a1380380620033a1833981016040819052620000f19162000741565b81817339bb9cbe0221d769e30bd08d185842065bce1706638ee573ac876001600160a01b03166338d52e0f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200014757600080fd5b505afa1580156200015c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018291906200071a565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015620001c257600080fd5b505af4158015620001d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fd919062000800565b8282826200020d600033620003d1565b620002216001600160e01b03198062000469565b825162000236906004906020860190620005bd565b5081516200024c906005906020850190620005bd565b506006805460ff191660ff9290921691909117905550504660c0819052620002749062000507565b60a052504291505080841180156200029a575062000297630784ce0082620008c9565b84105b8015620002aa575063ffffffff84105b620002ee5760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964206d6174757269747960801b604482015260640160405180910390fd5b6001600160d01b0319871661010052600d80546001600160a01b0319166001600160a01b038716908117909155610120859052604080516338d52e0f60e01b815290516338d52e0f91600480820192602092909190829003018186803b1580156200035857600080fd5b505afa1580156200036d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039391906200071a565b60601b6001600160601b03191660e0525050600c80546001600160a01b0319166001600160a01b039590951694909417909355506200095c92505050565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915290205460ff1662000465576001600160e01b031982166000818152602081815260408083206001600160a01b0386168085529252808320805460ff1916600117905551339391927fe6231789d19137da31d0550f4ba9ee379020a8cfb64cb79bf1790c996d2e616591a45b5050565b6001600160e01b031981166200049b836001600160e01b03191660009081526020819052604090206001015460e01b90565b6001600160e01b0319161462000465576001600160e01b0319828116600081815260208190526040808220600101805463ffffffff191660e087901c17905551928416927fd348e2220a50b4500ec353f6e802d2f14dd1b5d6786148fd1bbcc570bf92d4739190a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60046040516200053b919062000825565b60408051918290038220828201825260018352603160f81b602093840152815180840194909452838201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606084015260808301949094523060a0808401919091528451808403909101815260c09092019093528051920191909120919050565b828054620005cb90620008f0565b90600052602060002090601f016020900481019282620005ef57600085556200063a565b82601f106200060a57805160ff19168380011785556200063a565b828001600101855582156200063a579182015b828111156200063a5782518255916020019190600101906200061d565b50620006489291506200064c565b5090565b5b808211156200064857600081556001016200064d565b600082601f8301126200067557600080fd5b81516001600160401b03808211156200069257620006926200092d565b604051601f8301601f19908116603f01168101908282118183101715620006bd57620006bd6200092d565b81604052838152602092508683858801011115620006da57600080fd5b600091505b83821015620006fe5785820183015181830184015290820190620006df565b83821115620007105760008385830101525b9695505050505050565b6000602082840312156200072d57600080fd5b81516200073a8162000943565b9392505050565b60008060008060008060c087890312156200075b57600080fd5b86516001600160d01b0319811681146200077457600080fd5b6020880151909650620007878162000943565b60408801519095506200079a8162000943565b6060880151608089015191955093506001600160401b0380821115620007bf57600080fd5b620007cd8a838b0162000663565b935060a0890151915080821115620007e457600080fd5b50620007f389828a0162000663565b9150509295509295509295565b6000602082840312156200081357600080fd5b815160ff811681146200073a57600080fd5b600080835481600182811c9150808316806200084257607f831692505b60208084108214156200086357634e487b7160e01b86526022600452602486fd5b8180156200087a57600181146200088c57620008bb565b60ff19861689528489019650620008bb565b60008a81526020902060005b86811015620008b35781548b82015290850190830162000898565b505084890196505b509498975050505050505050565b60008219821115620008eb57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200090557607f821691505b602082108114156200092757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200095957600080fd5b50565b60805160a05160c05160e05160601c6101005160d01c60d01b6101205161299162000a10600039600081816103cd01528181610a4801528181610c1a01528181610cf401528181610f06015281816111120152818161120b015261148e0152600081816105a201528181611aa90152612066015260006104ff01526000818161069501528181610c9f01526116a3015260008181610cd001526116d8015260008181610407015261161a01526129916000f3fe608060405234801561001057600080fd5b50600436106103055760003560e01c80636f307dc31161019c578063ae93c1b5116100ee578063d505accf11610097578063de02cde711610071578063de02cde714610716578063effae35314610729578063ffffffff1461061057600080fd5b8063d505accf146106b7578063d9d98ce4146106ca578063dd62ed3e146106dd57600080fd5b8063bac7340c116100c8578063bac7340c1461067e578063c077b49214610687578063cd0d00961461069057600080fd5b8063ae93c1b514610645578063b64b808414610658578063b688a3631461066b57600080fd5b806391ff394c11610150578063a4f0d7d01161012a578063a4f0d7d014610610578063a9059cbb1461061f578063ad82110f1461063257600080fd5b806391ff394c1461059d57806395d89b41146105f55780639dc29fac146105fd57600080fd5b80637dc0d1d0116101815780637dc0d1d0146105625780637ecebe001461057557806387b652071461059557600080fd5b80636f307dc3146104fa57806370a082311461053957600080fd5b8063313ce56711610260578063559742d9116102095780635cffe9de116101e35780635cffe9de146104c1578063613255ab146104d4578063687f0e4c146104e757600080fd5b8063559742d91461049b5780635909c12f1461030a5780635ba5e9f0146104ae57600080fd5b806340c10f191161023a57806340c10f191461045857806344faded01461046b57806354fd4d501461047e57600080fd5b8063313ce56714610429578063341f141d146104485780633644e5151461045057600080fd5b8063159c03dd116102c2578063204f83f91161029c578063204f83f9146103c857806323b872dd146103ef57806330adf81f1461040257600080fd5b8063159c03dd1461039057806318160ddd146103a35780631e9a6950146103b557600080fd5b8063095ea7b3116102f3578063095ea7b31461034557806310ab9432146103685780631295bd081461037b57600080fd5b801561030a57806306fdde0314610330575b600080fd5b610312600081565b6040516001600160e01b031990911681526020015b60405180910390f35b61033861073c565b60405161032791906127fa565b6103586103533660046123ef565b6107ca565b6040519015158152602001610327565b61035861037636600461253a565b6107e0565b61038e6103893660046124fa565b610814565b005b61038e61039e36600461267f565b6109af565b6001545b604051908152602001610327565b6103a76103c33660046123ef565b610a44565b6103a77f000000000000000000000000000000000000000000000000000000000000000081565b6103586103fd366004612337565b610bf6565b6103a77f000000000000000000000000000000000000000000000000000000000000000081565b6006546104369060ff1681565b60405160ff9091168152602001610327565b6103a7610c16565b6103a7610c9b565b61038e6104663660046123ef565b610cf2565b61038e61047936600461253a565b610dcf565b6040805180820190915260018152603160f81b6020820152610338565b61038e6104a936600461251f565b610e64565b6103126104bc36600461251f565b610edd565b6103586104cf366004612589565b610f02565b6103a76104e23660046122da565b61110e565b61038e6104f536600461253a565b6111a7565b6105217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610327565b6103a76105473660046122da565b6001600160a01b031660009081526002602052604090205490565b600c54610521906001600160a01b031681565b6103a76105833660046122da565b60076020526000908152604090205481565b61038e611209565b6105c47f000000000000000000000000000000000000000000000000000000000000000081565b6040517fffffffffffff00000000000000000000000000000000000000000000000000009091168152602001610327565b6103386112dd565b61038e61060b3660046123ef565b6112ea565b6103126001600160e01b031981565b61035861062d3660046123ef565b611356565b61038e61064036600461241b565b611363565b61038e610653366004612556565b61141f565b61038e6106663660046123ef565b61148c565b600d54610521906001600160a01b031681565b6103a7600b5481565b6103a7600e5481565b6103a77f000000000000000000000000000000000000000000000000000000000000000081565b61038e6106c5366004612378565b6115ae565b6103a76106d83660046123ef565b611838565b6103a76106eb3660046122fe565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61038e61072436600461253a565b61189b565b61038e61073736600461241b565b611908565b60048054610749906128ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906128ae565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b505050505081565b60006107d733848461199a565b90505b92915050565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915281205460ff166107d7565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff1661087b5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b60448201526064015b60405180910390fd5b817f6f7261636c65000000000000000000000000000000000000000000000000000014156108d057600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905561096d565b817f6a6f696e00000000000000000000000000000000000000000000000000000000141561092557600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905561096d565b60405162461bcd60e51b815260206004820152601660248201527f556e7265636f676e697a656420706172616d65746572000000000000000000006044820152606401610872565b6040516001600160a01b038216815282907fd61f2f59686784f82db8673820acfa642f9709c800724e09f7ac0e1aaedf4af79060200160405180910390a25050565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff16610a115760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b600b81905560405181907ff68737d5e8496ca5e19cbdd129d7c94946f794b55f680f7df5a9893eb689044990600090a250565b60007f00000000000000000000000000000000000000000000000000000000000000004263ffffffff161015610abc5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b60008215610aca5782610adb565b306000908152600260205260409020545b9050610ae73382611a03565b50610afa610af3611a57565b8290611b80565b600d549092506001600160a01b03166312e5ff7785610b1885611b9e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526fffffffffffffffffffffffffffffffff166024820152604401602060405180830381600087803b158015610b7057600080fd5b505af1158015610b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba8919061264d565b5060408051828152602081018490526001600160a01b0386169133917f5cdf07ad0fc222442720b108e3ed4c4640f0fadc2ab2253e66f259a0fea83480910160405180910390a35092915050565b6000610c028483611c04565b50610c0e848484611cad565b949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000004263ffffffff161015610c8e5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b610c96611a57565b905090565b60007f00000000000000000000000000000000000000000000000000000000000000004614610ccd57610c9646611d9c565b507f000000000000000000000000000000000000000000000000000000000000000090565b7f00000000000000000000000000000000000000000000000000000000000000004263ffffffff1610610d5e5760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff16610dc05760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b610dca8282611e50565b505050565b81610e21610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6001600160e01b03191660009081526020818152604080832033845290915290205460ff1690565b610e5a5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383611ee9565b80610e8e610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b610ec75760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610ed9826001600160e01b0319611f7d565b5050565b6001600160e01b0319811660009081526020819052604081206001015460e01b6107da565b60007f00000000000000000000000000000000000000000000000000000000000000004263ffffffff1610610f705760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6001600160a01b0384163014610fc85760405162461bcd60e51b815260206004820152601460248201527f556e737570706f727465642063757272656e63790000000000000000000000006044820152606401610872565b610fd28584611e50565b506000610fe6610fe185612019565b611b9e565b90507f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9866001600160a01b03166323e30c8b33888886896040518663ffffffff1660e01b815260040161103d9594939291906127a5565b602060405180830381600087803b15801561105757600080fd5b505af115801561106b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108f91906124e1565b146110dc5760405162461bcd60e51b815260206004820152601660248201527f4e6f6e2d636f6d706c69616e7420626f72726f776572000000000000000000006044820152606401610872565b611101866110fc6fffffffffffffffffffffffffffffffff84168761283e565b611a03565b5060019695505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000004263ffffffff161061117c5760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6001600160a01b03821630146111935760006107da565b6001546107da90600019612897565b919050565b6001600160a01b03811633146111ff5760405162461bcd60e51b815260206004820152601660248201527f52656e6f756e6365206f6e6c7920666f722073656c66000000000000000000006044820152606401610872565b610ed98282611ee9565b7f00000000000000000000000000000000000000000000000000000000000000004263ffffffff16101561127f5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b600019600e54146112d25760405162461bcd60e51b815260206004820152600f60248201527f416c7265616479206d61747572656400000000000000000000000000000000006044820152606401610872565b6112da612030565b50565b60058054610749906128ae565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff1661134c5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b610dca8282611a03565b60006107d7338484611cad565b60005b8251811015610dca576113b1610df98483815181106113875761138761291a565b60200260200101516001600160e01b03191660009081526020819052604090206001015460e01b90565b6113ea5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b61140d8382815181106113ff576113ff61291a565b602002602001015183611ee9565b80611417816128e9565b915050611366565b81611449610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6114825760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383611f7d565b7f00000000000000000000000000000000000000000000000000000000000000004263ffffffff16106114f85760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6115028282611e50565b50600d546001600160a01b031663ceae3abd3361151e84611b9e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526fffffffffffffffffffffffffffffffff166024820152604401602060405180830381600087803b15801561157657600080fd5b505af115801561158a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dca919061264d565b428410156115fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610872565b6001600160a01b038716600090815260076020526040812080547f0000000000000000000000000000000000000000000000000000000000000000918a918a918a91908661164b836128e9565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060007f000000000000000000000000000000000000000000000000000000000000000046146116d6576116d146611d9c565b6116f8565b7f00000000000000000000000000000000000000000000000000000000000000005b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620160408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa15801561179e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906117d45750896001600160a01b0316816001600160a01b0316145b6118205760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610872565b61182b8a8a8a61199a565b5050505050505050505050565b60006001600160a01b03831630146118925760405162461bcd60e51b815260206004820152601460248201527f556e737570706f727465642063757272656e63790000000000000000000000006044820152606401610872565b6107d782612019565b816118c5610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6118fe5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383612140565b60005b8251811015610dca5761192c610df98483815181106113875761138761291a565b6119655760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b61198883828151811061197a5761197a61291a565b602002602001015183612140565b80611992816128e9565b91505061190b565b6001600160a01b03838116600081815260036020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b30600090815260026020526040812054828110611a2c57611a2430846121d6565b9150506107da565b8015611a3e57611a3c30826121d6565b505b611a4a84828503611c04565b50611a24848285036121d6565b6000600019600e541415611a7357611a6d612030565b50611b60565b600c546008546040516308c5f34560e31b81527fffffffffffff00000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000001660048201526024810191909152600060448201819052916001600160a01b03169063462f9a28906064016040805180830381600087803b158015611b0c57600080fd5b505af1158015611b20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b449190612698565b509050611b5c600e548261229890919063ffffffff16565b9150505b670de0b6b3a7640000811015611b7d5750670de0b6b3a764000090565b90565b6000611b8c8284612878565b670de0b6b3a764000090049392505050565b60006fffffffffffffffffffffffffffffffff821115611c005760405162461bcd60e51b815260206004820152600d60248201527f43617374206f766572666c6f77000000000000000000000000000000000000006044820152606401610872565b5090565b60006001600160a01b0383163314611ca4576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114611ca25782811015611c935760405162461bcd60e51b815260206004820152601c60248201527f45524332303a20496e73756666696369656e7420617070726f76616c000000006044820152606401610872565b611ca0843385840361199a565b505b505b50600192915050565b6001600160a01b038316600090815260026020526040812054821115611d155760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e636500000000006044820152606401610872565b6001600160a01b038085166000908152600260205260408082208054869003905591851681522054611d4890839061283e565b6001600160a01b0380851660008181526002602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119f19086815260200190565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6004604051611dce9190612709565b60408051918290038220828201825260018352603160f81b602093840152815180840194909452838201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606084015260808301949094523060a0808401919091528451808403909101815260c09092019093528051920191909120919050565b6001600160a01b038216600090815260026020526040812054611e7490839061283e565b6001600160a01b038416600090815260026020526040902055600154611e9b90839061283e565b6001556040518281526001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a350600192915050565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915290205460ff1615610ed9576001600160e01b031982166000818152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339391927f4ddc7b757e7bdd7254a9cd39452d307a52761bc824625c6a33104a075d8099e691a45050565b6001600160e01b03198116611fae836001600160e01b03191660009081526020819052604090206001015460e01b90565b6001600160e01b03191614610ed9576001600160e01b0319828116600081815260208190526040808220600101805463ffffffff191660e087901c17905551928416927fd348e2220a50b4500ec353f6e802d2f14dd1b5d6786148fd1bbcc570bf92d4739190a35050565b60006107da600b5483611b8090919063ffffffff16565b600c546008546040516308c5f34560e31b81527fffffffffffff00000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000001660048201526024810191909152600060448201819052916001600160a01b03169063462f9a28906064016040805180830381600087803b1580156120c957600080fd5b505af11580156120dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121019190612698565b50600e8190556040518181529091507f8be75db1b82d3c69cbae9639f0c64031bc1ec21b06cf1fd56c9b24034497f9ff9060200160405180910390a190565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915290205460ff16610ed9576001600160e01b031982166000818152602081815260408083206001600160a01b0386168085529252808320805460ff1916600117905551339391927fe6231789d19137da31d0550f4ba9ee379020a8cfb64cb79bf1790c996d2e616591a45050565b6001600160a01b03821660009081526002602052604081205482111561223e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e636500000000006044820152606401610872565b6001600160a01b038316600081815260026020908152604080832080548790039055600180548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611ed8565b6000816122ad84670de0b6b3a7640000612878565b6107d79190612856565b80356111a281612946565b80356001600160e01b0319811681146111a257600080fd5b6000602082840312156122ec57600080fd5b81356122f781612946565b9392505050565b6000806040838503121561231157600080fd5b823561231c81612946565b9150602083013561232c81612946565b809150509250929050565b60008060006060848603121561234c57600080fd5b833561235781612946565b9250602084013561236781612946565b929592945050506040919091013590565b600080600080600080600060e0888a03121561239357600080fd5b873561239e81612946565b965060208801356123ae81612946565b95506040880135945060608801359350608088013560ff811681146123d257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561240257600080fd5b823561240d81612946565b946020939093013593505050565b6000806040838503121561242e57600080fd5b823567ffffffffffffffff8082111561244657600080fd5b818501915085601f83011261245a57600080fd5b813560208282111561246e5761246e612930565b8160051b925061247f81840161280d565b8281528181019085830185870184018b101561249a57600080fd5b600096505b848710156124c4576124b0816122c2565b83526001969096019591830191830161249f565b5096506124d490508782016122b7565b9450505050509250929050565b6000602082840312156124f357600080fd5b5051919050565b6000806040838503121561250d57600080fd5b82359150602083013561232c81612946565b60006020828403121561253157600080fd5b6107d7826122c2565b6000806040838503121561254d57600080fd5b61231c836122c2565b6000806040838503121561256957600080fd5b612572836122c2565b9150612580602084016122c2565b90509250929050565b6000806000806080858703121561259f57600080fd5b84356125aa81612946565b93506020858101356125bb81612946565b935060408601359250606086013567ffffffffffffffff808211156125df57600080fd5b818801915088601f8301126125f357600080fd5b81358181111561260557612605612930565b612617601f8201601f1916850161280d565b9150808252898482850101111561262d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60006020828403121561265f57600080fd5b81516fffffffffffffffffffffffffffffffff811681146122f757600080fd5b60006020828403121561269157600080fd5b5035919050565b600080604083850312156126ab57600080fd5b505080516020909101519092909150565b6000815180845260005b818110156126e2576020818501810151868301820152016126c6565b818111156126f4576000602083870101525b50601f01601f19169290920160200192915050565b600080835481600182811c91508083168061272557607f831692505b602080841082141561274557634e487b7160e01b86526022600452602486fd5b818015612759576001811461276a57612797565b60ff19861689528489019650612797565b60008a81526020902060005b8681101561278f5781548b820152908501908301612776565b505084890196505b509498975050505050505050565b60006001600160a01b0380881683528087166020840152508460408301526fffffffffffffffffffffffffffffffff8416606083015260a060808301526127ef60a08301846126bc565b979650505050505050565b6020815260006107d760208301846126bc565b604051601f8201601f1916810167ffffffffffffffff8111828210171561283657612836612930565b604052919050565b6000821982111561285157612851612904565b500190565b60008261287357634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561289257612892612904565b500290565b6000828210156128a9576128a9612904565b500390565b600181811c908216806128c257607f821691505b602082108114156128e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128fd576128fd612904565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112da57600080fdfea26469706673582212206b93b6595a56062e03c2cb3299a6e1e026e1daae7ee157e0931f7ef68f1c1f5d64736f6c63430008060033303200000000000000000000000000000000000000000000000000000000000000000000000000000000000053fba816bd69a7f2a096f58687f87dd3020d0d5c0000000000000000000000000d9a1a773be5a83eebda23bf98efb8585c3ae4f4000000000000000000000000000000000000000000000000000000006337047000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a4659555344433232303900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4659555344433232303900000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103055760003560e01c80636f307dc31161019c578063ae93c1b5116100ee578063d505accf11610097578063de02cde711610071578063de02cde714610716578063effae35314610729578063ffffffff1461061057600080fd5b8063d505accf146106b7578063d9d98ce4146106ca578063dd62ed3e146106dd57600080fd5b8063bac7340c116100c8578063bac7340c1461067e578063c077b49214610687578063cd0d00961461069057600080fd5b8063ae93c1b514610645578063b64b808414610658578063b688a3631461066b57600080fd5b806391ff394c11610150578063a4f0d7d01161012a578063a4f0d7d014610610578063a9059cbb1461061f578063ad82110f1461063257600080fd5b806391ff394c1461059d57806395d89b41146105f55780639dc29fac146105fd57600080fd5b80637dc0d1d0116101815780637dc0d1d0146105625780637ecebe001461057557806387b652071461059557600080fd5b80636f307dc3146104fa57806370a082311461053957600080fd5b8063313ce56711610260578063559742d9116102095780635cffe9de116101e35780635cffe9de146104c1578063613255ab146104d4578063687f0e4c146104e757600080fd5b8063559742d91461049b5780635909c12f1461030a5780635ba5e9f0146104ae57600080fd5b806340c10f191161023a57806340c10f191461045857806344faded01461046b57806354fd4d501461047e57600080fd5b8063313ce56714610429578063341f141d146104485780633644e5151461045057600080fd5b8063159c03dd116102c2578063204f83f91161029c578063204f83f9146103c857806323b872dd146103ef57806330adf81f1461040257600080fd5b8063159c03dd1461039057806318160ddd146103a35780631e9a6950146103b557600080fd5b8063095ea7b3116102f3578063095ea7b31461034557806310ab9432146103685780631295bd081461037b57600080fd5b801561030a57806306fdde0314610330575b600080fd5b610312600081565b6040516001600160e01b031990911681526020015b60405180910390f35b61033861073c565b60405161032791906127fa565b6103586103533660046123ef565b6107ca565b6040519015158152602001610327565b61035861037636600461253a565b6107e0565b61038e6103893660046124fa565b610814565b005b61038e61039e36600461267f565b6109af565b6001545b604051908152602001610327565b6103a76103c33660046123ef565b610a44565b6103a77f000000000000000000000000000000000000000000000000000000006337047081565b6103586103fd366004612337565b610bf6565b6103a77f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6006546104369060ff1681565b60405160ff9091168152602001610327565b6103a7610c16565b6103a7610c9b565b61038e6104663660046123ef565b610cf2565b61038e61047936600461253a565b610dcf565b6040805180820190915260018152603160f81b6020820152610338565b61038e6104a936600461251f565b610e64565b6103126104bc36600461251f565b610edd565b6103586104cf366004612589565b610f02565b6103a76104e23660046122da565b61110e565b61038e6104f536600461253a565b6111a7565b6105217f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b6040516001600160a01b039091168152602001610327565b6103a76105473660046122da565b6001600160a01b031660009081526002602052604090205490565b600c54610521906001600160a01b031681565b6103a76105833660046122da565b60076020526000908152604090205481565b61038e611209565b6105c47f303200000000000000000000000000000000000000000000000000000000000081565b6040517fffffffffffff00000000000000000000000000000000000000000000000000009091168152602001610327565b6103386112dd565b61038e61060b3660046123ef565b6112ea565b6103126001600160e01b031981565b61035861062d3660046123ef565b611356565b61038e61064036600461241b565b611363565b61038e610653366004612556565b61141f565b61038e6106663660046123ef565b61148c565b600d54610521906001600160a01b031681565b6103a7600b5481565b6103a7600e5481565b6103a77f000000000000000000000000000000000000000000000000000000000000000181565b61038e6106c5366004612378565b6115ae565b6103a76106d83660046123ef565b611838565b6103a76106eb3660046122fe565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61038e61072436600461253a565b61189b565b61038e61073736600461241b565b611908565b60048054610749906128ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906128ae565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b505050505081565b60006107d733848461199a565b90505b92915050565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915281205460ff166107d7565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff1661087b5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b60448201526064015b60405180910390fd5b817f6f7261636c65000000000000000000000000000000000000000000000000000014156108d057600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905561096d565b817f6a6f696e00000000000000000000000000000000000000000000000000000000141561092557600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03831617905561096d565b60405162461bcd60e51b815260206004820152601660248201527f556e7265636f676e697a656420706172616d65746572000000000000000000006044820152606401610872565b6040516001600160a01b038216815282907fd61f2f59686784f82db8673820acfa642f9709c800724e09f7ac0e1aaedf4af79060200160405180910390a25050565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff16610a115760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b600b81905560405181907ff68737d5e8496ca5e19cbdd129d7c94946f794b55f680f7df5a9893eb689044990600090a250565b60007f00000000000000000000000000000000000000000000000000000000633704704263ffffffff161015610abc5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b60008215610aca5782610adb565b306000908152600260205260409020545b9050610ae73382611a03565b50610afa610af3611a57565b8290611b80565b600d549092506001600160a01b03166312e5ff7785610b1885611b9e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526fffffffffffffffffffffffffffffffff166024820152604401602060405180830381600087803b158015610b7057600080fd5b505af1158015610b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba8919061264d565b5060408051828152602081018490526001600160a01b0386169133917f5cdf07ad0fc222442720b108e3ed4c4640f0fadc2ab2253e66f259a0fea83480910160405180910390a35092915050565b6000610c028483611c04565b50610c0e848484611cad565b949350505050565b60007f00000000000000000000000000000000000000000000000000000000633704704263ffffffff161015610c8e5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b610c96611a57565b905090565b60007f00000000000000000000000000000000000000000000000000000000000000014614610ccd57610c9646611d9c565b507f9604491781380023e44dc9bf8cb58eeaf56a5494a7c7d4c193f81e6628079b4290565b7f00000000000000000000000000000000000000000000000000000000633704704263ffffffff1610610d5e5760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff16610dc05760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b610dca8282611e50565b505050565b81610e21610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6001600160e01b03191660009081526020818152604080832033845290915290205460ff1690565b610e5a5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383611ee9565b80610e8e610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b610ec75760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610ed9826001600160e01b0319611f7d565b5050565b6001600160e01b0319811660009081526020819052604081206001015460e01b6107da565b60007f00000000000000000000000000000000000000000000000000000000633704704263ffffffff1610610f705760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6001600160a01b0384163014610fc85760405162461bcd60e51b815260206004820152601460248201527f556e737570706f727465642063757272656e63790000000000000000000000006044820152606401610872565b610fd28584611e50565b506000610fe6610fe185612019565b611b9e565b90507f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9866001600160a01b03166323e30c8b33888886896040518663ffffffff1660e01b815260040161103d9594939291906127a5565b602060405180830381600087803b15801561105757600080fd5b505af115801561106b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108f91906124e1565b146110dc5760405162461bcd60e51b815260206004820152601660248201527f4e6f6e2d636f6d706c69616e7420626f72726f776572000000000000000000006044820152606401610872565b611101866110fc6fffffffffffffffffffffffffffffffff84168761283e565b611a03565b5060019695505050505050565b60007f00000000000000000000000000000000000000000000000000000000633704704263ffffffff161061117c5760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6001600160a01b03821630146111935760006107da565b6001546107da90600019612897565b919050565b6001600160a01b03811633146111ff5760405162461bcd60e51b815260206004820152601660248201527f52656e6f756e6365206f6e6c7920666f722073656c66000000000000000000006044820152606401610872565b610ed98282611ee9565b7f00000000000000000000000000000000000000000000000000000000633704704263ffffffff16101561127f5760405162461bcd60e51b815260206004820152601360248201527f4f6e6c79206166746572206d61747572697479000000000000000000000000006044820152606401610872565b600019600e54146112d25760405162461bcd60e51b815260206004820152600f60248201527f416c7265616479206d61747572656400000000000000000000000000000000006044820152606401610872565b6112da612030565b50565b60058054610749906128ae565b600080356001600160e01b03191681526020818152604080832033845290915290205460ff1661134c5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610872565b610dca8282611a03565b60006107d7338484611cad565b60005b8251811015610dca576113b1610df98483815181106113875761138761291a565b60200260200101516001600160e01b03191660009081526020819052604090206001015460e01b90565b6113ea5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b61140d8382815181106113ff576113ff61291a565b602002602001015183611ee9565b80611417816128e9565b915050611366565b81611449610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6114825760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383611f7d565b7f00000000000000000000000000000000000000000000000000000000633704704263ffffffff16106114f85760405162461bcd60e51b81526020600482015260146024820152734f6e6c79206265666f7265206d6174757269747960601b6044820152606401610872565b6115028282611e50565b50600d546001600160a01b031663ceae3abd3361151e84611b9e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526fffffffffffffffffffffffffffffffff166024820152604401602060405180830381600087803b15801561157657600080fd5b505af115801561158a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dca919061264d565b428410156115fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610872565b6001600160a01b038716600090815260076020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a91908661164b836128e9565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060007f000000000000000000000000000000000000000000000000000000000000000146146116d6576116d146611d9c565b6116f8565b7f9604491781380023e44dc9bf8cb58eeaf56a5494a7c7d4c193f81e6628079b425b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620160408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa15801561179e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906117d45750896001600160a01b0316816001600160a01b0316145b6118205760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610872565b61182b8a8a8a61199a565b5050505050505050505050565b60006001600160a01b03831630146118925760405162461bcd60e51b815260206004820152601460248201527f556e737570706f727465642063757272656e63790000000000000000000000006044820152606401610872565b6107d782612019565b816118c5610df9826001600160e01b03191660009081526020819052604090206001015460e01b90565b6118fe5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b610dca8383612140565b60005b8251811015610dca5761192c610df98483815181106113875761138761291a565b6119655760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401610872565b61198883828151811061197a5761197a61291a565b602002602001015183612140565b80611992816128e9565b91505061190b565b6001600160a01b03838116600081815260036020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b30600090815260026020526040812054828110611a2c57611a2430846121d6565b9150506107da565b8015611a3e57611a3c30826121d6565b505b611a4a84828503611c04565b50611a24848285036121d6565b6000600019600e541415611a7357611a6d612030565b50611b60565b600c546008546040516308c5f34560e31b81527fffffffffffff00000000000000000000000000000000000000000000000000007f30320000000000000000000000000000000000000000000000000000000000001660048201526024810191909152600060448201819052916001600160a01b03169063462f9a28906064016040805180830381600087803b158015611b0c57600080fd5b505af1158015611b20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b449190612698565b509050611b5c600e548261229890919063ffffffff16565b9150505b670de0b6b3a7640000811015611b7d5750670de0b6b3a764000090565b90565b6000611b8c8284612878565b670de0b6b3a764000090049392505050565b60006fffffffffffffffffffffffffffffffff821115611c005760405162461bcd60e51b815260206004820152600d60248201527f43617374206f766572666c6f77000000000000000000000000000000000000006044820152606401610872565b5090565b60006001600160a01b0383163314611ca4576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114611ca25782811015611c935760405162461bcd60e51b815260206004820152601c60248201527f45524332303a20496e73756666696369656e7420617070726f76616c000000006044820152606401610872565b611ca0843385840361199a565b505b505b50600192915050565b6001600160a01b038316600090815260026020526040812054821115611d155760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e636500000000006044820152606401610872565b6001600160a01b038085166000908152600260205260408082208054869003905591851681522054611d4890839061283e565b6001600160a01b0380851660008181526002602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119f19086815260200190565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6004604051611dce9190612709565b60408051918290038220828201825260018352603160f81b602093840152815180840194909452838201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606084015260808301949094523060a0808401919091528451808403909101815260c09092019093528051920191909120919050565b6001600160a01b038216600090815260026020526040812054611e7490839061283e565b6001600160a01b038416600090815260026020526040902055600154611e9b90839061283e565b6001556040518281526001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a350600192915050565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915290205460ff1615610ed9576001600160e01b031982166000818152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339391927f4ddc7b757e7bdd7254a9cd39452d307a52761bc824625c6a33104a075d8099e691a45050565b6001600160e01b03198116611fae836001600160e01b03191660009081526020819052604090206001015460e01b90565b6001600160e01b03191614610ed9576001600160e01b0319828116600081815260208190526040808220600101805463ffffffff191660e087901c17905551928416927fd348e2220a50b4500ec353f6e802d2f14dd1b5d6786148fd1bbcc570bf92d4739190a35050565b60006107da600b5483611b8090919063ffffffff16565b600c546008546040516308c5f34560e31b81527fffffffffffff00000000000000000000000000000000000000000000000000007f30320000000000000000000000000000000000000000000000000000000000001660048201526024810191909152600060448201819052916001600160a01b03169063462f9a28906064016040805180830381600087803b1580156120c957600080fd5b505af11580156120dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121019190612698565b50600e8190556040518181529091507f8be75db1b82d3c69cbae9639f0c64031bc1ec21b06cf1fd56c9b24034497f9ff9060200160405180910390a190565b6001600160e01b031982166000908152602081815260408083206001600160a01b038516845290915290205460ff16610ed9576001600160e01b031982166000818152602081815260408083206001600160a01b0386168085529252808320805460ff1916600117905551339391927fe6231789d19137da31d0550f4ba9ee379020a8cfb64cb79bf1790c996d2e616591a45050565b6001600160a01b03821660009081526002602052604081205482111561223e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e636500000000006044820152606401610872565b6001600160a01b038316600081815260026020908152604080832080548790039055600180548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611ed8565b6000816122ad84670de0b6b3a7640000612878565b6107d79190612856565b80356111a281612946565b80356001600160e01b0319811681146111a257600080fd5b6000602082840312156122ec57600080fd5b81356122f781612946565b9392505050565b6000806040838503121561231157600080fd5b823561231c81612946565b9150602083013561232c81612946565b809150509250929050565b60008060006060848603121561234c57600080fd5b833561235781612946565b9250602084013561236781612946565b929592945050506040919091013590565b600080600080600080600060e0888a03121561239357600080fd5b873561239e81612946565b965060208801356123ae81612946565b95506040880135945060608801359350608088013560ff811681146123d257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561240257600080fd5b823561240d81612946565b946020939093013593505050565b6000806040838503121561242e57600080fd5b823567ffffffffffffffff8082111561244657600080fd5b818501915085601f83011261245a57600080fd5b813560208282111561246e5761246e612930565b8160051b925061247f81840161280d565b8281528181019085830185870184018b101561249a57600080fd5b600096505b848710156124c4576124b0816122c2565b83526001969096019591830191830161249f565b5096506124d490508782016122b7565b9450505050509250929050565b6000602082840312156124f357600080fd5b5051919050565b6000806040838503121561250d57600080fd5b82359150602083013561232c81612946565b60006020828403121561253157600080fd5b6107d7826122c2565b6000806040838503121561254d57600080fd5b61231c836122c2565b6000806040838503121561256957600080fd5b612572836122c2565b9150612580602084016122c2565b90509250929050565b6000806000806080858703121561259f57600080fd5b84356125aa81612946565b93506020858101356125bb81612946565b935060408601359250606086013567ffffffffffffffff808211156125df57600080fd5b818801915088601f8301126125f357600080fd5b81358181111561260557612605612930565b612617601f8201601f1916850161280d565b9150808252898482850101111561262d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60006020828403121561265f57600080fd5b81516fffffffffffffffffffffffffffffffff811681146122f757600080fd5b60006020828403121561269157600080fd5b5035919050565b600080604083850312156126ab57600080fd5b505080516020909101519092909150565b6000815180845260005b818110156126e2576020818501810151868301820152016126c6565b818111156126f4576000602083870101525b50601f01601f19169290920160200192915050565b600080835481600182811c91508083168061272557607f831692505b602080841082141561274557634e487b7160e01b86526022600452602486fd5b818015612759576001811461276a57612797565b60ff19861689528489019650612797565b60008a81526020902060005b8681101561278f5781548b820152908501908301612776565b505084890196505b509498975050505050505050565b60006001600160a01b0380881683528087166020840152508460408301526fffffffffffffffffffffffffffffffff8416606083015260a060808301526127ef60a08301846126bc565b979650505050505050565b6020815260006107d760208301846126bc565b604051601f8201601f1916810167ffffffffffffffff8111828210171561283657612836612930565b604052919050565b6000821982111561285157612851612904565b500190565b60008261287357634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561289257612892612904565b500290565b6000828210156128a9576128a9612904565b500390565b600181811c908216806128c257607f821691505b602082108114156128e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128fd576128fd612904565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112da57600080fdfea26469706673582212206b93b6595a56062e03c2cb3299a6e1e026e1daae7ee157e0931f7ef68f1c1f5d64736f6c63430008060033

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

303200000000000000000000000000000000000000000000000000000000000000000000000000000000000053fba816bd69a7f2a096f58687f87dd3020d0d5c0000000000000000000000000d9a1a773be5a83eebda23bf98efb8585c3ae4f4000000000000000000000000000000000000000000000000000000006337047000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a4659555344433232303900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4659555344433232303900000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : underlyingId_ (bytes6): 0x303200000000
Arg [1] : oracle_ (address): 0x53FBa816BD69a7f2a096f58687f87dd3020d0d5c
Arg [2] : join_ (address): 0x0d9A1A773be5a83eEbda23bf98efB8585C3ae4f4
Arg [3] : maturity_ (uint256): 1664550000
Arg [4] : name (string): FYUSDC2209
Arg [5] : symbol (string): FYUSDC2209

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 3032000000000000000000000000000000000000000000000000000000000000
Arg [1] : 00000000000000000000000053fba816bd69a7f2a096f58687f87dd3020d0d5c
Arg [2] : 0000000000000000000000000d9a1a773be5a83eebda23bf98efb8585c3ae4f4
Arg [3] : 0000000000000000000000000000000000000000000000000000000063370470
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 4659555344433232303900000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 4659555344433232303900000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.