POL Price: $0.221362 (+6.68%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve652457752024-12-08 21:06:18135 days ago1733691978IN
0x73A7b621...B831949A3
0 POL0.0007237830.00000002
Approve649138092024-11-30 12:56:08143 days ago1732971368IN
0x73A7b621...B831949A3
0 POL0.002229392.44858225
Approve526116332024-01-22 7:18:54456 days ago1705907934IN
0x73A7b621...B831949A3
0 POL0.0008926637
Approve504953692023-11-28 14:31:10511 days ago1701181870IN
0x73A7b621...B831949A3
0 POL0.00342589142
Approve504953412023-11-28 14:30:10511 days ago1701181810IN
0x73A7b621...B831949A3
0 POL0.00342589142
Approve502718502023-11-23 0:23:25517 days ago1700699005IN
0x73A7b621...B831949A3
0 POL0.0010132942
Approve502718082023-11-23 0:21:57517 days ago1700698917IN
0x73A7b621...B831949A3
0 POL0.0010132942
Approve428393742023-05-18 3:23:29706 days ago1684380209IN
0x73A7b621...B831949A3
0 POL0.00340077140.95882065
Approve413455402023-04-09 22:54:38744 days ago1681080878IN
0x73A7b621...B831949A3
0 POL0.00293462121.6376099
Approve413327812023-04-09 15:08:58744 days ago1681052938IN
0x73A7b621...B831949A3
0 POL0.00470467180.07617859
Approve413324422023-04-09 14:56:26744 days ago1681052186IN
0x73A7b621...B831949A3
0 POL0.00395606163.97512268
Approve373050752022-12-26 16:17:49848 days ago1672071469IN
0x73A7b621...B831949A3
0 POL0.0016620668.89111426
Approve317237172022-08-10 7:12:19986 days ago1660115539IN
0x73A7b621...B831949A3
0 POL0.0007237830
Approve277860032022-05-01 6:53:381087 days ago1651388018IN
0x73A7b621...B831949A3
0 POL0.0015913734.28949999
Approve276876042022-04-28 19:05:321090 days ago1651172732IN
0x73A7b621...B831949A3
0 POL0.001306350
Approve273396122022-04-19 22:14:081099 days ago1650406448IN
0x73A7b621...B831949A3
0 POL0.0007254630.07000101
Approve272313702022-04-17 4:29:101102 days ago1650169750IN
0x73A7b621...B831949A3
0 POL0.0014007530.18209612
Approve271745282022-04-15 17:40:021103 days ago1650044402IN
0x73A7b621...B831949A3
0 POL0.0028631261.69190874
Approve269264002022-04-09 10:48:561109 days ago1649501336IN
0x73A7b621...B831949A3
0 POL0.0013955430.06999999
Approve266446902022-04-02 5:56:341116 days ago1648878994IN
0x73A7b621...B831949A3
0 POL0.0013929430.01390002
Approve265062042022-03-29 16:19:241120 days ago1648570764IN
0x73A7b621...B831949A3
0 POL0.0013931230.01786491
Approve264997822022-03-29 12:22:501120 days ago1648556570IN
0x73A7b621...B831949A3
0 POL0.0014410131.04970446
Approve262958582022-03-24 6:18:591125 days ago1648102739IN
0x73A7b621...B831949A3
0 POL0.0016243535.00000074
Approve262041332022-03-21 22:33:011128 days ago1647901981IN
0x73A7b621...B831949A3
0 POL0.0014093430.36733956
Approve261278162022-03-19 23:35:181130 days ago1647732918IN
0x73A7b621...B831949A3
0 POL0.0015341533.05663969
View all transactions

Latest 2 internal transactions

Parent Transaction Hash Block From To
181786262021-08-20 2:01:481342 days ago1629424908
0x73A7b621...B831949A3
 Contract Creation0 POL
181786262021-08-20 2:01:481342 days ago1629424908  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2AaBdA50...d87B038EB
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
UniswapV2Pair

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-08-20
*/

// Sources flattened with hardhat v2.4.1 https://hardhat.org

// File contracts/DeFi/uniswapv2/libraries/SafeMath.sol

// SPDX-License-Identifier: GPL-3.0

pragma solidity =0.6.12;

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

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

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

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


// File contracts/DeFi/uniswapv2/UniswapV2ERC20.sol


contract UniswapV2ERC20 {
    using SafeMathUniswap for uint;

    string public constant name = 'Gravity Finance LP Token';
    string public constant symbol = 'GLP';
    uint8 public constant decimals = 18;
    uint  public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

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

    constructor() public {
        uint chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
    }

    function _mint(address to, uint value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

    function _burn(address from, uint value) internal {
        balanceOf[from] = balanceOf[from].sub(value);
        totalSupply = totalSupply.sub(value);
        emit Transfer(from, address(0), value);
    }

    function _approve(address owner, address spender, uint value) private {
        allowance[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(address from, address to, uint value) private {
        balanceOf[from] = balanceOf[from].sub(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(from, to, value);
    }

    function approve(address spender, uint value) external returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint value) external returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(address from, address to, uint value) external returns (bool) {
        if (allowance[from][msg.sender] != uint(-1)) {
            allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
        }
        _transfer(from, to, value);
        return true;
    }

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        require(deadline >= block.timestamp, 'Gravity Finance: EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'Gravity Finance: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}


// File contracts/DeFi/uniswapv2/libraries/Math.sol


// a library for performing various math operations

library Math {
    function min(uint x, uint y) internal pure returns (uint z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}


// File contracts/DeFi/uniswapv2/libraries/UQ112x112.sol


// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))

// range: [0, 2**112 - 1]
// resolution: 1 / 2**112

library UQ112x112 {
    uint224 constant Q112 = 2**112;

    // encode a uint112 as a UQ112x112
    function encode(uint112 y) internal pure returns (uint224 z) {
        z = uint224(y) * Q112; // never overflows
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
        z = x / uint224(y);
    }
}


// File contracts/DeFi/uniswapv2/interfaces/IERC20.sol


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

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

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


// File contracts/DeFi/uniswapv2/interfaces/OZ_IERC20.sol


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

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

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

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

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

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

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

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


// File contracts/DeFi/uniswapv2/interfaces/IUniswapV2Factory.sol


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

    function feeToSetter() external view returns (address);
    function migrator() external view returns (address);
    function weth() external view returns (address);
    function wbtc() external view returns (address);
    function gfi() external view returns (address);
    function earningsManager() external view returns (address);
    function feeManager() external view returns (address);
    function dustPan() external view returns (address);
    function governor() external view returns (address);
    function priceOracle() external view returns (address);
    function pathOracle() external view returns (address);
    function router() external view returns (address);
    function paused() external view returns (bool);
    function slippage() external view returns (uint);


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

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

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


// File contracts/DeFi/uniswapv2/interfaces/IUniswapV2Callee.sol


interface IUniswapV2Callee {
    function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;
}


// File contracts/DeFi/uniswapv2/Holding.sol



contract Holding {
    using SafeMathUniswap for uint256;

    address public SWAP_ADDRESS;

    modifier onlySwap() {
        require(msg.sender == SWAP_ADDRESS, "Gravity Finance: FORBIDDEN");
        _;
    }

    constructor() public {
        SWAP_ADDRESS = msg.sender;
    }

    function approveEM(address TOKEN_ADDRESS, address EM_ADDRESS, uint amount)external onlySwap{
        OZ_IERC20(TOKEN_ADDRESS).approve(EM_ADDRESS, amount);
    }
    
}


// File contracts/DeFi/uniswapv2/interfaces/iGovernance.sol



interface iGovernance {
    /**
     * Assume claimFee uses msg.sender, and returns the amount of WETH sent to the caller
     */
    function delegateFee(address reciever) external returns (uint256);

    function depositFee(uint256 amountWETH, uint256 amountWBTC) external;
    function tierLedger(address user) external returns(uint[3] memory);
}


// File contracts/DeFi/uniswapv2/interfaces/IHolding.sol



interface IHolding {
    /**
     * Assume claimFee uses msg.sender, and returns the amount of WETH sent to the caller
     */
    function approveEM(address TOKEN_ADDRESS, address EM_ADDRESS, uint amount) external;
}


// File contracts/DeFi/uniswapv2/UniswapV2Pair.sol










interface IMigrator {
    // Return the desired amount of liquidity token that the migrator wants.
    function desiredLiquidity() external view returns (uint256);
}

contract UniswapV2Pair is UniswapV2ERC20 {
    using SafeMathUniswap  for uint;
    using UQ112x112 for uint224;

    uint public constant MINIMUM_LIQUIDITY = 10**3;
    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));

    address public factory;
    address public token0;
    address public token1;

    uint112 private reserve0;           // uses single storage slot, accessible via getReserves
    uint112 private reserve1;           // uses single storage slot, accessible via getReserves
    uint32  private blockTimestampLast; // uses single storage slot, accessible via getReserves

    uint public price0CumulativeLast;
    uint public price1CumulativeLast;
    uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event

    uint private unlocked = 1;

    /*--------------------------------START NEW VARS--------------------------------*/
    Holding holder;
    address public HOLDING_ADDRESS;
    IUniswapV2Factory Factory;
    /*--------------------------------END  NEW VARS--------------------------------*/

    modifier lock() {
        require(unlocked == 1, 'Gravity Finance: LOCKED');
        unlocked = 0;
        _;
        unlocked = 1;
    }

    modifier onlyEarningsManager() {
        require(msg.sender == Factory.earningsManager(), "Gravity Finance: FORBBIDDEN");
        _;
    }

    function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
        _reserve0 = reserve0;
        _reserve1 = reserve1;
        _blockTimestampLast = blockTimestampLast;
    }

    function _safeTransfer(address token, address to, uint value) private {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'Gravity Finance: TRANSFER_FAILED');
    }

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

    //NEW EVENT
    event HandleEarnings(uint amount);
    //END EVENT

    constructor() public {
        factory = msg.sender;
        Factory = IUniswapV2Factory(msg.sender);
    }

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1) external {
        require(msg.sender == factory, 'Gravity Finance: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
        //NEW CODE
        holder = new Holding();
        HOLDING_ADDRESS = address(holder);
    }

    /**
    * @dev called by the earningsManager in order to have the pair claim its wETH earnings and send it to its holding contract. Then pair tells holding contract to approve earnings manager to spend its wETH
    **/
    function handleEarnings() external onlyEarningsManager returns(uint amount){
        require(token0 == Factory.gfi() || token1 == Factory.gfi(), "Swap contract must have GFI as one of it's assets to claim earnings"); //Require statement not really needed
        amount = iGovernance(Factory.governor()).delegateFee(HOLDING_ADDRESS); //Calculates WETH fees earned by GFI in contract
        holder.approveEM(Factory.weth(), Factory.earningsManager(), amount);
        emit HandleEarnings(amount);
    }

    /**
    * @dev called by the Earnings manager after wETH earnings are converted into pool assets, and deposited into the pool
    **/
    function destroy(uint value) external onlyEarningsManager returns(bool){
        _burn(msg.sender, value);
        return true;
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
        require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'Gravity Finance: OVERFLOW');
        uint32 blockTimestamp = uint32(block.timestamp % 2**32);
        uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
        if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
            // * never overflows, and + overflow is desired
            price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
            price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function mint(address to) external lock returns (uint liquidity) {
        require(!Factory.paused(), "Swap contract is paused, users can only remove liquidity");
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        uint balance0 = IERC20Uniswap(token0).balanceOf(address(this));
        uint balance1 = IERC20Uniswap(token1).balanceOf(address(this));
        uint amount0 = balance0.sub(_reserve0);
        uint amount1 = balance1.sub(_reserve1);

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            address migrator = Factory.migrator();
            if (msg.sender == migrator) {
                liquidity = IMigrator(migrator).desiredLiquidity();
                require(liquidity > 0 && liquidity != uint256(-1), "Bad desired liquidity");
            } else {
                require(migrator == address(0), "Must not have migrator");
                liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
                _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
            }
        } else {
            liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
        }
        require(liquidity > 0, 'Gravity Finance: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Mint(msg.sender, amount0, amount1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function burn(address to) external lock returns (uint amount0, uint amount1) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        address _token0 = token0;                                // gas savings
        address _token1 = token1;                                // gas savings
        uint balance0 = IERC20Uniswap(_token0).balanceOf(address(this));
        uint balance1 = IERC20Uniswap(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
        amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
        require(amount0 > 0 && amount1 > 0, 'Gravity Finance: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IERC20Uniswap(_token0).balanceOf(address(this));
        balance1 = IERC20Uniswap(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Burn(msg.sender, amount0, amount1, to);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
        require(!Factory.paused(), "Swap contract is paused, users can only remove liquidity");
        require(amount0Out > 0 || amount1Out > 0, 'Gravity Finance: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Gravity Finance: INSUFFICIENT_LIQUIDITY');

        uint balance0;
        uint balance1;
        { // scope for _token{0,1}, avoids stack too deep errors
        address _token0 = token0;
        address _token1 = token1;

        /*START NEW CODE*/
        if (amount0Out > 0){
            uint old_amount0Out = amount0Out;
            amount0Out = amount0Out.mul(9995) / (10000); //Remove 0.05% gov fee
             _safeTransfer(_token0, Factory.feeManager(), old_amount0Out.sub(amount0Out)); // optimistically transfer tokens
        }
        if (amount1Out > 0){
            uint old_amount1Out = amount1Out;
            amount1Out = amount1Out.mul(9995) / (10000); //Remove 0.05% gov fee
             _safeTransfer(_token1, Factory.feeManager(), old_amount1Out.sub(amount1Out)); // optimistically transfer tokens
        }
        /*END NEW CODE*/

        require(to != _token0 && to != _token1, 'Gravity Finance: INVALID_TO');
        if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
        if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
        if (data.length > 0) IUniswapV2Callee(to).uniswapV2Call(msg.sender, amount0Out, amount1Out, data);
        balance0 = IERC20Uniswap(_token0).balanceOf(address(this));
        balance1 = IERC20Uniswap(_token1).balanceOf(address(this));
        }
        uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
        uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
        require(amount0In > 0 || amount1In > 0, 'Gravity Finance: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        uint balance0Adjusted = balance0.mul(10000).sub(amount0In.mul(25));
        uint balance1Adjusted = balance1.mul(10000).sub(amount1In.mul(25));
        require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**2), 'Gravity Finance: K');
        }

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
    }

    // force balances to match reserves
    function skim(address to) external lock {
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        _safeTransfer(_token0, to, IERC20Uniswap(_token0).balanceOf(address(this)).sub(reserve0));
        _safeTransfer(_token1, to, IERC20Uniswap(_token1).balanceOf(address(this)).sub(reserve1));
    }

    // force reserves to match balances
    function sync() external lock {
        _update(IERC20Uniswap(token0).balanceOf(address(this)), IERC20Uniswap(token1).balanceOf(address(this)), reserve0, reserve1);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"HandleEarnings","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLDING_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"destroy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"handleEarnings","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063ba9a7a56116100a2578063d505accf11610071578063d505accf14610592578063dd62ed3e146105e3578063ec6501bd14610611578063fff6cae914610619576101da565b8063ba9a7a5614610554578063bc25cf771461055c578063c45a015514610582578063d21220a71461058a576101da565b806389afcb44116100de57806389afcb44146104c457806395d89b41146105035780639d1187701461050b578063a9059cbb14610528576101da565b806370a08231146104705780637464fc3d146104965780637ecebe001461049e576101da565b806323b872dd1161017c578063485cc9551161014b578063485cc9551461040c5780635909c0d51461043a5780635a3d5493146104425780636a6278421461044a576101da565b806323b872dd146103a857806330adf81f146103de578063313ce567146103e65780633644e51514610404576101da565b8063095ea7b3116101b8578063095ea7b3146103225780630dfe168114610362578063113fcc281461038657806318160ddd146103a0576101da565b8063022c0d9f146101df57806306fdde031461026d5780630902f1ac146102ea575b600080fd5b61026b600480360360808110156101f557600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561022c57600080fd5b82018360208201111561023e57600080fd5b8035906020019184600183028401116401000000008311171561026057600080fd5b509092509050610621565b005b610275610d6b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102af578181015183820152602001610297565b50505050905090810190601f1680156102dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f2610da4565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610dce565b604080519115158252519081900360200190f35b61036a610de5565b604080516001600160a01b039092168252519081900360200190f35b61038e610df4565b60408051918252519081900360200190f35b61038e6112a8565b61034e600480360360608110156103be57600080fd5b506001600160a01b038135811691602081013590911690604001356112ae565b61038e611342565b6103ee611366565b6040805160ff9092168252519081900360200190f35b61038e61136b565b61026b6004803603604081101561042257600080fd5b506001600160a01b0381358116916020013516611371565b61038e61145a565b61038e611460565b61038e6004803603602081101561046057600080fd5b50356001600160a01b0316611466565b61038e6004803603602081101561048657600080fd5b50356001600160a01b031661195c565b61038e61196e565b61038e600480360360208110156104b457600080fd5b50356001600160a01b0316611974565b6104ea600480360360208110156104da57600080fd5b50356001600160a01b0316611986565b6040805192835260208301919091528051918290030190f35b610275611ce8565b61034e6004803603602081101561052157600080fd5b5035611d07565b61034e6004803603604081101561053e57600080fd5b506001600160a01b038135169060200135611de7565b61038e611df4565b61026b6004803603602081101561057257600080fd5b50356001600160a01b0316611dfa565b61036a611f6d565b61036a611f7c565b61026b600480360360e08110156105a857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611f8b565b61038e600480360360408110156105f957600080fd5b506001600160a01b0381358116916020013516612182565b61036a61219f565b61026b6121ae565b600c54600114610672576040805162461bcd60e51b815260206004820152601760248201527611dc985d9a5d1e48119a5b985b98d94e881313d0d2d151604a1b604482015290519081900360640190fd5b6000600c55600f5460408051635c975abb60e01b815290516001600160a01b0390921691635c975abb91600480820192602092909190829003018186803b1580156106bc57600080fd5b505afa1580156106d0573d6000803e3d6000fd5b505050506040513d60208110156106e657600080fd5b5051156107245760405162461bcd60e51b8152600401808060200182810382526038815260200180612ceb6038913960400191505060405180910390fd5b60008511806107335750600084115b61076e5760405162461bcd60e51b815260040180806020018281038252602b815260200180612d23602b913960400191505060405180910390fd5b600080610779610da4565b5091509150816001600160701b03168710801561079e5750806001600160701b031686105b6107d95760405162461bcd60e51b8152600401808060200182810382526027815260200180612c4a6027913960400191505060405180910390fd5b60065460075460009182916001600160a01b0391821691168a156108b8578a6127106108078261270b612316565b8161080e57fe5b049b506108b683600f60009054906101000a90046001600160a01b03166001600160a01b031663d0fb02036040518163ffffffff1660e01b815260040160206040518083038186803b15801561086357600080fd5b505afa158015610877573d6000803e3d6000fd5b505050506040513d602081101561088d57600080fd5b81019080805190602001909291905050506108b18f8561237990919063ffffffff16565b6123c9565b505b891561096257896127106108ce8261270b612316565b816108d557fe5b049a5061096082600f60009054906101000a90046001600160a01b03166001600160a01b031663d0fb02036040518163ffffffff1660e01b815260040160206040518083038186803b15801561092a57600080fd5b505afa15801561093e573d6000803e3d6000fd5b505050506040513d602081101561095457600080fd5b50516108b1848f612379565b505b816001600160a01b0316896001600160a01b0316141580156109965750806001600160a01b0316896001600160a01b031614155b6109e7576040805162461bcd60e51b815260206004820152601b60248201527f477261766974792046696e616e63653a20494e56414c49445f544f0000000000604482015290519081900360640190fd5b8a156109f8576109f8828a8d6123c9565b8915610a0957610a09818a8c6123c9565b8615610abb57886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610aa257600080fd5b505af1158015610ab6573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610b0157600080fd5b505afa158015610b15573d6000803e3d6000fd5b505050506040513d6020811015610b2b57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610b7757600080fd5b505afa158015610b8b573d6000803e3d6000fd5b505050506040513d6020811015610ba157600080fd5b5051925060009150506001600160701b0385168a90038311610bc4576000610bd3565b89856001600160701b03160383035b9050600089856001600160701b0316038311610bf0576000610bff565b89856001600160701b03160383035b90506000821180610c105750600081115b610c4b5760405162461bcd60e51b815260040180806020018281038252602a815260200180612c71602a913960400191505060405180910390fd5b6000610c6d610c5b846019612316565b610c6787612710612316565b90612379565b90506000610c7f610c5b846019612316565b9050610ca56305f5e100610c9f6001600160701b038b8116908b16612316565b90612316565b610caf8383612316565b1015610cf7576040805162461bcd60e51b8152602060048201526012602482015271477261766974792046696e616e63653a204b60701b604482015290519081900360640190fd5b5050610d0584848888612563565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280601881526020017f477261766974792046696e616e6365204c5020546f6b656e000000000000000081525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610ddb33848461272c565b5060015b92915050565b6006546001600160a01b031681565b600f54604080516339a0cced60e11b815290516000926001600160a01b03169163734199da916004808301926020929190829003018186803b158015610e3957600080fd5b505afa158015610e4d573d6000803e3d6000fd5b505050506040513d6020811015610e6357600080fd5b50516001600160a01b03163314610ec1576040805162461bcd60e51b815260206004820152601b60248201527f477261766974792046696e616e63653a20464f524242494444454e0000000000604482015290519081900360640190fd5b600f60009054906101000a90046001600160a01b03166001600160a01b0316630c19b05e6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0f57600080fd5b505afa158015610f23573d6000803e3d6000fd5b505050506040513d6020811015610f3957600080fd5b50516006546001600160a01b0390811691161480610fde5750600f60009054906101000a90046001600160a01b03166001600160a01b0316630c19b05e6040518163ffffffff1660e01b815260040160206040518083038186803b158015610fa057600080fd5b505afa158015610fb4573d6000803e3d6000fd5b505050506040513d6020811015610fca57600080fd5b50516007546001600160a01b039081169116145b6110195760405162461bcd60e51b8152600401808060200182810382526043815260200180612d4e6043913960600191505060405180910390fd5b600f60009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561106757600080fd5b505afa15801561107b573d6000803e3d6000fd5b505050506040513d602081101561109157600080fd5b5051600e54604080516001620712af60e31b031981526001600160a01b0392831660048201529051919092169163ffc76a889160248083019260209291908290030181600087803b1580156110e557600080fd5b505af11580156110f9573d6000803e3d6000fd5b505050506040513d602081101561110f57600080fd5b5051600d54600f5460408051633fc8cef360e01b815290519394506001600160a01b03928316936319ab11b29390921691633fc8cef391600480820192602092909190829003018186803b15801561116657600080fd5b505afa15801561117a573d6000803e3d6000fd5b505050506040513d602081101561119057600080fd5b5051600f54604080516339a0cced60e11b815290516001600160a01b039092169163734199da91600480820192602092909190829003018186803b1580156111d757600080fd5b505afa1580156111eb573d6000803e3d6000fd5b505050506040513d602081101561120157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820185905251606480830192600092919082900301818387803b15801561125957600080fd5b505af115801561126d573d6000803e3d6000fd5b50506040805184815290517f1c62e2ebe58d0f190bad1c401486be134a7353a509b6b24fb8c3deeced7f65879350908190036020019150a190565b60005481565b6001600160a01b03831660009081526002602090815260408083203384529091528120546000191461132d576001600160a01b03841660009081526002602090815260408083203384529091529020546113089083612379565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b61133884848461278e565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b031633146113d0576040805162461bcd60e51b815260206004820152601a60248201527f477261766974792046696e616e63653a20464f5242494444454e000000000000604482015290519081900360640190fd5b600680546001600160a01b038085166001600160a01b031992831617909255600780549284169290911691909117905560405161140c90612a47565b604051809103906000f080158015611428573d6000803e3d6000fd5b50600d80546001600160a01b03199081166001600160a01b039384161791829055600e80549290931691161790555050565b60095481565b600a5481565b6000600c546001146114b9576040805162461bcd60e51b815260206004820152601760248201527611dc985d9a5d1e48119a5b985b98d94e881313d0d2d151604a1b604482015290519081900360640190fd5b6000600c55600f5460408051635c975abb60e01b815290516001600160a01b0390921691635c975abb91600480820192602092909190829003018186803b15801561150357600080fd5b505afa158015611517573d6000803e3d6000fd5b505050506040513d602081101561152d57600080fd5b50511561156b5760405162461bcd60e51b8152600401808060200182810382526038815260200180612ceb6038913960400191505060405180910390fd5b600080611576610da4565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156115ca57600080fd5b505afa1580156115de573d6000803e3d6000fd5b505050506040513d60208110156115f457600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561164757600080fd5b505afa15801561165b573d6000803e3d6000fd5b505050506040513d602081101561167157600080fd5b50519050600061168a836001600160701b038716612379565b905060006116a1836001600160701b038716612379565b6000549091508061187857600f5460408051637cd07e4760e01b815290516000926001600160a01b031691637cd07e47916004808301926020929190829003018186803b1580156116f157600080fd5b505afa158015611705573d6000803e3d6000fd5b505050506040513d602081101561171b57600080fd5b50519050336001600160a01b03821614156117f657806001600160a01b03166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b15801561176957600080fd5b505afa15801561177d573d6000803e3d6000fd5b505050506040513d602081101561179357600080fd5b5051985088158015906117a857506000198914155b6117f1576040805162461bcd60e51b81526020600482015260156024820152744261642064657369726564206c697175696469747960581b604482015290519081900360640190fd5b611872565b6001600160a01b0381161561184b576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103737ba103430bb329036b4b3b930ba37b960511b604482015290519081900360640190fd5b6118636103e8610c6761185e8787612316565b61283c565b985061187260006103e861288d565b506118bb565b6118b86001600160701b03881661188f8584612316565b8161189657fe5b046001600160701b0388166118ab8585612316565b816118b257fe5b04612917565b97505b600088116118fa5760405162461bcd60e51b815260040180806020018281038252602e815260200180612d91602e913960400191505060405180910390fd5b611904898961288d565b61191085858989612563565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c55509395945050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c546001146119da576040805162461bcd60e51b815260206004820152601760248201527611dc985d9a5d1e48119a5b985b98d94e881313d0d2d151604a1b604482015290519081900360640190fd5b6000600c819055806119ea610da4565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b158015611a4657600080fd5b505afa158015611a5a573d6000803e3d6000fd5b505050506040513d6020811015611a7057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015611abe57600080fd5b505afa158015611ad2573d6000803e3d6000fd5b505050506040513d6020811015611ae857600080fd5b50513060009081526001602052604081205490549192509080611b0b8386612316565b81611b1257fe5b04995080611b208385612316565b81611b2757fe5b04985060008a118015611b3a5750600089115b611b755760405162461bcd60e51b815260040180806020018281038252602e815260200180612c9b602e913960400191505060405180910390fd5b611b7f308361292f565b611b8a868c8c6123c9565b611b95858c8b6123c9565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015611bdb57600080fd5b505afa158015611bef573d6000803e3d6000fd5b505050506040513d6020811015611c0557600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038716916370a0823191602480820192602092909190829003018186803b158015611c5157600080fd5b505afa158015611c65573d6000803e3d6000fd5b505050506040513d6020811015611c7b57600080fd5b50519250611c8b84848a8a612563565b604080518b8152602081018b905281516001600160a01b038e169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a350505050505050506001600c81905550915091565b604051806040016040528060038152602001620474c560ec1b81525081565b600f54604080516339a0cced60e11b815290516000926001600160a01b03169163734199da916004808301926020929190829003018186803b158015611d4c57600080fd5b505afa158015611d60573d6000803e3d6000fd5b505050506040513d6020811015611d7657600080fd5b50516001600160a01b03163314611dd4576040805162461bcd60e51b815260206004820152601b60248201527f477261766974792046696e616e63653a20464f524242494444454e0000000000604482015290519081900360640190fd5b611dde338361292f565b5060015b919050565b6000610ddb33848461278e565b6103e881565b600c54600114611e4b576040805162461bcd60e51b815260206004820152601760248201527611dc985d9a5d1e48119a5b985b98d94e881313d0d2d151604a1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b039485169490931692611eef92859287926108b1926001600160701b03169185916370a0823191602480820192602092909190829003018186803b158015611ebd57600080fd5b505afa158015611ed1573d6000803e3d6000fd5b505050506040513d6020811015611ee757600080fd5b505190612379565b611f6381846108b16008600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611ebd57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b42841015611fe0576040805162461bcd60e51b815260206004820152601860248201527f477261766974792046696e616e63653a20455850495245440000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156120fb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906121315750886001600160a01b0316816001600160a01b0316145b61216c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612cc96022913960400191505060405180910390fd5b61217789898961272c565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600e546001600160a01b031681565b600c546001146121ff576040805162461bcd60e51b815260206004820152601760248201527611dc985d9a5d1e48119a5b985b98d94e881313d0d2d151604a1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b8152306004820152905161230f926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561225057600080fd5b505afa158015612264573d6000803e3d6000fd5b505050506040513d602081101561227a57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156122c757600080fd5b505afa1580156122db573d6000803e3d6000fd5b505050506040513d60208110156122f157600080fd5b50516008546001600160701b0380821691600160701b900416612563565b6001600c55565b60008115806123315750508082028282828161232e57fe5b04145b610ddf576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610ddf576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106124765780518252601f199092019160209182019101612457565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146124d8576040519150601f19603f3d011682016040523d82523d6000602084013e6124dd565b606091505b509150915081801561250b57508051158061250b575080806020019051602081101561250857600080fd5b50515b61255c576040805162461bcd60e51b815260206004820181905260248201527f477261766974792046696e616e63653a205452414e534645525f4641494c4544604482015290519081900360640190fd5b5050505050565b6001600160701b03841180159061258157506001600160701b038311155b6125d2576040805162461bcd60e51b815260206004820152601960248201527f477261766974792046696e616e63653a204f564552464c4f5700000000000000604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b9004811682039081161580159061260257506001600160701b03841615155b801561261657506001600160701b03831615155b15612681578063ffffffff1661263e8561262f866129c1565b6001600160e01b0316906129d3565b600980546001600160e01b03929092169290920201905563ffffffff81166126698461262f876129c1565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166000908152600160205260409020546127b19082612379565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546127e090826129f8565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600382111561287f575080600160028204015b818110156128795780915060028182858161286857fe5b04018161287157fe5b049050612851565b50611de2565b8115611de257506001919050565b60005461289a90826129f8565b60009081556001600160a01b0383168152600160205260409020546128bf90826129f8565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106129265781612928565b825b9392505050565b6001600160a01b0382166000908152600160205260409020546129529082612379565b6001600160a01b038316600090815260016020526040812091909155546129799082612379565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816129f057fe5b049392505050565b80820182811015610ddf576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fd5b6101f580612a558339019056fe608060405234801561001057600080fd5b50600080546001600160a01b031916331790556101c3806100326000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806319ab11b21461003b578063b3e63f8e14610073575b600080fd5b6100716004803603606081101561005157600080fd5b506001600160a01b03813581169160208101359091169060400135610097565b005b61007b61017e565b604080516001600160a01b039092168252519081900360200190f35b6000546001600160a01b031633146100f6576040805162461bcd60e51b815260206004820152601a60248201527f477261766974792046696e616e63653a20464f5242494444454e000000000000604482015290519081900360640190fd5b826001600160a01b031663095ea7b383836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561014d57600080fd5b505af1158015610161573d6000803e3d6000fd5b505050506040513d602081101561017757600080fd5b5050505050565b6000546001600160a01b03168156fea264697066735822122038b5cc9ec62229d9015066a652c248d4dc934723fb1993b757a546883806094164736f6c634300060c0033477261766974792046696e616e63653a20494e53554646494349454e545f4c4951554944495459477261766974792046696e616e63653a20494e53554646494349454e545f494e5055545f414d4f554e54477261766974792046696e616e63653a20494e53554646494349454e545f4c49515549444954595f4255524e4544477261766974792046696e616e63653a20494e56414c49445f5349474e41545552455377617020636f6e7472616374206973207061757365642c2075736572732063616e206f6e6c792072656d6f7665206c6971756964697479477261766974792046696e616e63653a20494e53554646494349454e545f4f55545055545f414d4f554e545377617020636f6e7472616374206d757374206861766520474649206173206f6e65206f6620697427732061737365747320746f20636c61696d206561726e696e6773477261766974792046696e616e63653a20494e53554646494349454e545f4c49515549444954595f4d494e544544a2646970667358221220f6199eddad30f9f9650bd8f8ddf9b6ea5f1422b0c09e206dbf5c337b62f4484764736f6c634300060c0033

Deployed Bytecode Sourcemap

12327:11491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20514:2683;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20514:2683:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20514:2683:0;;-1:-1:-1;20514:2683:0;-1:-1:-1;20514:2683:0;:::i;:::-;;880:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13763:231;;;:::i;:::-;;;;-1:-1:-1;;;;;13763:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2940:147;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2940:147:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12628:21;;;:::i;:::-;;;;-1:-1:-1;;;;;12628:21:0;;;;;;;;;;;;;;15502:507;;;:::i;:::-;;;;;;;;;;;;;;;;1029:24;;;:::i;3242:301::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3242:301:0;;;;;;;;;;;;;;;;;:::i;1321:108::-;;;:::i;987:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1178:31;;;:::i;14955:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14955:313:0;;;;;;;;;;:::i;12979:32::-;;;:::i;13018:::-;;;:::i;17357:1585::-;;;;;;;;;;;;;;;;-1:-1:-1;17357:1585:0;-1:-1:-1;;;;;17357:1585:0;;:::i;1060:41::-;;;;;;;;;;;;;;;;-1:-1:-1;1060:41:0;-1:-1:-1;;;;;1060:41:0;;:::i;13057:17::-;;;:::i;1436:38::-;;;;;;;;;;;;;;;;-1:-1:-1;1436:38:0;-1:-1:-1;;;;;1436:38:0;;:::i;19054:1348::-;;;;;;;;;;;;;;;;-1:-1:-1;19054:1348:0;-1:-1:-1;;;;;19054:1348:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;943:37;;;:::i;16158:136::-;;;;;;;;;;;;;;;;-1:-1:-1;16158:136:0;;:::i;3095:139::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3095:139:0;;;;;;;;:::i;12449:46::-;;;:::i;23246:348::-;;;;;;;;;;;;;;;;-1:-1:-1;23246:348:0;-1:-1:-1;;;;;23246:348:0;;:::i;12599:22::-;;;:::i;12656:21::-;;;:::i;3551:686::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3551:686:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1108:61::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1108:61:0;;;;;;;;;;:::i;13306:30::-;;;:::i;23643:172::-;;;:::i;20514:2683::-;13499:8;;13511:1;13499:13;13491:49;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;;;;13562:1;13551:8;:12;20629:7:::1;::::0;:16:::1;::::0;;-1:-1:-1;;;20629:16:0;;;;-1:-1:-1;;;;;20629:7:0;;::::1;::::0;:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:7;:16;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;20629:16:0;20628:17:::1;20620:86;;;;-1:-1:-1::0;;;20620:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20738:1;20725:10;:14;:32;;;;20756:1;20743:10;:14;20725:32;20717:88;;;;-1:-1:-1::0;;;20717:88:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20817:17;20836::::0;20858:13:::1;:11;:13::i;:::-;20816:55;;;;;20918:9;-1:-1:-1::0;;;;;20905:22:0::1;:10;:22;:48;;;;;20944:9;-1:-1:-1::0;;;;;20931:22:0::1;:10;:22;20905:48;20897:100;;;;-1:-1:-1::0;;;20897:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21142:6;::::0;21177::::1;::::0;21010:13:::1;::::0;;;-1:-1:-1;;;;;21142:6:0;;::::1;::::0;21177::::1;21228:14:::0;;21224:285:::1;;21280:10:::0;21342:5:::1;21318:20;21280:10:::0;21333:4:::1;21318:14;:20::i;:::-;:30;;;;;;21305:43;;21387:76;21401:7;21410;;;;;;;;;-1:-1:-1::0;;;;;21410:7:0::1;-1:-1:-1::0;;;;;21410:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;21432:30;21451:10;21432:14;:18;;:30;;;;:::i;:::-;21387:13;:76::i;:::-;21224:285;;21523:14:::0;;21519:285:::1;;21575:10:::0;21637:5:::1;21613:20;21575:10:::0;21628:4:::1;21613:14;:20::i;:::-;:30;;;;;;21600:43;;21682:76;21696:7;21705;;;;;;;;;-1:-1:-1::0;;;;;21705:7:0::1;-1:-1:-1::0;;;;;21705:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;21705:20:0;21727:30:::1;:14:::0;21746:10;21727:18:::1;:30::i;21682:76::-;21519:285;;21856:7;-1:-1:-1::0;;;;;21850:13:0::1;:2;-1:-1:-1::0;;;;;21850:13:0::1;;;:30;;;;;21873:7;-1:-1:-1::0;;;;;21867:13:0::1;:2;-1:-1:-1::0;;;;;21867:13:0::1;;;21850:30;21842:70;;;::::0;;-1:-1:-1;;;21842:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21927:14:::0;;21923:58:::1;;21943:38;21957:7;21966:2;21970:10;21943:13;:38::i;:::-;22030:14:::0;;22026:58:::1;;22046:38;22060:7;22069:2;22073:10;22046:13;:38::i;:::-;22133:15:::0;;22129:97:::1;;22167:2;-1:-1:-1::0;;;;;22150:34:0::1;;22185:10;22197;22209;22221:4;;22150:76;;;;;;;;;;;;;-1:-1:-1::0;;;;;22150:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;22129:97;22248:47;::::0;;-1:-1:-1;;;22248:47:0;;22289:4:::1;22248:47;::::0;::::1;::::0;;;-1:-1:-1;;;;;22248:32:0;::::1;::::0;::::1;::::0;:47;;;;;::::1;::::0;;;;;;;;:32;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;22248:47:0;22317::::1;::::0;;-1:-1:-1;;;22317:47:0;;22358:4:::1;22317:47;::::0;::::1;::::0;;;22248;;-1:-1:-1;;;;;;22317:32:0;::::1;::::0;::::1;::::0;:47;;;;;22248::::1;::::0;22317;;;;;;;;:32;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;22317:47:0;;-1:-1:-1;22386:14:0::1;::::0;-1:-1:-1;;;;;;;22414:22:0;::::1;::::0;;::::1;22403:33:::0;::::1;:75;;22477:1;22403:75;;;22463:10;22451:9;-1:-1:-1::0;;;;;22451:22:0::1;;22439:8;:35;22403:75;22386:92;;22489:14;22529:10;22517:9;-1:-1:-1::0;;;;;22517:22:0::1;;22506:8;:33;:75;;22580:1;22506:75;;;22566:10;22554:9;-1:-1:-1::0;;;;;22554:22:0::1;;22542:8;:35;22506:75;22489:92;;22612:1;22600:9;:13;:30;;;;22629:1;22617:9;:13;22600:30;22592:85;;;;-1:-1:-1::0;;;22592:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22763:21;22787:42;22811:17;:9:::0;22825:2:::1;22811:13;:17::i;:::-;22787:19;:8:::0;22800:5:::1;22787:12;:19::i;:::-;:23:::0;::::1;:42::i;:::-;22763:66:::0;-1:-1:-1;22840:21:0::1;22864:42;22888:17;:9:::0;22902:2:::1;22888:13;:17::i;22864:42::-;22840:66:::0;-1:-1:-1;22967:44:0::1;23002:8;22967:30;-1:-1:-1::0;;;;;22967:15:0;;::::1;::::0;:30;::::1;:19;:30::i;:::-;:34:::0;::::1;:44::i;:::-;22925:38;:16:::0;22946;22925:20:::1;:38::i;:::-;:86;;22917:117;;;::::0;;-1:-1:-1;;;22917:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22917:117:0;;;;;;;;;;;;;::::1;;13574:1;;23058:49;23066:8;23076;23086:9;23097;23058:7;:49::i;:::-;23123:66;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23123:66:0;::::1;::::0;23128:10:::1;::::0;23123:66:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;13597:1:0;13586:8;:12;-1:-1:-1;;;;;;;;;20514:2683:0:o;880:56::-;;;;;;;;;;;;;;;;;;;:::o;13763:231::-;13896:8;;-1:-1:-1;;;;;13896:8:0;;;;-1:-1:-1;;;13927:8:0;;;;;;-1:-1:-1;;;13968:18:0;;;;;13763:231::o;2940:147::-;3004:4;3021:36;3030:10;3042:7;3051:5;3021:8;:36::i;:::-;-1:-1:-1;3075:4:0;2940:147;;;;;:::o;12628:21::-;;;-1:-1:-1;;;;;12628:21:0;;:::o;15502:507::-;13678:7;;:25;;;-1:-1:-1;;;13678:25:0;;;;15565:11;;-1:-1:-1;;;;;13678:7:0;;:23;;:25;;;;;;;;;;;;;;:7;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13678:25:0;-1:-1:-1;;;;;13664:39:0;:10;:39;13656:79;;;;;-1:-1:-1;;;13656:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15606:7:::1;;;;;;;;;-1:-1:-1::0;;;;;15606:7:0::1;-1:-1:-1::0;;;;;15606:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15606:13:0;15596:6:::1;::::0;-1:-1:-1;;;;;15596:6:0;;::::1;:23:::0;::::1;;::::0;:50:::1;;;15633:7;;;;;;;;;-1:-1:-1::0;;;;;15633:7:0::1;-1:-1:-1::0;;;;;15633:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15633:13:0;15623:6:::1;::::0;-1:-1:-1;;;;;15623:6:0;;::::1;:23:::0;::::1;;15596:50;15588:130;;;;-1:-1:-1::0;;;15588:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15788:7;;;;;;;;;-1:-1:-1::0;;;;;15788:7:0::1;-1:-1:-1::0;;;;;15788:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15788:18:0;15820:15:::1;::::0;15776:60:::1;::::0;;-1:-1:-1;;;;;;15776:60:0;;-1:-1:-1;;;;;15820:15:0;;::::1;15776:60;::::0;::::1;::::0;;;:43;;;::::1;::::0;::::1;::::0;:60;;;;;15788:18:::1;::::0;15776:60;;;;;;;15820:15:::1;15776:43:::0;:60;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15776:60:0;15896:6:::1;::::0;15913:7:::1;::::0;:14:::1;::::0;;-1:-1:-1;;;15913:14:0;;;;15776:60;;-1:-1:-1;;;;;;15896:6:0;;::::1;::::0;:16:::1;::::0;15913:7;;::::1;::::0;:12:::1;::::0;:14:::1;::::0;;::::1;::::0;15776:60:::1;::::0;15913:14;;;;;;;;:7;:14;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15913:14:0;15929:7:::1;::::0;:25:::1;::::0;;-1:-1:-1;;;15929:25:0;;;;-1:-1:-1;;;;;15929:7:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;15913:14:::1;::::0;15929:25;;;;;;;;:7;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15929:25:0;15896:67:::1;::::0;;-1:-1:-1;;;;;;15896:67:0::1;::::0;;;;;;-1:-1:-1;;;;;15896:67:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;15896:67:0;;;;;;;-1:-1:-1;15896:67:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;15979:22:0::1;::::0;;;;;;;::::1;::::0;-1:-1:-1;15979:22:0;;;;::::1;::::0;;-1:-1:-1;15979:22:0::1;15502:507:::0;:::o;1029:24::-;;;;:::o;3242:301::-;-1:-1:-1;;;;;3341:15:0;;3320:4;3341:15;;;:9;:15;;;;;;;;3357:10;3341:27;;;;;;;;-1:-1:-1;;3341:39:0;3337:140;;-1:-1:-1;;;;;3427:15:0;;;;;;:9;:15;;;;;;;;3443:10;3427:27;;;;;;;;:38;;3459:5;3427:31;:38::i;:::-;-1:-1:-1;;;;;3397:15:0;;;;;;:9;:15;;;;;;;;3413:10;3397:27;;;;;;;:68;3337:140;3487:26;3497:4;3503:2;3507:5;3487:9;:26::i;:::-;-1:-1:-1;3531:4:0;3242:301;;;;;:::o;1321:108::-;1363:66;1321:108;:::o;987:35::-;1020:2;987:35;:::o;1178:31::-;;;;:::o;14955:313::-;15051:7;;-1:-1:-1;;;;;15051:7:0;15037:10;:21;15029:60;;;;;-1:-1:-1;;;15029:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15120:6;:16;;-1:-1:-1;;;;;15120:16:0;;;-1:-1:-1;;;;;;15120:16:0;;;;;;;15147:6;:16;;;;;;;;;;;;;;;15203:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15194:6:0;:22;;-1:-1:-1;;;;;;15194:22:0;;;-1:-1:-1;;;;;15194:22:0;;;;;;;;15227:15;:33;;15253:6;;;;15227:33;;;;;-1:-1:-1;;14955:313:0:o;12979:32::-;;;;:::o;13018:::-;;;;:::o;17357:1585::-;17406:14;13499:8;;13511:1;13499:13;13491:49;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;;;;13562:1;13551:8;:12;17442:7:::1;::::0;:16:::1;::::0;;-1:-1:-1;;;17442:16:0;;;;-1:-1:-1;;;;;17442:7:0;;::::1;::::0;:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:7;:16;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17442:16:0;17441:17:::1;17433:86;;;;-1:-1:-1::0;;;17433:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17531:17;17550::::0;17572:13:::1;:11;:13::i;:::-;-1:-1:-1::0;17641:6:0::1;::::0;17627:46:::1;::::0;;-1:-1:-1;;;17627:46:0;;17667:4:::1;17627:46;::::0;::::1;::::0;;;17530:55;;-1:-1:-1;17530:55:0;;-1:-1:-1;17611:13:0::1;::::0;-1:-1:-1;;;;;17641:6:0;;::::1;::::0;17627:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;17641:6;17627:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17627:46:0;17714:6:::1;::::0;17700:46:::1;::::0;;-1:-1:-1;;;17700:46:0;;17740:4:::1;17700:46;::::0;::::1;::::0;;;17627;;-1:-1:-1;17684:13:0::1;::::0;-1:-1:-1;;;;;17714:6:0;;::::1;::::0;17700:31:::1;::::0;:46;;;;;17627::::1;::::0;17700;;;;;;;;17714:6;17700:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17700:46:0;;-1:-1:-1;17757:12:0::1;17772:23;:8:::0;-1:-1:-1;;;;;17772:23:0;::::1;:12;:23::i;:::-;17757:38:::0;-1:-1:-1;17806:12:0::1;17821:23;:8:::0;-1:-1:-1;;;;;17821:23:0;::::1;:12;:23::i;:::-;17857:17;17877:11:::0;17806:38;;-1:-1:-1;17981:17:0;17977:732:::1;;18034:7;::::0;:18:::1;::::0;;-1:-1:-1;;;18034:18:0;;;;18015:16:::1;::::0;-1:-1:-1;;;;;18034:7:0::1;::::0;:16:::1;::::0;:18:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:7;:18;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;18034:18:0;;-1:-1:-1;18071:10:0::1;-1:-1:-1::0;;;;;18071:22:0;::::1;;18067:500;;;18136:8;-1:-1:-1::0;;;;;18126:36:0::1;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;18126:38:0;;-1:-1:-1;18191:13:0;;;;;:41:::1;;;-1:-1:-1::0;;18208:9:0::1;:24;;18191:41;18183:75;;;::::0;;-1:-1:-1;;;18183:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;18183:75:0;;;;;;;;;;;;;::::1;;18067:500;;;-1:-1:-1::0;;;;;18307:22:0;::::1;::::0;18299:57:::1;;;::::0;;-1:-1:-1;;;18299:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;18299:57:0;;;;;;;;;;;;;::::1;;18387:54;12490:5;18387:31;18397:20;:7:::0;18409;18397:11:::1;:20::i;:::-;18387:9;:31::i;:54::-;18375:66;;18460:36;18474:1;12490:5;18460;:36::i;:::-;17977:732;;;;18611:86;-1:-1:-1::0;;;;;18620:37:0;::::1;:25;:7:::0;18632:12;18620:11:::1;:25::i;:::-;:37;;;;;;-1:-1:-1::0;;;;;18659:37:0;::::1;:25;:7:::0;18671:12;18659:11:::1;:25::i;:::-;:37;;;;;;18611:8;:86::i;:::-;18599:98;;17977:732;18739:1;18727:9;:13;18719:72;;;;-1:-1:-1::0;;;18719:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18802:20;18808:2;18812:9;18802:5;:20::i;:::-;18835:49;18843:8;18853;18863:9;18874;18835:7;:49::i;:::-;18900:34;::::0;;;;;::::1;::::0;::::1;::::0;;;;;18905:10:::1;::::0;18900:34:::1;::::0;;;;;;::::1;-1:-1:-1::0;;13597:1:0;13586:8;:12;-1:-1:-1;17357:1585:0;;;-1:-1:-1;;;;;17357:1585:0:o;1060:41::-;;;;;;;;;;;;;:::o;13057:17::-;;;;:::o;1436:38::-;;;;;;;;;;;;;:::o;19054:1348::-;19103:12;19117;13499:8;;13511:1;13499:13;13491:49;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;;;;13562:1;13551:8;:12;;;13562:1;19184:13:::1;:11;:13::i;:::-;-1:-1:-1::0;19241:6:0::1;::::0;19322::::1;::::0;19401:47:::1;::::0;;-1:-1:-1;;;19401:47:0;;19442:4:::1;19401:47;::::0;::::1;::::0;;;19142:55;;-1:-1:-1;19142:55:0;;-1:-1:-1;;;;;;19241:6:0;;::::1;::::0;19322;::::1;::::0;19223:15:::1;::::0;19241:6;;19401:32:::1;::::0;:47;;;;;::::1;::::0;;;;;;;;19241:6;19401:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;19401:47:0;19475::::1;::::0;;-1:-1:-1;;;19475:47:0;;19516:4:::1;19475:47;::::0;::::1;::::0;;;19401;;-1:-1:-1;19459:13:0::1;::::0;-1:-1:-1;;;;;19475:32:0;::::1;::::0;::::1;::::0;:47;;;;;19401::::1;::::0;19475;;;;;;;:32;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;19475:47:0;19568:4:::1;19533:14;19550:24:::0;;;:9:::1;19475:47;19550:24:::0;;;;;19607:11;;19475:47;;-1:-1:-1;19550:24:0;19607:11;19717:23:::1;19550:24:::0;19731:8;19717:13:::1;:23::i;:::-;:38;;;;;;::::0;-1:-1:-1;19850:12:0;19824:23:::1;:9:::0;19838:8;19824:13:::1;:23::i;:::-;:38;;;;;;19814:48;;19939:1;19929:7;:11;:26;;;;;19954:1;19944:7;:11;19929:26;19921:85;;;;-1:-1:-1::0;;;19921:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20017:31;20031:4;20038:9;20017:5;:31::i;:::-;20059:35;20073:7;20082:2;20086:7;20059:13;:35::i;:::-;20105;20119:7;20128:2;20132:7;20105:13;:35::i;:::-;20162:47;::::0;;-1:-1:-1;;;20162:47:0;;20203:4:::1;20162:47;::::0;::::1;::::0;;;-1:-1:-1;;;;;20162:32:0;::::1;::::0;::::1;::::0;:47;;;;;::::1;::::0;;;;;;;;:32;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;20162:47:0;20231::::1;::::0;;-1:-1:-1;;;20231:47:0;;20272:4:::1;20231:47;::::0;::::1;::::0;;;20162;;-1:-1:-1;;;;;;20231:32:0;::::1;::::0;::::1;::::0;:47;;;;;20162::::1;::::0;20231;;;;;;;;:32;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;20231:47:0;;-1:-1:-1;20291:49:0::1;20299:8:::0;20231:47;20319:9;20330;20291:7:::1;:49::i;:::-;20356:38;::::0;;;;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;20356:38:0;::::1;::::0;20361:10:::1;::::0;20356:38:::1;::::0;;;;;;;;;::::1;13574:1;;;;;;;;13597::::0;13586:8;:12;;;;19054:1348;;;:::o;943:37::-;;;;;;;;;;;;;;-1:-1:-1;;;943:37:0;;;;:::o;16158:136::-;13678:7;;:25;;;-1:-1:-1;;;13678:25:0;;;;16224:4;;-1:-1:-1;;;;;13678:7:0;;:23;;:25;;;;;;;;;;;;;;:7;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13678:25:0;-1:-1:-1;;;;;13664:39:0;:10;:39;13656:79;;;;;-1:-1:-1;;;13656:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16240:24:::1;16246:10;16258:5;16240;:24::i;:::-;-1:-1:-1::0;16282:4:0::1;13746:1;16158:136:::0;;;:::o;3095:139::-;3155:4;3172:32;3182:10;3194:2;3198:5;3172:9;:32::i;12449:46::-;12490:5;12449:46;:::o;23246:348::-;13499:8;;13511:1;13499:13;13491:49;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;;;;13562:1;13551:8;:12;23315:6:::1;::::0;23365::::1;::::0;23476:8:::1;::::0;23424:47:::1;::::0;;-1:-1:-1;;;23424:47:0;;23465:4:::1;23424:47;::::0;::::1;::::0;;;-1:-1:-1;;;;;23315:6:0;;::::1;::::0;23365;;::::1;::::0;23397:89:::1;::::0;23315:6;;23420:2;;23424:61:::1;::::0;-1:-1:-1;;;;;23476:8:0::1;::::0;23315:6;;23424:32:::1;::::0;:47;;;;;::::1;::::0;;;;;;;;;23315:6;23424:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;23424:47:0;;:51:::1;:61::i;23397:89::-;23497;23511:7;23520:2;23524:61;23576:8;;;;;;;;;-1:-1:-1::0;;;;;23576:8:0::1;-1:-1:-1::0;;;;;23524:61:0::1;23538:7;-1:-1:-1::0;;;;;23524:32:0::1;;23565:4;23524:47;;;;;;;;;;;;;-1:-1:-1::0;;;;;23524:47:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;23497:89;-1:-1:-1::0;;13597:1:0;13586:8;:12;-1:-1:-1;23246:348:0:o;12599:22::-;;;-1:-1:-1;;;;;12599:22:0;;:::o;12656:21::-;;;-1:-1:-1;;;;;12656:21:0;;:::o;3551:686::-;3697:15;3685:8;:27;;3677:64;;;;;-1:-1:-1;;;3677:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3857:16;;-1:-1:-1;;;;;3953:13:0;;;3752:14;3953:13;;;:6;:13;;;;;;;;:15;;;;;;;;;3902:77;;1363:66;3902:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3892:88;;;;;;-1:-1:-1;;;3793:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3769:237;;;;;;;;;4044:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3752:14;;3953:15;4044:26;;;;;-1:-1:-1;;4044:26:0;;;;;;;;;;3953:15;4044:26;;;;;;;;;;;;;;;-1:-1:-1;;4044:26:0;;-1:-1:-1;;4044:26:0;;;-1:-1:-1;;;;;;;4089:30:0;;;;;;:59;;;4143:5;-1:-1:-1;;;;;4123:25:0;:16;-1:-1:-1;;;;;4123:25:0;;4089:59;4081:106;;;;-1:-1:-1;;;4081:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4198:31;4207:5;4214:7;4223:5;4198:8;:31::i;:::-;3551:686;;;;;;;;;:::o;1108:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;13306:30::-;;;-1:-1:-1;;;;;13306:30:0;;:::o;23643:172::-;13499:8;;13511:1;13499:13;13491:49;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;-1:-1:-1;;;13491:49:0;;;;;;;;;;;;;;;13562:1;13551:8;:12;23706:6:::1;::::0;23692:46:::1;::::0;;-1:-1:-1;;;23692:46:0;;23732:4:::1;23692:46;::::0;::::1;::::0;;;23684:123:::1;::::0;-1:-1:-1;;;;;23706:6:0::1;::::0;23692:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;23706:6;23692:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;23692:46:0;23754:6:::1;::::0;23740:46:::1;::::0;;-1:-1:-1;;;23740:46:0;;23780:4:::1;23740:46;::::0;::::1;::::0;;;-1:-1:-1;;;;;23754:6:0;;::::1;::::0;23740:31:::1;::::0;:46;;;;;23692::::1;::::0;23740;;;;;;;;23754:6;23740:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;23740:46:0;23788:8:::1;::::0;-1:-1:-1;;;;;23788:8:0;;::::1;::::0;-1:-1:-1;;;23798:8:0;::::1;;23684:7;:123::i;:::-;13597:1:::0;13586:8;:12;23643:172::o;602:142::-;654:6;681;;;:30;;-1:-1:-1;;696:5:0;;;710:1;705;696:5;705:1;691:15;;;;;:20;681:30;673:63;;;;;-1:-1:-1;;;673:63:0;;;;;;;;;;;;-1:-1:-1;;;673:63:0;;;;;;;;;;;;;;465:129;549:5;;;544:16;;;;536:50;;;;;-1:-1:-1;;;536:50:0;;;;;;;;;;;;-1:-1:-1;;;536:50:0;;;;;;;;;;;;;;14002:293;12554:34;;;;;;;;;;;;;;;;;14130:43;;-1:-1:-1;;;;;14130:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14130:43:0;-1:-1:-1;;;14130:43:0;;;14119:55;;;;14084:12;;14098:17;;14119:10;;;14130:43;14119:55;;;14130:43;14119:55;;14130:43;14119:55;;;;;;;;;;-1:-1:-1;;14119:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14083:91;;;;14193:7;:57;;;;-1:-1:-1;14205:11:0;;:16;;:44;;;14236:4;14225:24;;;;;;;;;;;;;;;-1:-1:-1;14225:24:0;14205:44;14185:102;;;;;-1:-1:-1;;;14185:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14002:293;;;;;:::o;16379:866::-;-1:-1:-1;;;;;16491:23:0;;;;;:50;;-1:-1:-1;;;;;;16518:23:0;;;16491:50;16483:88;;;;;-1:-1:-1;;;16483:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16686:18;;16613:23;:15;:23;;;-1:-1:-1;;;16686:18:0;;;;16669:35;;;16742:15;;;;;;:33;;-1:-1:-1;;;;;;16761:14:0;;;;16742:33;:51;;;;-1:-1:-1;;;;;;16779:14:0;;;;16742:51;16738:336;;;16948:11;16895:64;;16900:44;16934:9;16900:27;16917:9;16900:16;:27::i;:::-;-1:-1:-1;;;;;16900:33:0;;;:44::i;:::-;16871:20;:88;;-1:-1:-1;;;;;16895:50:0;;;;:64;;;;16871:88;;;16998:64;;;17003:44;17037:9;17003:27;17020:9;17003:16;:27::i;:44::-;16974:20;:88;;-1:-1:-1;;;;;16998:50:0;;;;:64;;;;16974:88;;;16738:336;17084:8;:28;;-1:-1:-1;;17084:28:0;-1:-1:-1;;;;;17084:28:0;;;;;;;-1:-1:-1;;;;17123:28:0;-1:-1:-1;;;17123:28:0;;;;;;;;;-1:-1:-1;;;;;17162:35:0;-1:-1:-1;;;17162:35:0;;;;;;;;;17213:24;;;17218:8;;;17213:24;;17228:8;;;;;;;17213:24;;;;;;;;;;;;;;;;;16379:866;;;;;;:::o;2535:169::-;-1:-1:-1;;;;;2616:16:0;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;2665:31;;;;;;;;;;;;;;;;;2535:169;;;:::o;2712:220::-;-1:-1:-1;;;;;2806:15:0;;;;;;:9;:15;;;;;;:26;;2826:5;2806:19;:26::i;:::-;-1:-1:-1;;;;;2788:15:0;;;;;;;:9;:15;;;;;;:44;;;;2859:13;;;;;;;:24;;2877:5;2859:17;:24::i;:::-;-1:-1:-1;;;;;2843:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;2899:25;;;;;;;2843:13;;2899:25;;;;;;;;;;;;;2712:220;;;:::o;4592:303::-;4637:6;4664:1;4660;:5;4656:232;;;-1:-1:-1;4686:1:0;4719;4715;4711:5;;:9;4735:92;4746:1;4742;:5;4735:92;;;4772:1;4768:5;;4810:1;4805;4801;4797;:5;;;;;;:9;4796:15;;;;;;4792:19;;4735:92;;;4656:232;;;;4848:6;;4844:44;;-1:-1:-1;4875:1:0;4592:303;;;:::o;2109:201::-;2182:11;;:22;;2198:5;2182:15;:22::i;:::-;2168:11;:36;;;-1:-1:-1;;;;;2231:13:0;;;;:9;:13;;;;;;:24;;2249:5;2231:17;:24::i;:::-;-1:-1:-1;;;;;2215:13:0;;;;;;:9;:13;;;;;;;;:40;;;;2271:31;;;;;;;2215:13;;;;2271:31;;;;;;;;;;2109:201;;:::o;4378:96::-;4430:6;4457:1;4453;:5;:13;;4465:1;4453:13;;;4461:1;4453:13;4449:17;4378:96;-1:-1:-1;;;4378:96:0:o;2318:209::-;-1:-1:-1;;;;;2397:15:0;;;;;;:9;:15;;;;;;:26;;2417:5;2397:19;:26::i;:::-;-1:-1:-1;;;;;2379:15:0;;;;;;:9;:15;;;;;:44;;;;2448:11;:22;;2464:5;2448:15;:22::i;:::-;2434:11;:36;;;2486:33;;;;;;;;-1:-1:-1;;;;;2486:33:0;;;;;;;;;;;;;2318:209;;:::o;5232:120::-;-1:-1:-1;;;;;5308:10:0;-1:-1:-1;;;5308:17:0;;5232:120::o;5423:108::-;5483:9;-1:-1:-1;;;;;5513:10:0;;-1:-1:-1;;;;;5509:14:0;;5513:10;5509:14;;;;;;5423:108;-1:-1:-1;;;5423:108:0:o;329:128::-;413:5;;;408:16;;;;400:49;;;;;-1:-1:-1;;;400:49:0;;;;;;;;;;;;-1:-1:-1;;;400:49:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;:::o

Swarm Source

ipfs://f6199eddad30f9f9650bd8f8ddf9b6ea5f1422b0c09e206dbf5c337b62f44847

Block Transaction 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
[ Download: CSV Export  ]
[ 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.