ETH Price: $1,787.12 (+6.64%)

Contract

0xA2d807f22a35E3C05a1AE096C719BF9eaf5E71E6
Amount:Between 1-100
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
720838042023-03-21 10:06:53764 days ago1679393213
0xA2d807f2...eaf5E71E6
0 ETH
720838042023-03-21 10:06:53764 days ago1679393213
0xA2d807f2...eaf5E71E6
0 ETH
720838042023-03-21 10:06:53764 days ago1679393213
0xA2d807f2...eaf5E71E6
0 ETH
720838042023-03-21 10:06:53764 days ago1679393213
0xA2d807f2...eaf5E71E6
0 ETH
720838042023-03-21 10:06:53764 days ago1679393213
0xA2d807f2...eaf5E71E6
0 ETH
720602182023-03-21 8:30:05764 days ago1679387405
0xA2d807f2...eaf5E71E6
0 ETH
720602182023-03-21 8:30:05764 days ago1679387405
0xA2d807f2...eaf5E71E6
0 ETH
720602182023-03-21 8:30:05764 days ago1679387405
0xA2d807f2...eaf5E71E6
0 ETH
720602182023-03-21 8:30:05764 days ago1679387405
0xA2d807f2...eaf5E71E6
0 ETH
720602182023-03-21 8:30:05764 days ago1679387405
0xA2d807f2...eaf5E71E6
0 ETH
720294982023-03-21 6:24:07764 days ago1679379847
0xA2d807f2...eaf5E71E6
0 ETH
720294982023-03-21 6:24:07764 days ago1679379847
0xA2d807f2...eaf5E71E6
0 ETH
720294982023-03-21 6:24:07764 days ago1679379847
0xA2d807f2...eaf5E71E6
0 ETH
720294982023-03-21 6:24:07764 days ago1679379847
0xA2d807f2...eaf5E71E6
0 ETH
720294982023-03-21 6:24:07764 days ago1679379847
0xA2d807f2...eaf5E71E6
0 ETH
720268772023-03-21 6:13:21764 days ago1679379201
0xA2d807f2...eaf5E71E6
0 ETH
720268772023-03-21 6:13:21764 days ago1679379201
0xA2d807f2...eaf5E71E6
0 ETH
720268772023-03-21 6:13:21764 days ago1679379201
0xA2d807f2...eaf5E71E6
0 ETH
720268772023-03-21 6:13:21764 days ago1679379201
0xA2d807f2...eaf5E71E6
0 ETH
720268772023-03-21 6:13:21764 days ago1679379201
0xA2d807f2...eaf5E71E6
0 ETH
720208762023-03-21 5:48:42764 days ago1679377722
0xA2d807f2...eaf5E71E6
0 ETH
720208762023-03-21 5:48:42764 days ago1679377722
0xA2d807f2...eaf5E71E6
0 ETH
720208762023-03-21 5:48:42764 days ago1679377722
0xA2d807f2...eaf5E71E6
0 ETH
720208762023-03-21 5:48:42764 days ago1679377722
0xA2d807f2...eaf5E71E6
0 ETH
720208762023-03-21 5:48:42764 days ago1679377722
0xA2d807f2...eaf5E71E6
0 ETH
View All Internal Transactions

Loading...
Loading

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

Contract Name:
SwapPair

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-01-13
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/interfaces/ISwapFactory.sol


pragma solidity 0.6.12;

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

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

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

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

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


// File contracts/libraries/SafeMath.sol


pragma solidity 0.6.12;
// a library for performing overflow-safe math, updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math)
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a + b) >= b, "SafeMath: Add Overflow");}
    function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a - b) <= a, "SafeMath: Underflow");}
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {require(b == 0 || (c = a * b)/b == a, "SafeMath: Mul Overflow");}
    function to128(uint256 a) internal pure returns (uint128 c) {
        require(a <= uint128(-1), "SafeMath: uint128 Overflow");
        c = uint128(a);
    }
}

library SafeMath128 {
    function add(uint128 a, uint128 b) internal pure returns (uint128 c) {require((c = a + b) >= b, "SafeMath: Add Overflow");}
    function sub(uint128 a, uint128 b) internal pure returns (uint128 c) {require((c = a - b) <= a, "SafeMath: Underflow");}
}


// File contracts/swap/SwapERC20.sol


pragma solidity 0.6.12;

contract SwapERC20 {
    using SafeMath for uint;

    string public constant name = 'Arbswap LP Token';
    string public constant symbol = 'ALP';
    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, 'Arbswap: 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, 'Arbswap: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}


// File contracts/libraries/Math.sol



pragma solidity =0.6.12;

// 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/libraries/UQ112x112.sol



pragma solidity =0.6.12;

// 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/interfaces/IERC20.sol


pragma solidity 0.6.12;

interface IERC20 {
    
    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);

    // EIP 2612
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
}


// File contracts/interfaces/ISwapCallee.sol


pragma solidity 0.6.12;

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


// File contracts/swap/SwapPair.sol


pragma solidity 0.6.12;






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

contract SwapPair is SwapERC20 {
    using SafeMath  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;

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

    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))), 'Arbswap: 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);

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

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1) external {
        require(msg.sender == factory, 'Arbswap: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }

    // 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), 'Arbswap: 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);
    }

    // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
        address feeTo = ISwapFactory(factory).feeTo();
        feeOn = feeTo != address(0);
        uint _kLast = kLast; // gas savings
        if (feeOn) {
            if (_kLast != 0) {
                uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
                uint rootKLast = Math.sqrt(_kLast);
                if (rootK > rootKLast) {
                    uint numerator = totalSupply.mul(rootK.sub(rootKLast));
                    uint denominator = rootK.mul(5).add(rootKLast);
                    uint liquidity = numerator / denominator;
                    if (liquidity > 0) _mint(feeTo, liquidity);
                }
            }
        } else if (_kLast != 0) {
            kLast = 0;
        }
    }

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

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            address migrator = ISwapFactory(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, 'Arbswap: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        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 = IERC20(_token0).balanceOf(address(this));
        uint balance1 = IERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];

        bool feeOn = _mintFee(_reserve0, _reserve1);
        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, 'Arbswap: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        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(amount0Out > 0 || amount1Out > 0, 'Arbswap: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Arbswap: INSUFFICIENT_LIQUIDITY');

        uint balance0;
        uint balance1;
        { // scope for _token{0,1}, avoids stack too deep errors
        address _token0 = token0;
        address _token1 = token1;
        require(to != _token0 && to != _token1, 'Arbswap: 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) ISwapCallee(to).swapCall(msg.sender, amount0Out, amount1Out, data);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_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, 'Arbswap: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
        uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
        require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'Arbswap: 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, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
        _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
    }

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


// File contracts/swap/SwapFactory.sol


pragma solidity 0.6.12;



contract SwapFactory is ISwapFactory {
    address public override feeTo;
    address public override feeToSetter;
    address public override migrator;

    mapping(address => mapping(address => address)) public override getPair;
    address[] public override allPairs;

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

    constructor(address _feeToSetter) public {
        feeToSetter = _feeToSetter;
    }

    function allPairsLength() external override view returns (uint) {
        return allPairs.length;
    }

    function pairCodeHash() external pure returns (bytes32) {
        return keccak256(type(SwapPair).creationCode);
    }

    function createPair(address tokenA, address tokenB) external override returns (address pair) {
        require(tokenA != tokenB, 'Arbswap: IDENTICAL_ADDRESSES');
        (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'Arbswap: ZERO_ADDRESS');
        require(getPair[token0][token1] == address(0), 'Arbswap: PAIR_EXISTS'); // single check is sufficient
        bytes memory bytecode = type(SwapPair).creationCode;
        bytes32 salt = keccak256(abi.encodePacked(token0, token1));
        assembly {
            pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
        }
        SwapPair(pair).initialize(token0, token1);
        getPair[token0][token1] = pair;
        getPair[token1][token0] = pair; // populate mapping in the reverse direction
        allPairs.push(pair);
        emit PairCreated(token0, token1, pair, allPairs.length);
    }

    function setFeeTo(address _feeTo) external override {
        require(msg.sender == feeToSetter, 'Arbswap: FORBIDDEN');
        feeTo = _feeTo;
    }

    function setMigrator(address _migrator) external override {
        require(msg.sender == feeToSetter, 'Arbswap: FORBIDDEN');
        migrator = _migrator;
    }

    function setFeeToSetter(address _feeToSetter) external override {
        require(msg.sender == feeToSetter, 'Arbswap: FORBIDDEN');
        feeToSetter = _feeToSetter;
    }

}

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":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":"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":[],"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":[{"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

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a7146105da578063d505accf146105e2578063dd62ed3e14610640578063fff6cae91461067b576101b9565b8063ba9a7a5614610597578063bc25cf771461059f578063c45a0155146105d2576101b9565b80637ecebe00116100d35780637ecebe00146104d757806389afcb441461050a57806395d89b4114610556578063a9059cbb1461055e576101b9565b80636a6278421461046957806370a082311461049c5780637464fc3d146104cf576101b9565b806323b872dd116101665780633644e515116101405780633644e51514610416578063485cc9551461041e5780635909c0d5146104595780635a3d549314610461576101b9565b806323b872dd146103ad57806330adf81f146103f0578063313ce567146103f8576101b9565b8063095ea7b311610197578063095ea7b3146103155780630dfe16811461036257806318160ddd14610393576101b9565b8063022c0d9f146101be57806306fdde03146102595780630902f1ac146102d6575b600080fd5b610257600480360360808110156101d457600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561021857600080fd5b82018360208201111561022a57600080fd5b8035906020019184600183028401116401000000008311171561024c57600080fd5b509092509050610683565b005b610261610d2d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029b578181015183820152602001610283565b50505050905090810190601f1680156102c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102de610d66565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b61034e6004803603604081101561032b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dbb565b604080519115158252519081900360200190f35b61036a610dd2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61039b610dee565b60408051918252519081900360200190f35b61034e600480360360608110156103c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610df4565b61039b610ecd565b610400610ef1565b6040805160ff9092168252519081900360200190f35b61039b610ef6565b6102576004803603604081101561043457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610efc565b61039b610fd5565b61039b610fdb565b61039b6004803603602081101561047f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610fe1565b61039b600480360360208110156104b257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166115c5565b61039b6115d7565b61039b600480360360208110156104ed57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166115dd565b61053d6004803603602081101561052057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166115ef565b6040805192835260208301919091528051918290030190f35b610261611a7a565b61034e6004803603604081101561057457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611ab3565b61039b611ac0565b610257600480360360208110156105b557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611ac6565b61036a611cb3565b61036a611ccf565b610257600480360360e08110156105f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611ceb565b61039b6004803603604081101561065657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611fb7565b610257611fd4565b600c546001146106f457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f417262737761703a204c4f434b45440000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55841515806107075750600084115b61075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612d346023913960400191505060405180910390fd5b600080610767610d66565b5091509150816dffffffffffffffffffffffffffff168710801561079a5750806dffffffffffffffffffffffffffff1686105b61080557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f417262737761703a20494e53554646494349454e545f4c495155494449545900604482015290519081900360640190fd5b600654600754600091829173ffffffffffffffffffffffffffffffffffffffff91821691908116908916821480159061086a57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b6108d557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f417262737761703a20494e56414c49445f544f00000000000000000000000000604482015290519081900360640190fd5b8a156108e6576108e6828a8d6121ba565b89156108f7576108f7818a8c6121ba565b86156109c3578873ffffffffffffffffffffffffffffffffffffffff1663df9aee68338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b1580156109aa57600080fd5b505af11580156109be573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b158015610a2f57600080fd5b505afa158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d6020811015610af557600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a90038311610b1f576000610b35565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610b59576000610b6f565b89856dffffffffffffffffffffffffffff160383035b90506000821180610b805750600081115b610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612cec6022913960400191505060405180910390fd5b6000610bf7610be58460036123c7565b610bf1876103e86123c7565b9061244d565b90506000610c09610be58460036123c7565b9050610c35620f4240610c2f6dffffffffffffffffffffffffffff8b8116908b166123c7565b906123c7565b610c3f83836123c7565b1015610cac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f417262737761703a204b00000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050610cba848488886124bf565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280601081526020017f41726273776170204c5020546f6b656e0000000000000000000000000000000081525081565b6008546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b6000610dc8338484612775565b5060015b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610eb85773ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054610e86908361244d565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b610ec38484846127e4565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f8257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f417262737761703a20464f5242494444454e0000000000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c5460011461105457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f417262737761703a204c4f434b45440000000000000000000000000000000000604482015290519081900360640190fd5b6000600c81905580611064610d66565b50600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b1580156110de57600080fd5b505afa1580156110f2573d6000803e3d6000fd5b505050506040513d602081101561110857600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561118157600080fd5b505afa158015611195573d6000803e3d6000fd5b505050506040513d60208110156111ab57600080fd5b5051905060006111cb836dffffffffffffffffffffffffffff871661244d565b905060006111e9836dffffffffffffffffffffffffffff871661244d565b905060006111f787876128b9565b6000549091508061147c57600554604080517f7cd07e47000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691637cd07e47916004808301926020929190829003018186803b15801561126d57600080fd5b505afa158015611281573d6000803e3d6000fd5b505050506040513d602081101561129757600080fd5b505190503373ffffffffffffffffffffffffffffffffffffffff821614156113cc578073ffffffffffffffffffffffffffffffffffffffff166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ff57600080fd5b505afa158015611313573d6000803e3d6000fd5b505050506040513d602081101561132957600080fd5b50519950891580159061135c57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8a14155b6113c757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4261642064657369726564206c69717569646974790000000000000000000000604482015290519081900360640190fd5b611476565b73ffffffffffffffffffffffffffffffffffffffff81161561144f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4d757374206e6f742068617665206d69677261746f7200000000000000000000604482015290519081900360640190fd5b6114676103e8610bf161146288886123c7565b612a27565b995061147660006103e8612a79565b506114cd565b6114ca6dffffffffffffffffffffffffffff891661149a86846123c7565b816114a157fe5b046dffffffffffffffffffffffffffff89166114bd86856123c7565b816114c457fe5b04612b1d565b98505b60008911611526576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612cc66026913960400191505060405180910390fd5b6115308a8a612a79565b61153c86868a8a6124bf565b811561157857600854611574906dffffffffffffffffffffffffffff808216916e0100000000000000000000000000009004166123c7565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c5460011461166357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f417262737761703a204c4f434b45440000000000000000000000000000000000604482015290519081900360640190fd5b6000600c81905580611673610d66565b50600654600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b1580156116f557600080fd5b505afa158015611709573d6000803e3d6000fd5b505050506040513d602081101561171f57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b15801561179357600080fd5b505afa1580156117a7573d6000803e3d6000fd5b505050506040513d60208110156117bd57600080fd5b5051306000908152600160205260408120549192506117dc88886128b9565b600054909150806117ed84876123c7565b816117f457fe5b049a508061180284866123c7565b8161180957fe5b04995060008b11801561181c575060008a115b611871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d0e6026913960400191505060405180910390fd5b61187b3084612b35565b611886878d8d6121ba565b611891868d8c6121ba565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8916916370a08231916024808301926020929190829003018186803b1580156118fd57600080fd5b505afa158015611911573d6000803e3d6000fd5b505050506040513d602081101561192757600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191965073ffffffffffffffffffffffffffffffffffffffff8816916370a0823191602480820192602092909190829003018186803b15801561199957600080fd5b505afa1580156119ad573d6000803e3d6000fd5b505050506040513d60208110156119c357600080fd5b505193506119d385858b8b6124bf565b8115611a0f57600854611a0b906dffffffffffffffffffffffffffff808216916e0100000000000000000000000000009004166123c7565b600b555b604080518c8152602081018c9052815173ffffffffffffffffffffffffffffffffffffffff8f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600381526020017f414c50000000000000000000000000000000000000000000000000000000000081525081565b6000610dc83384846127e4565b6103e881565b600c54600114611b3757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f417262737761703a204c4f434b45440000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654600754600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff9485169490931692611c0d9285928792611c08926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b158015611bd657600080fd5b505afa158015611bea573d6000803e3d6000fd5b505050506040513d6020811015611c0057600080fd5b50519061244d565b6121ba565b611ca98184611c086008600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611bd657600080fd5b50506001600c5550565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b42841015611d5a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f417262737761703a204558504952454400000000000000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015611ebb573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590611f3657508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611fa157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f417262737761703a20494e56414c49445f5349474e4154555245000000000000604482015290519081900360640190fd5b611fac898989612775565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c5460011461204557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f417262737761703a204c4f434b45440000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516121b39273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b1580156120bc57600080fd5b505afa1580156120d0573d6000803e3d6000fd5b505050506040513d60208110156120e657600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561215957600080fd5b505afa15801561216d573d6000803e3d6000fd5b505050506040513d602081101561218357600080fd5b50516008546dffffffffffffffffffffffffffff808216916e0100000000000000000000000000009004166124bf565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b602083106122c057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612283565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612322576040519150601f19603f3d011682016040523d82523d6000602084013e612327565b606091505b5091509150818015612355575080511580612355575080806020019051602081101561235257600080fd5b50515b6123c057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f417262737761703a205452414e534645525f4641494c45440000000000000000604482015290519081900360640190fd5b5050505050565b60008115806123e2575050808202828282816123df57fe5b04145b610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f536166654d6174683a204d756c204f766572666c6f7700000000000000000000604482015290519081900360640190fd5b80820382811115610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f536166654d6174683a20556e646572666c6f7700000000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff84118015906124eb57506dffffffffffffffffffffffffffff8311155b61255657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f417262737761703a204f564552464c4f57000000000000000000000000000000604482015290519081900360640190fd5b60085463ffffffff428116917c0100000000000000000000000000000000000000000000000000000000900481168203908116158015906125a657506dffffffffffffffffffffffffffff841615155b80156125c157506dffffffffffffffffffffffffffff831615155b1561266b578063ffffffff166125fe856125da86612bee565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1690612c12565b600980547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff811661263e846125da87612bee565b600a80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600880547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054612814908261244d565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822093909355908416815220546128509082612c53565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561292457600080fd5b505afa158015612938573d6000803e3d6000fd5b505050506040513d602081101561294e57600080fd5b5051600b5473ffffffffffffffffffffffffffffffffffffffff8216158015945091925090612a13578015612a0e57600061299f6114626dffffffffffffffffffffffffffff8881169088166123c7565b905060006129ac83612a27565b905080821115612a0b5760006129ce6129c5848461244d565b600054906123c7565b905060006129e7836129e18660056123c7565b90612c53565b905060008183816129f457fe5b0490508015612a0757612a078782612a79565b5050505b50505b612a1f565b8015612a1f576000600b555b505092915050565b60006003821115612a6a575080600160028204015b81811015612a6457809150600281828581612a5357fe5b040181612a5c57fe5b049050612a3c565b50612a74565b8115612a74575060015b919050565b600054612a869082612c53565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054612ab89082612c53565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310612b2c5781612b2e565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054612b65908261244d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081209190915554612b99908261244d565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff841681612c4b57fe5b049392505050565b81810181811015610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f536166654d6174683a20416464204f766572666c6f7700000000000000000000604482015290519081900360640190fdfe417262737761703a20494e53554646494349454e545f4c49515549444954595f4d494e544544417262737761703a20494e53554646494349454e545f494e5055545f414d4f554e54417262737761703a20494e53554646494349454e545f4c49515549444954595f4255524e4544417262737761703a20494e53554646494349454e545f4f55545055545f414d4f554e54a2646970667358221220f72c11efd47916a77dabdec1ebb972a1fbe5854a8eb4d0f5efa9d1419d9d8a1b64736f6c634300060c0033

Deployed Bytecode Sourcemap

11482:10020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19040:1869;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19040:1869:0;;-1:-1:-1;19040:1869:0;-1:-1:-1;19040:1869:0;:::i;:::-;;5319:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12477:231;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7371:147;;;;;;;;;;;;;;;;-1:-1:-1;7371:147:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11766:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5460:24;;;:::i;:::-;;;;;;;;;;;;;;;;7673:301;;;;;;;;;;;;;;;;-1:-1:-1;7673:301:0;;;;;;;;;;;;;;;;;;:::i;5752:108::-;;;:::i;5418:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5609:31;;;:::i;13535:208::-;;;;;;;;;;;;;;;;-1:-1:-1;13535:208:0;;;;;;;;;;;:::i;12117:32::-;;;:::i;12156:::-;;;:::i;15720:1632::-;;;;;;;;;;;;;;;;-1:-1:-1;15720:1632:0;;;;:::i;5491:41::-;;;;;;;;;;;;;;;;-1:-1:-1;5491:41:0;;;;:::i;12195:17::-;;;:::i;5867:38::-;;;;;;;;;;;;;;;;-1:-1:-1;5867:38:0;;;;:::i;17464:1464::-;;;;;;;;;;;;;;;;-1:-1:-1;17464:1464:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5374:37;;;:::i;7526:139::-;;;;;;;;;;;;;;;;-1:-1:-1;7526:139:0;;;;;;;;;:::i;11587:46::-;;;:::i;20958:334::-;;;;;;;;;;;;;;;;-1:-1:-1;20958:334:0;;;;:::i;11737:22::-;;;:::i;11794:21::-;;;:::i;7982:670::-;;;;;;;;;;;;;;;;-1:-1:-1;7982:670:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5539:61::-;;;;;;;;;;;;;;;;-1:-1:-1;5539:61:0;;;;;;;;;;;:::i;21341:158::-;;;:::i;19040:1869::-;12370:8;;12382:1;12370:13;12362:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:1;12414:8;:12;19154:14;;;;:32:::1;;;19185:1;19172:10;:14;19154:32;19146:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19238:17;19257::::0;19279:13:::1;:11;:13::i;:::-;19237:55;;;;;19339:9;19326:22;;:10;:22;:48;;;;;19365:9;19352:22;;:10;:22;19326:48;19318:92;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;19555:6;::::0;19590::::1;::::0;19423:13:::1;::::0;;;19555:6:::1;::::0;;::::1;::::0;19590;;::::1;::::0;19615:13;::::1;::::0;::::1;::::0;::::1;::::0;:30:::1;;;19638:7;19632:13;;:2;:13;;;;19615:30;19607:62;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;19684:14:::0;;19680:58:::1;;19700:38;19714:7;19723:2;19727:10;19700:13;:38::i;:::-;19787:14:::0;;19783:58:::1;;19803:38;19817:7;19826:2;19830:10;19803:13;:38::i;:::-;19890:15:::0;;19886:87:::1;;19919:2;19907:24;;;19932:10;19944;19956;19968:4;;19907:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;19886:87;19995:40;::::0;;;;;20029:4:::1;19995:40;::::0;::::1;::::0;;;:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;::::1;::::0;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;19995:40:0;20057::::1;::::0;;;;;20091:4:::1;20057:40;::::0;::::1;::::0;;;19995;;-1:-1:-1;20057:25:0::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;19995::::1;::::0;20057;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;20057:40:0;;-1:-1:-1;20119:14:0::1;::::0;-1:-1:-1;;20147:22:0::1;::::0;::::1;::::0;;::::1;20136:33:::0;::::1;:75;;20210:1;20136:75;;;20196:10;20184:9;:22;;;20172:8;:35;20136:75;20119:92;;20222:14;20262:10;20250:9;:22;;;20239:8;:33;:75;;20313:1;20239:75;;;20299:10;20287:9;:22;;;20275:8;:35;20239:75;20222:92;;20345:1;20333:9;:13;:30;;;;20362:1;20350:9;:13;20333:30;20325:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20488:21;20512:40;20535:16;:9:::0;20549:1:::1;20535:13;:16::i;:::-;20512:18;:8:::0;20525:4:::1;20512:12;:18::i;:::-;:22:::0;::::1;:40::i;:::-;20488:64:::0;-1:-1:-1;20563:21:0::1;20587:40;20610:16;:9:::0;20624:1:::1;20610:13;:16::i;20587:40::-;20563:64:::0;-1:-1:-1;20688:43:0::1;20723:7;20688:30;;:15:::0;;::::1;::::0;:30;::::1;:19;:30::i;:::-;:34:::0;::::1;:43::i;:::-;20646:38;:16:::0;20667;20646:20:::1;:38::i;:::-;:85;;20638:108;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;12437:1;;20770:49;20778:8;20788;20798:9;20809;20770:7;:49::i;:::-;20835:66;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;::::1;::::0;::::1;::::0;20840:10:::1;::::0;20835:66:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;12460:1:0;12449:8;:12;-1:-1:-1;;;;;;;;;19040:1869:0:o;5319:48::-;;;;;;;;;;;;;;;;;;;:::o;12477:231::-;12610:8;;;;;;;12641;;;;;;;12682:18;;;;;;12477:231::o;7371:147::-;7435:4;7452:36;7461:10;7473:7;7482:5;7452:8;:36::i;:::-;-1:-1:-1;7506:4:0;7371:147;;;;;:::o;11766:21::-;;;;;;:::o;5460:24::-;;;;:::o;7673:301::-;7772:15;;;7751:4;7772:15;;;:9;:15;;;;;;;;7788:10;7772:27;;;;;;;;7808:2;7772:39;7768:140;;7858:15;;;;;;;:9;:15;;;;;;;;7874:10;7858:27;;;;;;;;:38;;7890:5;7858:31;:38::i;:::-;7828:15;;;;;;;:9;:15;;;;;;;;7844:10;7828:27;;;;;;;:68;7768:140;7918:26;7928:4;7934:2;7938:5;7918:9;:26::i;:::-;-1:-1:-1;7962:4:0;7673:301;;;;;:::o;5752:108::-;5794:66;5752:108;:::o;5418:35::-;5451:2;5418:35;:::o;5609:31::-;;;;:::o;13535:208::-;13631:7;;;;13617:10;:21;13609:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13692:6;:16;;;;;;;;;;;;;;13719:6;:16;;;;;;;;;;;13535:208::o;12117:32::-;;;;:::o;12156:::-;;;;:::o;15720:1632::-;15769:14;12370:8;;12382:1;12370:13;12362:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:1;12414:8;:12;;;12425:1;15838:13:::1;:11;:13::i;:::-;-1:-1:-1::0;15900:6:0::1;::::0;15893:39:::1;::::0;;;;;15926:4:::1;15893:39;::::0;::::1;::::0;;;15796:55;;-1:-1:-1;15796:55:0;;-1:-1:-1;15877:13:0::1;::::0;15900:6:::1;::::0;;::::1;::::0;15893:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;15900:6;15893:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15893:39:0;15966:6:::1;::::0;15959:39:::1;::::0;;;;;15992:4:::1;15959:39;::::0;::::1;::::0;;;15893;;-1:-1:-1;15943:13:0::1;::::0;15966:6:::1;::::0;;::::1;::::0;15959:24:::1;::::0;:39;;;;;15893::::1;::::0;15959;;;;;;;;15966:6;15959:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15959:39:0;;-1:-1:-1;16009:12:0::1;16024:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;16009:38:::0;-1:-1:-1;16058:12:0::1;16073:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;16058:38;;16109:10;16122:30;16131:9;16142;16122:8;:30::i;:::-;16163:17;16183:11:::0;16109:43;;-1:-1:-1;16287:17:0;16283:746:::1;;16353:7;::::0;16340:32:::1;::::0;;;;;;;16321:16:::1;::::0;16353:7:::1;;::::0;16340:30:::1;::::0;:32:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;16353:7;16340:32;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;16340:32:0;;-1:-1:-1;16391:10:0::1;:22;::::0;::::1;;16387:500;;;16456:8;16446:36;;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;16446:38:0;;-1:-1:-1;16511:13:0;;;;;:41:::1;;;16549:2;16528:9;:24;;16511:41;16503:75;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;16387:500;;;16627:22;::::0;::::1;::::0;16619:57:::1;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;16707:54;11628:5;16707:31;16717:20;:7:::0;16729;16717:11:::1;:20::i;:::-;16707:9;:31::i;:54::-;16695:66;;16780:36;16794:1;11628:5;16780;:36::i;:::-;16283:746;;;;16931:86;16940:37;::::0;::::1;:25;:7:::0;16952:12;16940:11:::1;:25::i;:::-;:37;;;;;;16979;::::0;::::1;:25;:7:::0;16991:12;16979:11:::1;:25::i;:::-;:37;;;;;;16931:8;:86::i;:::-;16919:98;;16283:746;17059:1;17047:9;:13;17039:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17114:20;17120:2;17124:9;17114:5;:20::i;:::-;17147:49;17155:8;17165;17175:9;17186;17147:7;:49::i;:::-;17211:5;17207:47;;;17245:8;::::0;17226:28:::1;::::0;17245:8:::1;17231::::0;;::::1;::::0;17245;;::::1;;17226:18;:28::i;:::-;17218:5;:36:::0;17207:47:::1;17310:34;::::0;;;;;::::1;::::0;::::1;::::0;;;;;17315:10:::1;::::0;17310:34:::1;::::0;;;;;;::::1;-1:-1:-1::0;;12460:1:0;12449:8;:12;-1:-1:-1;15720:1632:0;;;-1:-1:-1;;;;;;15720:1632:0:o;5491:41::-;;;;;;;;;;;;;:::o;12195:17::-;;;;:::o;5867:38::-;;;;;;;;;;;;;:::o;17464:1464::-;17513:12;17527;12370:8;;12382:1;12370:13;12362:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:1;12414:8;:12;;;12425:1;17594:13:::1;:11;:13::i;:::-;-1:-1:-1::0;17651:6:0::1;::::0;17732::::1;::::0;17811:40:::1;::::0;;;;;17845:4:::1;17811:40;::::0;::::1;::::0;;;17552:55;;-1:-1:-1;17552:55:0;;-1:-1:-1;17651:6:0::1;::::0;;::::1;::::0;17732;::::1;::::0;17633:15:::1;::::0;17651:6;;17811:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;17651:6;17811:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17811:40:0;17878::::1;::::0;;;;;17912:4:::1;17878:40;::::0;::::1;::::0;;;17811;;-1:-1:-1;17862:13:0::1;::::0;17878:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;17811::::1;::::0;17878;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17878:40:0;17964:4:::1;17929:14;17946:24:::0;;;:9:::1;17878:40;17946:24:::0;;;;;17878:40;;-1:-1:-1;17996:30:0::1;18005:9:::0;18016;17996:8:::1;:30::i;:::-;18037:17;18057:11:::0;17983:43;;-1:-1:-1;18057:11:0;18167:23:::1;:9:::0;18181:8;18167:13:::1;:23::i;:::-;:38;;;;;;::::0;-1:-1:-1;18300:12:0;18274:23:::1;:9:::0;18288:8;18274:13:::1;:23::i;:::-;:38;;;;;;18264:48;;18389:1;18379:7;:11;:26;;;;;18404:1;18394:7;:11;18379:26;18371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18459:31;18473:4;18480:9;18459:5;:31::i;:::-;18501:35;18515:7;18524:2;18528:7;18501:13;:35::i;:::-;18547;18561:7;18570:2;18574:7;18547:13;:35::i;:::-;18604:40;::::0;;;;;18638:4:::1;18604:40;::::0;::::1;::::0;;;:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;::::1;::::0;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;18604:40:0;18666::::1;::::0;;;;;18700:4:::1;18666:40;::::0;::::1;::::0;;;18604;;-1:-1:-1;18666:25:0::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;18604::::1;::::0;18666;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;18666:40:0;;-1:-1:-1;18719:49:0::1;18727:8:::0;18666:40;18747:9;18758;18719:7:::1;:49::i;:::-;18783:5;18779:47;;;18817:8;::::0;18798:28:::1;::::0;18817:8:::1;18803::::0;;::::1;::::0;18817;;::::1;;18798:18;:28::i;:::-;18790:5;:36:::0;18779:47:::1;18882:38;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;18887:10:::1;::::0;18882:38:::1;::::0;;;;;;;;;::::1;12437:1;;;;;;;;;12460::::0;12449:8;:12;;;;17464:1464;;;:::o;5374:37::-;;;;;;;;;;;;;;;;;;;:::o;7526:139::-;7586:4;7603:32;7613:10;7625:2;7629:5;7603:9;:32::i;11587:46::-;11628:5;11587:46;:::o;20958:334::-;12370:8;;12382:1;12370:13;12362:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:1;12414:8;:12;21027:6:::1;::::0;21077::::1;::::0;21181:8:::1;::::0;21136:40:::1;::::0;;;;;21170:4:::1;21136:40;::::0;::::1;::::0;;;21027:6:::1;::::0;;::::1;::::0;21077;;::::1;::::0;21109:82:::1;::::0;21027:6;;21132:2;;21136:54:::1;::::0;21181:8:::1;;::::0;21027:6;;21136:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;;21027:6;21136:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;21136:40:0;;:44:::1;:54::i;:::-;21109:13;:82::i;:::-;21202;21216:7;21225:2;21229:54;21274:8;;;;;;;;;;;21229:54;;21236:7;21229:25;;;21263:4;21229:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;21202:82;-1:-1:-1::0;;12460:1:0;12449:8;:12;-1:-1:-1;20958:334:0:o;11737:22::-;;;;;;:::o;11794:21::-;;;;;;:::o;7982:670::-;8128:15;8116:8;:27;;8108:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8280:16;;8376:13;;;;8175:14;8376:13;;;:6;:13;;;;;;;;:15;;;;;;;;;8325:77;;5794:66;8325:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8315:88;;;;;;8216:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8192:237;;;;;;;;;8467:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8175:14;;8376:15;8467:26;;;;;-1:-1:-1;8467:26:0;;;;;;;;;;8376:15;8467:26;;;;;;;;;;;;;;;-1:-1:-1;;8467:26:0;;;;;;-1:-1:-1;;8512:30:0;;;;;;;:59;;;8566:5;8546:25;;:16;:25;;;8512:59;8504:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8613:31;8622:5;8629:7;8638:5;8613:8;:31::i;:::-;7982:670;;;;;;;;;:::o;5539:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;21341:158::-;12370:8;;12382:1;12370:13;12362:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12425:1;12414:8;:12;21397:6:::1;::::0;21390:39:::1;::::0;;;;;21423:4:::1;21390:39;::::0;::::1;::::0;;;21382:109:::1;::::0;21397:6:::1;;::::0;21390:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;21397:6;21390:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;21390:39:0;21438:6:::1;::::0;21431:39:::1;::::0;;;;;21464:4:::1;21431:39;::::0;::::1;::::0;;;21438:6:::1;::::0;;::::1;::::0;21431:24:::1;::::0;:39;;;;;21390::::1;::::0;21431;;;;;;;;21438:6;21431:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;21431:39:0;21472:8:::1;::::0;::::1;::::0;;::::1;::::0;21482;;::::1;;21382:7;:109::i;:::-;12460:1:::0;12449:8;:12;21341:158::o;12716:285::-;11692:34;;;;;;;;;;;;;;;;;12844:43;;12833:10;12844:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12833:55;;;;12798:12;;12812:17;;12833:10;;;12844:43;12833:55;;;12844:43;12833:55;;12844:43;12833:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12797:91;;;;12907:7;:57;;;;-1:-1:-1;12919:11:0;;:16;;:44;;;12950:4;12939:24;;;;;;;;;;;;;;;-1:-1:-1;12939:24:0;12919:44;12899:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12716:285;;;;;:::o;4600:135::-;4658:9;4678:6;;;:28;;-1:-1:-1;;4693:5:0;;;4705:1;4700;4693:5;4700:1;4688:13;;;;;:18;4678:28;4670:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4474:120;4557:5;;;4552:16;;;;4544:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13828:858;13940:23;;;;;;:50;;-1:-1:-1;13967:23:0;;;;13940:50;13932:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14127:18;;14054:23;:15;:23;;;14127:18;;;;;14110:35;;;14183:15;;;;;;:33;;-1:-1:-1;14202:14:0;;;;;14183:33;:51;;;;-1:-1:-1;14220:14:0;;;;;14183:51;14179:336;;;14389:11;14336:64;;14341:44;14375:9;14341:27;14358:9;14341:16;:27::i;:::-;:33;;;;:44::i;:::-;14312:20;:88;;14336:50;;;;;:64;;;;14312:88;;;14439:64;;;14444:44;14478:9;14444:27;14461:9;14444:16;:27::i;:44::-;14415:20;:88;;14439:50;;;;;:64;;;;14415:88;;;14179:336;14525:8;:28;;;;;;;;;;;;14564;;;;;;;;;;;;14603:35;;;;;;;;;;;;14654:24;;;14659:8;;;14654:24;;14669:8;;;;;;;14654:24;;;;;;;;;;;;;;;;;13828:858;;;;;;:::o;6966:169::-;7047:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;7096:31;;;;;;;;;;;;;;;;;6966:169;;;:::o;7143:220::-;7237:15;;;;;;;:9;:15;;;;;;:26;;7257:5;7237:19;:26::i;:::-;7219:15;;;;;;;;:9;:15;;;;;;:44;;;;7290:13;;;;;;;:24;;7308:5;7290:17;:24::i;:::-;7274:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;7330:25;;;;;;;7274:13;;7330:25;;;;;;;;;;;;;7143:220;;;:::o;14776:832::-;14849:10;14872:13;14901:7;;;;;;;;;;;14888:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14888:29:0;14980:5;;14936:19;;;;;;;-1:-1:-1;14888:29:0;;-1:-1:-1;14980:5:0;15011:590;;15041:11;;15037:494;;15073:10;15086:41;15096:30;;:15;;;;:30;;:19;:30::i;15086:41::-;15073:54;;15146:14;15163:17;15173:6;15163:9;:17::i;:::-;15146:34;;15211:9;15203:5;:17;15199:317;;;15245:14;15262:37;15278:20;:5;15288:9;15278;:20::i;:::-;15262:11;;;:15;:37::i;:::-;15245:54;-1:-1:-1;15322:16:0;15341:27;15358:9;15341:12;:5;15351:1;15341:9;:12::i;:::-;:16;;:27::i;:::-;15322:46;;15391:14;15420:11;15408:9;:23;;;;;;;-1:-1:-1;15458:13:0;;15454:42;;15473:23;15479:5;15486:9;15473:5;:23::i;:::-;15199:317;;;;15037:494;;;15011:590;;;15552:11;;15548:53;;15588:1;15580:5;:9;15548:53;14776:832;;;;;;:::o;9022:303::-;9067:6;9094:1;9090;:5;9086:232;;;-1:-1:-1;9116:1:0;9149;9145;9141:5;;:9;9165:92;9176:1;9172;:5;9165:92;;;9202:1;9198:5;;9240:1;9235;9231;9227;:5;;;;;;:9;9226:15;;;;;;9222:19;;9165:92;;;9086:232;;;;9278:6;;9274:44;;-1:-1:-1;9305:1:0;9274:44;9022:303;;;:::o;6540:201::-;6613:11;;:22;;6629:5;6613:15;:22::i;:::-;6599:11;:36;;;6662:13;;;;;:9;:13;;;;;;:24;;6680:5;6662:17;:24::i;:::-;6646:13;;;;;;;:9;:13;;;;;;;;:40;;;;6702:31;;;;;;;6646:13;;;;6702:31;;;;;;;;;;6540:201;;:::o;8808:96::-;8860:6;8887:1;8883;:5;:13;;8895:1;8883:13;;;8891:1;8883:13;8879:17;8808:96;-1:-1:-1;;;8808:96:0:o;6749:209::-;6828:15;;;;;;;:9;:15;;;;;;:26;;6848:5;6828:19;:26::i;:::-;6810:15;;;;;;;:9;:15;;;;;:44;;;;6879:11;:22;;6895:5;6879:15;:22::i;:::-;6865:11;:36;;;6917:33;;;;;;;;;;;;;;;;;;;;;;6749:209;;:::o;9677:120::-;9753:10;;9622:6;9753:17;;9677:120::o;9868:108::-;9928:9;9958:10;;;9954:14;;;9958:10;9954:14;;;;;;9868:108;-1:-1:-1;;;9868:108:0:o;4345:123::-;4428:5;;;4423:16;;;;4415:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://f72c11efd47916a77dabdec1ebb972a1fbe5854a8eb4d0f5efa9d1419d9d8a1b

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
[ 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.