false
true
0

Contract Address Details

0xdFa5e7989c98446FfEA622266e18df563E859872

Contract Name
LinkswapPriceOracle
Creator
0x0389d7–fc1cba at 0xb18efa–343ccc
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
25955747
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
LinkswapPriceOracle




Optimization enabled
true
Compiler version
v0.6.6+commit.6c089d02




Optimization runs
200
EVM Version
istanbul




Verified at
2026-03-06T13:05:55.713146Z

Constructor Arguments

556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c696e6b7377617050726963654f7261636c653a205a45524f5f414444524553530000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be00000000000000000000000032dbd3214ac75223e27e575c53944307914f7a90000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f

Arg [0] (address) : 0x726172793a204944454e544943414c5f41444452
Arg [1] (address) : 0x7050726963654f7261636c653a205a45524f5f41
Arg [2] (address) : 0x0000000000005c69bee701ef814a2b6a3edd4b16
Arg [3] (address) : 0x000000000000514910771af9ca656af840dff83e
Arg [4] (address) : 0x000000000000c02aaa39b223fe8d0a0e5c4f27ea
Arg [5] (address) : 0x00000000000028cb7e841ee97947a86b06fa4090

              

/Users/kroll/Dev/LinkDeployment1/contracts/LinkswapPriceOracle.sol

pragma solidity 0.6.6;

import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/libraries/UniswapV2Library.sol";
import "@uniswap/v2-periphery/contracts/libraries/UniswapV2OracleLibrary.sol";
import "./interfaces/IChainlinkOracle.sol";
import "./interfaces/ILinkswapPriceOracle.sol";
import "./libraries/SafeMathLinkswap.sol";

// sliding window oracle that uses observations collected over a window to provide moving price averages in the past
// `windowSize` with a precision of `windowSize / granularity`
// note this is a singleton oracle and only needs to be deployed once per desired parameters, which
// differs from the simple oracle which must be deployed once per pair.
contract LinkswapPriceOracle is ILinkswapPriceOracle {
    using FixedPoint for *;
    using SafeMath for uint256;

    uint256 public constant PERIOD = 4 hours;
    int256 private constant INT256_MAX = 2**255 - 1;

    address public immutable factory;
    // https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca#readContract
    address public immutable linkToken;
    // https://etherscan.io/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2#readContract
    address public immutable wethToken;
    // https://etherscan.io/token/0x28cb7e841ee97947a86B06fA4090C8451f64c0be#readContract
    address public immutable yflToken;
    // https://etherscan.io/address/0x32dbd3214aC75223e27e575C53944307914F7a90#readContract
    address public immutable linkUsdChainlinkOracle;
    // https://etherscan.io/address/0xF79D6aFBb6dA890132F9D7c355e3015f15F3406F#readContract
    address public immutable wethUsdChainlinkOracle;

    IUniswapV2Pair immutable pair;
    address public immutable token0;
    address public immutable token1;

    uint256 public price0CumulativeLast;
    uint256 public price1CumulativeLast;
    uint32 public blockTimestampLast;
    FixedPoint.uq112x112 public price0Average;
    FixedPoint.uq112x112 public price1Average;

    constructor(
        address _factory,
        address _linkToken,
        address _wethToken,
        address _yflToken,
        address _linkUsdChainlinkOracle,
        address _wethUsdChainlinkOracle
    ) public {
        require(
            _factory != address(0) &&
                _linkToken != address(0) &&
                _wethToken != address(0) &&
                _yflToken != address(0) &&
                _linkUsdChainlinkOracle != address(0) &&
                _wethUsdChainlinkOracle != address(0),
            "LinkswapPriceOracle: ZERO_ADDRESS"
        );
        factory = _factory;
        linkToken = _linkToken;
        wethToken = _wethToken;
        yflToken = _yflToken;
        linkUsdChainlinkOracle = _linkUsdChainlinkOracle;
        wethUsdChainlinkOracle = _wethUsdChainlinkOracle;
        IUniswapV2Pair _pair = IUniswapV2Pair(UniswapV2Library.pairFor(_factory, _wethToken, _yflToken));
        pair = _pair;
        token0 = _pair.token0();
        token1 = _pair.token1();
        price0CumulativeLast = _pair.price0CumulativeLast(); // fetch the current accumulated price value (1 / 0)
        price1CumulativeLast = _pair.price1CumulativeLast(); // fetch the current accumulated price value (0 / 1)
    }

    function update() external override {
        (uint256 price0Cumulative, uint256 price1Cumulative, uint32 blockTimestamp) = UniswapV2OracleLibrary
            .currentCumulativePrices(address(pair));
        uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired

        // don't update unless at least one full period has passed since the last update
        if (timeElapsed < PERIOD) return;

        // overflow is desired, casting never truncates
        // cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed
        price0Average = FixedPoint.uq112x112(uint224((price0Cumulative - price0CumulativeLast) / timeElapsed));
        price1Average = FixedPoint.uq112x112(uint224((price1Cumulative - price1CumulativeLast) / timeElapsed));

        price0CumulativeLast = price0Cumulative;
        price1CumulativeLast = price1Cumulative;
        blockTimestampLast = blockTimestamp;
    }

    // given the cumulative prices of the start and end of a period, and the length of the period, compute the average
    // price in terms of how much amount out is received for the amount in
    function computeAmountOut(
        uint256 priceCumulativeStart,
        uint256 priceCumulativeEnd,
        uint256 timeElapsed,
        uint256 amountIn
    ) private pure returns (uint256 amountOut) {
        // overflow is desired.
        FixedPoint.uq112x112 memory priceAverage = FixedPoint.uq112x112(
            uint224((priceCumulativeEnd - priceCumulativeStart) / timeElapsed)
        );
        amountOut = priceAverage.mul(amountIn).decode144();
    }

    // note this will always return 0 before update has been called successfully for the first time.
    function consult(address token, uint256 amountIn) public view returns (uint256 amountOut) {
        if (token == token0) {
            amountOut = price0Average.mul(amountIn).decode144();
        } else {
            require(token == token1, "LinkswapPriceOracle: INVALID_TOKEN");
            amountOut = price1Average.mul(amountIn).decode144();
        }
    }

    function calculateTokenAmountFromUsdAmount(address token, uint256 usdAmount)
        external
        view
        override
        returns (uint256)
    {
        if (token == yflToken) {
            int256 usdPerWeth = IChainlinkOracle(wethUsdChainlinkOracle).latestAnswer();
            require(usdPerWeth > 0 && usdPerWeth <= INT256_MAX, "LinkswapPriceOracle: INVALID_USD_PRICE");
            // multiply by 10^18 because WETH has 18 dp
            uint256 wethAmount = usdAmount.mul(10**18) / uint256(usdPerWeth);
            return consult(wethToken, wethAmount);
        } else {
            // get the token's USD price (to 8 dp)
            int256 usdPrice;
            if (token == linkToken) {
                usdPrice = IChainlinkOracle(linkUsdChainlinkOracle).latestAnswer();
            } else if (token == wethToken) {
                usdPrice = IChainlinkOracle(wethUsdChainlinkOracle).latestAnswer();
            } else {
                revert("LinkswapPriceOracle: UNEXPECTED_TOKEN");
            }
            require(usdPrice > 0 && usdPrice <= INT256_MAX, "LinkswapPriceOracle: INVALID_USD_PRICE");
            // multiply by 10^18 because LINK+WETH have 18 dp
            return usdAmount.mul(10**18) / uint256(usdPrice);
        }
    }

    function calculateUsdAmountFromTokenAmount(address token, uint256 tokenAmount)
        external
        view
        override
        returns (uint256)
    {
        // get the token's USD price (to 8 dp)
        int256 usdPrice;
        if (token == linkToken) {
            usdPrice = IChainlinkOracle(linkUsdChainlinkOracle).latestAnswer();
        } else if (token == wethToken) {
            usdPrice = IChainlinkOracle(wethUsdChainlinkOracle).latestAnswer();
        } else {
            revert("LinkswapPriceOracle: UNEXPECTED_TOKEN");
        }
        require(usdPrice > 0 && usdPrice <= INT256_MAX, "LinkswapPriceOracle: INVALID_USD_PRICE");
        // divide by 10^18 because LINK+WETH have 18 dp
        return tokenAmount.mul(uint256(usdPrice)) / (10**18);
    }
}
        

/contracts/interfaces/ILinkswapPriceOracle.sol

pragma solidity 0.6.6;

interface ILinkswapPriceOracle {
    function update() external;

    // tokenAmount is to 18 dp, usdAmount is to 8 dp
    // token must be LINK / WETH / YFL
    function calculateTokenAmountFromUsdAmount(address token, uint256 usdAmount)
        external
        view
        returns (uint256 tokenAmount);

    // token must be LINK / WETH
    function calculateUsdAmountFromTokenAmount(address token, uint256 tokenAmount)
        external
        view
        returns (uint256 usdAmount);
}
          

/contracts/interfaces/IChainlinkOracle.sol

pragma solidity 0.6.6;

abstract contract IChainlinkOracle {
    // prices returned to 8 decimal places
    function latestAnswer() external view virtual returns (int256);
}
          

/contracts/libraries/SafeMathLinkswap.sol

pragma solidity 0.6.6;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMathLinkswap {
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x, "ds-math-add-overflow");
    }

    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x, "ds-math-sub-underflow");
    }

    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
    }
}
          

/UniswapV2OracleLibrary.sol

pragma solidity >=0.5.0;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '@uniswap/lib/contracts/libraries/FixedPoint.sol';

// library with helper methods for oracles that are concerned with computing average prices
library UniswapV2OracleLibrary {
    using FixedPoint for *;

    // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1]
    function currentBlockTimestamp() internal view returns (uint32) {
        return uint32(block.timestamp % 2 ** 32);
    }

    // produces the cumulative price using counterfactuals to save gas and avoid a call to sync.
    function currentCumulativePrices(
        address pair
    ) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) {
        blockTimestamp = currentBlockTimestamp();
        price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast();
        price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast();

        // if time has elapsed since the last update on the pair, mock the accumulated price values
        (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves();
        if (blockTimestampLast != blockTimestamp) {
            // subtraction overflow is desired
            uint32 timeElapsed = blockTimestamp - blockTimestampLast;
            // addition overflow is desired
            // counterfactual
            price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed;
            // counterfactual
            price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed;
        }
    }
}
          

/UniswapV2Library.sol

pragma solidity >=0.5.0;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

import "./SafeMath.sol";

library UniswapV2Library {
    using SafeMath for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
        }
    }
}
          

/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
          

/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}
          

/SafeMath.sol

pragma solidity =0.6.6;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}
          

/FixedPoint.sol

pragma solidity >=0.4.0;

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
library FixedPoint {
    // range: [0, 2**112 - 1]
    // resolution: 1 / 2**112
    struct uq112x112 {
        uint224 _x;
    }

    // range: [0, 2**144 - 1]
    // resolution: 1 / 2**112
    struct uq144x112 {
        uint _x;
    }

    uint8 private constant RESOLUTION = 112;

    // encode a uint112 as a UQ112x112
    function encode(uint112 x) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(x) << RESOLUTION);
    }

    // encodes a uint144 as a UQ144x112
    function encode144(uint144 x) internal pure returns (uq144x112 memory) {
        return uq144x112(uint256(x) << RESOLUTION);
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) {
        require(x != 0, 'FixedPoint: DIV_BY_ZERO');
        return uq112x112(self._x / uint224(x));
    }

    // multiply a UQ112x112 by a uint, returning a UQ144x112
    // reverts on overflow
    function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) {
        uint z;
        require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW");
        return uq144x112(z);
    }

    // returns a UQ112x112 which represents the ratio of the numerator to the denominator
    // equivalent to encode(numerator).div(denominator)
    function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) {
        require(denominator > 0, "FixedPoint: DIV_BY_ZERO");
        return uq112x112((uint224(numerator) << RESOLUTION) / denominator);
    }

    // decode a UQ112x112 into a uint112 by truncating after the radix point
    function decode(uq112x112 memory self) internal pure returns (uint112) {
        return uint112(self._x >> RESOLUTION);
    }

    // decode a UQ144x112 into a uint144 by truncating after the radix point
    function decode144(uq144x112 memory self) internal pure returns (uint144) {
        return uint144(self._x >> RESOLUTION);
    }
}
          

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"/Users/kroll/Dev/LinkDeployment1/contracts/LinkswapPriceOracle.sol":"LinkswapPriceOracle"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_factory","internalType":"address"},{"type":"address","name":"_linkToken","internalType":"address"},{"type":"address","name":"_wethToken","internalType":"address"},{"type":"address","name":"_yflToken","internalType":"address"},{"type":"address","name":"_linkUsdChainlinkOracle","internalType":"address"},{"type":"address","name":"_wethUsdChainlinkOracle","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"PERIOD","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"blockTimestampLast","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateTokenAmountFromUsdAmount","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"usdAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateUsdAmountFromTokenAmount","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"tokenAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"}],"name":"consult","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"amountIn","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"factory","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"linkToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"linkUsdChainlinkOracle","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint224","name":"_x","internalType":"uint224"}],"name":"price0Average","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"price0CumulativeLast","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint224","name":"_x","internalType":"uint224"}],"name":"price1Average","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"price1CumulativeLast","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"token0","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"token1","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"update","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"wethToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"wethUsdChainlinkOracle","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"yflToken","inputs":[]}]
              

Contract Creation Code

0x6101a06040523480156200001257600080fd5b50604051620017be380380620017be833981810160405260c08110156200003857600080fd5b508051602082015160408301516060840151608085015160a09095015193949293919290916001600160a01b038616158015906200007e57506001600160a01b03851615155b80156200009357506001600160a01b03841615155b8015620000a857506001600160a01b03831615155b8015620000bd57506001600160a01b03821615155b8015620000d257506001600160a01b03811615155b6200010f5760405162461bcd60e51b81526004018080602001828103825260218152602001806200179d6021913960400191505060405180910390fd5b606086811b6001600160601b031990811660805286821b811660a05285821b811660c05284821b811660e05283821b8116610100529082901b166101205260006200016887868662000373602090811b62000ef817901c565b9050806001600160a01b0316610140816001600160a01b031660601b81525050806001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c257600080fd5b505afa158015620001d7573d6000803e3d6000fd5b505050506040513d6020811015620001ee57600080fd5b505160601b6001600160601b031916610160526040805163d21220a760e01b815290516001600160a01b0383169163d21220a7916004808301926020929190829003018186803b1580156200024257600080fd5b505afa15801562000257573d6000803e3d6000fd5b505050506040513d60208110156200026e57600080fd5b505160601b6001600160601b0319166101805260408051635909c0d560e01b815290516001600160a01b03831691635909c0d5916004808301926020929190829003018186803b158015620002c257600080fd5b505afa158015620002d7573d6000803e3d6000fd5b505050506040513d6020811015620002ee57600080fd5b505160005560408051635a3d549360e01b815290516001600160a01b03831691635a3d5493916004808301926020929190829003018186803b1580156200033457600080fd5b505afa15801562000349573d6000803e3d6000fd5b505050506040513d60208110156200036057600080fd5b5051600155506200053395505050505050565b600080806200038c85856001600160e01b036200045016565b604080516001600160601b0319606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b03161415620004a65760405162461bcd60e51b8152600401808060200182810382526025815260200180620017786025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b031610620004c8578284620004cb565b83835b90925090506001600160a01b0382166200052c576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b9250929050565b60805160601c60a05160601c60c05160601c60e05160601c6101005160601c6101205160601c6101405160601c6101605160601c6101805160601c611181620005f7600039806103685280610b405250806102a252806102ec5250806109d552508061027e528061057d52806106c652806108f95250806102c652806104b7528061083352508061068a5280610b1c525080610417528061054352806107c752806108bf52508061043b528061047d52806107f9525080610aec52506111816000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063750c450d116100a2578063b4d1d79511610071578063b4d1d7951461023b578063c45a015514610243578063c5700a021461024b578063d00e99181461026c578063d21220a71461027457610116565b8063750c450d146101d1578063790047a8146101fd578063a2e6204514610229578063a6bb45391461023357610116565b80634b57b0be116100e95780634b57b0be1461018d57806357970e93146101955780635909c0d51461019d5780635a3d5493146101a55780635e6aaf2c146101ad57610116565b8063079f6cf21461011b5780630dfe16811461013f57806313d10b04146101475780633ddac9531461014f575b600080fd5b61012361027c565b604080516001600160a01b039092168252519081900360200190f35b6101236102a0565b6101236102c4565b61017b6004803603604081101561016557600080fd5b506001600160a01b0381351690602001356102e8565b60408051918252519081900360200190f35b610123610415565b610123610439565b61017b61045d565b61017b610463565b6101b5610469565b604080516001600160e01b039092168252519081900360200190f35b61017b600480360360408110156101e757600080fd5b506001600160a01b038135169060200135610478565b61017b6004803603604081101561021357600080fd5b506001600160a01b038135169060200135610686565b6102316109cb565b005b6101b5610ad5565b61017b610ae4565b610123610aea565b610253610b0e565b6040805163ffffffff9092168252519081900360200190f35b610123610b1a565b610123610b3e565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156103665760408051602081019091526003546001600160e01b0316815261035690610351908463ffffffff610b6216565b610be0565b6001600160901b0316905061040f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316146103d65760405162461bcd60e51b81526004018080602001828103825260228152602001806111076022913960400191505060405180910390fd5b60408051602081019091526004546001600160e01b0316815261040390610351908463ffffffff610b6216565b6001600160901b031690505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005481565b60015481565b6004546001600160e01b031681565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161415610541577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561050e57600080fd5b505afa158015610522573d6000803e3d6000fd5b505050506040513d602081101561053857600080fd5b5051905061060b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156105d4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561050e57600080fd5b60405162461bcd60e51b81526004018080602001828103825260258152602001806110e26025913960400191505060405180910390fd5b60008113801561062257506001600160ff1b038113155b61065d5760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b670de0b6b3a7640000610676848363ffffffff610be716565b8161067d57fe5b04949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156107f55760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561071d57600080fd5b505afa158015610731573d6000803e3d6000fd5b505050506040513d602081101561074757600080fd5b5051905060008113801561076257506001600160ff1b038113155b61079d5760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b6000816107b885670de0b6b3a764000063ffffffff610be716565b816107bf57fe5b0490506107ec7f0000000000000000000000000000000000000000000000000000000000000000826102e8565b9250505061040f565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156108bd577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561088a57600080fd5b505afa15801561089e573d6000803e3d6000fd5b505050506040513d60208110156108b457600080fd5b50519050610950565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156105d4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561088a57600080fd5b60008113801561096757506001600160ff1b038113155b6109a25760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b806109bb84670de0b6b3a764000063ffffffff610be716565b816109c257fe5b0491505061040f565b60008060006109f97f0000000000000000000000000000000000000000000000000000000000000000610c4a565b600254929550909350915063ffffffff9081168203906138409082161015610a245750505050610ad3565b60405180602001604052808263ffffffff16600054870381610a4257fe5b046001600160e01b039081169091529051600380546001600160e01b031916919092161790556040805160208101909152600154819063ffffffff841690860381610a8957fe5b046001600160e01b039081169091529051600480546001600160e01b03191691909216179055506000929092556001556002805463ffffffff191663ffffffff9092169190911790555b565b6003546001600160e01b031681565b61384081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025463ffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b610b6a610ed3565b6000821580610b9057505082516001600160e01b031682810290838281610b8d57fe5b04145b610bcb5760405162461bcd60e51b81526004018080602001828103825260238152602001806111296023913960400191505060405180910390fd5b60408051602081019091529081529392505050565b5160701c90565b6000811580610c0257505080820282828281610bff57fe5b04145b61040f576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b6000806000610c57610e19565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9257600080fd5b505afa158015610ca6573d6000803e3d6000fd5b505050506040513d6020811015610cbc57600080fd5b505160408051635a3d549360e01b815290519194506001600160a01b03861691635a3d549391600480820192602092909190829003018186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d6020811015610d2c57600080fd5b505160408051630240bc6b60e21b81529051919350600091829182916001600160a01b03891691630902f1ac916004808301926060929190829003018186803b158015610d7857600080fd5b505afa158015610d8c573d6000803e3d6000fd5b505050506040513d6060811015610da257600080fd5b5080516020820151604090920151909450909250905063ffffffff80821690851614610e0f5780840363ffffffff8116610ddc8486610e23565b516001600160e01b031602969096019563ffffffff8116610dfd8585610e23565b516001600160e01b0316029590950194505b5050509193909250565b63ffffffff421690565b610e2b610ee6565b6000826001600160701b031611610e89576040805162461bcd60e51b815260206004820152601760248201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604482015290519081900360640190fd5b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681610ebe57fe5b046001600160e01b0316815250905092915050565b6040518060200160405280600081525090565b60408051602081019091526000815290565b6000806000610f078585610fb8565b604080516bffffffffffffffffffffffff19606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501206001600160f81b031960688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b0316141561100c5760405162461bcd60e51b81526004018080602001828103825260258152602001806110bd6025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b03161061102c57828461102f565b83835b90925090506001600160a01b03821661108f576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b925092905056fe4c696e6b7377617050726963654f7261636c653a20494e56414c49445f5553445f5052494345556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c696e6b7377617050726963654f7261636c653a20554e45585045435445445f544f4b454e4c696e6b7377617050726963654f7261636c653a20494e56414c49445f544f4b454e4669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f57a26469706673582212207cec92ba7c873d4eb795ad5bb76d5dfe6f9fd3aeb664dc8cf8bffd6e772c01ef64736f6c63430006060033556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c696e6b7377617050726963654f7261636c653a205a45524f5f414444524553530000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be00000000000000000000000032dbd3214ac75223e27e575c53944307914f7a90000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063750c450d116100a2578063b4d1d79511610071578063b4d1d7951461023b578063c45a015514610243578063c5700a021461024b578063d00e99181461026c578063d21220a71461027457610116565b8063750c450d146101d1578063790047a8146101fd578063a2e6204514610229578063a6bb45391461023357610116565b80634b57b0be116100e95780634b57b0be1461018d57806357970e93146101955780635909c0d51461019d5780635a3d5493146101a55780635e6aaf2c146101ad57610116565b8063079f6cf21461011b5780630dfe16811461013f57806313d10b04146101475780633ddac9531461014f575b600080fd5b61012361027c565b604080516001600160a01b039092168252519081900360200190f35b6101236102a0565b6101236102c4565b61017b6004803603604081101561016557600080fd5b506001600160a01b0381351690602001356102e8565b60408051918252519081900360200190f35b610123610415565b610123610439565b61017b61045d565b61017b610463565b6101b5610469565b604080516001600160e01b039092168252519081900360200190f35b61017b600480360360408110156101e757600080fd5b506001600160a01b038135169060200135610478565b61017b6004803603604081101561021357600080fd5b506001600160a01b038135169060200135610686565b6102316109cb565b005b6101b5610ad5565b61017b610ae4565b610123610aea565b610253610b0e565b6040805163ffffffff9092168252519081900360200190f35b610123610b1a565b610123610b3e565b7f000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f81565b7f00000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be81565b7f00000000000000000000000032dbd3214ac75223e27e575c53944307914f7a9081565b60007f00000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be6001600160a01b0316836001600160a01b031614156103665760408051602081019091526003546001600160e01b0316815261035690610351908463ffffffff610b6216565b610be0565b6001600160901b0316905061040f565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316836001600160a01b0316146103d65760405162461bcd60e51b81526004018080602001828103825260228152602001806111076022913960400191505060405180910390fd5b60408051602081019091526004546001600160e01b0316815261040390610351908463ffffffff610b6216565b6001600160901b031690505b92915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b7f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca81565b60005481565b60015481565b6004546001600160e01b031681565b6000807f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316846001600160a01b03161415610541577f00000000000000000000000032dbd3214ac75223e27e575c53944307914f7a906001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561050e57600080fd5b505afa158015610522573d6000803e3d6000fd5b505050506040513d602081101561053857600080fd5b5051905061060b565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316846001600160a01b031614156105d4577f000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f6001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561050e57600080fd5b60405162461bcd60e51b81526004018080602001828103825260258152602001806110e26025913960400191505060405180910390fd5b60008113801561062257506001600160ff1b038113155b61065d5760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b670de0b6b3a7640000610676848363ffffffff610be716565b8161067d57fe5b04949350505050565b60007f00000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be6001600160a01b0316836001600160a01b031614156107f55760007f000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f6001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561071d57600080fd5b505afa158015610731573d6000803e3d6000fd5b505050506040513d602081101561074757600080fd5b5051905060008113801561076257506001600160ff1b038113155b61079d5760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b6000816107b885670de0b6b3a764000063ffffffff610be716565b816107bf57fe5b0490506107ec7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2826102e8565b9250505061040f565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316846001600160a01b031614156108bd577f00000000000000000000000032dbd3214ac75223e27e575c53944307914f7a906001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561088a57600080fd5b505afa15801561089e573d6000803e3d6000fd5b505050506040513d60208110156108b457600080fd5b50519050610950565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316846001600160a01b031614156105d4577f000000000000000000000000f79d6afbb6da890132f9d7c355e3015f15f3406f6001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561088a57600080fd5b60008113801561096757506001600160ff1b038113155b6109a25760405162461bcd60e51b81526004018080602001828103825260268152602001806110976026913960400191505060405180910390fd5b806109bb84670de0b6b3a764000063ffffffff610be716565b816109c257fe5b0491505061040f565b60008060006109f97f0000000000000000000000001d6432aefeae2c0ff1393120541863822a4e6fa7610c4a565b600254929550909350915063ffffffff9081168203906138409082161015610a245750505050610ad3565b60405180602001604052808263ffffffff16600054870381610a4257fe5b046001600160e01b039081169091529051600380546001600160e01b031916919092161790556040805160208101909152600154819063ffffffff841690860381610a8957fe5b046001600160e01b039081169091529051600480546001600160e01b03191691909216179055506000929092556001556002805463ffffffff191663ffffffff9092169190911790555b565b6003546001600160e01b031681565b61384081565b7f0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60025463ffffffff1681565b7f00000000000000000000000028cb7e841ee97947a86b06fa4090c8451f64c0be81565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610b6a610ed3565b6000821580610b9057505082516001600160e01b031682810290838281610b8d57fe5b04145b610bcb5760405162461bcd60e51b81526004018080602001828103825260238152602001806111296023913960400191505060405180910390fd5b60408051602081019091529081529392505050565b5160701c90565b6000811580610c0257505080820282828281610bff57fe5b04145b61040f576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b6000806000610c57610e19565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9257600080fd5b505afa158015610ca6573d6000803e3d6000fd5b505050506040513d6020811015610cbc57600080fd5b505160408051635a3d549360e01b815290519194506001600160a01b03861691635a3d549391600480820192602092909190829003018186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d6020811015610d2c57600080fd5b505160408051630240bc6b60e21b81529051919350600091829182916001600160a01b03891691630902f1ac916004808301926060929190829003018186803b158015610d7857600080fd5b505afa158015610d8c573d6000803e3d6000fd5b505050506040513d6060811015610da257600080fd5b5080516020820151604090920151909450909250905063ffffffff80821690851614610e0f5780840363ffffffff8116610ddc8486610e23565b516001600160e01b031602969096019563ffffffff8116610dfd8585610e23565b516001600160e01b0316029590950194505b5050509193909250565b63ffffffff421690565b610e2b610ee6565b6000826001600160701b031611610e89576040805162461bcd60e51b815260206004820152601760248201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604482015290519081900360640190fd5b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681610ebe57fe5b046001600160e01b0316815250905092915050565b6040518060200160405280600081525090565b60408051602081019091526000815290565b6000806000610f078585610fb8565b604080516bffffffffffffffffffffffff19606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501206001600160f81b031960688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b0316141561100c5760405162461bcd60e51b81526004018080602001828103825260258152602001806110bd6025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b03161061102c57828461102f565b83835b90925090506001600160a01b03821661108f576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b925092905056fe4c696e6b7377617050726963654f7261636c653a20494e56414c49445f5553445f5052494345556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c696e6b7377617050726963654f7261636c653a20554e45585045435445445f544f4b454e4c696e6b7377617050726963654f7261636c653a20494e56414c49445f544f4b454e4669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f57a26469706673582212207cec92ba7c873d4eb795ad5bb76d5dfe6f9fd3aeb664dc8cf8bffd6e772c01ef64736f6c63430006060033