ETH Price: $3,363.77 (+0.04%)
Gas: 4.36 Gwei

Contract

0x6B419752c453D0B83bc1B465077043347cb3C576
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...188034122023-12-17 4:35:47378 days ago1702787747IN
0x6B419752...47cb3C576
0 ETH0.0013854428.79034734

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197273662024-04-24 19:38:47248 days ago1713987527
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
197090612024-04-22 6:10:47251 days ago1713766247
0x6B419752...47cb3C576
0 ETH
194984412024-03-23 16:18:35280 days ago1711210715
0x6B419752...47cb3C576
0 ETH
194984412024-03-23 16:18:35280 days ago1711210715
0x6B419752...47cb3C576
0 ETH
194984412024-03-23 16:18:35280 days ago1711210715
0x6B419752...47cb3C576
0 ETH
194984412024-03-23 16:18:35280 days ago1711210715
0x6B419752...47cb3C576
0 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
IBFFBorrowerCurveLPv2

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license
File 1 of 12 : IBFFBorrowerCurveLPv2.sol
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;

import {IERC20, SafeERC20} from "@openzeppelin/[email protected]/token/ERC20/utils/SafeERC20.sol";
import {Ownable2Step} from "@openzeppelin/[email protected]/access/Ownable2Step.sol";

// import our needed interfaces
import "./interfaces/IChainlink.sol";
import "./interfaces/IConvex.sol";
import "./interfaces/ICurve.sol";
import "./interfaces/IIronBank.sol";

/**
 * @title Iron Bank Fixed Forex Borrower
 * @notice Contract for borrowing fixed forex tokens uncollateralized from Iron Bank and supplying them as liquidity to
 *  Curve/Convex.
 * @dev Only profit may be swept out by owner, and Iron Bank multisig can claw back all funds and repay borrows at any
 *  time. Contract framework can easily be forked to supply liquidity to any markets (Curve, Uniswap, etc.) as needed.
 */
contract IBFFBorrowerCurveLPv2 is Ownable2Step {
    using SafeERC20 for IERC20;

    struct Forex {
        string name;
        uint256 pid;
        address underlying;
        address synth;
        address cyToken;
        address curveLpToken;
        address curvePool;
        address rewardsContract;
        uint256 borrowLimit;
        uint256 borrowAmountStored;
        uint256 chainlinkUint;
        bytes32 currencyKey;
    }

    /* ========== STATE VARIABLES ========== */

    /// @notice Used to track the deployed version of this contract.
    string public constant apiVersion = "0.2.0";

    // use this to allow repaying v1 borrower debt to transfer debt over to this contract
    address public constant V1_BORROWER =
        0x9A97664f3aBA3d6De05099b513a854D838c99Db6;

    /// @notice Iron Bank multisig, can call specific permissioned functions
    address public constant ironBankMultisig =
        0x9d960dAe0639C95a0C822C9d7769d19d30A430Aa;

    // tokens
    IERC20 internal constant crv =
        IERC20(0xD533a949740bb3306d119CC777fa900bA034cd52);
    IERC20 internal constant cvx =
        IERC20(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B);

    // other infra contracts
    address internal constant depositContract =
        0xF403C135812408BFbE8713b5A23a04b3D48AAE31;
    IChainlink internal constant feedRegistry =
        IChainlink(0x47Fb2585D2C56Fe188D0E6ec628a38b74fCeeeDf);
    IIronBank internal constant unitroller =
        IIronBank(0xAB1c342C7bf5Ec5F02ADEA1c2270670bCa144CbB);
    IConvex internal constant zapContract =
        IConvex(0xDd49A93FDcae579AE50B4b9923325e9e335ec82B); // with this we can claim all rewards at once

    /**
     * @notice Boolean if we should always claim rewards when withdrawing.
     * @dev Generally this should be false as we only need to claim rewards on harvest().
     */
    bool public claimRewards;

    /// @notice Array of our rewards contracts, used to claim all rewards at once.
    address[] public rewardsContracts;

    /**
     * @notice Array of structs with all of the data on our markets.
     * @dev Keys: 0: ibEUR, 1: ibKRW, 2: ibCHF, 3: ibGBP, 4: ibEUR-USDC, 5: ibJPY, 6: ibAUD
     */
    mapping(uint256 => Forex) public forexInfo;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        string[] memory _names,
        uint256[] memory _pids,
        address[] memory _underlyingTokens,
        address[] memory _synths,
        address[] memory _cyTokens,
        address[] memory _curveLpTokens,
        address[] memory _curvePools,
        address[] memory _rewardsContracts,
        uint256[] memory _chainlinkUint,
        bytes32[] memory _currencyKeys
    ) {
        // setup almost everything in our struct
        for (uint256 i = 0; i < _pids.length; i++) {
            // set up our struct
            forexInfo[i] = Forex(
                _names[i],
                _pids[i],
                _underlyingTokens[i],
                _synths[i],
                _cyTokens[i],
                _curveLpTokens[i],
                _curvePools[i],
                _rewardsContracts[i],
                0,
                0,
                _chainlinkUint[i],
                _currencyKeys[i]
            );
        }

        // do approvals
        for (uint256 i = 0; i < _pids.length; i++) {
            uint256 _pid = _pids[i];
            (address _want, , , address _rewardsContract, , ) = IConvex(
                depositContract
            ).poolInfo(_pid);
            require(_want == _curveLpTokens[i], "Underlying array incorrect");
            require(
                _rewardsContract == _rewardsContracts[i],
                "Rewards array incorrect"
            );

            IERC20(_want).approve(depositContract, type(uint256).max);

            // approve depositing our token into the pool, for repaying our borrows, and for swaps
            IERC20(_underlyingTokens[i]).approve(
                _curvePools[i],
                type(uint256).max
            );

            // don't want to do these approvals again for ibEUR-USDC
            if (_pid != 86) {
                IERC20(_synths[i]).approve(_curvePools[i], type(uint256).max);
                IERC20(_underlyingTokens[i]).approve(
                    _cyTokens[i],
                    type(uint256).max
                );
            } else {
                // approve ibEUR-USDC LP on pool
                IERC20(_curveLpTokens[i]).approve(
                    _curvePools[i],
                    type(uint256).max
                );
            }
        }

        // setup our rewardsContracts array
        rewardsContracts = _rewardsContracts;
    }

    /* ========== MODIFIERS ========== */

    modifier onlyIronBank() {
        _onlyIronBank();
        _;
    }

    function _onlyIronBank() internal view {
        require(msg.sender == ironBankMultisig, "Must be Iron Bank");
    }

    /* ========== VIEWS ========== */

    function name() external pure returns (string memory) {
        return "IronBankBorrowerV2";
    }

    /**
     * @notice How much of an LP we have staked in Convex.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function stakedBalance(uint256 _forexKey) public view returns (uint256) {
        IConvex rewardsContract = IConvex(forexInfo[_forexKey].rewardsContract);
        return rewardsContract.balanceOf(address(this));
    }

    /**
     * @notice How much we can borrow of an asset in USD.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function creditLimit(uint256 _forexKey) public view returns (uint256) {
        return
            unitroller.creditLimits(
                address(this),
                forexInfo[_forexKey].cyToken
            );
    }

    /**
     * @notice How much CRV we can claim from the staking contract for a given pool.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function claimableBalance(uint256 _forexKey) public view returns (uint256) {
        IConvex rewardsContract = IConvex(forexInfo[_forexKey].rewardsContract);
        return rewardsContract.earned(address(this));
    }

    /**
     * @notice Whether our we can safely unwind our borrow with rewards
     * @dev Note that this uses the stored value, for current values call cyToken.borrowBalanceCurrent(address(this)).
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function canRepayBorrowStored(uint256 _forexKey)
        public
        view
        returns (bool)
    {
        return
            claimableProfitInUsdc(_forexKey) +
                forceWithdrawValueInUsdc(_forexKey) >
            borrowedValueInUsdc(_forexKey);
    }

    /**
     * @notice Value of our borrowed assets in USDC.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function borrowedValueInUsdc(uint256 _forexKey)
        public
        view
        returns (uint256 borrowedValue)
    {
        // check how much we have borrowed
        IIronBank cyToken = IIronBank(forexInfo[_forexKey].cyToken);
        borrowedValue =
            (cyToken.borrowBalanceStored(address(this)) *
                usdcPerForex(_forexKey)) /
            1e20; // 1e18 * 1e8 = 1e26
    }

    /**
     * @notice Value of our holdings if we unwind completely to our ibXYZ token.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function forceWithdrawValueInUsdc(uint256 _forexKey)
        public
        view
        returns (uint256 assetsValue)
    {
        // check for any starting balance of underlying
        IERC20 underlying = IERC20(forexInfo[_forexKey].underlying);
        uint256 looseAssets = underlying.balanceOf(address(this));
        uint256 totalAssets;
        uint256 poolAssets;
        uint256 stakedAssets;

        // check our forex per usdc
        uint256 _usdcPerForex = usdcPerForex(_forexKey);

        // we use ibEUR for two pools
        if (_forexKey == 0 || _forexKey == 4) {
            // simulate how much we would get out
            stakedAssets = stakedBalance(0);
            if (stakedAssets > 0) {
                ICurveFi curvePool = ICurveFi(forexInfo[0].curvePool);
                poolAssets = curvePool.calc_withdraw_one_coin(
                    stakedBalance(0),
                    0
                );
            }
            totalAssets = poolAssets + looseAssets;
            poolAssets = 0;

            stakedAssets = stakedBalance(4);
            if (stakedAssets > 0) {
                ICurveFiPool curvePool = ICurveFiPool(forexInfo[4].curvePool);
                poolAssets = curvePool.calc_withdraw_one_coin(
                    stakedBalance(4),
                    0
                );
            }
            totalAssets = totalAssets + poolAssets;
        } else {
            // simulate how much we would get out
            stakedAssets = stakedBalance(_forexKey);
            if (stakedAssets > 0) {
                ICurveFi curvePool = ICurveFi(forexInfo[_forexKey].curvePool);
                poolAssets = curvePool.calc_withdraw_one_coin(
                    stakedBalance(_forexKey),
                    0
                );
            }
            totalAssets = poolAssets + looseAssets;
        }

        assetsValue = (totalAssets * _usdcPerForex) / 1e20; // 1e18 * 1e8 = 1e26
    }

    /**
     * @notice Value of our holdings if we remove our LPs balanced from Curve, assuming 1 ibXYZ = 1 sXYZ = spot oracle price.
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function holdingsValueInUsdc(uint256 _forexKey)
        public
        view
        returns (uint256 assetsValue)
    {
        // check for any starting balance of underlying, no reason for us to ever have loose synth balances
        IERC20 underlying = IERC20(forexInfo[_forexKey].underlying);
        uint256 looseAssets = underlying.balanceOf(address(this));
        uint256 totalAssets;
        uint256 poolAssets;
        uint256 stakedAssets;

        // check our forex per usdc
        uint256 _usdcPerForex = usdcPerForex(_forexKey);

        // we use ibEUR for two pools
        if (_forexKey == 0 || _forexKey == 4) {
            // simulate how much we would get out
            stakedAssets = stakedBalance(0);
            if (stakedAssets > 0) {
                ICurveFi curvePool = ICurveFi(forexInfo[0].curvePool);
                poolAssets =
                    (curvePool.balances(0) * stakedAssets) /
                    curvePool.totalSupply();
                poolAssets +=
                    (curvePool.balances(1) * stakedAssets) /
                    curvePool.totalSupply();
            }
            totalAssets = poolAssets + looseAssets;
            poolAssets = 0;

            stakedAssets = stakedBalance(4);
            if (stakedAssets > 0) {
                ICurveFiPool curvePool = ICurveFiPool(forexInfo[4].curvePool);
                IERC20 curveLp = ICurveFiPool(forexInfo[4].curveLpToken);
                poolAssets =
                    (curvePool.balances(0) * stakedAssets) /
                    curveLp.totalSupply();
                assetsValue =
                    (curvePool.balances(1) * stakedAssets) /
                    curveLp.totalSupply();
            }
            totalAssets = totalAssets + poolAssets;
        } else {
            // simulate how much we would get out
            stakedAssets = stakedBalance(_forexKey);
            if (stakedAssets > 0) {
                ICurveFi curvePool = ICurveFi(forexInfo[_forexKey].curvePool);
                poolAssets =
                    (curvePool.balances(0) * stakedAssets) /
                    curvePool.totalSupply();
                poolAssets +=
                    (curvePool.balances(1) * stakedAssets) /
                    curvePool.totalSupply();
            }
            totalAssets = poolAssets + looseAssets;
        }

        assetsValue += (totalAssets * _usdcPerForex) / 1e20; // 1e18 * 1e8 = 1e26
    }

    /**
     * @notice The value in dollars that our claimable rewards are worth (in USDC, 6 decimals).
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function claimableProfitInUsdc(uint256 _forexKey)
        public
        view
        returns (uint256)
    {
        // calculations pulled directly from CVX's contract for minting CVX per CRV claimed
        uint256 totalCliffs = 1_000;
        uint256 maxSupply = 100 * 1_000_000 * 1e18; // 100mil
        uint256 reductionPerCliff = 100_000 * 1e18; // 100,000
        uint256 supply = cvx.totalSupply();
        uint256 mintableCvx;

        uint256 cliff = supply / reductionPerCliff;
        uint256 _claimableBal = claimableBalance(_forexKey);
        //mint if below total cliffs
        if (cliff < totalCliffs) {
            //for reduction% take inverse of current cliff
            uint256 reduction = totalCliffs - cliff;
            //reduce
            mintableCvx = (_claimableBal * reduction) / totalCliffs;

            //supply cap check
            uint256 amtTillMax = maxSupply - supply;
            if (mintableCvx > amtTillMax) {
                mintableCvx = amtTillMax;
            }
        }

        // our chainlink oracle returns prices normalized to 8 decimals, we convert it to 6
        uint256 crvPrice = feedRegistry.latestAnswer(
            address(crv),
            address(840)
        ) / 1e2; // ETH, USD. 1e8 div 1e2 = 1e6

        uint256 cvxPrice = feedRegistry.latestAnswer(
            address(cvx),
            address(840)
        ) / 1e2; // ETH, USD. 1e8 div 1e2 = 1e6

        uint256 crvValue = (crvPrice * _claimableBal) / 1e18; // 1e6 mul 1e18 div 1e18 = 1e6
        uint256 cvxValue = (cvxPrice * mintableCvx) / 1e18; // 1e6 mul 1e18 div 1e18 = 1e6

        return crvValue + cvxValue;
    }

    /**
     * @notice Convert 1 token to base USDC using chainlink oracles.
     * @dev Returns with 8 decimals
     * @param _forexKey Key in our forexInfo struct to use.
     */
    function usdcPerForex(uint256 _forexKey) public view returns (uint256) {
        // feed registry output is 8 decimals. in solidity 0.8.0+, must cast to uint160 BEFORE address
        uint256 _usdcPerForex = feedRegistry.latestAnswer(
            address(uint160(forexInfo[_forexKey].chainlinkUint)),
            address(840)
        );

        return _usdcPerForex;
    }

    /* ========== V1 -> V2 MIGRATION FUNCTIONS ========== */

    /**
     * @notice Repay borrows on our v1 borrower. Used to transfer debt from v1 to v2.
     * @dev May only be called by owner. This should be called in a multisend with a repayBorrow call in v1.
     * @param _forexKey Key in our forexInfo struct to use (asset to repay).
     * @param _amount Amount to repay.
     */
    function transferToRepayBorrowV1(uint256 _forexKey, uint256 _amount)
        external
        onlyOwner
        returns (uint256 totalTransferred)
    {
        IIronBank cyToken = IIronBank(forexInfo[_forexKey].cyToken);
        IERC20 underlying = IERC20(forexInfo[_forexKey].underlying);

        // repay the amount we input, or everything if we do 0
        if (_amount > 0) {
            underlying.transfer(V1_BORROWER, _amount);
            totalTransferred = _amount;
        } else {
            // repay max
            totalTransferred = cyToken.borrowBalanceCurrent(V1_BORROWER);
            underlying.transfer(V1_BORROWER, totalTransferred);
        }
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    /**
     * @notice Borrow using our credit line.
     * @dev May only be called by owner.
     * @param _forexKey Key in our forexInfo struct to use (asset to borrow).
     * @param _amount Amount to borrow.
     */
    function borrow(uint256 _forexKey, uint256 _amount) external onlyOwner {
        IIronBank cyToken = IIronBank(forexInfo[_forexKey].cyToken);
        cyToken.borrow(_amount);

        // update our borrow limit and balance for this token
        forexInfo[_forexKey].borrowLimit = creditLimit(_forexKey);
        forexInfo[_forexKey].borrowAmountStored = cyToken.borrowBalanceStored(
            address(this)
        );
    }

    /**
     * @notice Repay borrow for an asset.
     * @dev May only be called by owner.
     * @param _forexKey Key in our forexInfo struct to use (asset to repay).
     * @param _amount Amount to repay.
     */
    function repayBorrow(uint256 _forexKey, uint256 _amount)
        external
        onlyOwner
    {
        _repayBorrow(_forexKey, _amount);
    }

    function _repayBorrow(uint256 _forexKey, uint256 _amount) internal {
        IIronBank cyToken = IIronBank(forexInfo[_forexKey].cyToken);

        // repay the amount we input, or everything if we do 0
        if (_amount > 0) {
            cyToken.repayBorrow(_amount);
        } else {
            // repay max
            cyToken.repayBorrow(type(uint256).max);
        }

        // update our borrow limit and balance for this token
        forexInfo[_forexKey].borrowLimit = creditLimit(_forexKey);
        forexInfo[_forexKey].borrowAmountStored = cyToken.borrowBalanceStored(
            address(this)
        );
    }

    /**
     * @notice Deposit held ibToken to a Curve pool and stake it in Convex.
     * @dev May only be called by owner. If needed, can use this to add more sXYZ to our LP holdings by externally
     *  minting more LP via the synth, then sending it directly here to be staked.
     * @param _forexKey Key in our forexInfo struct to use (asset to LP).
     * @param _forexAmount Amount to deposit to Curve LP.
     * @param _minAmountOut Min amount of LP expected from ibToken, set this to avoid 🥪.
     */
    function deposit(
        uint256 _forexKey,
        uint256 _forexAmount,
        uint256 _minAmountOut
    ) external onlyOwner {
        require(_minAmountOut > 0, "Set _minAmountOut");

        // check for balances of tokens to deposit
        uint256 ibTokenBalance = IERC20(forexInfo[_forexKey].underlying)
            .balanceOf(address(this));

        if (ibTokenBalance > 0) {
            ICurveFi curvePool = ICurveFi(forexInfo[_forexKey].curvePool);
            curvePool.add_liquidity([_forexAmount, 0], _minAmountOut);
        }

        // Send all of our Curve pool tokens to be deposited
        ICurveFi curveLpToken = ICurveFi(forexInfo[_forexKey].curveLpToken);
        uint256 _toInvest = curveLpToken.balanceOf(address(this));

        // deposit into convex and stake immediately (but only if we have something to invest)
        if (_toInvest > 0) {
            uint256 pid = forexInfo[_forexKey].pid;
            IConvex(depositContract).deposit(pid, _toInvest, true);
        }
    }

    /**
     * @notice Claim and sweep out CRV and CVX to owner address.
     * @dev May only be called by owner.
     */
    function harvestAndSweep() external onlyOwner {
        _harvest();
        _sweepRewards();
    }

    /**
     * @notice Claim rewards (likely only CVX and CRV). Rewards are not sold but may be swept out later.
     * @dev May only be called by owner.
     */
    function harvest() external onlyOwner {
        _harvest();
    }

    function _harvest() internal {
        // this claims our CRV, CVX, and any extra tokens for all pools we are staked in
        address[] memory empty;
        zapContract.claimRewards(
            rewardsContracts,
            empty,
            empty,
            empty,
            0,
            0,
            0,
            0,
            0
        );
    }

    /**
     * @notice Sweep out all CRV and CVX (profit).
     * @dev May only be called by owner.
     */
    function sweepRewards() external onlyOwner {
        _sweepRewards();
    }

    function _sweepRewards() internal {
        uint256 crvBalance = crv.balanceOf(address(this));
        if (crvBalance > 0) {
            crv.transfer(owner(), crvBalance);
        }

        uint256 cvxBalance = cvx.balanceOf(address(this));
        if (cvxBalance > 0) {
            cvx.transfer(owner(), cvxBalance);
        }
    }

    /**
     * @notice Manually withdraw some of our Convex LP to our forex token.
     * @dev May only be called by owner.
     * @param _amountToUnstake Amount of Convex LP to unstake and withdraw from.
     * @param _forexKey Key in our forexInfo struct to use (LP to exit from).
     * @param _minAmountOut Min amount of ibToken expected from LP, set this to avoid 🥪.
     */
    function withdrawToForex(
        uint256 _amountToUnstake,
        uint256 _forexKey,
        uint256 _minAmountOut
    ) external onlyOwner {
        _withdrawToForex(_amountToUnstake, _forexKey, _minAmountOut);
    }

    /**
     * @notice Manually withdraw all of our staked Convex LP to our forex token.
     * @dev May only be called by owner.
     * @param _forexKey Key in our forexInfo struct to use (LP to exit from).
     * @param _minAmountOut Min amount of ibToken expected from LP, set this to avoid 🥪.
     */
    function withdrawToForexMax(uint256 _forexKey, uint256 _minAmountOut)
        external
        onlyOwner
    {
        _withdrawToForex(type(uint256).max, _forexKey, _minAmountOut);
    }

    function _withdrawToForex(
        uint256 _amountToUnstake,
        uint256 _forexKey,
        uint256 _minAmountOut
    ) internal {
        require(_minAmountOut > 0, "Set _minAmountOut");
        uint256 _stakedBal = stakedBalance(_forexKey);
        if (_amountToUnstake >= _stakedBal) {
            _amountToUnstake = _stakedBal;
        }

        if (_stakedBal > 0 && _amountToUnstake > 0) {
            IConvex rewardsContract = IConvex(
                forexInfo[_forexKey].rewardsContract
            );
            rewardsContract.withdrawAndUnwrap(_amountToUnstake, claimRewards);
        }

        ICurveFi curveLpToken = ICurveFi(forexInfo[_forexKey].curveLpToken);
        ICurveFi curvePool = ICurveFi(forexInfo[_forexKey].curvePool);
        uint256 toWithdraw = curveLpToken.balanceOf(address(this));

        if (toWithdraw > 0) {
            // ibEUR-USDC pool has slightly different interface
            if (_forexKey == 4) {
                curvePool.remove_liquidity_one_coin(
                    toWithdraw,
                    0,
                    _minAmountOut,
                    true
                );
            } else {
                curvePool.remove_liquidity_one_coin(
                    toWithdraw,
                    0,
                    _minAmountOut
                );
            }
        }
    }

    /* ========== IRON BANK ONLY ========== */

    /**
     * @notice Manually force a harvest() call.
     * @dev May only be called by Iron Bank Multisig.
     */
    function forceHarvest() external onlyIronBank {
        _harvest();
    }

    /**
     * @notice Manually force a withdrawToForex() call.
     * @dev May only be called by Iron Bank Multisig.
     */
    function forceWithdrawToForex(uint256 _forexKey, uint256 _minAmountOut)
        external
        onlyIronBank
    {
        _withdrawToForex(type(uint256).max, _forexKey, _minAmountOut);
    }

    /**
     * @notice Manually force a repayBorrow() call.
     * @dev May only be called by Iron Bank Multisig.
     */
    function forceRepayBorrow(uint256 _forexKey, uint256 _amount)
        external
        onlyIronBank
    {
        _repayBorrow(_forexKey, _amount);
    }

    /**
     * @notice Manually withdraw all assets from Convex, sell any profits, repay borrows, and/or sweep out anything else
     *  we want.
     * @dev SEND WITH FLASHBOTS. May only be called by Iron Bank Multisig. This assumes we have enough assets to fully
     *  repay borrow for a given market. Check canRepayBorrowStored() after calling borrowBalanceCurrent() on the
     *  cyToken to confirm that a borrow can be fully repaid. If for some reason we can't repay (if pools are depegged)
     *  then best to just withdraw and sweep out the curve LPs.
     * @param _keys Array of keys to exit, sell profits, and/or repay borrows.
     * @param _withdrawFromConvex Boolean for if we only want to withdraw from convex so we can sweep out the curve LPs.
     * @param _tokensToRug Addresses of any tokens to sweep out (LP tokens, CVX, CRV, etc.).
     */
    function forceCloseMax(
        uint256[] memory _keys,
        bool _withdrawFromConvex,
        address[] memory _tokensToRug
    ) external onlyIronBank {
        // make sure we claim our rewards
        claimRewards = true;

        // unstake everything from Convex but leave as Curve LP tokens and don't repay
        if (_withdrawFromConvex) {
            for (uint256 i = 0; i < _keys.length; i++) {
                uint256 _forexKey = _keys[i];
                uint256 _stakedBal = stakedBalance(_forexKey);
                IConvex rewardsContract = IConvex(
                    forexInfo[_forexKey].rewardsContract
                );
                rewardsContract.withdrawAndUnwrap(_stakedBal, claimRewards);
            }
        } else {
            // withdraw everything from Convex and our LPs (single-sided), and repay outstanding borrows
            for (uint256 i = 0; i < _keys.length; i++) {
                uint256 _forexKey = _keys[i];

                // withdraw LP position to ibToken and repay
                _withdrawToForex(type(uint256).max, _forexKey, 1); // can't be zero
                _repayBorrow(_forexKey, 0);
            }
        }

        // sweep any tokens we want back to the Iron Bank multisig. if we want to sweep LPs, include them in our array.
        for (uint256 j = 0; j < _tokensToRug.length; j++) {
            IERC20 token = IERC20(_tokensToRug[j]);
            uint256 toTransfer = token.balanceOf(address(this));
            if (toTransfer > 0) {
                token.safeTransfer(ironBankMultisig, toTransfer);
            }
        }
    }

    // include so our contract plays nicely with ether
    receive() external payable {}

    /* ========== SETTERS ========== */

    /**
     * @notice Set whether we claim assets on withdrawal (usually no).
     * @dev May only be called by owner.
     * @param _claimRewards Whether or not we claim rewards on withdrawals.
     */
    function setClaimRewards(bool _claimRewards) external onlyOwner {
        claimRewards = _claimRewards;
    }
}

File 2 of 12 : IIronBank.sol
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;

import {IERC20} from "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";

interface IIronBank is IERC20 {
    // add borrow, repay, etc here
    function repayBorrow(uint256 repayAmount) external returns (uint256);

    function repayBorrowBehalf(address borrower, uint256 repayAmount)
        external
        returns (uint256);

    function borrow(uint256 borrowAmount) external returns (uint256);

    function creditLimits(address protocol, address market)
        external
        view
        returns (uint256);

    function borrowBalanceStored(address account)
        external
        view
        returns (uint256);

    function borrowBalanceCurrent(address account) external returns (uint256);
}

File 3 of 12 : ICurve.sol
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;

import {IERC20} from "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";

interface ICurveFi is IERC20 {
    function get_virtual_price() external view returns (uint256);

    function add_liquidity(
        // EURt
        uint256[2] calldata amounts,
        uint256 min_mint_amount
    ) external payable;

    function add_liquidity(
        // Compound, sAave
        uint256[2] calldata amounts,
        uint256 min_mint_amount,
        bool _use_underlying
    ) external payable returns (uint256);

    function add_liquidity(
        // Iron Bank, Aave
        uint256[3] calldata amounts,
        uint256 min_mint_amount,
        bool _use_underlying
    ) external payable returns (uint256);

    function add_liquidity(
        // 3Crv Metapools
        address pool,
        uint256[4] calldata amounts,
        uint256 min_mint_amount
    ) external;

    function add_liquidity(
        // Y and yBUSD
        uint256[4] calldata amounts,
        uint256 min_mint_amount,
        bool _use_underlying
    ) external payable returns (uint256);

    function add_liquidity(
        // 3pool
        uint256[3] calldata amounts,
        uint256 min_mint_amount
    ) external payable;

    function add_liquidity(
        // sUSD
        uint256[4] calldata amounts,
        uint256 min_mint_amount
    ) external payable;

    function remove_liquidity_imbalance(
        uint256[2] calldata amounts,
        uint256 max_burn_amount
    ) external;

    function remove_liquidity(uint256 _amount, uint256[2] calldata amounts)
        external;

    function remove_liquidity_one_coin(
        uint256 _token_amount,
        int128 i,
        uint256 min_amount
    ) external;

    function remove_liquidity_one_coin(
        uint256 _token_amount,
        uint256 i,
        uint256 min_amount,
        bool use_eth
    ) external;

    function exchange(
        // CRV-ETH and CVX-ETH
        uint256 from,
        uint256 to,
        uint256 _from_amount,
        uint256 _min_to_amount,
        bool use_eth
    ) external;

    function exchange(
        // sETH
        int128 from,
        int128 to,
        uint256 _from_amount,
        uint256 _min_to_amount
    ) external payable returns (uint256);

    function exchange_underlying(
        // sETH
        int128 from,
        int128 to,
        uint256 _from_amount,
        uint256 _min_to_amount
    ) external payable returns (uint256);

    function balances(uint256) external view returns (uint256);

    function price_oracle() external view returns (uint256);

    function get_dy(
        int128 from,
        int128 to,
        uint256 _from_amount
    ) external view returns (uint256);

    // EURt
    function calc_token_amount(uint256[2] calldata _amounts, bool _is_deposit)
        external
        view
        returns (uint256);

    // 3Crv Metapools
    function calc_token_amount(
        address _pool,
        uint256[4] calldata _amounts,
        bool _is_deposit
    ) external view returns (uint256);

    // sUSD, Y pool, etc
    function calc_token_amount(uint256[4] calldata _amounts, bool _is_deposit)
        external
        view
        returns (uint256);

    // 3pool, Iron Bank, etc
    function calc_token_amount(uint256[3] calldata _amounts, bool _is_deposit)
        external
        view
        returns (uint256);

    function calc_withdraw_one_coin(uint256 amount, int128 i)
        external
        view
        returns (uint256);
}

interface ICurveFiPool is IERC20 {
    function calc_withdraw_one_coin(uint256 amount, uint256 x)
        external
        view
        returns (uint256);

    function exchange(
        // 3pool, no return
        int128 from,
        int128 to,
        uint256 _from_amount,
        uint256 _min_to_amount
    ) external;

    function exchange(
        // IBEUR-USDC
        uint256 from,
        uint256 to,
        uint256 _from_amount,
        uint256 _min_to_amount,
        bool use_eth
    ) external payable returns (uint256);

    function balances(uint256) external view returns (uint256);
}

File 4 of 12 : IConvex.sol
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;

interface IConvex {
    // strategy's staked balance in the synthetix staking contract
    function balanceOf(address account) external view returns (uint256);

    // read how much claimable CRV a strategy has
    function earned(address account) external view returns (uint256);

    // withdraw directly to curve LP token, this is what we primarily use
    function withdrawAndUnwrap(uint256 _amount, bool _claim)
        external
        returns (bool);

    // deposit into convex, receive a tokenized deposit.  parameter to stake immediately (we always do this).
    function deposit(
        uint256 _pid,
        uint256 _amount,
        bool _stake
    ) external returns (bool);

    // give us info about a pool based on its pid
    function poolInfo(uint256)
        external
        view
        returns (
            address,
            address,
            address,
            address,
            address,
            bool
        );

    function claimRewards(
        address[] calldata rewardsContracts,
        address[] calldata extrarewardsContracts,
        address[] calldata tokenrewardsContracts,
        address[] calldata tokenRewardTokens,
        uint256 depositCrvMaxAmount,
        uint256 minAmountOut,
        uint256 depositCvxMaxAmount,
        uint256 spendCvxAmount,
        uint256 options
    ) external;
}

File 5 of 12 : IChainlink.sol
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;

interface IChainlink {
    function latestAnswer(address base, address quote)
        external
        view
        returns (uint256 answer);
}

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

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

File 7 of 12 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

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

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 8 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` 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:
     *
     * - `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 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current 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);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 12 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256[]","name":"_pids","type":"uint256[]"},{"internalType":"address[]","name":"_underlyingTokens","type":"address[]"},{"internalType":"address[]","name":"_synths","type":"address[]"},{"internalType":"address[]","name":"_cyTokens","type":"address[]"},{"internalType":"address[]","name":"_curveLpTokens","type":"address[]"},{"internalType":"address[]","name":"_curvePools","type":"address[]"},{"internalType":"address[]","name":"_rewardsContracts","type":"address[]"},{"internalType":"uint256[]","name":"_chainlinkUint","type":"uint256[]"},{"internalType":"bytes32[]","name":"_currencyKeys","type":"bytes32[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"V1_BORROWER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"apiVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"borrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"borrowedValueInUsdc","outputs":[{"internalType":"uint256","name":"borrowedValue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"canRepayBorrowStored","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"claimableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"claimableProfitInUsdc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"creditLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_forexAmount","type":"uint256"},{"internalType":"uint256","name":"_minAmountOut","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_keys","type":"uint256[]"},{"internalType":"bool","name":"_withdrawFromConvex","type":"bool"},{"internalType":"address[]","name":"_tokensToRug","type":"address[]"}],"name":"forceCloseMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forceRepayBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_minAmountOut","type":"uint256"}],"name":"forceWithdrawToForex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"forceWithdrawValueInUsdc","outputs":[{"internalType":"uint256","name":"assetsValue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"forexInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"underlying","type":"address"},{"internalType":"address","name":"synth","type":"address"},{"internalType":"address","name":"cyToken","type":"address"},{"internalType":"address","name":"curveLpToken","type":"address"},{"internalType":"address","name":"curvePool","type":"address"},{"internalType":"address","name":"rewardsContract","type":"address"},{"internalType":"uint256","name":"borrowLimit","type":"uint256"},{"internalType":"uint256","name":"borrowAmountStored","type":"uint256"},{"internalType":"uint256","name":"chainlinkUint","type":"uint256"},{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestAndSweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"holdingsValueInUsdc","outputs":[{"internalType":"uint256","name":"assetsValue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ironBankMultisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"repayBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimRewards","type":"bool"}],"name":"setClaimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"stakedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sweepRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferToRepayBorrowV1","outputs":[{"internalType":"uint256","name":"totalTransferred","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"}],"name":"usdcPerForex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToUnstake","type":"uint256"},{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_minAmountOut","type":"uint256"}],"name":"withdrawToForex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_forexKey","type":"uint256"},{"internalType":"uint256","name":"_minAmountOut","type":"uint256"}],"name":"withdrawToForexMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620066373803806200663783398181016040528101906200003791906200128e565b620000576200004b62000aef60201b60201c565b62000af760201b60201c565b60005b895181101562000482576040518061018001604052808c8381518110620000865762000085620014ba565b5b602002602001015181526020018b8381518110620000a957620000a8620014ba565b5b602002602001015181526020018a8381518110620000cc57620000cb620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152602001898381518110620001055762000104620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1681526020018883815181106200013e576200013d620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152602001878381518110620001775762000176620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152602001868381518110620001b057620001af620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152602001858381518110620001e957620001e8620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200184838151811062000230576200022f620014ba565b5b60200260200101518152602001838381518110620002535762000252620014ba565b5b60200260200101518152506003600083815260200190815260200160002060008201518160000190816200028891906200172a565b506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c08201518160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060e08201518160070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160080155610120820151816009015561014082015181600a015561016082015181600b01559050508080620004799062001840565b9150506200005a565b5060005b895181101562000ac55760008a8281518110620004a857620004a7620014ba565b5b6020026020010151905060008073f403c135812408bfbe8713b5a23a04b3d48aae3173ffffffffffffffffffffffffffffffffffffffff16631526fe27846040518263ffffffff1660e01b81526004016200050491906200189e565b60c060405180830381865afa15801562000522573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005489190620018f8565b5050935050509150888481518110620005665762000565620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620005de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d590620019f5565b60405180910390fd5b868481518110620005f457620005f3620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062001a67565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663095ea7b373f403c135812408bfbe8713b5a23a04b3d48aae317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620006dd92919062001a9a565b6020604051808303816000875af1158015620006fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000723919062001ac7565b508b84815181106200073a5762000739620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3898681518110620007735762000772620014ba565b5b60200260200101517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620007bb92919062001a9a565b6020604051808303816000875af1158015620007db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000801919062001ac7565b5060568314620009cd578a8481518110620008215762000820620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b38986815181106200085a5762000859620014ba565b5b60200260200101517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620008a292919062001a9a565b6020604051808303816000875af1158015620008c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008e8919062001ac7565b508b8481518110620008ff57620008fe620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b38b8681518110620009385762000937620014ba565b5b60200260200101517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200098092919062001a9a565b6020604051808303816000875af1158015620009a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009c6919062001ac7565b5062000aac565b888481518110620009e357620009e2620014ba565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b389868151811062000a1c5762000a1b620014ba565b5b60200260200101517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000a6492919062001a9a565b6020604051808303816000875af115801562000a84573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000aaa919062001ac7565b505b505050808062000abc9062001840565b91505062000486565b50826002908051906020019062000ade92919062000bf4565b505050505050505050505062001af9565b600033905090565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905562000b2d8162000b3060201b60201c565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000c70579160200282015b8281111562000c6f5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000c15565b5b50905062000c7f919062000c83565b5090565b5b8082111562000c9e57600081600090555060010162000c84565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d068262000cbb565b810181811067ffffffffffffffff8211171562000d285762000d2762000ccc565b5b80604052505050565b600062000d3d62000ca2565b905062000d4b828262000cfb565b919050565b600067ffffffffffffffff82111562000d6e5762000d6d62000ccc565b5b602082029050602081019050919050565b600080fd5b600080fd5b600067ffffffffffffffff82111562000da75762000da662000ccc565b5b62000db28262000cbb565b9050602081019050919050565b60005b8381101562000ddf57808201518184015260208101905062000dc2565b60008484015250505050565b600062000e0262000dfc8462000d89565b62000d31565b90508281526020810184848401111562000e215762000e2062000d84565b5b62000e2e84828562000dbf565b509392505050565b600082601f83011262000e4e5762000e4d62000cb6565b5b815162000e6084826020860162000deb565b91505092915050565b600062000e8062000e7a8462000d50565b62000d31565b9050808382526020820190506020840283018581111562000ea65762000ea562000d7f565b5b835b8181101562000ef457805167ffffffffffffffff81111562000ecf5762000ece62000cb6565b5b80860162000ede898262000e36565b8552602085019450505060208101905062000ea8565b5050509392505050565b600082601f83011262000f165762000f1562000cb6565b5b815162000f2884826020860162000e69565b91505092915050565b600067ffffffffffffffff82111562000f4f5762000f4e62000ccc565b5b602082029050602081019050919050565b6000819050919050565b62000f758162000f60565b811462000f8157600080fd5b50565b60008151905062000f958162000f6a565b92915050565b600062000fb262000fac8462000f31565b62000d31565b9050808382526020820190506020840283018581111562000fd85762000fd762000d7f565b5b835b8181101562001005578062000ff0888262000f84565b84526020840193505060208101905062000fda565b5050509392505050565b600082601f83011262001027576200102662000cb6565b5b81516200103984826020860162000f9b565b91505092915050565b600067ffffffffffffffff82111562001060576200105f62000ccc565b5b602082029050602081019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200109e8262001071565b9050919050565b620010b08162001091565b8114620010bc57600080fd5b50565b600081519050620010d081620010a5565b92915050565b6000620010ed620010e78462001042565b62000d31565b9050808382526020820190506020840283018581111562001113576200111262000d7f565b5b835b818110156200114057806200112b8882620010bf565b84526020840193505060208101905062001115565b5050509392505050565b600082601f83011262001162576200116162000cb6565b5b815162001174848260208601620010d6565b91505092915050565b600067ffffffffffffffff8211156200119b576200119a62000ccc565b5b602082029050602081019050919050565b6000819050919050565b620011c181620011ac565b8114620011cd57600080fd5b50565b600081519050620011e181620011b6565b92915050565b6000620011fe620011f8846200117d565b62000d31565b9050808382526020820190506020840283018581111562001224576200122362000d7f565b5b835b818110156200125157806200123c8882620011d0565b84526020840193505060208101905062001226565b5050509392505050565b600082601f83011262001273576200127262000cb6565b5b815162001285848260208601620011e7565b91505092915050565b6000806000806000806000806000806101408b8d031215620012b557620012b462000cac565b5b60008b015167ffffffffffffffff811115620012d657620012d562000cb1565b5b620012e48d828e0162000efe565b9a505060208b015167ffffffffffffffff81111562001308576200130762000cb1565b5b620013168d828e016200100f565b99505060408b015167ffffffffffffffff8111156200133a576200133962000cb1565b5b620013488d828e016200114a565b98505060608b015167ffffffffffffffff8111156200136c576200136b62000cb1565b5b6200137a8d828e016200114a565b97505060808b015167ffffffffffffffff8111156200139e576200139d62000cb1565b5b620013ac8d828e016200114a565b96505060a08b015167ffffffffffffffff811115620013d057620013cf62000cb1565b5b620013de8d828e016200114a565b95505060c08b015167ffffffffffffffff81111562001402576200140162000cb1565b5b620014108d828e016200114a565b94505060e08b015167ffffffffffffffff81111562001434576200143362000cb1565b5b620014428d828e016200114a565b9350506101008b015167ffffffffffffffff81111562001467576200146662000cb1565b5b620014758d828e016200100f565b9250506101208b015167ffffffffffffffff8111156200149a576200149962000cb1565b5b620014a88d828e016200125b565b9150509295989b9194979a5092959850565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200153c57607f821691505b602082108103620015525762001551620014f4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200157d565b620015c886836200157d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200160b62001605620015ff8462000f60565b620015e0565b62000f60565b9050919050565b6000819050919050565b6200162783620015ea565b6200163f620016368262001612565b8484546200158a565b825550505050565b600090565b6200165662001647565b620016638184846200161c565b505050565b5b818110156200168b576200167f6000826200164c565b60018101905062001669565b5050565b601f821115620016da57620016a48162001558565b620016af846200156d565b81016020851015620016bf578190505b620016d7620016ce856200156d565b83018262001668565b50505b505050565b600082821c905092915050565b6000620016ff60001984600802620016df565b1980831691505092915050565b60006200171a8383620016ec565b9150826002028217905092915050565b6200173582620014e9565b67ffffffffffffffff81111562001751576200175062000ccc565b5b6200175d825462001523565b6200176a8282856200168f565b600060209050601f831160018114620017a257600084156200178d578287015190505b6200179985826200170c565b86555062001809565b601f198416620017b28662001558565b60005b82811015620017dc57848901518255600182019150602085019450602081019050620017b5565b86831015620017fc5784890151620017f8601f891682620016ec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200184d8262000f60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001882576200188162001811565b5b600182019050919050565b620018988162000f60565b82525050565b6000602082019050620018b560008301846200188d565b92915050565b60008115159050919050565b620018d281620018bb565b8114620018de57600080fd5b50565b600081519050620018f281620018c7565b92915050565b60008060008060008060c0878903121562001918576200191762000cac565b5b60006200192889828a01620010bf565b96505060206200193b89828a01620010bf565b95505060406200194e89828a01620010bf565b94505060606200196189828a01620010bf565b93505060806200197489828a01620010bf565b92505060a06200198789828a01620018e1565b9150509295509295509295565b600082825260208201905092915050565b7f556e6465726c79696e6720617272617920696e636f7272656374000000000000600082015250565b6000620019dd601a8362001994565b9150620019ea82620019a5565b602082019050919050565b6000602082019050818103600083015262001a1081620019ce565b9050919050565b7f5265776172647320617272617920696e636f7272656374000000000000000000600082015250565b600062001a4f60178362001994565b915062001a5c8262001a17565b602082019050919050565b6000602082019050818103600083015262001a828162001a40565b9050919050565b62001a948162001091565b82525050565b600060408201905062001ab1600083018562001a89565b62001ac060208301846200188d565b9392505050565b60006020828403121562001ae05762001adf62000cac565b5b600062001af084828501620018e1565b91505092915050565b614b2e8062001b096000396000f3fe6080604052600436106102075760003560e01c806379bfaa0211610118578063ce129a12116100a0578063ecf074251161006f578063ecf0742514610754578063f256cad514610791578063f2fde38b146107ce578063f8b0f894146107f7578063ffb627d9146108345761020e565b8063ce129a12146106ac578063d874c1b2146106d5578063deaf26a9146106fe578063e30c3978146107295761020e565b80638da5cb5b116100e75780638da5cb5b146105db578063964b8ba614610606578063a06b894514610643578063a98f92961461066c578063c1e4d034146106955761020e565b806379bfaa02146104fb57806380836f2b1461052457806385d3374f14610561578063873190cc1461059e5761020e565b80633a1350281161019b5780636434768d1161016a5780636434768d1461043c5780636e4dc82614610479578063715018a6146104b657806379a1f0fc146104cd57806379ba5097146104e45761020e565b80633a135028146103775780633ac4b41d146103a05780634160b267146103dd5780634641257d146104255761020e565b806325829410116101d757806325829410146102bb5780633645fb64146102e6578063372500ab1461032357806338b0dcce1461034e5761020e565b8062aeef8a1461021357806306fdde031461023c5780630ecbcdab146102675780632500a66e146102905761020e565b3661020e57005b600080fd5b34801561021f57600080fd5b5061023a600480360381019061023591906138b5565b61084b565b005b34801561024857600080fd5b50610251610b8f565b60405161025e9190613998565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906139ba565b610bcc565b005b34801561029c57600080fd5b506102a5610d48565b6040516102b29190613a3b565b60405180910390f35b3480156102c757600080fd5b506102d0610d60565b6040516102dd9190613998565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613a56565b610d99565b60405161031a9190613a92565b60405180910390f35b34801561032f57600080fd5b50610338610e4f565b6040516103459190613ac8565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906139ba565b610e62565b005b34801561038357600080fd5b5061039e600480360381019061039991906138b5565b610e78565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613a56565b610e90565b6040516103d49190613ac8565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613a56565b610ebf565b60405161041c9c9b9a99989796959493929190613afc565b60405180910390f35b34801561043157600080fd5b5061043a611067565b005b34801561044857600080fd5b50610463600480360381019061045e9190613a56565b611079565b6040516104709190613a92565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613a56565b611365565b6040516104ad9190613a92565b60405180910390f35b3480156104c257600080fd5b506104cb611732565b005b3480156104d957600080fd5b506104e2611746565b005b3480156104f057600080fd5b506104f9611760565b005b34801561050757600080fd5b50610522600480360381019061051d91906139ba565b6117ed565b005b34801561053057600080fd5b5061054b60048036038101906105469190613a56565b611803565b6040516105589190613a3b565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613a56565b611842565b6040516105959190613a92565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613a56565b6118ff565b6040516105d29190613a92565b60405180910390f35b3480156105e757600080fd5b506105f06119e4565b6040516105fd9190613a3b565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613a56565b611a0d565b60405161063a9190613a92565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906139ba565b611adc565b005b34801561067857600080fd5b50610693600480360381019061068e9190613be9565b611b13565b005b3480156106a157600080fd5b506106aa611b38565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613e4d565b611b4a565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906139ba565b611e14565b005b34801561070a57600080fd5b50610713611e4b565b6040516107209190613a3b565b60405180910390f35b34801561073557600080fd5b5061073e611e63565b60405161074b9190613a3b565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139ba565b611e8d565b6040516107889190613a92565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613a56565b6120df565b6040516107c59190613a92565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613ed8565b61219d565b005b34801561080357600080fd5b5061081e60048036038101906108199190613a56565b61224a565b60405161082b9190613a92565b60405180910390f35b34801561084057600080fd5b50610849612ae4565b005b610853612af6565b60008111610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90613f51565b60405180910390fd5b60006003600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109079190613a3b565b602060405180830381865afa158015610924573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109489190613f86565b90506000811115610a125760006003600086815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16630b4c7e4d60405180604001604052808781526020016000815250856040518363ffffffff1660e01b81526004016109de92919061405e565b600060405180830381600087803b1580156109f857600080fd5b505af1158015610a0c573d6000803e3d6000fd5b50505050505b60006003600086815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a889190613a3b565b602060405180830381865afa158015610aa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac99190613f86565b90506000811115610b875760006003600088815260200190815260200160002060010154905073f403c135812408bfbe8713b5a23a04b3d48aae3173ffffffffffffffffffffffffffffffffffffffff166343a0d066828460016040518463ffffffff1660e01b8152600401610b4193929190614087565b6020604051808303816000875af1158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8491906140d3565b50505b505050505050565b60606040518060400160405280601281526020017f49726f6e42616e6b426f72726f77657256320000000000000000000000000000815250905090565b610bd4612af6565b60006003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c5ebeaec836040518263ffffffff1660e01b8152600401610c489190613a92565b6020604051808303816000875af1158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190613f86565b50610c9583611a0d565b60036000858152602001908152602001600020600801819055508073ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b8152600401610ce89190613a3b565b602060405180830381865afa158015610d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190613f86565b6003600085815260200190815260200160002060090181905550505050565b739d960dae0639c95a0c822c9d7769d19d30a430aa81565b6040518060400160405280600581526020017f302e322e3000000000000000000000000000000000000000000000000000000081525081565b6000807347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a360036000868152602001908152602001600020600a01546103486040518363ffffffff1660e01b8152600401610e03929190614100565b602060405180830381865afa158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190613f86565b905080915050919050565b600160149054906101000a900460ff1681565b610e6a612af6565b610e748282612b74565b5050565b610e80612af6565b610e8b838383612d94565b505050565b6000610e9b826118ff565b610ea483611365565b610ead84611079565b610eb79190614158565b119050919050565b6003602052806000526040600020600091509050806000018054610ee2906141bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e906141bb565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169080600801549080600901549080600a01549080600b015490508c565b61106f612af6565b6110776130c7565b565b6000806103e8905060006a52b7d2dcc80cd2e40000009050600069152d02c7e14af680000090506000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611101573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111259190613f86565b90506000808383611136919061421b565b9050600061114389611842565b905086821015611195576000828861115b919061424c565b905087818361116a9190614280565b611174919061421b565b935060008588611184919061424c565b905080851115611192578094505b50505b600060647347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a373d533a949740bb3306d119cc777fa900ba034cd526103486040518363ffffffff1660e01b81526004016111fe929190614100565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190613f86565b611249919061421b565b9050600060647347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a3734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6103486040518363ffffffff1660e01b81526004016112b4929190614100565b602060405180830381865afa1580156112d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f59190613f86565b6112ff919061421b565b90506000670de0b6b3a764000084846113189190614280565b611322919061421b565b90506000670de0b6b3a7640000878461133b9190614280565b611345919061421b565b905080826113539190614158565b9b505050505050505050505050919050565b6000806003600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113dc9190613a3b565b602060405180830381865afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d9190613f86565b905060008060008061142e88610d99565b9050600088148061143f5750600488145b1561161e5761144e60006120df565b9150600082111561151e5760006003600080815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663cc2b27d76114ba60006120df565b60006040518363ffffffff1660e01b81526004016114d9929190614314565b602060405180830381865afa1580156114f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151a9190613f86565b9350505b848361152a9190614158565b93506000925061153a60046120df565b9150600082111561160b576000600360006004815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16634fb08c5e6115a760046120df565b60006040518363ffffffff1660e01b81526004016115c692919061436e565b602060405180830381865afa1580156115e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116079190613f86565b9350505b82846116179190614158565b9350611705565b611627886120df565b915060008211156116f6576000600360008a815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663cc2b27d76116928b6120df565b60006040518363ffffffff1660e01b81526004016116b1929190614314565b602060405180830381865afa1580156116ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f29190613f86565b9350505b84836117029190614158565b93505b68056bc75e2d63100000818561171b9190614280565b611725919061421b565b9650505050505050919050565b61173a612af6565b611744600061315f565b565b61174e612af6565b6117566130c7565b61175e613190565b565b600061176a613400565b90508073ffffffffffffffffffffffffffffffffffffffff1661178b611e63565b73ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890614409565b60405180910390fd5b6117ea8161315f565b50565b6117f5613408565b6117ff8282612b74565b5050565b6002818154811061181357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16628cc262306040518263ffffffff1660e01b81526004016118b69190613a3b565b602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613f86565b915050919050565b6000806003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905068056bc75e2d6310000061194e84610d99565b8273ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b81526004016119879190613a3b565b602060405180830381865afa1580156119a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c89190613f86565b6119d29190614280565b6119dc919061421b565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ab1c342c7bf5ec5f02adea1c2270670bca144cbb73ffffffffffffffffffffffffffffffffffffffff16630445254d306003600086815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611a94929190614100565b602060405180830381865afa158015611ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad59190613f86565b9050919050565b611ae4613408565b611b0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8383612d94565b5050565b611b1b612af6565b80600160146101000a81548160ff02191690831515021790555050565b611b40612af6565b611b48613190565b565b611b52613408565b60018060146101000a81548160ff0219169083151502179055508115611c8f5760005b8351811015611c89576000848281518110611b9357611b92614429565b5b602002602001015190506000611ba8826120df565b905060006003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c32e720283600160149054906101000a900460ff166040518363ffffffff1660e01b8152600401611c2f929190614458565b6020604051808303816000875af1158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7291906140d3565b505050508080611c8190614481565b915050611b75565b50611d07565b60005b8351811015611d05576000848281518110611cb057611caf614429565b5b60200260200101519050611ce67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826001612d94565b611cf1816000612b74565b508080611cfd90614481565b915050611c92565b505b60005b8151811015611e0e576000828281518110611d2857611d27614429565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d6d9190613a3b565b602060405180830381865afa158015611d8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dae9190613f86565b90506000811115611df957611df8739d960dae0639c95a0c822c9d7769d19d30a430aa828473ffffffffffffffffffffffffffffffffffffffff1661348c9092919063ffffffff16565b5b50508080611e0690614481565b915050611d0a565b50505050565b611e1c612af6565b611e477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8383612d94565b5050565b739a97664f3aba3d6de05099b513a854d838c99db681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611e97612af6565b60006003600085815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006003600086815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000841115611fb1578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb739a97664f3aba3d6de05099b513a854d838c99db6866040518363ffffffff1660e01b8152600401611f659291906144c9565b6020604051808303816000875af1158015611f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa891906140d3565b508392506120d7565b8173ffffffffffffffffffffffffffffffffffffffff166317bfdfbc739a97664f3aba3d6de05099b513a854d838c99db66040518263ffffffff1660e01b8152600401611ffe9190613a3b565b6020604051808303816000875af115801561201d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120419190613f86565b92508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb739a97664f3aba3d6de05099b513a854d838c99db6856040518363ffffffff1660e01b81526004016120929291906144c9565b6020604051808303816000875af11580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906140d3565b505b505092915050565b6000806003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121549190613a3b565b602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190613f86565b915050919050565b6121a5612af6565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166122056119e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000806003600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122c19190613a3b565b602060405180830381865afa1580156122de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123029190613f86565b905060008060008061231388610d99565b905060008814806123245750600488145b1561283f5761233360006120df565b915060008211156125885760006003600080815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e89190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b815260040161242391906144f2565b602060405180830381865afa158015612440573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124649190613f86565b61246e9190614280565b612478919061421b565b93508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e99190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b81526004016125249190614548565b602060405180830381865afa158015612541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125659190613f86565b61256f9190614280565b612579919061421b565b846125849190614158565b9350505b84836125949190614158565b9350600092506125a460046120df565b9150600082111561282c576000600360006004815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600360006004815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126969190613f86565b848373ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b81526004016126d191906144f2565b602060405180830381865afa1580156126ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127129190613f86565b61271c9190614280565b612726919061421b565b94508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612773573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127979190613f86565b848373ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b81526004016127d29190614548565b602060405180830381865afa1580156127ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128139190613f86565b61281d9190614280565b612827919061421b565b985050505b82846128389190614158565b9350612aac565b612848886120df565b91506000821115612a9d576000600360008a815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fd9190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b815260040161293891906144f2565b602060405180830381865afa158015612955573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129799190613f86565b6129839190614280565b61298d919061421b565b93508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129fe9190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b8152600401612a399190614548565b602060405180830381865afa158015612a56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7a9190613f86565b612a849190614280565b612a8e919061421b565b84612a999190614158565b9350505b8483612aa99190614158565b93505b68056bc75e2d631000008185612ac29190614280565b612acc919061421b565b87612ad79190614158565b9650505050505050919050565b612aec613408565b612af46130c7565b565b612afe613400565b73ffffffffffffffffffffffffffffffffffffffff16612b1c6119e4565b73ffffffffffffffffffffffffffffffffffffffff1614612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b69906145af565b60405180910390fd5b565b60006003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000821115612c3a578073ffffffffffffffffffffffffffffffffffffffff16630e752702836040518263ffffffff1660e01b8152600401612bf19190613a92565b6020604051808303816000875af1158015612c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c349190613f86565b50612cd8565b8073ffffffffffffffffffffffffffffffffffffffff16630e7527027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518263ffffffff1660e01b8152600401612c939190613a92565b6020604051808303816000875af1158015612cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd69190613f86565b505b612ce183611a0d565b60036000858152602001908152602001600020600801819055508073ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b8152600401612d349190613a3b565b602060405180830381865afa158015612d51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d759190613f86565b6003600085815260200190815260200160002060090181905550505050565b60008111612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90613f51565b60405180910390fd5b6000612de2836120df565b9050808410612def578093505b600081118015612dff5750600084115b15612ecf5760006003600085815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c32e720286600160149054906101000a900460ff166040518363ffffffff1660e01b8152600401612e89929190614458565b6020604051808303816000875af1158015612ea8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecc91906140d3565b50505b60006003600085815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006003600086815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612f809190613a3b565b602060405180830381865afa158015612f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fc19190613f86565b905060008111156130be576004860361304c578173ffffffffffffffffffffffffffffffffffffffff16638f15b6b58260008860016040518563ffffffff1660e01b815260040161301594939291906145cf565b600060405180830381600087803b15801561302f57600080fd5b505af1158015613043573d6000803e3d6000fd5b505050506130bd565b8173ffffffffffffffffffffffffffffffffffffffff16631a4d01d2826000886040518463ffffffff1660e01b815260040161308a93929190614614565b600060405180830381600087803b1580156130a457600080fd5b505af11580156130b8573d6000803e3d6000fd5b505050505b5b50505050505050565b606073dd49a93fdcae579ae50b4b9923325e9e335ec82b73ffffffffffffffffffffffffffffffffffffffff16635a7b87f2600283848560008060008060006040518a63ffffffff1660e01b815260040161312a999897969594939291906147f5565b600060405180830381600087803b15801561314457600080fd5b505af1158015613158573d6000803e3d6000fd5b5050505050565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561318d81613512565b50565b600073d533a949740bb3306d119cc777fa900ba034cd5273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016131df9190613a3b565b602060405180830381865afa1580156131fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132209190613f86565b905060008111156132c65773d533a949740bb3306d119cc777fa900ba034cd5273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6132636119e4565b836040518363ffffffff1660e01b81526004016132819291906144c9565b6020604051808303816000875af11580156132a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c491906140d3565b505b6000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016133159190613a3b565b602060405180830381865afa158015613332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133569190613f86565b905060008111156133fc57734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6133996119e4565b836040518363ffffffff1660e01b81526004016133b79291906144c9565b6020604051808303816000875af11580156133d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fa91906140d3565b505b5050565b600033905090565b739d960dae0639c95a0c822c9d7769d19d30a430aa73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461348a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613481906148ea565b60405180910390fd5b565b61350d8363a9059cbb60e01b84846040516024016134ab9291906144c9565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506135d6565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613638826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661369e9092919063ffffffff16565b905060008151148061365a57508080602001905181019061365991906140d3565b5b613699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136909061497c565b60405180910390fd5b505050565b60606136ad84846000856136b6565b90509392505050565b6060824710156136fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f290614a0e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516137249190614a75565b60006040518083038185875af1925050503d8060008114613761576040519150601f19603f3d011682016040523d82523d6000602084013e613766565b606091505b509150915061377787838387613783565b92505050949350505050565b606083156137e55760008351036137dd5761379d856137f8565b6137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390614ad8565b60405180910390fd5b5b8290506137f0565b6137ef838361381b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008251111561382e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138629190613998565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6138928161387f565b811461389d57600080fd5b50565b6000813590506138af81613889565b92915050565b6000806000606084860312156138ce576138cd613875565b5b60006138dc868287016138a0565b93505060206138ed868287016138a0565b92505060406138fe868287016138a0565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015613942578082015181840152602081019050613927565b60008484015250505050565b6000601f19601f8301169050919050565b600061396a82613908565b6139748185613913565b9350613984818560208601613924565b61398d8161394e565b840191505092915050565b600060208201905081810360008301526139b2818461395f565b905092915050565b600080604083850312156139d1576139d0613875565b5b60006139df858286016138a0565b92505060206139f0858286016138a0565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a25826139fa565b9050919050565b613a3581613a1a565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600060208284031215613a6c57613a6b613875565b5b6000613a7a848285016138a0565b91505092915050565b613a8c8161387f565b82525050565b6000602082019050613aa76000830184613a83565b92915050565b60008115159050919050565b613ac281613aad565b82525050565b6000602082019050613add6000830184613ab9565b92915050565b6000819050919050565b613af681613ae3565b82525050565b6000610180820190508181036000830152613b17818f61395f565b9050613b26602083018e613a83565b613b33604083018d613a2c565b613b40606083018c613a2c565b613b4d608083018b613a2c565b613b5a60a083018a613a2c565b613b6760c0830189613a2c565b613b7460e0830188613a2c565b613b82610100830187613a83565b613b90610120830186613a83565b613b9e610140830185613a83565b613bac610160830184613aed565b9d9c50505050505050505050505050565b613bc681613aad565b8114613bd157600080fd5b50565b600081359050613be381613bbd565b92915050565b600060208284031215613bff57613bfe613875565b5b6000613c0d84828501613bd4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c538261394e565b810181811067ffffffffffffffff82111715613c7257613c71613c1b565b5b80604052505050565b6000613c8561386b565b9050613c918282613c4a565b919050565b600067ffffffffffffffff821115613cb157613cb0613c1b565b5b602082029050602081019050919050565b600080fd5b6000613cda613cd584613c96565b613c7b565b90508083825260208201905060208402830185811115613cfd57613cfc613cc2565b5b835b81811015613d265780613d1288826138a0565b845260208401935050602081019050613cff565b5050509392505050565b600082601f830112613d4557613d44613c16565b5b8135613d55848260208601613cc7565b91505092915050565b600067ffffffffffffffff821115613d7957613d78613c1b565b5b602082029050602081019050919050565b613d9381613a1a565b8114613d9e57600080fd5b50565b600081359050613db081613d8a565b92915050565b6000613dc9613dc484613d5e565b613c7b565b90508083825260208201905060208402830185811115613dec57613deb613cc2565b5b835b81811015613e155780613e018882613da1565b845260208401935050602081019050613dee565b5050509392505050565b600082601f830112613e3457613e33613c16565b5b8135613e44848260208601613db6565b91505092915050565b600080600060608486031215613e6657613e65613875565b5b600084013567ffffffffffffffff811115613e8457613e8361387a565b5b613e9086828701613d30565b9350506020613ea186828701613bd4565b925050604084013567ffffffffffffffff811115613ec257613ec161387a565b5b613ece86828701613e1f565b9150509250925092565b600060208284031215613eee57613eed613875565b5b6000613efc84828501613da1565b91505092915050565b7f536574205f6d696e416d6f756e744f7574000000000000000000000000000000600082015250565b6000613f3b601183613913565b9150613f4682613f05565b602082019050919050565b60006020820190508181036000830152613f6a81613f2e565b9050919050565b600081519050613f8081613889565b92915050565b600060208284031215613f9c57613f9b613875565b5b6000613faa84828501613f71565b91505092915050565b600060029050919050565b600081905092915050565b6000819050919050565b613fdc8161387f565b82525050565b6000613fee8383613fd3565b60208301905092915050565b6000602082019050919050565b61401081613fb3565b61401a8184613fbe565b925061402582613fc9565b8060005b8381101561405657815161403d8782613fe2565b965061404883613ffa565b925050600181019050614029565b505050505050565b60006060820190506140736000830185614007565b6140806040830184613a83565b9392505050565b600060608201905061409c6000830186613a83565b6140a96020830185613a83565b6140b66040830184613ab9565b949350505050565b6000815190506140cd81613bbd565b92915050565b6000602082840312156140e9576140e8613875565b5b60006140f7848285016140be565b91505092915050565b60006040820190506141156000830185613a2c565b6141226020830184613a2c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141638261387f565b915061416e8361387f565b925082820190508082111561418657614185614129565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141d357607f821691505b6020821081036141e6576141e561418c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142268261387f565b91506142318361387f565b925082614241576142406141ec565b5b828204905092915050565b60006142578261387f565b91506142628361387f565b925082820390508181111561427a57614279614129565b5b92915050565b600061428b8261387f565b91506142968361387f565b92508282026142a48161387f565b915082820484148315176142bb576142ba614129565b5b5092915050565b6000819050919050565b600081600f0b9050919050565b6000819050919050565b60006142fe6142f96142f4846142c2565b6142d9565b6142cc565b9050919050565b61430e816142e3565b82525050565b60006040820190506143296000830185613a83565b6143366020830184614305565b9392505050565b600061435861435361434e846142c2565b6142d9565b61387f565b9050919050565b6143688161433d565b82525050565b60006040820190506143836000830185613a83565b614390602083018461435f565b9392505050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143f3602983613913565b91506143fe82614397565b604082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061446d6000830185613a83565b61447a6020830184613ab9565b9392505050565b600061448c8261387f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144be576144bd614129565b5b600182019050919050565b60006040820190506144de6000830185613a2c565b6144eb6020830184613a83565b9392505050565b6000602082019050614507600083018461435f565b92915050565b6000819050919050565b600061453261452d6145288461450d565b6142d9565b61387f565b9050919050565b61454281614517565b82525050565b600060208201905061455d6000830184614539565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614599602083613913565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b60006080820190506145e46000830187613a83565b6145f1602083018661435f565b6145fe6040830185613a83565b61460b6060830184613ab9565b95945050505050565b60006060820190506146296000830186613a83565b6146366020830185614305565b6146436040830184613a83565b949350505050565b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b61468581613a1a565b82525050565b6000614697838361467c565b60208301905092915050565b60008160001c9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146e36146de836146a3565b6146b0565b9050919050565b60006146f682546146d0565b9050919050565b6000600182019050919050565b60006147158261464b565b61471f8185614656565b935061472a83614667565b8060005b838110156147625761473f826146ea565b614749888261468b565b9750614754836146fd565b92505060018101905061472e565b5085935050505092915050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006147a28261476f565b6147ac8185614656565b93506147b78361477a565b8060005b838110156147e85781516147cf888261468b565b97506147da8361478a565b9250506001810190506147bb565b5085935050505092915050565b6000610120820190508181036000830152614810818c61470a565b90508181036020830152614824818b614797565b90508181036040830152614838818a614797565b9050818103606083015261484c8189614797565b905061485b608083018861435f565b61486860a083018761435f565b61487560c083018661435f565b61488260e083018561435f565b61489061010083018461435f565b9a9950505050505050505050565b7f4d7573742062652049726f6e2042616e6b000000000000000000000000000000600082015250565b60006148d4601183613913565b91506148df8261489e565b602082019050919050565b60006020820190508181036000830152614903816148c7565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614966602a83613913565b91506149718261490a565b604082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006149f8602683613913565b9150614a038261499c565b604082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b600081519050919050565b600081905092915050565b6000614a4f82614a2e565b614a598185614a39565b9350614a69818560208601613924565b80840191505092915050565b6000614a818284614a44565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ac2601d83613913565b9150614acd82614a8c565b602082019050919050565b60006020820190508181036000830152614af181614ab5565b905091905056fea2646970667358221220f15251ef8e472e36fff59739835bf9d29c45c32da298e18b64ca94ec60c7bf8764736f6c6343000813003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000056962455552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624b52570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005696243484600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056962474250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a69624555522d5553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624a5059000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624155440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000002b0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000700000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae2700000000000000000000000095dfdc8161832e4ff7816ac4b6367ce2015382530000000000000000000000001cc481ce2bd2ec7bf67d1be64d4878b16078f30900000000000000000000000069681f8fde45345c3870bcd5eaf4a05a60e7d22700000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae270000000000000000000000005555f75e3d5278082200fb451d1b6ba946d8e13b000000000000000000000000fafdf0c4c1cb09d430bf88c75d88bb46dae099670000000000000000000000000000000000000000000000000000000000000007000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620000000000000000000000000269895a3df4d73b077fc823dd6da1b95f72aaf9b0000000000000000000000000f83287ff768d1c1e17a42f44d644d7f22e8ee1d00000000000000000000000097fe22e7341a0cd8db6f6c021a24dc8f4dad855f000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620000000000000000000000000f6b1c627e95bfc3c1b4c9b825a032ff0fbf3e07d000000000000000000000000f48e200eaf9906362bb1442fca31e0835773b8b4000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000e5c0774a5f065c285068170b20393925c84bf30000000000000000000000003c9f5385c288ce438ed55620938a4b967c0801010000000000000000000000001b3e95e8ecf7a7cab6c4de1b344f94865abd12d5000000000000000000000000ecab2c76f1a8359a06fab5fa0ceea51280a97ecf00000000000000000000000000e5c0774a5f065c285068170b20393925c84bf3000000000000000000000000215f34af6557a6598dbda9aa11cc556f5ae264b100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000000000000000000000000000000000000000000700000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf038590000000000000000000000008461a004b50d321cb22b7d034969ce68039118990000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c000000000000000000000000d6ac1cb9019137a896343da59dde6d097f7105380000000000000000000000008682fbf0cbf312c891532ba9f1a91e44f81ad7df0000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b730670000000000000000000000003f1b0278a9ee595635b61817630cc19de792f506000000000000000000000000000000000000000000000000000000000000000700000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf038590000000000000000000000008461a004b50d321cb22b7d034969ce68039118990000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c000000000000000000000000d6ac1cb9019137a896343da59dde6d097f7105380000000000000000000000001570af3df649fc74872c5b8f280a162a3bdd4eb60000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b730670000000000000000000000003f1b0278a9ee595635b61817630cc19de792f5060000000000000000000000000000000000000000000000000000000000000007000000000000000000000000cd0559adb6faa2fc83ab21cf4497c3b9b45bb29f0000000000000000000000008f18c0af0d7d511e8bdc6b3c64926b04edfe4892000000000000000000000000a5a5905efc55b05059ee247d5cac6dd6791cfc3300000000000000000000000051a16da36c79e28dd3c8c0c19214d8af413984aa000000000000000000000000aab7202d93b5633eb7fb3b80873c817b240f6f44000000000000000000000000ba8fe590498ed24d330bb925e69913b1ac35a81e000000000000000000000000b1fae59f23cace4949ae734e63e42168adb0ccb3000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000003d2000000000000000000000000000000000000000000000000000000000000019a00000000000000000000000000000000000000000000000000000000000002f4000000000000000000000000000000000000000000000000000000000000033a00000000000000000000000000000000000000000000000000000000000003d20000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000077345555200000000000000000000000000000000000000000000000000000000734b525700000000000000000000000000000000000000000000000000000000734348460000000000000000000000000000000000000000000000000000000073474250000000000000000000000000000000000000000000000000000000007345555200000000000000000000000000000000000000000000000000000000734a5059000000000000000000000000000000000000000000000000000000007341554400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102075760003560e01c806379bfaa0211610118578063ce129a12116100a0578063ecf074251161006f578063ecf0742514610754578063f256cad514610791578063f2fde38b146107ce578063f8b0f894146107f7578063ffb627d9146108345761020e565b8063ce129a12146106ac578063d874c1b2146106d5578063deaf26a9146106fe578063e30c3978146107295761020e565b80638da5cb5b116100e75780638da5cb5b146105db578063964b8ba614610606578063a06b894514610643578063a98f92961461066c578063c1e4d034146106955761020e565b806379bfaa02146104fb57806380836f2b1461052457806385d3374f14610561578063873190cc1461059e5761020e565b80633a1350281161019b5780636434768d1161016a5780636434768d1461043c5780636e4dc82614610479578063715018a6146104b657806379a1f0fc146104cd57806379ba5097146104e45761020e565b80633a135028146103775780633ac4b41d146103a05780634160b267146103dd5780634641257d146104255761020e565b806325829410116101d757806325829410146102bb5780633645fb64146102e6578063372500ab1461032357806338b0dcce1461034e5761020e565b8062aeef8a1461021357806306fdde031461023c5780630ecbcdab146102675780632500a66e146102905761020e565b3661020e57005b600080fd5b34801561021f57600080fd5b5061023a600480360381019061023591906138b5565b61084b565b005b34801561024857600080fd5b50610251610b8f565b60405161025e9190613998565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906139ba565b610bcc565b005b34801561029c57600080fd5b506102a5610d48565b6040516102b29190613a3b565b60405180910390f35b3480156102c757600080fd5b506102d0610d60565b6040516102dd9190613998565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613a56565b610d99565b60405161031a9190613a92565b60405180910390f35b34801561032f57600080fd5b50610338610e4f565b6040516103459190613ac8565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906139ba565b610e62565b005b34801561038357600080fd5b5061039e600480360381019061039991906138b5565b610e78565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613a56565b610e90565b6040516103d49190613ac8565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613a56565b610ebf565b60405161041c9c9b9a99989796959493929190613afc565b60405180910390f35b34801561043157600080fd5b5061043a611067565b005b34801561044857600080fd5b50610463600480360381019061045e9190613a56565b611079565b6040516104709190613a92565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613a56565b611365565b6040516104ad9190613a92565b60405180910390f35b3480156104c257600080fd5b506104cb611732565b005b3480156104d957600080fd5b506104e2611746565b005b3480156104f057600080fd5b506104f9611760565b005b34801561050757600080fd5b50610522600480360381019061051d91906139ba565b6117ed565b005b34801561053057600080fd5b5061054b60048036038101906105469190613a56565b611803565b6040516105589190613a3b565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613a56565b611842565b6040516105959190613a92565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613a56565b6118ff565b6040516105d29190613a92565b60405180910390f35b3480156105e757600080fd5b506105f06119e4565b6040516105fd9190613a3b565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613a56565b611a0d565b60405161063a9190613a92565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906139ba565b611adc565b005b34801561067857600080fd5b50610693600480360381019061068e9190613be9565b611b13565b005b3480156106a157600080fd5b506106aa611b38565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613e4d565b611b4a565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906139ba565b611e14565b005b34801561070a57600080fd5b50610713611e4b565b6040516107209190613a3b565b60405180910390f35b34801561073557600080fd5b5061073e611e63565b60405161074b9190613a3b565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139ba565b611e8d565b6040516107889190613a92565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613a56565b6120df565b6040516107c59190613a92565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613ed8565b61219d565b005b34801561080357600080fd5b5061081e60048036038101906108199190613a56565b61224a565b60405161082b9190613a92565b60405180910390f35b34801561084057600080fd5b50610849612ae4565b005b610853612af6565b60008111610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90613f51565b60405180910390fd5b60006003600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109079190613a3b565b602060405180830381865afa158015610924573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109489190613f86565b90506000811115610a125760006003600086815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16630b4c7e4d60405180604001604052808781526020016000815250856040518363ffffffff1660e01b81526004016109de92919061405e565b600060405180830381600087803b1580156109f857600080fd5b505af1158015610a0c573d6000803e3d6000fd5b50505050505b60006003600086815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a889190613a3b565b602060405180830381865afa158015610aa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac99190613f86565b90506000811115610b875760006003600088815260200190815260200160002060010154905073f403c135812408bfbe8713b5a23a04b3d48aae3173ffffffffffffffffffffffffffffffffffffffff166343a0d066828460016040518463ffffffff1660e01b8152600401610b4193929190614087565b6020604051808303816000875af1158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8491906140d3565b50505b505050505050565b60606040518060400160405280601281526020017f49726f6e42616e6b426f72726f77657256320000000000000000000000000000815250905090565b610bd4612af6565b60006003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c5ebeaec836040518263ffffffff1660e01b8152600401610c489190613a92565b6020604051808303816000875af1158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190613f86565b50610c9583611a0d565b60036000858152602001908152602001600020600801819055508073ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b8152600401610ce89190613a3b565b602060405180830381865afa158015610d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190613f86565b6003600085815260200190815260200160002060090181905550505050565b739d960dae0639c95a0c822c9d7769d19d30a430aa81565b6040518060400160405280600581526020017f302e322e3000000000000000000000000000000000000000000000000000000081525081565b6000807347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a360036000868152602001908152602001600020600a01546103486040518363ffffffff1660e01b8152600401610e03929190614100565b602060405180830381865afa158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190613f86565b905080915050919050565b600160149054906101000a900460ff1681565b610e6a612af6565b610e748282612b74565b5050565b610e80612af6565b610e8b838383612d94565b505050565b6000610e9b826118ff565b610ea483611365565b610ead84611079565b610eb79190614158565b119050919050565b6003602052806000526040600020600091509050806000018054610ee2906141bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e906141bb565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169080600801549080600901549080600a01549080600b015490508c565b61106f612af6565b6110776130c7565b565b6000806103e8905060006a52b7d2dcc80cd2e40000009050600069152d02c7e14af680000090506000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611101573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111259190613f86565b90506000808383611136919061421b565b9050600061114389611842565b905086821015611195576000828861115b919061424c565b905087818361116a9190614280565b611174919061421b565b935060008588611184919061424c565b905080851115611192578094505b50505b600060647347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a373d533a949740bb3306d119cc777fa900ba034cd526103486040518363ffffffff1660e01b81526004016111fe929190614100565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190613f86565b611249919061421b565b9050600060647347fb2585d2c56fe188d0e6ec628a38b74fceeedf73ffffffffffffffffffffffffffffffffffffffff1663d4c282a3734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6103486040518363ffffffff1660e01b81526004016112b4929190614100565b602060405180830381865afa1580156112d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f59190613f86565b6112ff919061421b565b90506000670de0b6b3a764000084846113189190614280565b611322919061421b565b90506000670de0b6b3a7640000878461133b9190614280565b611345919061421b565b905080826113539190614158565b9b505050505050505050505050919050565b6000806003600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113dc9190613a3b565b602060405180830381865afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d9190613f86565b905060008060008061142e88610d99565b9050600088148061143f5750600488145b1561161e5761144e60006120df565b9150600082111561151e5760006003600080815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663cc2b27d76114ba60006120df565b60006040518363ffffffff1660e01b81526004016114d9929190614314565b602060405180830381865afa1580156114f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151a9190613f86565b9350505b848361152a9190614158565b93506000925061153a60046120df565b9150600082111561160b576000600360006004815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16634fb08c5e6115a760046120df565b60006040518363ffffffff1660e01b81526004016115c692919061436e565b602060405180830381865afa1580156115e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116079190613f86565b9350505b82846116179190614158565b9350611705565b611627886120df565b915060008211156116f6576000600360008a815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663cc2b27d76116928b6120df565b60006040518363ffffffff1660e01b81526004016116b1929190614314565b602060405180830381865afa1580156116ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f29190613f86565b9350505b84836117029190614158565b93505b68056bc75e2d63100000818561171b9190614280565b611725919061421b565b9650505050505050919050565b61173a612af6565b611744600061315f565b565b61174e612af6565b6117566130c7565b61175e613190565b565b600061176a613400565b90508073ffffffffffffffffffffffffffffffffffffffff1661178b611e63565b73ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890614409565b60405180910390fd5b6117ea8161315f565b50565b6117f5613408565b6117ff8282612b74565b5050565b6002818154811061181357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16628cc262306040518263ffffffff1660e01b81526004016118b69190613a3b565b602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613f86565b915050919050565b6000806003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905068056bc75e2d6310000061194e84610d99565b8273ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b81526004016119879190613a3b565b602060405180830381865afa1580156119a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c89190613f86565b6119d29190614280565b6119dc919061421b565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ab1c342c7bf5ec5f02adea1c2270670bca144cbb73ffffffffffffffffffffffffffffffffffffffff16630445254d306003600086815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611a94929190614100565b602060405180830381865afa158015611ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad59190613f86565b9050919050565b611ae4613408565b611b0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8383612d94565b5050565b611b1b612af6565b80600160146101000a81548160ff02191690831515021790555050565b611b40612af6565b611b48613190565b565b611b52613408565b60018060146101000a81548160ff0219169083151502179055508115611c8f5760005b8351811015611c89576000848281518110611b9357611b92614429565b5b602002602001015190506000611ba8826120df565b905060006003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c32e720283600160149054906101000a900460ff166040518363ffffffff1660e01b8152600401611c2f929190614458565b6020604051808303816000875af1158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7291906140d3565b505050508080611c8190614481565b915050611b75565b50611d07565b60005b8351811015611d05576000848281518110611cb057611caf614429565b5b60200260200101519050611ce67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826001612d94565b611cf1816000612b74565b508080611cfd90614481565b915050611c92565b505b60005b8151811015611e0e576000828281518110611d2857611d27614429565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d6d9190613a3b565b602060405180830381865afa158015611d8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dae9190613f86565b90506000811115611df957611df8739d960dae0639c95a0c822c9d7769d19d30a430aa828473ffffffffffffffffffffffffffffffffffffffff1661348c9092919063ffffffff16565b5b50508080611e0690614481565b915050611d0a565b50505050565b611e1c612af6565b611e477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8383612d94565b5050565b739a97664f3aba3d6de05099b513a854d838c99db681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611e97612af6565b60006003600085815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006003600086815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000841115611fb1578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb739a97664f3aba3d6de05099b513a854d838c99db6866040518363ffffffff1660e01b8152600401611f659291906144c9565b6020604051808303816000875af1158015611f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa891906140d3565b508392506120d7565b8173ffffffffffffffffffffffffffffffffffffffff166317bfdfbc739a97664f3aba3d6de05099b513a854d838c99db66040518263ffffffff1660e01b8152600401611ffe9190613a3b565b6020604051808303816000875af115801561201d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120419190613f86565b92508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb739a97664f3aba3d6de05099b513a854d838c99db6856040518363ffffffff1660e01b81526004016120929291906144c9565b6020604051808303816000875af11580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906140d3565b505b505092915050565b6000806003600084815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121549190613a3b565b602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190613f86565b915050919050565b6121a5612af6565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166122056119e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000806003600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122c19190613a3b565b602060405180830381865afa1580156122de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123029190613f86565b905060008060008061231388610d99565b905060008814806123245750600488145b1561283f5761233360006120df565b915060008211156125885760006003600080815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e89190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b815260040161242391906144f2565b602060405180830381865afa158015612440573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124649190613f86565b61246e9190614280565b612478919061421b565b93508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e99190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b81526004016125249190614548565b602060405180830381865afa158015612541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125659190613f86565b61256f9190614280565b612579919061421b565b846125849190614158565b9350505b84836125949190614158565b9350600092506125a460046120df565b9150600082111561282c576000600360006004815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600360006004815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126969190613f86565b848373ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b81526004016126d191906144f2565b602060405180830381865afa1580156126ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127129190613f86565b61271c9190614280565b612726919061421b565b94508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612773573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127979190613f86565b848373ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b81526004016127d29190614548565b602060405180830381865afa1580156127ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128139190613f86565b61281d9190614280565b612827919061421b565b985050505b82846128389190614158565b9350612aac565b612848886120df565b91506000821115612a9d576000600360008a815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fd9190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160006040518263ffffffff1660e01b815260040161293891906144f2565b602060405180830381865afa158015612955573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129799190613f86565b6129839190614280565b61298d919061421b565b93508073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129fe9190613f86565b838273ffffffffffffffffffffffffffffffffffffffff16634903b0d160016040518263ffffffff1660e01b8152600401612a399190614548565b602060405180830381865afa158015612a56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7a9190613f86565b612a849190614280565b612a8e919061421b565b84612a999190614158565b9350505b8483612aa99190614158565b93505b68056bc75e2d631000008185612ac29190614280565b612acc919061421b565b87612ad79190614158565b9650505050505050919050565b612aec613408565b612af46130c7565b565b612afe613400565b73ffffffffffffffffffffffffffffffffffffffff16612b1c6119e4565b73ffffffffffffffffffffffffffffffffffffffff1614612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b69906145af565b60405180910390fd5b565b60006003600084815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000821115612c3a578073ffffffffffffffffffffffffffffffffffffffff16630e752702836040518263ffffffff1660e01b8152600401612bf19190613a92565b6020604051808303816000875af1158015612c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c349190613f86565b50612cd8565b8073ffffffffffffffffffffffffffffffffffffffff16630e7527027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518263ffffffff1660e01b8152600401612c939190613a92565b6020604051808303816000875af1158015612cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd69190613f86565b505b612ce183611a0d565b60036000858152602001908152602001600020600801819055508073ffffffffffffffffffffffffffffffffffffffff166395dd9193306040518263ffffffff1660e01b8152600401612d349190613a3b565b602060405180830381865afa158015612d51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d759190613f86565b6003600085815260200190815260200160002060090181905550505050565b60008111612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90613f51565b60405180910390fd5b6000612de2836120df565b9050808410612def578093505b600081118015612dff5750600084115b15612ecf5760006003600085815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c32e720286600160149054906101000a900460ff166040518363ffffffff1660e01b8152600401612e89929190614458565b6020604051808303816000875af1158015612ea8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecc91906140d3565b50505b60006003600085815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006003600086815260200190815260200160002060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612f809190613a3b565b602060405180830381865afa158015612f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fc19190613f86565b905060008111156130be576004860361304c578173ffffffffffffffffffffffffffffffffffffffff16638f15b6b58260008860016040518563ffffffff1660e01b815260040161301594939291906145cf565b600060405180830381600087803b15801561302f57600080fd5b505af1158015613043573d6000803e3d6000fd5b505050506130bd565b8173ffffffffffffffffffffffffffffffffffffffff16631a4d01d2826000886040518463ffffffff1660e01b815260040161308a93929190614614565b600060405180830381600087803b1580156130a457600080fd5b505af11580156130b8573d6000803e3d6000fd5b505050505b5b50505050505050565b606073dd49a93fdcae579ae50b4b9923325e9e335ec82b73ffffffffffffffffffffffffffffffffffffffff16635a7b87f2600283848560008060008060006040518a63ffffffff1660e01b815260040161312a999897969594939291906147f5565b600060405180830381600087803b15801561314457600080fd5b505af1158015613158573d6000803e3d6000fd5b5050505050565b600160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561318d81613512565b50565b600073d533a949740bb3306d119cc777fa900ba034cd5273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016131df9190613a3b565b602060405180830381865afa1580156131fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132209190613f86565b905060008111156132c65773d533a949740bb3306d119cc777fa900ba034cd5273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6132636119e4565b836040518363ffffffff1660e01b81526004016132819291906144c9565b6020604051808303816000875af11580156132a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c491906140d3565b505b6000734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016133159190613a3b565b602060405180830381865afa158015613332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133569190613f86565b905060008111156133fc57734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6133996119e4565b836040518363ffffffff1660e01b81526004016133b79291906144c9565b6020604051808303816000875af11580156133d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fa91906140d3565b505b5050565b600033905090565b739d960dae0639c95a0c822c9d7769d19d30a430aa73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461348a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613481906148ea565b60405180910390fd5b565b61350d8363a9059cbb60e01b84846040516024016134ab9291906144c9565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506135d6565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613638826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661369e9092919063ffffffff16565b905060008151148061365a57508080602001905181019061365991906140d3565b5b613699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136909061497c565b60405180910390fd5b505050565b60606136ad84846000856136b6565b90509392505050565b6060824710156136fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f290614a0e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516137249190614a75565b60006040518083038185875af1925050503d8060008114613761576040519150601f19603f3d011682016040523d82523d6000602084013e613766565b606091505b509150915061377787838387613783565b92505050949350505050565b606083156137e55760008351036137dd5761379d856137f8565b6137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390614ad8565b60405180910390fd5b5b8290506137f0565b6137ef838361381b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008251111561382e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138629190613998565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6138928161387f565b811461389d57600080fd5b50565b6000813590506138af81613889565b92915050565b6000806000606084860312156138ce576138cd613875565b5b60006138dc868287016138a0565b93505060206138ed868287016138a0565b92505060406138fe868287016138a0565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015613942578082015181840152602081019050613927565b60008484015250505050565b6000601f19601f8301169050919050565b600061396a82613908565b6139748185613913565b9350613984818560208601613924565b61398d8161394e565b840191505092915050565b600060208201905081810360008301526139b2818461395f565b905092915050565b600080604083850312156139d1576139d0613875565b5b60006139df858286016138a0565b92505060206139f0858286016138a0565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a25826139fa565b9050919050565b613a3581613a1a565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600060208284031215613a6c57613a6b613875565b5b6000613a7a848285016138a0565b91505092915050565b613a8c8161387f565b82525050565b6000602082019050613aa76000830184613a83565b92915050565b60008115159050919050565b613ac281613aad565b82525050565b6000602082019050613add6000830184613ab9565b92915050565b6000819050919050565b613af681613ae3565b82525050565b6000610180820190508181036000830152613b17818f61395f565b9050613b26602083018e613a83565b613b33604083018d613a2c565b613b40606083018c613a2c565b613b4d608083018b613a2c565b613b5a60a083018a613a2c565b613b6760c0830189613a2c565b613b7460e0830188613a2c565b613b82610100830187613a83565b613b90610120830186613a83565b613b9e610140830185613a83565b613bac610160830184613aed565b9d9c50505050505050505050505050565b613bc681613aad565b8114613bd157600080fd5b50565b600081359050613be381613bbd565b92915050565b600060208284031215613bff57613bfe613875565b5b6000613c0d84828501613bd4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c538261394e565b810181811067ffffffffffffffff82111715613c7257613c71613c1b565b5b80604052505050565b6000613c8561386b565b9050613c918282613c4a565b919050565b600067ffffffffffffffff821115613cb157613cb0613c1b565b5b602082029050602081019050919050565b600080fd5b6000613cda613cd584613c96565b613c7b565b90508083825260208201905060208402830185811115613cfd57613cfc613cc2565b5b835b81811015613d265780613d1288826138a0565b845260208401935050602081019050613cff565b5050509392505050565b600082601f830112613d4557613d44613c16565b5b8135613d55848260208601613cc7565b91505092915050565b600067ffffffffffffffff821115613d7957613d78613c1b565b5b602082029050602081019050919050565b613d9381613a1a565b8114613d9e57600080fd5b50565b600081359050613db081613d8a565b92915050565b6000613dc9613dc484613d5e565b613c7b565b90508083825260208201905060208402830185811115613dec57613deb613cc2565b5b835b81811015613e155780613e018882613da1565b845260208401935050602081019050613dee565b5050509392505050565b600082601f830112613e3457613e33613c16565b5b8135613e44848260208601613db6565b91505092915050565b600080600060608486031215613e6657613e65613875565b5b600084013567ffffffffffffffff811115613e8457613e8361387a565b5b613e9086828701613d30565b9350506020613ea186828701613bd4565b925050604084013567ffffffffffffffff811115613ec257613ec161387a565b5b613ece86828701613e1f565b9150509250925092565b600060208284031215613eee57613eed613875565b5b6000613efc84828501613da1565b91505092915050565b7f536574205f6d696e416d6f756e744f7574000000000000000000000000000000600082015250565b6000613f3b601183613913565b9150613f4682613f05565b602082019050919050565b60006020820190508181036000830152613f6a81613f2e565b9050919050565b600081519050613f8081613889565b92915050565b600060208284031215613f9c57613f9b613875565b5b6000613faa84828501613f71565b91505092915050565b600060029050919050565b600081905092915050565b6000819050919050565b613fdc8161387f565b82525050565b6000613fee8383613fd3565b60208301905092915050565b6000602082019050919050565b61401081613fb3565b61401a8184613fbe565b925061402582613fc9565b8060005b8381101561405657815161403d8782613fe2565b965061404883613ffa565b925050600181019050614029565b505050505050565b60006060820190506140736000830185614007565b6140806040830184613a83565b9392505050565b600060608201905061409c6000830186613a83565b6140a96020830185613a83565b6140b66040830184613ab9565b949350505050565b6000815190506140cd81613bbd565b92915050565b6000602082840312156140e9576140e8613875565b5b60006140f7848285016140be565b91505092915050565b60006040820190506141156000830185613a2c565b6141226020830184613a2c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141638261387f565b915061416e8361387f565b925082820190508082111561418657614185614129565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141d357607f821691505b6020821081036141e6576141e561418c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142268261387f565b91506142318361387f565b925082614241576142406141ec565b5b828204905092915050565b60006142578261387f565b91506142628361387f565b925082820390508181111561427a57614279614129565b5b92915050565b600061428b8261387f565b91506142968361387f565b92508282026142a48161387f565b915082820484148315176142bb576142ba614129565b5b5092915050565b6000819050919050565b600081600f0b9050919050565b6000819050919050565b60006142fe6142f96142f4846142c2565b6142d9565b6142cc565b9050919050565b61430e816142e3565b82525050565b60006040820190506143296000830185613a83565b6143366020830184614305565b9392505050565b600061435861435361434e846142c2565b6142d9565b61387f565b9050919050565b6143688161433d565b82525050565b60006040820190506143836000830185613a83565b614390602083018461435f565b9392505050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143f3602983613913565b91506143fe82614397565b604082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061446d6000830185613a83565b61447a6020830184613ab9565b9392505050565b600061448c8261387f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144be576144bd614129565b5b600182019050919050565b60006040820190506144de6000830185613a2c565b6144eb6020830184613a83565b9392505050565b6000602082019050614507600083018461435f565b92915050565b6000819050919050565b600061453261452d6145288461450d565b6142d9565b61387f565b9050919050565b61454281614517565b82525050565b600060208201905061455d6000830184614539565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614599602083613913565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b60006080820190506145e46000830187613a83565b6145f1602083018661435f565b6145fe6040830185613a83565b61460b6060830184613ab9565b95945050505050565b60006060820190506146296000830186613a83565b6146366020830185614305565b6146436040830184613a83565b949350505050565b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b61468581613a1a565b82525050565b6000614697838361467c565b60208301905092915050565b60008160001c9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146e36146de836146a3565b6146b0565b9050919050565b60006146f682546146d0565b9050919050565b6000600182019050919050565b60006147158261464b565b61471f8185614656565b935061472a83614667565b8060005b838110156147625761473f826146ea565b614749888261468b565b9750614754836146fd565b92505060018101905061472e565b5085935050505092915050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006147a28261476f565b6147ac8185614656565b93506147b78361477a565b8060005b838110156147e85781516147cf888261468b565b97506147da8361478a565b9250506001810190506147bb565b5085935050505092915050565b6000610120820190508181036000830152614810818c61470a565b90508181036020830152614824818b614797565b90508181036040830152614838818a614797565b9050818103606083015261484c8189614797565b905061485b608083018861435f565b61486860a083018761435f565b61487560c083018661435f565b61488260e083018561435f565b61489061010083018461435f565b9a9950505050505050505050565b7f4d7573742062652049726f6e2042616e6b000000000000000000000000000000600082015250565b60006148d4601183613913565b91506148df8261489e565b602082019050919050565b60006020820190508181036000830152614903816148c7565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614966602a83613913565b91506149718261490a565b604082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006149f8602683613913565b9150614a038261499c565b604082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b600081519050919050565b600081905092915050565b6000614a4f82614a2e565b614a598185614a39565b9350614a69818560208601613924565b80840191505092915050565b6000614a818284614a44565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ac2601d83613913565b9150614acd82614a8c565b602082019050919050565b60006020820190508181036000830152614af181614ab5565b905091905056fea2646970667358221220f15251ef8e472e36fff59739835bf9d29c45c32da298e18b64ca94ec60c7bf8764736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000056962455552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624b52570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005696243484600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056962474250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a69624555522d5553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624a5059000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000569624155440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000002b0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000700000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae2700000000000000000000000095dfdc8161832e4ff7816ac4b6367ce2015382530000000000000000000000001cc481ce2bd2ec7bf67d1be64d4878b16078f30900000000000000000000000069681f8fde45345c3870bcd5eaf4a05a60e7d22700000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae270000000000000000000000005555f75e3d5278082200fb451d1b6ba946d8e13b000000000000000000000000fafdf0c4c1cb09d430bf88c75d88bb46dae099670000000000000000000000000000000000000000000000000000000000000007000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620000000000000000000000000269895a3df4d73b077fc823dd6da1b95f72aaf9b0000000000000000000000000f83287ff768d1c1e17a42f44d644d7f22e8ee1d00000000000000000000000097fe22e7341a0cd8db6f6c021a24dc8f4dad855f000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620000000000000000000000000f6b1c627e95bfc3c1b4c9b825a032ff0fbf3e07d000000000000000000000000f48e200eaf9906362bb1442fca31e0835773b8b4000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000e5c0774a5f065c285068170b20393925c84bf30000000000000000000000003c9f5385c288ce438ed55620938a4b967c0801010000000000000000000000001b3e95e8ecf7a7cab6c4de1b344f94865abd12d5000000000000000000000000ecab2c76f1a8359a06fab5fa0ceea51280a97ecf00000000000000000000000000e5c0774a5f065c285068170b20393925c84bf3000000000000000000000000215f34af6557a6598dbda9aa11cc556f5ae264b100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000000000000000000000000000000000000000000700000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf038590000000000000000000000008461a004b50d321cb22b7d034969ce68039118990000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c000000000000000000000000d6ac1cb9019137a896343da59dde6d097f7105380000000000000000000000008682fbf0cbf312c891532ba9f1a91e44f81ad7df0000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b730670000000000000000000000003f1b0278a9ee595635b61817630cc19de792f506000000000000000000000000000000000000000000000000000000000000000700000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf038590000000000000000000000008461a004b50d321cb22b7d034969ce68039118990000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c000000000000000000000000d6ac1cb9019137a896343da59dde6d097f7105380000000000000000000000001570af3df649fc74872c5b8f280a162a3bdd4eb60000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b730670000000000000000000000003f1b0278a9ee595635b61817630cc19de792f5060000000000000000000000000000000000000000000000000000000000000007000000000000000000000000cd0559adb6faa2fc83ab21cf4497c3b9b45bb29f0000000000000000000000008f18c0af0d7d511e8bdc6b3c64926b04edfe4892000000000000000000000000a5a5905efc55b05059ee247d5cac6dd6791cfc3300000000000000000000000051a16da36c79e28dd3c8c0c19214d8af413984aa000000000000000000000000aab7202d93b5633eb7fb3b80873c817b240f6f44000000000000000000000000ba8fe590498ed24d330bb925e69913b1ac35a81e000000000000000000000000b1fae59f23cace4949ae734e63e42168adb0ccb3000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000003d2000000000000000000000000000000000000000000000000000000000000019a00000000000000000000000000000000000000000000000000000000000002f4000000000000000000000000000000000000000000000000000000000000033a00000000000000000000000000000000000000000000000000000000000003d20000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000077345555200000000000000000000000000000000000000000000000000000000734b525700000000000000000000000000000000000000000000000000000000734348460000000000000000000000000000000000000000000000000000000073474250000000000000000000000000000000000000000000000000000000007345555200000000000000000000000000000000000000000000000000000000734a5059000000000000000000000000000000000000000000000000000000007341554400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _names (string[]): ibEUR,ibKRW,ibCHF,ibGBP,ibEUR-USDC,ibJPY,ibAUD
Arg [1] : _pids (uint256[]): 45,47,46,43,86,42,44
Arg [2] : _underlyingTokens (address[]): 0x96E61422b6A9bA0e068B6c5ADd4fFaBC6a4aae27,0x95dFDC8161832e4fF7816aC4B6367CE201538253,0x1CC481cE2BD2EC7Bf67d1Be64d4878b16078F309,0x69681f8fde45345C3870BCD5eaf4A05a60E7D227,0x96E61422b6A9bA0e068B6c5ADd4fFaBC6a4aae27,0x5555f75e3d5278082200Fb451D1b6bA946D8e13b,0xFAFdF0C4c1CB09d430Bf88c75D88BB46DAe09967
Arg [3] : _synths (address[]): 0xD71eCFF9342A5Ced620049e616c5035F1dB98620,0x269895a3dF4D73b077Fc823dD6dA1B95f72Aaf9B,0x0F83287FF768D1c1e17a42F44d644D7F22e8ee1d,0x97fe22E7341a0Cd8Db6F6C021A24Dc8f4DAD855F,0xD71eCFF9342A5Ced620049e616c5035F1dB98620,0xF6b1C627e95BFc3c1b4c9B825a032Ff0fBf3e07d,0xF48e200EAF9906362BB1442fca31e0835773b8B4
Arg [4] : _cyTokens (address[]): 0x00e5c0774A5F065c285068170b20393925C84BF3,0x3c9f5385c288cE438Ed55620938A4B967c080101,0x1b3E95E8ECF7A7caB6c4De1b344F94865aBD12d5,0xecaB2C76f1A8359A06fAB5fA0CEea51280A97eCF,0x00e5c0774A5F065c285068170b20393925C84BF3,0x215F34af6557A6598DbdA9aa11cc556F5AE264B1,0x86BBD9ac8B9B44C95FFc6BAAe58E25033B7548AA
Arg [5] : _curveLpTokens (address[]): 0x19b080FE1ffA0553469D20Ca36219F17Fcf03859,0x8461A004b50d321CB22B7d034969cE6803911899,0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c,0xD6Ac1CB9019137a896343Da59dDE6d097F710538,0x8682Fbf0CbF312C891532BA9F1A91e44f81ad7DF,0x8818a9bb44Fbf33502bE7c15c500d0C783B73067,0x3F1B0278A9ee595635B61817630cC19DE792f506
Arg [6] : _curvePools (address[]): 0x19b080FE1ffA0553469D20Ca36219F17Fcf03859,0x8461A004b50d321CB22B7d034969cE6803911899,0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c,0xD6Ac1CB9019137a896343Da59dDE6d097F710538,0x1570af3dF649Fc74872c5B8F280A162a3bdD4EB6,0x8818a9bb44Fbf33502bE7c15c500d0C783B73067,0x3F1B0278A9ee595635B61817630cC19DE792f506
Arg [7] : _rewardsContracts (address[]): 0xCd0559ADb6fAa2fc83aB21Cf4497c3b9b45bB29f,0x8F18C0AF0d7d511E8Bdc6B3c64926B04EDfE4892,0xa5A5905efc55B05059eE247d5CaC6DD6791Cfc33,0x51a16DA36c79E28dD3C8c0c19214D8aF413984Aa,0xAab7202D93B5633eB7FB3b80873C817B240F6F44,0xbA8fE590498ed24D330Bb925E69913b1Ac35a81E,0xb1Fae59F23CaCe4949Ae734E63E42168aDb0CcB3
Arg [8] : _chainlinkUint (uint256[]): 978,410,756,826,978,392,36
Arg [9] : _currencyKeys (bytes32[]): System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[]

-----Encoded View---------------
104 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000400
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000500
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000600
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000700
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000800
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000900
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000a00
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000b00
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000c00
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [14] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [15] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [19] : 6962455552000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [21] : 69624b5257000000000000000000000000000000000000000000000000000000
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [23] : 6962434846000000000000000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [25] : 6962474250000000000000000000000000000000000000000000000000000000
Arg [26] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [27] : 69624555522d5553444300000000000000000000000000000000000000000000
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [29] : 69624a5059000000000000000000000000000000000000000000000000000000
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [31] : 6962415544000000000000000000000000000000000000000000000000000000
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [33] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [34] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [35] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [36] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [38] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [39] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [41] : 00000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae27
Arg [42] : 00000000000000000000000095dfdc8161832e4ff7816ac4b6367ce201538253
Arg [43] : 0000000000000000000000001cc481ce2bd2ec7bf67d1be64d4878b16078f309
Arg [44] : 00000000000000000000000069681f8fde45345c3870bcd5eaf4a05a60e7d227
Arg [45] : 00000000000000000000000096e61422b6a9ba0e068b6c5add4ffabc6a4aae27
Arg [46] : 0000000000000000000000005555f75e3d5278082200fb451d1b6ba946d8e13b
Arg [47] : 000000000000000000000000fafdf0c4c1cb09d430bf88c75d88bb46dae09967
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [49] : 000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620
Arg [50] : 000000000000000000000000269895a3df4d73b077fc823dd6da1b95f72aaf9b
Arg [51] : 0000000000000000000000000f83287ff768d1c1e17a42f44d644d7f22e8ee1d
Arg [52] : 00000000000000000000000097fe22e7341a0cd8db6f6c021a24dc8f4dad855f
Arg [53] : 000000000000000000000000d71ecff9342a5ced620049e616c5035f1db98620
Arg [54] : 000000000000000000000000f6b1c627e95bfc3c1b4c9b825a032ff0fbf3e07d
Arg [55] : 000000000000000000000000f48e200eaf9906362bb1442fca31e0835773b8b4
Arg [56] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [57] : 00000000000000000000000000e5c0774a5f065c285068170b20393925c84bf3
Arg [58] : 0000000000000000000000003c9f5385c288ce438ed55620938a4b967c080101
Arg [59] : 0000000000000000000000001b3e95e8ecf7a7cab6c4de1b344f94865abd12d5
Arg [60] : 000000000000000000000000ecab2c76f1a8359a06fab5fa0ceea51280a97ecf
Arg [61] : 00000000000000000000000000e5c0774a5f065c285068170b20393925c84bf3
Arg [62] : 000000000000000000000000215f34af6557a6598dbda9aa11cc556f5ae264b1
Arg [63] : 00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa
Arg [64] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [65] : 00000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf03859
Arg [66] : 0000000000000000000000008461a004b50d321cb22b7d034969ce6803911899
Arg [67] : 0000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c
Arg [68] : 000000000000000000000000d6ac1cb9019137a896343da59dde6d097f710538
Arg [69] : 0000000000000000000000008682fbf0cbf312c891532ba9f1a91e44f81ad7df
Arg [70] : 0000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b73067
Arg [71] : 0000000000000000000000003f1b0278a9ee595635b61817630cc19de792f506
Arg [72] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [73] : 00000000000000000000000019b080fe1ffa0553469d20ca36219f17fcf03859
Arg [74] : 0000000000000000000000008461a004b50d321cb22b7d034969ce6803911899
Arg [75] : 0000000000000000000000009c2c8910f113181783c249d8f6aa41b51cde0f0c
Arg [76] : 000000000000000000000000d6ac1cb9019137a896343da59dde6d097f710538
Arg [77] : 0000000000000000000000001570af3df649fc74872c5b8f280a162a3bdd4eb6
Arg [78] : 0000000000000000000000008818a9bb44fbf33502be7c15c500d0c783b73067
Arg [79] : 0000000000000000000000003f1b0278a9ee595635b61817630cc19de792f506
Arg [80] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [81] : 000000000000000000000000cd0559adb6faa2fc83ab21cf4497c3b9b45bb29f
Arg [82] : 0000000000000000000000008f18c0af0d7d511e8bdc6b3c64926b04edfe4892
Arg [83] : 000000000000000000000000a5a5905efc55b05059ee247d5cac6dd6791cfc33
Arg [84] : 00000000000000000000000051a16da36c79e28dd3c8c0c19214d8af413984aa
Arg [85] : 000000000000000000000000aab7202d93b5633eb7fb3b80873c817b240f6f44
Arg [86] : 000000000000000000000000ba8fe590498ed24d330bb925e69913b1ac35a81e
Arg [87] : 000000000000000000000000b1fae59f23cace4949ae734e63e42168adb0ccb3
Arg [88] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [89] : 00000000000000000000000000000000000000000000000000000000000003d2
Arg [90] : 000000000000000000000000000000000000000000000000000000000000019a
Arg [91] : 00000000000000000000000000000000000000000000000000000000000002f4
Arg [92] : 000000000000000000000000000000000000000000000000000000000000033a
Arg [93] : 00000000000000000000000000000000000000000000000000000000000003d2
Arg [94] : 0000000000000000000000000000000000000000000000000000000000000188
Arg [95] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [96] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [97] : 7345555200000000000000000000000000000000000000000000000000000000
Arg [98] : 734b525700000000000000000000000000000000000000000000000000000000
Arg [99] : 7343484600000000000000000000000000000000000000000000000000000000
Arg [100] : 7347425000000000000000000000000000000000000000000000000000000000
Arg [101] : 7345555200000000000000000000000000000000000000000000000000000000
Arg [102] : 734a505900000000000000000000000000000000000000000000000000000000
Arg [103] : 7341554400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

846:26261:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18502:1010;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5798:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16558:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1721:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1409:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14840:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2708:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17205:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21258:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7271:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3039:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;19906:65;;;;;;;;;;;;;:::i;:::-;;13006:1647;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8243:1940;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;;;;;;;;;;;:::i;:::-;;19640:98:7;;;;;;;;;;;;;:::i;:::-;;1734:212:1;;;;;;;;;;;;;:::i;:::-;;24030:153:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2822:33;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6781:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7677:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6394:220:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23710:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26996:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20454:75;;;;;;;;;;;;;:::i;:::-;;25053:1602;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21791:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1549:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;847:99:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15608:672:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6037:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1139:178:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10391:2437:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23505:73;;;;;;;;;;;;;:::i;:::-;;18502:1010;1094:13:0;:11;:13::i;:::-;18666:1:7::1;18650:13;:17;18642:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;18751:22;18783:9;:20;18793:9;18783:20;;;;;;;;;;;:31;;;;;;;;;;;;18776:62;;;18847:4;18776:77;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18751:102;;18885:1;18868:14;:18;18864:181;;;18902:18;18932:9;:20;18942:9;18932:20;;;;;;;;;;;:30;;;;;;;;;;;;18902:61;;18977:9;:23;;;:57;;;;;;;;19002:12;18977:57;;;;19016:1;18977:57;;::::0;19020:13:::1;18977:57;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;18888:157;18864:181;19116:21;19149:9;:20;19159:9;19149:20;;;;;;;;;;;:33;;;;;;;;;;;;19116:67;;19193:17;19213:12;:22;;;19244:4;19213:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19193:57;;19372:1;19360:9;:13;19356:150;;;19389:11;19403:9;:20;19413:9;19403:20;;;;;;;;;;;:24;;;19389:38;;2107:42;19441:32;;;19474:3;19479:9;19490:4;19441:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19375:131;19356:150;18632:880;;;18502:1010:::0;;;:::o;5798:98::-;5837:13;5862:27;;;;;;;;;;;;;;;;;;;5798:98;:::o;16558:426::-;1094:13:0;:11;:13::i;:::-;16639:17:7::1;16669:9;:20;16679:9;16669:20;;;;;;;;;;;:28;;;;;;;;;;;;16639:59;;16708:7;:14;;;16723:7;16708:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16839:22;16851:9;16839:11;:22::i;:::-;16804:9;:20;16814:9;16804:20;;;;;;;;;;;:32;;:57;;;;16913:7;:27;;;16962:4;16913:64;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16871:9;:20;16881:9;16871:20;;;;;;;;;;;:39;;:106;;;;16629:355;16558:426:::0;;:::o;1721:93::-;1772:42;1721:93;:::o;1409:43::-;;;;;;;;;;;;;;;;;;;:::o;14840:373::-;14902:7;15024:21;2218:42;15048:25;;;15103:9;:20;15113:9;15103:20;;;;;;;;;;;:34;;;15161:3;15048:127;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15024:151;;15193:13;15186:20;;;14840:373;;;:::o;2708:24::-;;;;;;;;;;;;;:::o;17205:145::-;1094:13:0;:11;:13::i;:::-;17311:32:7::1;17324:9;17335:7;17311:12;:32::i;:::-;17205:145:::0;;:::o;21258:219::-;1094:13:0;:11;:13::i;:::-;21410:60:7::1;21427:16;21445:9;21456:13;21410:16;:60::i;:::-;21258:219:::0;;;:::o;7271:271::-;7365:4;7505:30;7525:9;7505:19;:30::i;:::-;7455:35;7480:9;7455:24;:35::i;:::-;7404:32;7426:9;7404:21;:32::i;:::-;:86;;;;:::i;:::-;:131;7385:150;;7271:271;;;:::o;3039:42::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19906:65::-;1094:13:0;:11;:13::i;:::-;19954:10:7::1;:8;:10::i;:::-;19906:65::o:0;13006:1647::-;13101:7;13216:19;13238:5;13216:27;;13253:17;13273:22;13253:42;;13315:25;13343:14;13315:42;;13378:14;1976:42;13395:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13378:34;;13422:19;13452:13;13477:17;13468:6;:26;;;;:::i;:::-;13452:42;;13504:21;13528:27;13545:9;13528:16;:27::i;:::-;13504:51;;13614:11;13606:5;:19;13602:423;;;13700:17;13734:5;13720:11;:19;;;;:::i;:::-;13700:39;;13818:11;13805:9;13789:13;:25;;;;:::i;:::-;13788:41;;;;:::i;:::-;13774:55;;13875:18;13908:6;13896:9;:18;;;;:::i;:::-;13875:39;;13946:10;13932:11;:24;13928:87;;;13990:10;13976:24;;13928:87;13627:398;;13602:423;14127:16;14236:3;2218:42;14146:25;;;1881:42;14219:3;14146:87;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:93;;;;:::i;:::-;14127:112;;14281:16;14390:3;2218:42;14300:25;;;1976:42;14373:3;14300:87;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:93;;;;:::i;:::-;14281:112;;14435:16;14483:4;14466:13;14455:8;:24;;;;:::i;:::-;14454:33;;;;:::i;:::-;14435:52;;14528:16;14574:4;14559:11;14548:8;:22;;;;:::i;:::-;14547:31;;;;:::i;:::-;14528:50;;14638:8;14627;:19;;;;:::i;:::-;14620:26;;;;;;;;;;;;;13006:1647;;;:::o;8243:1940::-;8341:19;8432:17;8459:9;:20;8469:9;8459:20;;;;;;;;;;;:31;;;;;;;;;;;;8432:59;;8501:19;8523:10;:20;;;8552:4;8523:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8501:57;;8568:19;8597:18;8625:20;8692:21;8716:23;8729:9;8716:12;:23::i;:::-;8692:47;;8805:1;8792:9;:14;:32;;;;8823:1;8810:9;:14;8792:32;8788:1307;;;8905:16;8919:1;8905:13;:16::i;:::-;8890:31;;8954:1;8939:12;:16;8935:250;;;8975:18;9005:9;:12;9015:1;9005:12;;;;;;;;;;;:22;;;;;;;;;;;;8975:53;;9059:9;:32;;;9113:16;9127:1;9113:13;:16::i;:::-;9151:1;9059:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9046:124;;8957:228;8935:250;9225:11;9212:10;:24;;;;:::i;:::-;9198:38;;9263:1;9250:14;;9294:16;9308:1;9294:13;:16::i;:::-;9279:31;;9343:1;9328:12;:16;9324:258;;;9364:22;9402:9;:12;9412:1;9402:12;;;;;;;;;;;:22;;;;;;;;;;;;9364:61;;9456:9;:32;;;9510:16;9524:1;9510:13;:16::i;:::-;9548:1;9456:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9443:124;;9346:236;9324:258;9623:10;9609:11;:24;;;;:::i;:::-;9595:38;;8788:1307;;;9729:24;9743:9;9729:13;:24::i;:::-;9714:39;;9786:1;9771:12;:16;9767:266;;;9807:18;9837:9;:20;9847:9;9837:20;;;;;;;;;;;:30;;;;;;;;;;;;9807:61;;9899:9;:32;;;9953:24;9967:9;9953:13;:24::i;:::-;9999:1;9899:119;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9886:132;;9789:244;9767:266;10073:11;10060:10;:24;;;;:::i;:::-;10046:38;;8788:1307;10151:4;10134:13;10120:11;:27;;;;:::i;:::-;10119:36;;;;:::i;:::-;10105:50;;8366:1817;;;;;;8243:1940;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;19640:98:7:-;1094:13:0;:11;:13::i;:::-;19696:10:7::1;:8;:10::i;:::-;19716:15;:13;:15::i;:::-;19640:98::o:0;1734:212:1:-;1786:14;1803:12;:10;:12::i;:::-;1786:29;;1851:6;1833:24;;:14;:12;:14::i;:::-;:24;;;1825:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1913:26;1932:6;1913:18;:26::i;:::-;1776:170;1734:212::o;24030:153:7:-;5598:15;:13;:15::i;:::-;24144:32:::1;24157:9;24168:7;24144:12;:32::i;:::-;24030:153:::0;;:::o;2822:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6781:217::-;6847:7;6866:23;6900:9;:20;6910:9;6900:20;;;;;;;;;;;:36;;;;;;;;;;;;6866:71;;6954:15;:22;;;6985:4;6954:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6947:44;;;6781:217;;;:::o;7677:403::-;7770:21;7850:17;7880:9;:20;7890:9;7880:20;;;;;;;;;;;:28;;;;;;;;;;;;7850:59;;8048:4;8009:23;8022:9;8009:12;:23::i;:::-;7948:7;:27;;;7984:4;7948:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:84;;;;:::i;:::-;7947:105;;;;:::i;:::-;7919:133;;7797:283;7677:403;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;6394:220:7:-;6455:7;2326:42;6493:23;;;6542:4;6565:9;:20;6575:9;6565:20;;;;;;;;;;;:28;;;;;;;;;;;;6493:114;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6474:133;;6394:220;;;:::o;23710:192::-;5598:15;:13;:15::i;:::-;23834:61:::1;23851:17;23870:9;23881:13;23834:16;:61::i;:::-;23710:192:::0;;:::o;26996:109::-;1094:13:0;:11;:13::i;:::-;27085::7::1;27070:12;;:28;;;;;;;;;;;;;;;;;;26996:109:::0;:::o;20454:75::-;1094:13:0;:11;:13::i;:::-;20507:15:7::1;:13;:15::i;:::-;20454:75::o:0;25053:1602::-;5598:15;:13;:15::i;:::-;25276:4:::1;25261:12:::0;::::1;:19;;;;;;;;;;;;;;;;;;25382;25378:849;;;25422:9;25417:371;25441:5;:12;25437:1;:16;25417:371;;;25478:17;25498:5;25504:1;25498:8;;;;;;;;:::i;:::-;;;;;;;;25478:28;;25524:18;25545:24;25559:9;25545:13;:24::i;:::-;25524:45;;25587:23;25642:9;:20;25652:9;25642:20;;;;;;;;;;;:36;;;;;;;;;;;;25587:109;;25714:15;:33;;;25748:10;25760:12;;;;;;;;;;;25714:59;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25460:328;;;25455:3;;;;;:::i;:::-;;;;25417:371;;;;25378:849;;;25928:9;25923:294;25947:5;:12;25943:1;:16;25923:294;;;25984:17;26004:5;26010:1;26004:8;;;;;;;;:::i;:::-;;;;;;;;25984:28;;26092:49;26109:17;26128:9;26139:1;26092:16;:49::i;:::-;26176:26;26189:9;26200:1;26176:12;:26::i;:::-;25966:251;25961:3;;;;;:::i;:::-;;;;25923:294;;;;25378:849;26362:9;26357:292;26381:12;:19;26377:1;:23;26357:292;;;26421:12;26443;26456:1;26443:15;;;;;;;;:::i;:::-;;;;;;;;26421:38;;26473:18;26494:5;:15;;;26518:4;26494:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26473:51;;26555:1;26542:10;:14;26538:101;;;26576:48;1772:42;26613:10;26576:5;:18;;;;:48;;;;;:::i;:::-;26538:101;26407:242;;26402:3;;;;;:::i;:::-;;;;26357:292;;;;25053:1602:::0;;;:::o;21791:187::-;1094:13:0;:11;:13::i;:::-;21910:61:7::1;21927:17;21946:9;21957:13;21910:16;:61::i;:::-;21791:187:::0;;:::o;1549:88::-;1595:42;1549:88;:::o;847:99:1:-;900:7;926:13;;;;;;;;;;;919:20;;847:99;:::o;15608:672:7:-;15729:24;1094:13:0;:11;:13::i;:::-;15769:17:7::1;15799:9;:20;15809:9;15799:20;;;;;;;;;;;:28;;;;;;;;;;;;15769:59;;15838:17;15865:9;:20;15875:9;15865:20;;;;;;;;;;;:31;;;;;;;;;;;;15838:59;;15985:1;15975:7;:11;15971:303;;;16002:10;:19;;;1595:42;16035:7;16002:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16076:7;16057:26;;15971:303;;;16158:7;:28;;;1595:42;16158:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16139:60;;16213:10;:19;;;1595:42;16246:16;16213:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15971:303;15759:521;;15608:672:::0;;;;:::o;6037:217::-;6100:7;6119:23;6153:9;:20;6163:9;6153:20;;;;;;;;;;;:36;;;;;;;;;;;;6119:71;;6207:15;:25;;;6241:4;6207:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6200:47;;;6037:217;;;:::o;1139:178:1:-;1094:13:0;:11;:13::i;:::-;1244:8:1::1;1228:13;;:24;;;;;;;;;;;;;;;;;;1301:8;1267:43;;1292:7;:5;:7::i;:::-;1267:43;;;;;;;;;;;;1139:178:::0;:::o;10391:2437:7:-;10484:19;10627:17;10654:9;:20;10664:9;10654:20;;;;;;;;;;;:31;;;;;;;;;;;;10627:59;;10696:19;10718:10;:20;;;10747:4;10718:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10696:57;;10763:19;10792:18;10820:20;10887:21;10911:23;10924:9;10911:12;:23::i;:::-;10887:47;;11000:1;10987:9;:14;:32;;;;11018:1;11005:9;:14;10987:32;10983:1756;;;11100:16;11114:1;11100:13;:16::i;:::-;11085:31;;11149:1;11134:12;:16;11130:379;;;11170:18;11200:9;:12;11210:1;11200:12;;;;;;;;;;;:22;;;;;;;;;;;;11170:53;;11335:9;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11299:12;11275:9;:18;;;11294:1;11275:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;11274:84;;;;:::i;:::-;11241:117;;11471:9;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11435:12;11411:9;:18;;;11430:1;11411:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;11410:84;;;;:::i;:::-;11376:118;;;;;:::i;:::-;;;11152:357;11130:379;11549:11;11536:10;:24;;;;:::i;:::-;11522:38;;11587:1;11574:14;;11618:16;11632:1;11618:13;:16::i;:::-;11603:31;;11667:1;11652:12;:16;11648:457;;;11688:22;11726:9;:12;11736:1;11726:12;;;;;;;;;;;:22;;;;;;;;;;;;11688:61;;11767:14;11797:9;:12;11807:1;11797:12;;;;;;;;;;;:25;;;;;;;;;;;;11767:56;;11935:7;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11899:12;11875:9;:18;;;11894:1;11875:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;11874:82;;;;:::i;:::-;11841:115;;12069:7;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12033:12;12009:9;:18;;;12028:1;12009:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;12008:82;;;;:::i;:::-;11974:116;;11670:435;;11648:457;12146:10;12132:11;:24;;;;:::i;:::-;12118:38;;10983:1756;;;12252:24;12266:9;12252:13;:24::i;:::-;12237:39;;12309:1;12294:12;:16;12290:387;;;12330:18;12360:9;:20;12370:9;12360:20;;;;;;;;;;;:30;;;;;;;;;;;;12330:61;;12503:9;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12467:12;12443:9;:18;;;12462:1;12443:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;12442:84;;;;:::i;:::-;12409:117;;12639:9;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12603:12;12579:9;:18;;;12598:1;12579:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;;;:::i;:::-;12578:84;;;;:::i;:::-;12544:118;;;;;:::i;:::-;;;12312:365;12290:387;12717:11;12704:10;:24;;;;:::i;:::-;12690:38;;10983:1756;12796:4;12779:13;12765:11;:27;;;;:::i;:::-;12764:36;;;;:::i;:::-;12749:51;;;;;:::i;:::-;;;10509:2319;;;;;;10391:2437;;;:::o;23505:73::-;5598:15;:13;:15::i;:::-;23561:10:::1;:8;:10::i;:::-;23505:73::o:0;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;17356:626:7:-;17433:17;17463:9;:20;17473:9;17463:20;;;;;;;;;;;:28;;;;;;;;;;;;17433:59;;17580:1;17570:7;:11;17566:164;;;17597:7;:19;;;17617:7;17597:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17566:164;;;17681:7;:19;;;17701:17;17681:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17566:164;17837:22;17849:9;17837:11;:22::i;:::-;17802:9;:20;17812:9;17802:20;;;;;;;;;;;:32;;:57;;;;17911:7;:27;;;17960:4;17911:64;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17869:9;:20;17879:9;17869:20;;;;;;;;;;;:39;;:106;;;;17423:559;17356:626;;:::o;21984:1349::-;22151:1;22135:13;:17;22127:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;22184:18;22205:24;22219:9;22205:13;:24::i;:::-;22184:45;;22263:10;22243:16;:30;22239:90;;22308:10;22289:29;;22239:90;22356:1;22343:10;:14;:38;;;;;22380:1;22361:16;:20;22343:38;22339:249;;;22397:23;22448:9;:20;22458:9;22448:20;;;;;;;;;;;:36;;;;;;;;;;;;22397:101;;22512:15;:33;;;22546:16;22564:12;;;;;;;;;;;22512:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22383:205;22339:249;22598:21;22631:9;:20;22641:9;22631:20;;;;;;;;;;;:33;;;;;;;;;;;;22598:67;;22675:18;22705:9;:20;22715:9;22705:20;;;;;;;;;;;:30;;;;;;;;;;;;22675:61;;22746:18;22767:12;:22;;;22798:4;22767:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22746:58;;22832:1;22819:10;:14;22815:512;;;22930:1;22917:9;:14;22913:404;;22951:9;:35;;;23008:10;23040:1;23063:13;23098:4;22951:169;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22913:404;;;23159:9;:35;;;23216:10;23248:1;23271:13;23159:143;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22913:404;22815:512;22117:1216;;;;21984:1349;;;:::o;19977:363::-;20105:22;2431:42;20137:24;;;20175:16;20205:5;20224;20243;20262:1;20277;20292;20307;20322;20137:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20006:334;19977:363::o;1501:153:1:-;1590:13;;1583:20;;;;;;;;;;;1613:34;1638:8;1613:24;:34::i;:::-;1501:153;:::o;20535:334:7:-;20579:18;1881:42;20600:13;;;20622:4;20600:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20579:49;;20655:1;20642:10;:14;20638:78;;;1881:42;20672:12;;;20685:7;:5;:7::i;:::-;20694:10;20672:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20638:78;20726:18;1976:42;20747:13;;;20769:4;20747:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20726:49;;20802:1;20789:10;:14;20785:78;;;1976:42;20819:12;;;20832:7;:5;:7::i;:::-;20841:10;20819:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20785:78;20569:300;;20535:334::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;5637:116:7:-;1772:42;5694:30;;:10;:30;;;5686:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5637:116::o;941:175:4:-;1023:86;1043:5;1073:23;;;1098:2;1102:5;1050:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023:19;:86::i;:::-;941:175;;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;5196:642:4:-;5615:23;5641:69;5669:4;5641:69;;;;;;;;;;;;;;;;;5649:5;5641:27;;;;:69;;;;;:::i;:::-;5615:95;;5749:1;5728:10;:17;:22;:56;;;;5765:10;5754:30;;;;;;;;;;;;:::i;:::-;5728:56;5720:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;5266:572;5196:642;;:::o;4108:223:5:-;4241:12;4272:52;4294:6;4302:4;4308:1;4311:12;4272:21;:52::i;:::-;4265:59;;4108:223;;;;;:::o;5165:446::-;5330:12;5387:5;5362:21;:30;;5354:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5446:12;5460:23;5487:6;:11;;5506:5;5513:4;5487:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5445:73;;;;5535:69;5562:6;5570:7;5579:10;5591:12;5535:26;:69::i;:::-;5528:76;;;;5165:446;;;;;;:::o;7671:628::-;7851:12;7879:7;7875:418;;;7927:1;7906:10;:17;:22;7902:286;;8121:18;8132:6;8121:10;:18::i;:::-;8113:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7902:286;8208:10;8201:17;;;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;;:::o;1412:320::-;1472:4;1724:1;1702:7;:19;;;:23;1695:30;;1412:320;;;:::o;8821:540::-;9000:1;8980:10;:17;:21;8976:379;;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:75:12;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:619::-;767:6;775;783;832:2;820:9;811:7;807:23;803:32;800:119;;;838:79;;:::i;:::-;800:119;958:1;983:53;1028:7;1019:6;1008:9;1004:22;983:53;:::i;:::-;973:63;;929:117;1085:2;1111:53;1156:7;1147:6;1136:9;1132:22;1111:53;:::i;:::-;1101:63;;1056:118;1213:2;1239:53;1284:7;1275:6;1264:9;1260:22;1239:53;:::i;:::-;1229:63;;1184:118;690:619;;;;;:::o;1315:99::-;1367:6;1401:5;1395:12;1385:22;;1315:99;;;:::o;1420:169::-;1504:11;1538:6;1533:3;1526:19;1578:4;1573:3;1569:14;1554:29;;1420:169;;;;:::o;1595:246::-;1676:1;1686:113;1700:6;1697:1;1694:13;1686:113;;;1785:1;1780:3;1776:11;1770:18;1766:1;1761:3;1757:11;1750:39;1722:2;1719:1;1715:10;1710:15;;1686:113;;;1833:1;1824:6;1819:3;1815:16;1808:27;1657:184;1595:246;;;:::o;1847:102::-;1888:6;1939:2;1935:7;1930:2;1923:5;1919:14;1915:28;1905:38;;1847:102;;;:::o;1955:377::-;2043:3;2071:39;2104:5;2071:39;:::i;:::-;2126:71;2190:6;2185:3;2126:71;:::i;:::-;2119:78;;2206:65;2264:6;2259:3;2252:4;2245:5;2241:16;2206:65;:::i;:::-;2296:29;2318:6;2296:29;:::i;:::-;2291:3;2287:39;2280:46;;2047:285;1955:377;;;;:::o;2338:313::-;2451:4;2489:2;2478:9;2474:18;2466:26;;2538:9;2532:4;2528:20;2524:1;2513:9;2509:17;2502:47;2566:78;2639:4;2630:6;2566:78;:::i;:::-;2558:86;;2338:313;;;;:::o;2657:474::-;2725:6;2733;2782:2;2770:9;2761:7;2757:23;2753:32;2750:119;;;2788:79;;:::i;:::-;2750:119;2908:1;2933:53;2978:7;2969:6;2958:9;2954:22;2933:53;:::i;:::-;2923:63;;2879:117;3035:2;3061:53;3106:7;3097:6;3086:9;3082:22;3061:53;:::i;:::-;3051:63;;3006:118;2657:474;;;;;:::o;3137:126::-;3174:7;3214:42;3207:5;3203:54;3192:65;;3137:126;;;:::o;3269:96::-;3306:7;3335:24;3353:5;3335:24;:::i;:::-;3324:35;;3269:96;;;:::o;3371:118::-;3458:24;3476:5;3458:24;:::i;:::-;3453:3;3446:37;3371:118;;:::o;3495:222::-;3588:4;3626:2;3615:9;3611:18;3603:26;;3639:71;3707:1;3696:9;3692:17;3683:6;3639:71;:::i;:::-;3495:222;;;;:::o;3723:329::-;3782:6;3831:2;3819:9;3810:7;3806:23;3802:32;3799:119;;;3837:79;;:::i;:::-;3799:119;3957:1;3982:53;4027:7;4018:6;4007:9;4003:22;3982:53;:::i;:::-;3972:63;;3928:117;3723:329;;;;:::o;4058:118::-;4145:24;4163:5;4145:24;:::i;:::-;4140:3;4133:37;4058:118;;:::o;4182:222::-;4275:4;4313:2;4302:9;4298:18;4290:26;;4326:71;4394:1;4383:9;4379:17;4370:6;4326:71;:::i;:::-;4182:222;;;;:::o;4410:90::-;4444:7;4487:5;4480:13;4473:21;4462:32;;4410:90;;;:::o;4506:109::-;4587:21;4602:5;4587:21;:::i;:::-;4582:3;4575:34;4506:109;;:::o;4621:210::-;4708:4;4746:2;4735:9;4731:18;4723:26;;4759:65;4821:1;4810:9;4806:17;4797:6;4759:65;:::i;:::-;4621:210;;;;:::o;4837:77::-;4874:7;4903:5;4892:16;;4837:77;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:1536::-;5467:4;5505:3;5494:9;5490:19;5482:27;;5555:9;5549:4;5545:20;5541:1;5530:9;5526:17;5519:47;5583:78;5656:4;5647:6;5583:78;:::i;:::-;5575:86;;5671:72;5739:2;5728:9;5724:18;5715:6;5671:72;:::i;:::-;5753;5821:2;5810:9;5806:18;5797:6;5753:72;:::i;:::-;5835;5903:2;5892:9;5888:18;5879:6;5835:72;:::i;:::-;5917:73;5985:3;5974:9;5970:19;5961:6;5917:73;:::i;:::-;6000;6068:3;6057:9;6053:19;6044:6;6000:73;:::i;:::-;6083;6151:3;6140:9;6136:19;6127:6;6083:73;:::i;:::-;6166;6234:3;6223:9;6219:19;6210:6;6166:73;:::i;:::-;6249;6317:3;6306:9;6302:19;6293:6;6249:73;:::i;:::-;6332;6400:3;6389:9;6385:19;6376:6;6332:73;:::i;:::-;6415:74;6484:3;6473:9;6469:19;6459:7;6415:74;:::i;:::-;6499;6568:3;6557:9;6553:19;6543:7;6499:74;:::i;:::-;5044:1536;;;;;;;;;;;;;;;:::o;6586:116::-;6656:21;6671:5;6656:21;:::i;:::-;6649:5;6646:32;6636:60;;6692:1;6689;6682:12;6636:60;6586:116;:::o;6708:133::-;6751:5;6789:6;6776:20;6767:29;;6805:30;6829:5;6805:30;:::i;:::-;6708:133;;;;:::o;6847:323::-;6903:6;6952:2;6940:9;6931:7;6927:23;6923:32;6920:119;;;6958:79;;:::i;:::-;6920:119;7078:1;7103:50;7145:7;7136:6;7125:9;7121:22;7103:50;:::i;:::-;7093:60;;7049:114;6847:323;;;;:::o;7176:117::-;7285:1;7282;7275:12;7299:180;7347:77;7344:1;7337:88;7444:4;7441:1;7434:15;7468:4;7465:1;7458:15;7485:281;7568:27;7590:4;7568:27;:::i;:::-;7560:6;7556:40;7698:6;7686:10;7683:22;7662:18;7650:10;7647:34;7644:62;7641:88;;;7709:18;;:::i;:::-;7641:88;7749:10;7745:2;7738:22;7528:238;7485:281;;:::o;7772:129::-;7806:6;7833:20;;:::i;:::-;7823:30;;7862:33;7890:4;7882:6;7862:33;:::i;:::-;7772:129;;;:::o;7907:311::-;7984:4;8074:18;8066:6;8063:30;8060:56;;;8096:18;;:::i;:::-;8060:56;8146:4;8138:6;8134:17;8126:25;;8206:4;8200;8196:15;8188:23;;7907:311;;;:::o;8224:117::-;8333:1;8330;8323:12;8364:710;8460:5;8485:81;8501:64;8558:6;8501:64;:::i;:::-;8485:81;:::i;:::-;8476:90;;8586:5;8615:6;8608:5;8601:21;8649:4;8642:5;8638:16;8631:23;;8702:4;8694:6;8690:17;8682:6;8678:30;8731:3;8723:6;8720:15;8717:122;;;8750:79;;:::i;:::-;8717:122;8865:6;8848:220;8882:6;8877:3;8874:15;8848:220;;;8957:3;8986:37;9019:3;9007:10;8986:37;:::i;:::-;8981:3;8974:50;9053:4;9048:3;9044:14;9037:21;;8924:144;8908:4;8903:3;8899:14;8892:21;;8848:220;;;8852:21;8466:608;;8364:710;;;;;:::o;9097:370::-;9168:5;9217:3;9210:4;9202:6;9198:17;9194:27;9184:122;;9225:79;;:::i;:::-;9184:122;9342:6;9329:20;9367:94;9457:3;9449:6;9442:4;9434:6;9430:17;9367:94;:::i;:::-;9358:103;;9174:293;9097:370;;;;:::o;9473:311::-;9550:4;9640:18;9632:6;9629:30;9626:56;;;9662:18;;:::i;:::-;9626:56;9712:4;9704:6;9700:17;9692:25;;9772:4;9766;9762:15;9754:23;;9473:311;;;:::o;9790:122::-;9863:24;9881:5;9863:24;:::i;:::-;9856:5;9853:35;9843:63;;9902:1;9899;9892:12;9843:63;9790:122;:::o;9918:139::-;9964:5;10002:6;9989:20;9980:29;;10018:33;10045:5;10018:33;:::i;:::-;9918:139;;;;:::o;10080:710::-;10176:5;10201:81;10217:64;10274:6;10217:64;:::i;:::-;10201:81;:::i;:::-;10192:90;;10302:5;10331:6;10324:5;10317:21;10365:4;10358:5;10354:16;10347:23;;10418:4;10410:6;10406:17;10398:6;10394:30;10447:3;10439:6;10436:15;10433:122;;;10466:79;;:::i;:::-;10433:122;10581:6;10564:220;10598:6;10593:3;10590:15;10564:220;;;10673:3;10702:37;10735:3;10723:10;10702:37;:::i;:::-;10697:3;10690:50;10769:4;10764:3;10760:14;10753:21;;10640:144;10624:4;10619:3;10615:14;10608:21;;10564:220;;;10568:21;10182:608;;10080:710;;;;;:::o;10813:370::-;10884:5;10933:3;10926:4;10918:6;10914:17;10910:27;10900:122;;10941:79;;:::i;:::-;10900:122;11058:6;11045:20;11083:94;11173:3;11165:6;11158:4;11150:6;11146:17;11083:94;:::i;:::-;11074:103;;10890:293;10813:370;;;;:::o;11189:1033::-;11313:6;11321;11329;11378:2;11366:9;11357:7;11353:23;11349:32;11346:119;;;11384:79;;:::i;:::-;11346:119;11532:1;11521:9;11517:17;11504:31;11562:18;11554:6;11551:30;11548:117;;;11584:79;;:::i;:::-;11548:117;11689:78;11759:7;11750:6;11739:9;11735:22;11689:78;:::i;:::-;11679:88;;11475:302;11816:2;11842:50;11884:7;11875:6;11864:9;11860:22;11842:50;:::i;:::-;11832:60;;11787:115;11969:2;11958:9;11954:18;11941:32;12000:18;11992:6;11989:30;11986:117;;;12022:79;;:::i;:::-;11986:117;12127:78;12197:7;12188:6;12177:9;12173:22;12127:78;:::i;:::-;12117:88;;11912:303;11189:1033;;;;;:::o;12228:329::-;12287:6;12336:2;12324:9;12315:7;12311:23;12307:32;12304:119;;;12342:79;;:::i;:::-;12304:119;12462:1;12487:53;12532:7;12523:6;12512:9;12508:22;12487:53;:::i;:::-;12477:63;;12433:117;12228:329;;;;:::o;12563:167::-;12703:19;12699:1;12691:6;12687:14;12680:43;12563:167;:::o;12736:366::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:419::-;13274:4;13312:2;13301:9;13297:18;13289:26;;13361:9;13355:4;13351:20;13347:1;13336:9;13332:17;13325:47;13389:131;13515:4;13389:131;:::i;:::-;13381:139;;13108:419;;;:::o;13533:143::-;13590:5;13621:6;13615:13;13606:22;;13637:33;13664:5;13637:33;:::i;:::-;13533:143;;;;:::o;13682:351::-;13752:6;13801:2;13789:9;13780:7;13776:23;13772:32;13769:119;;;13807:79;;:::i;:::-;13769:119;13927:1;13952:64;14008:7;13999:6;13988:9;13984:22;13952:64;:::i;:::-;13942:74;;13898:128;13682:351;;;;:::o;14039:104::-;14104:6;14132:4;14122:14;;14039:104;;;:::o;14149:143::-;14246:11;14283:3;14268:18;;14149:143;;;;:::o;14298:98::-;14363:4;14386:3;14378:11;;14298:98;;;:::o;14402:108::-;14479:24;14497:5;14479:24;:::i;:::-;14474:3;14467:37;14402:108;;:::o;14516:179::-;14585:10;14606:46;14648:3;14640:6;14606:46;:::i;:::-;14684:4;14679:3;14675:14;14661:28;;14516:179;;;;:::o;14701:111::-;14769:4;14801;14796:3;14792:14;14784:22;;14701:111;;;:::o;14850:694::-;14986:52;15032:5;14986:52;:::i;:::-;15054:84;15131:6;15126:3;15054:84;:::i;:::-;15047:91;;15162:54;15210:5;15162:54;:::i;:::-;15239:7;15270:1;15255:282;15280:6;15277:1;15274:13;15255:282;;;15356:6;15350:13;15383:63;15442:3;15427:13;15383:63;:::i;:::-;15376:70;;15469:58;15520:6;15469:58;:::i;:::-;15459:68;;15315:222;15302:1;15299;15295:9;15290:14;;15255:282;;;15259:14;14962:582;;;14850:694;;:::o;15550:424::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15768:117;15882:1;15871:9;15867:17;15858:6;15768:117;:::i;:::-;15895:72;15963:2;15952:9;15948:18;15939:6;15895:72;:::i;:::-;15550:424;;;;;:::o;15980:430::-;16123:4;16161:2;16150:9;16146:18;16138:26;;16174:71;16242:1;16231:9;16227:17;16218:6;16174:71;:::i;:::-;16255:72;16323:2;16312:9;16308:18;16299:6;16255:72;:::i;:::-;16337:66;16399:2;16388:9;16384:18;16375:6;16337:66;:::i;:::-;15980:430;;;;;;:::o;16416:137::-;16470:5;16501:6;16495:13;16486:22;;16517:30;16541:5;16517:30;:::i;:::-;16416:137;;;;:::o;16559:345::-;16626:6;16675:2;16663:9;16654:7;16650:23;16646:32;16643:119;;;16681:79;;:::i;:::-;16643:119;16801:1;16826:61;16879:7;16870:6;16859:9;16855:22;16826:61;:::i;:::-;16816:71;;16772:125;16559:345;;;;:::o;16910:332::-;17031:4;17069:2;17058:9;17054:18;17046:26;;17082:71;17150:1;17139:9;17135:17;17126:6;17082:71;:::i;:::-;17163:72;17231:2;17220:9;17216:18;17207:6;17163:72;:::i;:::-;16910:332;;;;;:::o;17248:180::-;17296:77;17293:1;17286:88;17393:4;17390:1;17383:15;17417:4;17414:1;17407:15;17434:191;17474:3;17493:20;17511:1;17493:20;:::i;:::-;17488:25;;17527:20;17545:1;17527:20;:::i;:::-;17522:25;;17570:1;17567;17563:9;17556:16;;17591:3;17588:1;17585:10;17582:36;;;17598:18;;:::i;:::-;17582:36;17434:191;;;;:::o;17631:180::-;17679:77;17676:1;17669:88;17776:4;17773:1;17766:15;17800:4;17797:1;17790:15;17817:320;17861:6;17898:1;17892:4;17888:12;17878:22;;17945:1;17939:4;17935:12;17966:18;17956:81;;18022:4;18014:6;18010:17;18000:27;;17956:81;18084:2;18076:6;18073:14;18053:18;18050:38;18047:84;;18103:18;;:::i;:::-;18047:84;17868:269;17817:320;;;:::o;18143:180::-;18191:77;18188:1;18181:88;18288:4;18285:1;18278:15;18312:4;18309:1;18302:15;18329:185;18369:1;18386:20;18404:1;18386:20;:::i;:::-;18381:25;;18420:20;18438:1;18420:20;:::i;:::-;18415:25;;18459:1;18449:35;;18464:18;;:::i;:::-;18449:35;18506:1;18503;18499:9;18494:14;;18329:185;;;;:::o;18520:194::-;18560:4;18580:20;18598:1;18580:20;:::i;:::-;18575:25;;18614:20;18632:1;18614:20;:::i;:::-;18609:25;;18658:1;18655;18651:9;18643:17;;18682:1;18676:4;18673:11;18670:37;;;18687:18;;:::i;:::-;18670:37;18520:194;;;;:::o;18720:410::-;18760:7;18783:20;18801:1;18783:20;:::i;:::-;18778:25;;18817:20;18835:1;18817:20;:::i;:::-;18812:25;;18872:1;18869;18865:9;18894:30;18912:11;18894:30;:::i;:::-;18883:41;;19073:1;19064:7;19060:15;19057:1;19054:22;19034:1;19027:9;19007:83;18984:139;;19103:18;;:::i;:::-;18984:139;18768:362;18720:410;;;;:::o;19136:85::-;19181:7;19210:5;19199:16;;19136:85;;;:::o;19227:92::-;19263:7;19307:5;19303:2;19292:21;19281:32;;19227:92;;;:::o;19325:60::-;19353:3;19374:5;19367:12;;19325:60;;;:::o;19391:156::-;19448:9;19481:60;19498:42;19507:32;19533:5;19507:32;:::i;:::-;19498:42;:::i;:::-;19481:60;:::i;:::-;19468:73;;19391:156;;;:::o;19553:145::-;19647:44;19685:5;19647:44;:::i;:::-;19642:3;19635:57;19553:145;;:::o;19704:346::-;19832:4;19870:2;19859:9;19855:18;19847:26;;19883:71;19951:1;19940:9;19936:17;19927:6;19883:71;:::i;:::-;19964:79;20039:2;20028:9;20024:18;20015:6;19964:79;:::i;:::-;19704:346;;;;;:::o;20056:158::-;20114:9;20147:61;20165:42;20174:32;20200:5;20174:32;:::i;:::-;20165:42;:::i;:::-;20147:61;:::i;:::-;20134:74;;20056:158;;;:::o;20220:147::-;20315:45;20354:5;20315:45;:::i;:::-;20310:3;20303:58;20220:147;;:::o;20373:348::-;20502:4;20540:2;20529:9;20525:18;20517:26;;20553:71;20621:1;20610:9;20606:17;20597:6;20553:71;:::i;:::-;20634:80;20710:2;20699:9;20695:18;20686:6;20634:80;:::i;:::-;20373:348;;;;;:::o;20727:228::-;20867:34;20863:1;20855:6;20851:14;20844:58;20936:11;20931:2;20923:6;20919:15;20912:36;20727:228;:::o;20961:366::-;21103:3;21124:67;21188:2;21183:3;21124:67;:::i;:::-;21117:74;;21200:93;21289:3;21200:93;:::i;:::-;21318:2;21313:3;21309:12;21302:19;;20961:366;;;:::o;21333:419::-;21499:4;21537:2;21526:9;21522:18;21514:26;;21586:9;21580:4;21576:20;21572:1;21561:9;21557:17;21550:47;21614:131;21740:4;21614:131;:::i;:::-;21606:139;;21333:419;;;:::o;21758:180::-;21806:77;21803:1;21796:88;21903:4;21900:1;21893:15;21927:4;21924:1;21917:15;21944:320;22059:4;22097:2;22086:9;22082:18;22074:26;;22110:71;22178:1;22167:9;22163:17;22154:6;22110:71;:::i;:::-;22191:66;22253:2;22242:9;22238:18;22229:6;22191:66;:::i;:::-;21944:320;;;;;:::o;22270:233::-;22309:3;22332:24;22350:5;22332:24;:::i;:::-;22323:33;;22378:66;22371:5;22368:77;22365:103;;22448:18;;:::i;:::-;22365:103;22495:1;22488:5;22484:13;22477:20;;22270:233;;;:::o;22509:332::-;22630:4;22668:2;22657:9;22653:18;22645:26;;22681:71;22749:1;22738:9;22734:17;22725:6;22681:71;:::i;:::-;22762:72;22830:2;22819:9;22815:18;22806:6;22762:72;:::i;:::-;22509:332;;;;;:::o;22847:238::-;22948:4;22986:2;22975:9;22971:18;22963:26;;22999:79;23075:1;23064:9;23060:17;23051:6;22999:79;:::i;:::-;22847:238;;;;:::o;23091:85::-;23136:7;23165:5;23154:16;;23091:85;;;:::o;23182:158::-;23240:9;23273:61;23291:42;23300:32;23326:5;23300:32;:::i;:::-;23291:42;:::i;:::-;23273:61;:::i;:::-;23260:74;;23182:158;;;:::o;23346:147::-;23441:45;23480:5;23441:45;:::i;:::-;23436:3;23429:58;23346:147;;:::o;23499:238::-;23600:4;23638:2;23627:9;23623:18;23615:26;;23651:79;23727:1;23716:9;23712:17;23703:6;23651:79;:::i;:::-;23499:238;;;;:::o;23743:182::-;23883:34;23879:1;23871:6;23867:14;23860:58;23743:182;:::o;23931:366::-;24073:3;24094:67;24158:2;24153:3;24094:67;:::i;:::-;24087:74;;24170:93;24259:3;24170:93;:::i;:::-;24288:2;24283:3;24279:12;24272:19;;23931:366;;;:::o;24303:419::-;24469:4;24507:2;24496:9;24492:18;24484:26;;24556:9;24550:4;24546:20;24542:1;24531:9;24527:17;24520:47;24584:131;24710:4;24584:131;:::i;:::-;24576:139;;24303:419;;;:::o;24728:557::-;24907:4;24945:3;24934:9;24930:19;24922:27;;24959:71;25027:1;25016:9;25012:17;25003:6;24959:71;:::i;:::-;25040:80;25116:2;25105:9;25101:18;25092:6;25040:80;:::i;:::-;25130:72;25198:2;25187:9;25183:18;25174:6;25130:72;:::i;:::-;25212:66;25274:2;25263:9;25259:18;25250:6;25212:66;:::i;:::-;24728:557;;;;;;;:::o;25291:456::-;25447:4;25485:2;25474:9;25470:18;25462:26;;25498:71;25566:1;25555:9;25551:17;25542:6;25498:71;:::i;:::-;25579:79;25654:2;25643:9;25639:18;25630:6;25579:79;:::i;:::-;25668:72;25736:2;25725:9;25721:18;25712:6;25668:72;:::i;:::-;25291:456;;;;;;:::o;25753:111::-;25817:6;25851:5;25845:12;25835:22;;25753:111;;;:::o;25870:184::-;25969:11;26003:6;25998:3;25991:19;26043:4;26038:3;26034:14;26019:29;;25870:184;;;;:::o;26060:156::-;26124:4;26147:3;26139:11;;26170:3;26167:1;26160:14;26204:4;26201:1;26191:18;26183:26;;26060:156;;;:::o;26222:108::-;26299:24;26317:5;26299:24;:::i;:::-;26294:3;26287:37;26222:108;;:::o;26336:179::-;26405:10;26426:46;26468:3;26460:6;26426:46;:::i;:::-;26504:4;26499:3;26495:14;26481:28;;26336:179;;;;:::o;26521:102::-;26563:8;26610:5;26607:1;26603:13;26582:34;;26521:102;;;:::o;26629:139::-;26679:7;26719:42;26712:5;26708:54;26697:65;;26629:139;;;:::o;26774:166::-;26843:5;26868:66;26899:34;26922:10;26899:34;:::i;:::-;26868:66;:::i;:::-;26859:75;;26774:166;;;:::o;26946:144::-;27001:5;27026:57;27077:4;27071:11;27026:57;:::i;:::-;27017:66;;26946:144;;;:::o;27096:110::-;27163:4;27195;27190:3;27186:14;27178:22;;27096:110;;;:::o;27242:751::-;27358:3;27387:51;27432:5;27387:51;:::i;:::-;27454:86;27533:6;27528:3;27454:86;:::i;:::-;27447:93;;27564:53;27611:5;27564:53;:::i;:::-;27640:7;27671:1;27656:312;27681:6;27678:1;27675:13;27656:312;;;27751:44;27788:6;27751:44;:::i;:::-;27815:63;27874:3;27859:13;27815:63;:::i;:::-;27808:70;;27901:57;27951:6;27901:57;:::i;:::-;27891:67;;27716:252;27703:1;27700;27696:9;27691:14;;27656:312;;;27660:14;27984:3;27977:10;;27363:630;;;27242:751;;;;:::o;27999:114::-;28066:6;28100:5;28094:12;28084:22;;27999:114;;;:::o;28119:132::-;28186:4;28209:3;28201:11;;28239:4;28234:3;28230:14;28222:22;;28119:132;;;:::o;28257:113::-;28327:4;28359;28354:3;28350:14;28342:22;;28257:113;;;:::o;28406:732::-;28525:3;28554:54;28602:5;28554:54;:::i;:::-;28624:86;28703:6;28698:3;28624:86;:::i;:::-;28617:93;;28734:56;28784:5;28734:56;:::i;:::-;28813:7;28844:1;28829:284;28854:6;28851:1;28848:13;28829:284;;;28930:6;28924:13;28957:63;29016:3;29001:13;28957:63;:::i;:::-;28950:70;;29043:60;29096:6;29043:60;:::i;:::-;29033:70;;28889:224;28876:1;28873;28869:9;28864:14;;28829:284;;;28833:14;29129:3;29122:10;;28530:608;;;28406:732;;;;:::o;29144:1786::-;29698:4;29736:3;29725:9;29721:19;29713:27;;29786:9;29780:4;29776:20;29772:1;29761:9;29757:17;29750:47;29814:105;29914:4;29905:6;29814:105;:::i;:::-;29806:113;;29966:9;29960:4;29956:20;29951:2;29940:9;29936:18;29929:48;29994:108;30097:4;30088:6;29994:108;:::i;:::-;29986:116;;30149:9;30143:4;30139:20;30134:2;30123:9;30119:18;30112:48;30177:108;30280:4;30271:6;30177:108;:::i;:::-;30169:116;;30332:9;30326:4;30322:20;30317:2;30306:9;30302:18;30295:48;30360:108;30463:4;30454:6;30360:108;:::i;:::-;30352:116;;30478:81;30554:3;30543:9;30539:19;30530:6;30478:81;:::i;:::-;30569;30645:3;30634:9;30630:19;30621:6;30569:81;:::i;:::-;30660;30736:3;30725:9;30721:19;30712:6;30660:81;:::i;:::-;30751;30827:3;30816:9;30812:19;30803:6;30751:81;:::i;:::-;30842;30918:3;30907:9;30903:19;30894:6;30842:81;:::i;:::-;29144:1786;;;;;;;;;;;;:::o;30936:167::-;31076:19;31072:1;31064:6;31060:14;31053:43;30936:167;:::o;31109:366::-;31251:3;31272:67;31336:2;31331:3;31272:67;:::i;:::-;31265:74;;31348:93;31437:3;31348:93;:::i;:::-;31466:2;31461:3;31457:12;31450:19;;31109:366;;;:::o;31481:419::-;31647:4;31685:2;31674:9;31670:18;31662:26;;31734:9;31728:4;31724:20;31720:1;31709:9;31705:17;31698:47;31762:131;31888:4;31762:131;:::i;:::-;31754:139;;31481:419;;;:::o;31906:229::-;32046:34;32042:1;32034:6;32030:14;32023:58;32115:12;32110:2;32102:6;32098:15;32091:37;31906:229;:::o;32141:366::-;32283:3;32304:67;32368:2;32363:3;32304:67;:::i;:::-;32297:74;;32380:93;32469:3;32380:93;:::i;:::-;32498:2;32493:3;32489:12;32482:19;;32141:366;;;:::o;32513:419::-;32679:4;32717:2;32706:9;32702:18;32694:26;;32766:9;32760:4;32756:20;32752:1;32741:9;32737:17;32730:47;32794:131;32920:4;32794:131;:::i;:::-;32786:139;;32513:419;;;:::o;32938:225::-;33078:34;33074:1;33066:6;33062:14;33055:58;33147:8;33142:2;33134:6;33130:15;33123:33;32938:225;:::o;33169:366::-;33311:3;33332:67;33396:2;33391:3;33332:67;:::i;:::-;33325:74;;33408:93;33497:3;33408:93;:::i;:::-;33526:2;33521:3;33517:12;33510:19;;33169:366;;;:::o;33541:419::-;33707:4;33745:2;33734:9;33730:18;33722:26;;33794:9;33788:4;33784:20;33780:1;33769:9;33765:17;33758:47;33822:131;33948:4;33822:131;:::i;:::-;33814:139;;33541:419;;;:::o;33966:98::-;34017:6;34051:5;34045:12;34035:22;;33966:98;;;:::o;34070:147::-;34171:11;34208:3;34193:18;;34070:147;;;;:::o;34223:386::-;34327:3;34355:38;34387:5;34355:38;:::i;:::-;34409:88;34490:6;34485:3;34409:88;:::i;:::-;34402:95;;34506:65;34564:6;34559:3;34552:4;34545:5;34541:16;34506:65;:::i;:::-;34596:6;34591:3;34587:16;34580:23;;34331:278;34223:386;;;;:::o;34615:271::-;34745:3;34767:93;34856:3;34847:6;34767:93;:::i;:::-;34760:100;;34877:3;34870:10;;34615:271;;;;:::o;34892:179::-;35032:31;35028:1;35020:6;35016:14;35009:55;34892:179;:::o;35077:366::-;35219:3;35240:67;35304:2;35299:3;35240:67;:::i;:::-;35233:74;;35316:93;35405:3;35316:93;:::i;:::-;35434:2;35429:3;35425:12;35418:19;;35077:366;;;:::o;35449:419::-;35615:4;35653:2;35642:9;35638:18;35630:26;;35702:9;35696:4;35692:20;35688:1;35677:9;35673:17;35666:47;35730:131;35856:4;35730:131;:::i;:::-;35722:139;;35449:419;;;:::o

Swarm Source

ipfs://f15251ef8e472e36fff59739835bf9d29c45c32da298e18b64ca94ec60c7bf87

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.