ETH Price: $3,319.78 (-1.59%)
Gas: 1 Gwei

Token

MahaSwap LP V1 (MLP-V1)
 

Overview

Max Total Supply

1,198,223.407280326085320117 MLP-V1

Holders

109

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000338580263663133 MLP-V1

Value
$0.00
0xb6d3f44d325c35e8434bf389efd9ee83b19ded54
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MahaswapV1Pair

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MahaswapV1Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.5.16;

import './libraries/Ownable.sol';
import './libraries/Math.sol';
import './MahaswapV1ERC20.sol';
import './interfaces/IERC20.sol';
import './libraries/UQ112x112.sol';
import './interfaces/IMahaswapV1Pair.sol';
import './interfaces/IMahaswapV1Callee.sol';
import './interfaces/IMahaswapV1Factory.sol';
import './interfaces/IIncentiveController.sol';

contract MahaswapV1Pair is IMahaswapV1Pair, MahaswapV1ERC20, Ownable {
    using SafeMath for uint256;
    using UQ112x112 for uint224;

    uint256 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

    uint256 public price0CumulativeLast;
    uint256 public price1CumulativeLast;

    uint256 public price0Last;
    uint256 public price1Last;

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

    uint256 private unlocked = 1;

    // Controller which controls the incentives.
    IIncentiveController public controller;

    // Used to pause swaping activity.
    bool swapingPaused = false;

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

    modifier checkIfPaused {
        require(!swapingPaused, 'Pair: swapping is paused');

        _;
    }

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

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 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, 'UniswapV2: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }

    function setSwapingPaused(bool isSet) public onlyOwner {
        swapingPaused = isSet;
    }

    function setIncentiveController(address newController) external onlyOwner {
        require(newController != address(0), 'Pair: invalid address');
        controller = IIncentiveController(newController);
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(
        uint256 balance0,
        uint256 balance1,
        uint112 _reserve0,
        uint112 _reserve1
    ) private {
        require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'UniswapV2: 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
            price0Last = uint256(UQ112x112.encode(_reserve1).uqdiv(_reserve0));
            price1Last = uint256(UQ112x112.encode(_reserve0).uqdiv(_reserve1));

            price0CumulativeLast += price0Last * timeElapsed;
            price1CumulativeLast += price1Last * timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // calls our special reward controller
    function _reward(
        uint256 amount0Out,
        uint256 amount1Out,
        uint256 amount0In,
        uint256 amount1In,
        address to
    ) private {
        if (address(controller) == address(0)) return;
        controller.conductChecks(
            reserve0,
            reserve1,
            price0Last,
            price1Last,
            amount0Out,
            amount1Out,
            amount0In,
            amount1In,
            msg.sender,
            to
        );
    }

    // 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 = IUniswapV2Factory(factory).feeTo();
        feeOn = feeTo != address(0);
        uint256 _kLast = kLast; // gas savings
        if (feeOn) {
            if (_kLast != 0) {
                uint256 rootK = Math.sqrt(uint256(_reserve0).mul(_reserve1));
                uint256 rootKLast = Math.sqrt(_kLast);
                if (rootK > rootKLast) {
                    uint256 numerator = totalSupply.mul(rootK.sub(rootKLast));
                    uint256 denominator = rootK.mul(5).add(rootKLast);
                    uint256 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 (uint256 liquidity) {
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        uint256 balance0 = IERC20(token0).balanceOf(address(this));
        uint256 balance1 = IERC20(token1).balanceOf(address(this));
        uint256 amount0 = balance0.sub(_reserve0);
        uint256 amount1 = balance1.sub(_reserve1);

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

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint256(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 (uint256 amount0, uint256 amount1) {
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        uint256 balance0 = IERC20(_token0).balanceOf(address(this));
        uint256 balance1 = IERC20(_token1).balanceOf(address(this));
        uint256 liquidity = balanceOf[address(this)];

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint256 _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, 'UniswapV2: 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 = uint256(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(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external lock checkIfPaused {
        require(amount0Out > 0 || amount1Out > 0, 'UniswapV2: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'UniswapV2: INSUFFICIENT_LIQUIDITY');

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

        // Get reserves after the trade was made.
        _reward(amount0Out, amount1Out, amount0In, amount1In, to);
        _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 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.5.16;

/**
 * @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.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, '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 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 onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 13 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.5.16;

/**
 * A library for performing various math operations
 */
library Math {
    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    function max(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x > y ? x : y;
    }

    // Babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;

            uint256 x = y / 2 + 1;

            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

File 4 of 13 : MahaswapV1ERC20.sol
pragma solidity =0.5.16;

import './interfaces/IUniswapV2ERC20.sol';
import './libraries/SafeMath.sol';

contract MahaswapV1ERC20 is IUniswapV2ERC20 {
    using SafeMath for uint256;

    string public constant name = 'MahaSwap LP V1';
    string public constant symbol = 'MLP-V1';
    uint8 public constant decimals = 18;
    uint256 public totalSupply;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) 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 => uint256) public nonces;

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

    constructor() public {
        uint256 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, uint256 value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

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

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

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

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

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

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

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        require(deadline >= block.timestamp, 'UniswapV2: 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, 'UniswapV2: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}

File 5 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}

File 6 of 13 : UQ112x112.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.5.16;

/**
 * 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
    }

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

    // 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 7 of 13 : IMahaswapV1Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IMahaswapV1Pair {
    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;

    function setSwapingPaused(bool isSet) external;

    function setIncentiveController(address controller) external;

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

File 8 of 13 : IMahaswapV1Callee.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

File 9 of 13 : IMahaswapV1Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import './IUniswapV2Factory.sol';

interface IMahaswapV1Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint256);

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;

    function setIncentiveControllerForPair(address pair, address controller) external;

    function setSwapingPausedForPair(address pair, bool isSet) external;
}

File 10 of 13 : IIncentiveController.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IIncentiveController {
    function conductChecks(
        uint112 reserveA,
        uint112 reserveB,
        uint256 priceALast,
        uint256 priceBLast,
        uint256 amountOutA,
        uint256 amountOutB,
        uint256 amountInA,
        uint256 amountInB,
        address from,
        address to
    ) external;
}

File 11 of 13 : IUniswapV2ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

File 12 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.5.16;

/**
 * A library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, 'SafeMath: addition overflow');

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, 'SafeMath: subtraction overflow');
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, 'SafeMath: multiplication overflow');

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, 'SafeMath: division by zero');
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, 'SafeMath: modulo by zero');
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 13 of 13 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"contract IIncentiveController","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price0Last","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1Last","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newController","type":"address"}],"name":"setIncentiveController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"isSet","type":"bool"}],"name":"setSwapingPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526001600f556010805460ff60a01b1916905534801561002257600080fd5b5060405146908060526129f98239604080519182900360520182208282018252600e83526d4d61686153776170204c5020563160901b6020938401528151808301835260018152603160f81b908401528151808401919091527fb6d5b71a9ae8249bde884b760b271a0060730838306717b22606b28173c788e6818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c0909401908190528351939091019290922060035550600580546001600160a01b03191633908117909155906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600680546001600160a01b031916331790556128a1806101586000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80637464fc3d11610125578063c4072372116100ad578063d5d6f8141161007c578063d5d6f81414610652578063dd62ed3e1461065a578063f2fde38b14610688578063f77c4791146106ae578063fff6cae9146106b657610211565b8063c4072372146105e9578063c45a0155146105f1578063d21220a7146105f9578063d505accf1461060157610211565b806395d89b41116100f457806395d89b4114610568578063a9059cbb14610570578063ba9a7a561461059c578063bc25cf77146105a4578063bc969294146105ca57610211565b80637464fc3d146104f35780637ecebe00146104fb57806389afcb44146105215780638da5cb5b1461056057610211565b806330adf81f116101a85780635909c0d5116101775780635909c0d51461048f5780635a3d5493146104975780636a6278421461049f57806370a08231146104c5578063715018a6146104eb57610211565b806330adf81f14610433578063313ce5671461043b5780633644e51514610459578063485cc9551461046157610211565b8063095ea7b3116101e4578063095ea7b31461037f5780630dfe1681146103bf57806318160ddd146103e357806323b872dd146103fd57610211565b806301056e6414610216578063022c0d9f1461023e57806306fdde03146102ca5780630902f1ac14610347575b600080fd5b61023c6004803603602081101561022c57600080fd5b50356001600160a01b03166106be565b005b61023c6004803603608081101561025457600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561028b57600080fd5b82018360208201111561029d57600080fd5b803590602001918460018302840111640100000000831117156102bf57600080fd5b509092509050610785565b6102d2610d2d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030c5781810151838201526020016102f4565b50505050905090810190601f1680156103395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034f610d57565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103ab6004803603604081101561039557600080fd5b506001600160a01b038135169060200135610d81565b604080519115158252519081900360200190f35b6103c7610d98565b604080516001600160a01b039092168252519081900360200190f35b6103eb610da7565b60408051918252519081900360200190f35b6103ab6004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610dad565b6103eb610e47565b610443610e6b565b6040805160ff9092168252519081900360200190f35b6103eb610e70565b61023c6004803603604081101561047757600080fd5b506001600160a01b0381358116916020013516610e76565b6103eb610efa565b6103eb610f00565b6103eb600480360360208110156104b557600080fd5b50356001600160a01b0316610f06565b6103eb600480360360208110156104db57600080fd5b50356001600160a01b0316611206565b61023c611218565b6103eb6112b4565b6103eb6004803603602081101561051157600080fd5b50356001600160a01b03166112ba565b6105476004803603602081101561053757600080fd5b50356001600160a01b03166112cc565b6040805192835260208301919091528051918290030190f35b6103c7611672565b6102d2611681565b6103ab6004803603604081101561058657600080fd5b506001600160a01b0381351690602001356116a3565b6103eb6116b0565b61023c600480360360208110156105ba57600080fd5b50356001600160a01b03166116b6565b61023c600480360360208110156105e057600080fd5b50351515611821565b6103eb611891565b6103c7611897565b6103c76118a6565b61023c600480360360e081101561061757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356118b5565b6103eb611ab7565b6103eb6004803603604081101561067057600080fd5b506001600160a01b0381358116916020013516611abd565b61023c6004803603602081101561069e57600080fd5b50356001600160a01b0316611ada565b6103c7611bcd565b61023c611bdc565b336106c7611672565b6001600160a01b031614610710576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6001600160a01b038116610763576040805162461bcd60e51b8152602060048201526015602482015274506169723a20696e76616c6964206164647265737360581b604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001146107d0576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55601054600160a01b900460ff1615610834576040805162461bcd60e51b815260206004820152601860248201527f506169723a207377617070696e67206973207061757365640000000000000000604482015290519081900360640190fd5b60008511806108435750600084115b61087e5760405162461bcd60e51b815260040180806020018281038252602581526020018061274c6025913960400191505060405180910390fd5b600080610889610d57565b5091509150816001600160701b0316871080156108ae5750806001600160701b031686105b6108e95760405162461bcd60e51b81526004018080602001828103825260218152602001806127bb6021913960400191505060405180910390fd5b60075460085460009182916001600160a01b039182169190811690891682148015906109275750806001600160a01b0316896001600160a01b031614155b610970576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a1561098157610981828a8d611d3e565b891561099257610992818a8c611d3e565b8615610a4d57886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610a9357600080fd5b505afa158015610aa7573d6000803e3d6000fd5b505050506040513d6020811015610abd57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610b0957600080fd5b505afa158015610b1d573d6000803e3d6000fd5b505050506040513d6020811015610b3357600080fd5b5051925060009150506001600160701b0385168a90038311610b56576000610b65565b89856001600160701b03160383035b9050600089856001600160701b0316038311610b82576000610b91565b89856001600160701b03160383035b90506000821180610ba25750600081115b610bdd5760405162461bcd60e51b81526004018080602001828103825260248152602001806127716024913960400191505060405180910390fd5b6000610c11610bf384600363ffffffff611ed816565b610c05876103e863ffffffff611ed816565b9063ffffffff611f3816565b90506000610c29610bf384600363ffffffff611ed816565b9050610c5a620f4240610c4e6001600160701b038b8116908b1663ffffffff611ed816565b9063ffffffff611ed816565b610c6a838363ffffffff611ed816565b1015610cac576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b5050610cbb8b8b84848d611f7a565b610cc78484888861204b565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600f55505050505050505050565b6040518060400160405280600e81526020016d4d61686153776170204c5020563160901b81525081565b6009546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610d8e33848461220d565b5060015b92915050565b6007546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610e32576001600160a01b0384166000908152600260209081526040808320338452909152902054610e0d908363ffffffff611f3816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610e3d84848461226f565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6006546001600160a01b03163314610ecc576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b600a5481565b600b5481565b6000600f54600114610f53576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f81905580610f63610d57565b50600754604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610fb757600080fd5b505afa158015610fcb573d6000803e3d6000fd5b505050506040513d6020811015610fe157600080fd5b5051600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561103457600080fd5b505afa158015611048573d6000803e3d6000fd5b505050506040513d602081101561105e57600080fd5b50519050600061107d836001600160701b03871663ffffffff611f3816565b9050600061109a836001600160701b03871663ffffffff611f3816565b905060006110a88787612329565b600054909150806110e5576110d16103e8610c056110cc878763ffffffff611ed816565b612487565b98506110e060006103e86124d9565b611134565b6111316001600160701b038916611102868463ffffffff611ed816565b8161110957fe5b046001600160701b038916611124868563ffffffff611ed816565b8161112b57fe5b0461256f565b98505b600089116111735760405162461bcd60e51b81526004018080602001828103825260288152602001806128046028913960400191505060405180910390fd5b61117d8a8a6124d9565b61118986868a8a61204b565b81156111b9576009546111b5906001600160701b0380821691600160701b90041663ffffffff611ed816565b600e555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600f5550949695505050505050565b60016020526000908152604090205481565b33611221611672565b6001600160a01b03161461126a576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600e5481565b60046020526000908152604090205481565b600080600f5460011461131a576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f8190558061132a610d57565b50600754600854604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d60208110156113b057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d602081101561142857600080fd5b5051306000908152600160205260408120549192506114478888612329565b6000549091508061145e848763ffffffff611ed816565b8161146557fe5b049a5080611479848663ffffffff611ed816565b8161148057fe5b04995060008b118015611493575060008a115b6114ce5760405162461bcd60e51b81526004018080602001828103825260288152602001806127dc6028913960400191505060405180910390fd5b6114d83084612585565b6114e3878d8d611d3e565b6114ee868d8c611d3e565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561153457600080fd5b505afa158015611548573d6000803e3d6000fd5b505050506040513d602081101561155e57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d60208110156115d457600080fd5b505193506115e485858b8b61204b565b811561161457600954611610906001600160701b0380821691600160701b90041663ffffffff611ed816565b600e555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600f81905550915091565b6005546001600160a01b031690565b604051806040016040528060068152602001654d4c502d563160d01b81525081565b6000610d8e33848461226f565b6103e881565b600f54600114611701576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55600754600854600954604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926117b092859287926117ab926001600160701b03169185916370a0823191602480820192602092909190829003018186803b15801561177357600080fd5b505afa158015611787573d6000803e3d6000fd5b505050506040513d602081101561179d57600080fd5b50519063ffffffff611f3816565b611d3e565b600954604080516370a0823160e01b8152306004820152905161181792849287926117ab92600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b15801561177357600080fd5b50506001600f5550565b3361182a611672565b6001600160a01b031614611873576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b60108054911515600160a01b0260ff60a01b19909216919091179055565b600d5481565b6006546001600160a01b031681565b6008546001600160a01b031681565b428410156118ff576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611a1a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611a505750886001600160a01b0316816001600160a01b0316145b611aa1576040805162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e415455524500000000604482015290519081900360640190fd5b611aac89898961220d565b505050505050505050565b600c5481565b600260209081526000928352604080842090915290825290205481565b33611ae3611672565b6001600160a01b031614611b2c576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6001600160a01b038116611b715760405162461bcd60e51b81526004018080602001828103825260268152602001806127956026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b600f54600114611c27576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55600754604080516370a0823160e01b81523060048201529051611d37926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c7857600080fd5b505afa158015611c8c573d6000803e3d6000fd5b505050506040513d6020811015611ca257600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611cef57600080fd5b505afa158015611d03573d6000803e3d6000fd5b505050506040513d6020811015611d1957600080fd5b50516009546001600160701b0380821691600160701b90041661204b565b6001600f55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611deb5780518252601f199092019160209182019101611dcc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e4d576040519150601f19603f3d011682016040523d82523d6000602084013e611e52565b606091505b5091509150818015611e80575080511580611e805750808060200190516020811015611e7d57600080fd5b50515b611ed1576040805162461bcd60e51b815260206004820152601a60248201527f556e697377617056323a205452414e534645525f4641494c4544000000000000604482015290519081900360640190fd5b5050505050565b600082611ee757506000610d92565b82820282848281611ef457fe5b0414611f315760405162461bcd60e51b815260040180806020018281038252602181526020018061282c6021913960400191505060405180910390fd5b9392505050565b6000611f3183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612623565b6010546001600160a01b0316611f8f57611ed1565b601054600954600c54600d5460408051633bd456dd60e11b81526001600160701b038086166004830152600160701b9095049094166024850152604484019290925260648301526084820188905260a4820187905260c4820186905260e48201859052336101048301526001600160a01b0384811661012484015290519216916377a8adba916101448082019260009290919082900301818387803b15801561203757600080fd5b505af1158015611aac573d6000803e3d6000fd5b6001600160701b03841180159061206957506001600160701b038311155b6120b0576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60095463ffffffff42811691600160e01b900481168203908116158015906120e057506001600160701b03841615155b80156120f457506001600160701b03831615155b156121625761211b84612106856126ba565b6001600160e01b03169063ffffffff6126cc16565b6001600160e01b0316600c5561213483612106866126ba565b6001600160e01b0316600d819055600c54600a805463ffffffff8516928302019055600b8054919092020190555b600980546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054612298908263ffffffff611f3816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546122cd908263ffffffff6126f116565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600660009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d60208110156123a457600080fd5b5051600e546001600160a01b03821615801594509192509061247357801561246e5760006123e76110cc6001600160701b0388811690881663ffffffff611ed816565b905060006123f483612487565b90508082111561246b576000612422612413848463ffffffff611f3816565b6000549063ffffffff611ed816565b905060006124478361243b86600563ffffffff611ed816565b9063ffffffff6126f116565b9050600081838161245457fe5b04905080156124675761246787826124d9565b5050505b50505b61247f565b801561247f576000600e555b505092915050565b600060038211156124ca575080600160028204015b818110156124c4578091506002818285816124b357fe5b0401816124bc57fe5b04905061249c565b506124d4565b81156124d4575060015b919050565b6000546124ec908263ffffffff6126f116565b60009081556001600160a01b038316815260016020526040902054612517908263ffffffff6126f116565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081831061257e5781611f31565b5090919050565b6001600160a01b0382166000908152600160205260409020546125ae908263ffffffff611f3816565b6001600160a01b038316600090815260016020526040812091909155546125db908263ffffffff611f3816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b600081848411156126b25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267757818101518382015260200161265f565b50505050905090810190601f1680156126a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816126e957fe5b049392505050565b600082820183811015611f31576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e544f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a723158205d168c36d3917aabb68c0eb6f638b8ef765ad5982a1ed4fd8da7be976fb89d8164736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c80637464fc3d11610125578063c4072372116100ad578063d5d6f8141161007c578063d5d6f81414610652578063dd62ed3e1461065a578063f2fde38b14610688578063f77c4791146106ae578063fff6cae9146106b657610211565b8063c4072372146105e9578063c45a0155146105f1578063d21220a7146105f9578063d505accf1461060157610211565b806395d89b41116100f457806395d89b4114610568578063a9059cbb14610570578063ba9a7a561461059c578063bc25cf77146105a4578063bc969294146105ca57610211565b80637464fc3d146104f35780637ecebe00146104fb57806389afcb44146105215780638da5cb5b1461056057610211565b806330adf81f116101a85780635909c0d5116101775780635909c0d51461048f5780635a3d5493146104975780636a6278421461049f57806370a08231146104c5578063715018a6146104eb57610211565b806330adf81f14610433578063313ce5671461043b5780633644e51514610459578063485cc9551461046157610211565b8063095ea7b3116101e4578063095ea7b31461037f5780630dfe1681146103bf57806318160ddd146103e357806323b872dd146103fd57610211565b806301056e6414610216578063022c0d9f1461023e57806306fdde03146102ca5780630902f1ac14610347575b600080fd5b61023c6004803603602081101561022c57600080fd5b50356001600160a01b03166106be565b005b61023c6004803603608081101561025457600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561028b57600080fd5b82018360208201111561029d57600080fd5b803590602001918460018302840111640100000000831117156102bf57600080fd5b509092509050610785565b6102d2610d2d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030c5781810151838201526020016102f4565b50505050905090810190601f1680156103395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034f610d57565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103ab6004803603604081101561039557600080fd5b506001600160a01b038135169060200135610d81565b604080519115158252519081900360200190f35b6103c7610d98565b604080516001600160a01b039092168252519081900360200190f35b6103eb610da7565b60408051918252519081900360200190f35b6103ab6004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610dad565b6103eb610e47565b610443610e6b565b6040805160ff9092168252519081900360200190f35b6103eb610e70565b61023c6004803603604081101561047757600080fd5b506001600160a01b0381358116916020013516610e76565b6103eb610efa565b6103eb610f00565b6103eb600480360360208110156104b557600080fd5b50356001600160a01b0316610f06565b6103eb600480360360208110156104db57600080fd5b50356001600160a01b0316611206565b61023c611218565b6103eb6112b4565b6103eb6004803603602081101561051157600080fd5b50356001600160a01b03166112ba565b6105476004803603602081101561053757600080fd5b50356001600160a01b03166112cc565b6040805192835260208301919091528051918290030190f35b6103c7611672565b6102d2611681565b6103ab6004803603604081101561058657600080fd5b506001600160a01b0381351690602001356116a3565b6103eb6116b0565b61023c600480360360208110156105ba57600080fd5b50356001600160a01b03166116b6565b61023c600480360360208110156105e057600080fd5b50351515611821565b6103eb611891565b6103c7611897565b6103c76118a6565b61023c600480360360e081101561061757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356118b5565b6103eb611ab7565b6103eb6004803603604081101561067057600080fd5b506001600160a01b0381358116916020013516611abd565b61023c6004803603602081101561069e57600080fd5b50356001600160a01b0316611ada565b6103c7611bcd565b61023c611bdc565b336106c7611672565b6001600160a01b031614610710576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6001600160a01b038116610763576040805162461bcd60e51b8152602060048201526015602482015274506169723a20696e76616c6964206164647265737360581b604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001146107d0576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55601054600160a01b900460ff1615610834576040805162461bcd60e51b815260206004820152601860248201527f506169723a207377617070696e67206973207061757365640000000000000000604482015290519081900360640190fd5b60008511806108435750600084115b61087e5760405162461bcd60e51b815260040180806020018281038252602581526020018061274c6025913960400191505060405180910390fd5b600080610889610d57565b5091509150816001600160701b0316871080156108ae5750806001600160701b031686105b6108e95760405162461bcd60e51b81526004018080602001828103825260218152602001806127bb6021913960400191505060405180910390fd5b60075460085460009182916001600160a01b039182169190811690891682148015906109275750806001600160a01b0316896001600160a01b031614155b610970576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a1561098157610981828a8d611d3e565b891561099257610992818a8c611d3e565b8615610a4d57886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610a9357600080fd5b505afa158015610aa7573d6000803e3d6000fd5b505050506040513d6020811015610abd57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610b0957600080fd5b505afa158015610b1d573d6000803e3d6000fd5b505050506040513d6020811015610b3357600080fd5b5051925060009150506001600160701b0385168a90038311610b56576000610b65565b89856001600160701b03160383035b9050600089856001600160701b0316038311610b82576000610b91565b89856001600160701b03160383035b90506000821180610ba25750600081115b610bdd5760405162461bcd60e51b81526004018080602001828103825260248152602001806127716024913960400191505060405180910390fd5b6000610c11610bf384600363ffffffff611ed816565b610c05876103e863ffffffff611ed816565b9063ffffffff611f3816565b90506000610c29610bf384600363ffffffff611ed816565b9050610c5a620f4240610c4e6001600160701b038b8116908b1663ffffffff611ed816565b9063ffffffff611ed816565b610c6a838363ffffffff611ed816565b1015610cac576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b5050610cbb8b8b84848d611f7a565b610cc78484888861204b565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600f55505050505050505050565b6040518060400160405280600e81526020016d4d61686153776170204c5020563160901b81525081565b6009546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610d8e33848461220d565b5060015b92915050565b6007546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610e32576001600160a01b0384166000908152600260209081526040808320338452909152902054610e0d908363ffffffff611f3816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610e3d84848461226f565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6006546001600160a01b03163314610ecc576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b600a5481565b600b5481565b6000600f54600114610f53576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f81905580610f63610d57565b50600754604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610fb757600080fd5b505afa158015610fcb573d6000803e3d6000fd5b505050506040513d6020811015610fe157600080fd5b5051600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561103457600080fd5b505afa158015611048573d6000803e3d6000fd5b505050506040513d602081101561105e57600080fd5b50519050600061107d836001600160701b03871663ffffffff611f3816565b9050600061109a836001600160701b03871663ffffffff611f3816565b905060006110a88787612329565b600054909150806110e5576110d16103e8610c056110cc878763ffffffff611ed816565b612487565b98506110e060006103e86124d9565b611134565b6111316001600160701b038916611102868463ffffffff611ed816565b8161110957fe5b046001600160701b038916611124868563ffffffff611ed816565b8161112b57fe5b0461256f565b98505b600089116111735760405162461bcd60e51b81526004018080602001828103825260288152602001806128046028913960400191505060405180910390fd5b61117d8a8a6124d9565b61118986868a8a61204b565b81156111b9576009546111b5906001600160701b0380821691600160701b90041663ffffffff611ed816565b600e555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600f5550949695505050505050565b60016020526000908152604090205481565b33611221611672565b6001600160a01b03161461126a576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600e5481565b60046020526000908152604090205481565b600080600f5460011461131a576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f8190558061132a610d57565b50600754600854604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d60208110156113b057600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d602081101561142857600080fd5b5051306000908152600160205260408120549192506114478888612329565b6000549091508061145e848763ffffffff611ed816565b8161146557fe5b049a5080611479848663ffffffff611ed816565b8161148057fe5b04995060008b118015611493575060008a115b6114ce5760405162461bcd60e51b81526004018080602001828103825260288152602001806127dc6028913960400191505060405180910390fd5b6114d83084612585565b6114e3878d8d611d3e565b6114ee868d8c611d3e565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561153457600080fd5b505afa158015611548573d6000803e3d6000fd5b505050506040513d602081101561155e57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d60208110156115d457600080fd5b505193506115e485858b8b61204b565b811561161457600954611610906001600160701b0380821691600160701b90041663ffffffff611ed816565b600e555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600f81905550915091565b6005546001600160a01b031690565b604051806040016040528060068152602001654d4c502d563160d01b81525081565b6000610d8e33848461226f565b6103e881565b600f54600114611701576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55600754600854600954604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926117b092859287926117ab926001600160701b03169185916370a0823191602480820192602092909190829003018186803b15801561177357600080fd5b505afa158015611787573d6000803e3d6000fd5b505050506040513d602081101561179d57600080fd5b50519063ffffffff611f3816565b611d3e565b600954604080516370a0823160e01b8152306004820152905161181792849287926117ab92600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b15801561177357600080fd5b50506001600f5550565b3361182a611672565b6001600160a01b031614611873576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b60108054911515600160a01b0260ff60a01b19909216919091179055565b600d5481565b6006546001600160a01b031681565b6008546001600160a01b031681565b428410156118ff576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611a1a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611a505750886001600160a01b0316816001600160a01b0316145b611aa1576040805162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e415455524500000000604482015290519081900360640190fd5b611aac89898961220d565b505050505050505050565b600c5481565b600260209081526000928352604080842090915290825290205481565b33611ae3611672565b6001600160a01b031614611b2c576040805162461bcd60e51b8152602060048201819052602482015260008051602061284d833981519152604482015290519081900360640190fd5b6001600160a01b038116611b715760405162461bcd60e51b81526004018080602001828103825260268152602001806127956026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b600f54600114611c27576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600f55600754604080516370a0823160e01b81523060048201529051611d37926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c7857600080fd5b505afa158015611c8c573d6000803e3d6000fd5b505050506040513d6020811015611ca257600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611cef57600080fd5b505afa158015611d03573d6000803e3d6000fd5b505050506040513d6020811015611d1957600080fd5b50516009546001600160701b0380821691600160701b90041661204b565b6001600f55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611deb5780518252601f199092019160209182019101611dcc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e4d576040519150601f19603f3d011682016040523d82523d6000602084013e611e52565b606091505b5091509150818015611e80575080511580611e805750808060200190516020811015611e7d57600080fd5b50515b611ed1576040805162461bcd60e51b815260206004820152601a60248201527f556e697377617056323a205452414e534645525f4641494c4544000000000000604482015290519081900360640190fd5b5050505050565b600082611ee757506000610d92565b82820282848281611ef457fe5b0414611f315760405162461bcd60e51b815260040180806020018281038252602181526020018061282c6021913960400191505060405180910390fd5b9392505050565b6000611f3183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612623565b6010546001600160a01b0316611f8f57611ed1565b601054600954600c54600d5460408051633bd456dd60e11b81526001600160701b038086166004830152600160701b9095049094166024850152604484019290925260648301526084820188905260a4820187905260c4820186905260e48201859052336101048301526001600160a01b0384811661012484015290519216916377a8adba916101448082019260009290919082900301818387803b15801561203757600080fd5b505af1158015611aac573d6000803e3d6000fd5b6001600160701b03841180159061206957506001600160701b038311155b6120b0576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60095463ffffffff42811691600160e01b900481168203908116158015906120e057506001600160701b03841615155b80156120f457506001600160701b03831615155b156121625761211b84612106856126ba565b6001600160e01b03169063ffffffff6126cc16565b6001600160e01b0316600c5561213483612106866126ba565b6001600160e01b0316600d819055600c54600a805463ffffffff8516928302019055600b8054919092020190555b600980546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054612298908263ffffffff611f3816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546122cd908263ffffffff6126f116565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600660009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d60208110156123a457600080fd5b5051600e546001600160a01b03821615801594509192509061247357801561246e5760006123e76110cc6001600160701b0388811690881663ffffffff611ed816565b905060006123f483612487565b90508082111561246b576000612422612413848463ffffffff611f3816565b6000549063ffffffff611ed816565b905060006124478361243b86600563ffffffff611ed816565b9063ffffffff6126f116565b9050600081838161245457fe5b04905080156124675761246787826124d9565b5050505b50505b61247f565b801561247f576000600e555b505092915050565b600060038211156124ca575080600160028204015b818110156124c4578091506002818285816124b357fe5b0401816124bc57fe5b04905061249c565b506124d4565b81156124d4575060015b919050565b6000546124ec908263ffffffff6126f116565b60009081556001600160a01b038316815260016020526040902054612517908263ffffffff6126f116565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081831061257e5781611f31565b5090919050565b6001600160a01b0382166000908152600160205260409020546125ae908263ffffffff611f3816565b6001600160a01b038316600090815260016020526040812091909155546125db908263ffffffff611f3816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b600081848411156126b25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267757818101518382015260200161265f565b50505050905090810190601f1680156126a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816126e957fe5b049392505050565b600082820183811015611f31576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e544f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a723158205d168c36d3917aabb68c0eb6f638b8ef765ad5982a1ed4fd8da7be976fb89d8164736f6c63430005100032

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.