Polygon Sponsored slots available. Book your slot here!
Contract Overview
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xec10fc4d849c34760b42f2c123f915a96a1428bdd8e0b9823af2b23e76ade94f | 16139332 | 831 days 10 hrs ago | 0xeaa98f7b5f7bfbcd1af14d0efaa9d9e68d82f640 | Contract Creation | 0 MATIC |
[ Download CSV Export ]
Similar Match Source Code This contract matches the deployed ByteCode of the Source Code for Contract 0x737dA5F520b47cb15af413FDF93f036D83113A1c The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PolyDexPair
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity = 0.5.16; import './interfaces/IPolyDexPair.sol'; import './interfaces/IPolyDexFormula.sol'; import './PolyDexERC20.sol'; import './libraries/Math.sol'; import './libraries/UQ112x112.sol'; import './interfaces/IERC20.sol'; import './interfaces/IPolyDexFactory.sol'; import './interfaces/IUniswapV2Callee.sol'; contract PolyDexPair is IPolyDexPair, PolyDexERC20 { 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 private unlocked = 1; address public formula; uint112 private collectedFee0; // uses single storage slot, accessible via getReserves uint112 private collectedFee1; // uses single storage slot, accessible via getReserves uint32 public swapFee; modifier lock() { require(unlocked == 1, 'PolyDexV2: LOCKED'); unlocked = 0; _; unlocked = 1; } function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } function getCollectedFees() public view returns (uint112 _collectedFee0, uint112 _collectedFee1) { _collectedFee0 = collectedFee0; _collectedFee1 = collectedFee1; } function getTokenWeights() public view returns (uint32 _tokenWeight0, uint32 _tokenWeight1) { _tokenWeight0 = 50; _tokenWeight1 = 50; } function getSwapFee() public view returns (uint32 _swapFee) { _swapFee = swapFee; } 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))), 'PolyDexV2: TRANSFER_FAILED'); } constructor() public { factory = msg.sender; } // called once by the factory at time of deployment function initialize(address _token0, address _token1, uint32 _swapFee) external { require(msg.sender == factory, 'PolyDexV2: FORBIDDEN'); // sufficient check token0 = _token0; token1 = _token1; swapFee = _swapFee; formula = IPolyDexFactory(factory).formula(); } // 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), 'Polydex: 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); } function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) { address feeTo = IPolyDexFactory(factory).feeTo(); uint112 protocolFee = uint112(IPolyDexFactory(factory).protocolFee()); feeOn = feeTo != address(0); (uint112 _collectedFee0, uint112 _collectedFee1) = getCollectedFees(); if (protocolFee > 0 && feeOn && (_collectedFee0 > 0 || _collectedFee1 > 0)) { uint liquidity = IPolyDexFormula(formula).mintLiquidityFee( totalSupply, _reserve0, _reserve1, _collectedFee0 / protocolFee, _collectedFee1 / protocolFee ); if (liquidity > 0) _mint(feeTo, liquidity); } if (_collectedFee0 > 0) collectedFee0 = 0; if (_collectedFee1 > 0) collectedFee1 = 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); _mintFee(_reserve0, _reserve1); uint _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, 'PolyDexV2: INSUFFICIENT_LIQUIDITY_MINTED'); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); emit Mint(msg.sender, amount0, amount1); } // this low-level function should be called from a contract which performs important safety checks function burn(address to) external lock returns (uint amount0, uint amount1) { (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint balance0 = IERC20(_token0).balanceOf(address(this)); uint balance1 = IERC20(_token1).balanceOf(address(this)); uint liquidity = balanceOf[address(this)]; _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, 'PolyDexV2: 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); 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, 'PolyDexV2: INSUFFICIENT_OUTPUT_AMOUNT'); uint112 _reserve0 = reserve0; // gas savings uint112 _reserve1 = reserve1; // gas savings require(amount0Out < _reserve0 && amount1Out < _reserve1, 'PolyDexV2: 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, 'PolyDexV2: INVALID_TO'); if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens if (data.length > 0) IUniswapV2Callee(to).uniswapV2Call(msg.sender, amount0Out, amount1Out, data); balance0 = 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, 'PolyDexV2: INSUFFICIENT_INPUT_AMOUNT'); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors uint balance0Adjusted = balance0.mul(10000); uint balance1Adjusted = balance1.mul(10000); { // avoids stack too deep errors if (amount0In > 0) { uint amount0InFee = amount0In.mul(swapFee); balance0Adjusted = balance0Adjusted.sub(amount0InFee); collectedFee0 = uint112(uint(collectedFee0).add(amount0InFee)); } if (amount1In > 0) { uint amount1InFee = amount1In.mul(swapFee); balance1Adjusted = balance1Adjusted.sub(amount1InFee); collectedFee1 = uint112(uint(collectedFee1).add(amount1InFee)); } require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**2), 'PolyDexV2: 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); } }
pragma solidity >=0.5.16; interface IPolyDexPair { 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 pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event PaidProtocolFee(uint112 collectedFee0, uint112 collectedFee1); event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function getCollectedFees() external view returns (uint112 _collectedFee0, uint112 _collectedFee1); function getTokenWeights() external view returns (uint32 tokenWeight0, uint32 tokenWeight1); function getSwapFee() external view returns (uint32); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address, uint32) external; }
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity >=0.5.16; /* Bancor Formula interface */ interface IPolyDexFormula { function getReserveAndWeights(address pair, address tokenA) external view returns ( address tokenB, uint reserveA, uint reserveB, uint32 tokenWeightA, uint32 tokenWeightB, uint32 swapFee ); function getFactoryReserveAndWeights(address factory, address pair, address tokenA) external view returns ( address tokenB, uint reserveA, uint reserveB, uint32 tokenWeightA, uint32 tokenWeightB, uint32 swapFee ); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut, uint32 tokenWeightIn, uint32 tokenWeightOut, uint32 swapFee ) external view returns (uint amountIn); function getPairAmountIn(address pair, address tokenIn, uint amountOut) external view returns (uint amountIn); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut, uint32 tokenWeightIn, uint32 tokenWeightOut, uint32 swapFee ) external view returns (uint amountOut); function getPairAmountOut(address pair, address tokenIn, uint amountIn) external view returns (uint amountOut); function getAmountsIn( address tokenIn, address tokenOut, uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); function getFactoryAmountsIn( address factory, address tokenIn, address tokenOut, uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsOut( address tokenIn, address tokenOut, uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getFactoryAmountsOut( address factory, address tokenIn, address tokenOut, uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function ensureConstantValue(uint reserve0, uint reserve1, uint balance0Adjusted, uint balance1Adjusted, uint32 tokenWeight0) external view returns (bool); function getReserves(address pair, address tokenA, address tokenB) external view returns (uint reserveA, uint reserveB); function getOtherToken(address pair, address tokenA) external view returns (address tokenB); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1); function mintLiquidityFee( uint totalLiquidity, uint112 reserve0, uint112 reserve1, uint112 collectedFee0, uint112 collectedFee1) external view returns (uint amount); }
pragma solidity =0.5.16; import './interfaces/IPolyDexERC20.sol'; import './libraries/SafeMath.sol'; contract PolyDexERC20 is IPolyDexERC20 { using SafeMath for uint; string public constant name = 'PolyDexV2 Liquidity Provider'; string public constant symbol = 'PolyDexV2-LP'; 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; 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, 'PolyDexV2: 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, 'PolyDexV2: INVALID_SIGNATURE'); _approve(owner, spender, value); } }
pragma solidity >=0.5.16; // 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; } } }
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 } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } }
pragma solidity >=0.5.16; 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); }
pragma solidity >=0.5.16; interface IPolyDexFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint32 swapFee, uint); function feeTo() external view returns (address); function formula() external view returns (address); function protocolFee() external view returns (uint); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function isPair(address) external view returns (bool); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function getWeightsAndSwapFee(address pair) external view returns (uint32 tokenWeight0, uint32 tokenWeight1, uint32 swapFee); function setFeeTo(address) external; function setFeeToSetter(address) external; function setProtocolFee(uint) external; }
pragma solidity >=0.5.16; interface IUniswapV2Callee { function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external; }
pragma solidity >=0.5.16; interface IPolyDexERC20 { 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 pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; }
pragma solidity >=0.5.16; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add-overflow'); } function sub(uint x, uint y) internal pure returns (uint z) { require((z = x - y) <= x, 'ds-math-sub-underflow'); } function mul(uint x, uint y) internal pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow'); } function div(uint a, uint b) internal pure returns (uint c) { require(b > 0, 'ds-math-division-by-zero'); c = a / b; } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"uint112","name":"collectedFee0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"collectedFee1","type":"uint112"}],"name":"PaidProtocolFee","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":"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":"formula","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCollectedFees","outputs":[{"internalType":"uint112","name":"_collectedFee0","type":"uint112"},{"internalType":"uint112","name":"_collectedFee1","type":"uint112"}],"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":true,"inputs":[],"name":"getSwapFee","outputs":[{"internalType":"uint32","name":"_swapFee","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenWeights","outputs":[{"internalType":"uint32","name":"_tokenWeight0","type":"uint32"},{"internalType":"uint32","name":"_tokenWeight1","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"},{"internalType":"uint32","name":"_swapFee","type":"uint32"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"swapFee","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","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"}]
Contract Creation Code
60806040526001600b5534801561001557600080fd5b5060405146908060526132778239604080519182900360520182208282018252601c83527f506f6c794465785632204c69717569646974792050726f7669646572000000006020938401528151808301835260018152603160f81b908401528151808401919091527ff6d27d5a14cdfc64d4dab659e0a5546f9e5b01c196666ee6d664d55bce4e16d5818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b0319163317905561315f806101186000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636a6278421161010f578063bc25cf77116100a2578063d505accf11610071578063d505accf14610671578063d54a8d18146106cf578063dd62ed3e14610704578063fff6cae91461073f576101e5565b8063bc25cf7714610626578063c45a015514610659578063d21220a714610661578063d4cadf6814610669576101e5565b806389afcb44116100de57806389afcb441461059157806395d89b41146105dd578063a9059cbb146105e5578063ba9a7a561461061e576101e5565b80636a627842146104ae5780636ecf2b22146104e157806370a082311461052b5780637ecebe001461055e576101e5565b806330adf81f116101875780634b75f54f116101565780634b75f54f1461047557806354cf2aeb1461047d5780635909c0d51461049e5780635a3d5493146104a6576101e5565b806330adf81f1461041c578063313ce5671461042457806332bfe469146104425780633644e5151461046d576101e5565b8063095ea7b3116101c3578063095ea7b3146103415780630dfe16811461038e57806318160ddd146103bf57806323b872dd146103d9576101e5565b8063022c0d9f146101ea57806306fdde03146102855780630902f1ac14610302575b600080fd5b6102836004803603608081101561020057600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561024457600080fd5b82018360208201111561025657600080fd5b8035906020019184600183028401116401000000008311171561027857600080fd5b509092509050610747565b005b61028d610f78565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c75781810151838201526020016102af565b50505050905090810190601f1680156102f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030a610fb1565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b61037a6004803603604081101561035757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611006565b604080519115158252519081900360200190f35b61039661101d565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103c7611039565b60408051918252519081900360200190f35b61037a600480360360608110156103ef57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561103f565b6103c761111e565b61042c611142565b6040805160ff9092168252519081900360200190f35b61044a611147565b6040805163ffffffff938416815291909216602082015281519081900390910190f35b6103c761114e565b610396611154565b610485611170565b6040805163ffffffff9092168252519081900360200190f35b6103c761119c565b6103c76111a2565b6103c7600480360360208110156104c457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166111a8565b610283600480360360608110156104f757600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff908116916020810135909116906040013563ffffffff16611527565b6103c76004803603602081101561054157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611717565b6103c76004803603602081101561057457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611729565b6105c4600480360360208110156105a757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661173b565b6040805192835260208301919091528051918290030190f35b61028d611b93565b61037a600480360360408110156105fb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611bcc565b6103c7611bd9565b6102836004803603602081101561063c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611bdf565b610396611dd5565b610396611df1565b610485611e0d565b610283600480360360e081101561068757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611e39565b6106d7612105565b604080516dffffffffffffffffffffffffffff938416815291909216602082015281519081900390910190f35b6103c76004803603604081101561071a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612132565b61028361214f565b600b546001146107b857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c7944657856323a204c4f434b4544000000000000000000000000000000604482015290519081900360640190fd5b6000600b55841515806107cb5750600084115b610820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130ba6025913960400191505060405180910390fd5b6008546dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041681871080156108675750806dffffffffffffffffffffffffffff1686105b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130716021913960400191505060405180910390fd5b600654600754600091829173ffffffffffffffffffffffffffffffffffffffff91821691908116908916821480159061092157508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b61098c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f506f6c7944657856323a20494e56414c49445f544f0000000000000000000000604482015290519081900360640190fd5b8a1561099d5761099d828a8d612335565b89156109ae576109ae818a8c612335565b8615610a90578873ffffffffffffffffffffffffffffffffffffffff166310d1e85c338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610a7757600080fd5b505af1158015610a8b573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b158015610afc57600080fd5b505afa158015610b10573d6000803e3d6000fd5b505050506040513d6020811015610b2657600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b158015610b9857600080fd5b505afa158015610bac573d6000803e3d6000fd5b505050506040513d6020811015610bc257600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a90038311610bec576000610c02565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610c26576000610c3c565b89856dffffffffffffffffffffffffffff160383035b90506000821180610c4d5750600081115b610ca2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131076024913960400191505060405180910390fd5b6000610cb68561271063ffffffff61254216565b90506000610ccc8561271063ffffffff61254216565b90508315610d8857600d54600090610d0f90869063ffffffff7c010000000000000000000000000000000000000000000000000000000090910481169061254216565b9050610d21838263ffffffff6125c816565b600d54909350610d47906dffffffffffffffffffffffffffff168263ffffffff61263a16565b600d80547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff92909216919091179055505b8215610e4357600d54600090610dc990859063ffffffff7c010000000000000000000000000000000000000000000000000000000090910481169061254216565b9050610ddb828263ffffffff6125c816565b600d54909250610e0d906e01000000000000000000000000000090046dffffffffffffffffffffffffffff168261263a565b600d600e6101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550505b610e7a6305f5e100610e6e6dffffffffffffffffffffffffffff8b8116908b1663ffffffff61254216565b9063ffffffff61254216565b610e8a838363ffffffff61254216565b1015610ef757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f506f6c7944657856323a204b0000000000000000000000000000000000000000604482015290519081900360640190fd5b5050610f05848488886126ac565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600b55505050505050505050565b6040518060400160405280601c81526020017f506f6c794465785632204c69717569646974792050726f76696465720000000081525081565b6008546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b6000611013338484612968565b5060015b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146111095773ffffffffffffffffffffffffffffffffffffffff841660009081526002602090815260408083203384529091529020546110d7908363ffffffff6125c816565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b6111148484846129d7565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b6032908190565b60035481565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b600d547c0100000000000000000000000000000000000000000000000000000000900463ffffffff1681565b60095481565b600a5481565b6000600b5460011461121b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c7944657856323a204c4f434b4544000000000000000000000000000000604482015290519081900360640190fd5b6000600b8190558061122b610fb1565b50600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b1580156112a557600080fd5b505afa1580156112b9573d6000803e3d6000fd5b505050506040513d60208110156112cf57600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561134857600080fd5b505afa15801561135c573d6000803e3d6000fd5b505050506040513d602081101561137257600080fd5b505190506000611398836dffffffffffffffffffffffffffff871663ffffffff6125c816565b905060006113bc836dffffffffffffffffffffffffffff871663ffffffff6125c816565b90506113c88686612ab8565b506000548061140f576113fb6103e86113ef6113ea868663ffffffff61254216565b612e2c565b9063ffffffff6125c816565b975061140a60006103e8612e7e565b61146c565b6114696dffffffffffffffffffffffffffff8816611433858463ffffffff61254216565b8161143a57fe5b046dffffffffffffffffffffffffffff881661145c858563ffffffff61254216565b8161146357fe5b04612f2e565b97505b600088116114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806130926028913960400191505060405180910390fd5b6114cf8989612e7e565b6114db858589896126ac565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600b55509395945050505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115ad57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f506f6c7944657856323a20464f5242494444454e000000000000000000000000604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff8681169190911790925560078054909116848316179055600d80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff851602179055600554604080517f4b75f54f00000000000000000000000000000000000000000000000000000000815290519190921691634b75f54f916004808301926020929190829003018186803b1580156116a257600080fd5b505afa1580156116b6573d6000803e3d6000fd5b505050506040513d60208110156116cc57600080fd5b5051600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055505050565b60016020526000908152604090205481565b60046020526000908152604090205481565b600080600b546001146117af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c7944657856323a204c4f434b4544000000000000000000000000000000604482015290519081900360640190fd5b6000600b819055806117bf610fb1565b50600654600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b15801561184157600080fd5b505afa158015611855573d6000803e3d6000fd5b505050506040513d602081101561186b57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b1580156118df57600080fd5b505afa1580156118f3573d6000803e3d6000fd5b505050506040513d602081101561190957600080fd5b5051306000908152600160205260409020549091506119288787612ab8565b506000548061193d838663ffffffff61254216565b8161194457fe5b04995080611958838563ffffffff61254216565b8161195f57fe5b04985060008a1180156119725750600089115b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806130df6028913960400191505060405180910390fd5b6119d13083612f46565b6119dc868c8c612335565b6119e7858c8b612335565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8816916370a08231916024808301926020929190829003018186803b158015611a5357600080fd5b505afa158015611a67573d6000803e3d6000fd5b505050506040513d6020811015611a7d57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8716916370a0823191602480820192602092909190829003018186803b158015611aef57600080fd5b505afa158015611b03573d6000803e3d6000fd5b505050506040513d6020811015611b1957600080fd5b50519250611b2984848a8a6126ac565b604080518b8152602081018b9052815173ffffffffffffffffffffffffffffffffffffffff8e169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a350505050505050506001600b81905550915091565b6040518060400160405280600c81526020017f506f6c7944657856322d4c50000000000000000000000000000000000000000081525081565b60006110133384846129d7565b6103e881565b600b54600114611c5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c7944657856323a204c4f434b4544000000000000000000000000000000604482015290519081900360640190fd5b6000600b55600654600754600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff9485169490931692611d2c9285928792611d27926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b158015611cef57600080fd5b505afa158015611d03573d6000803e3d6000fd5b505050506040513d6020811015611d1957600080fd5b50519063ffffffff6125c816565b612335565b600854604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051611dcb9284928792611d27926e01000000000000000000000000000090046dffffffffffffffffffffffffffff169173ffffffffffffffffffffffffffffffffffffffff8616916370a0823191602480820192602092909190829003018186803b158015611cef57600080fd5b50506001600b5550565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b600d547c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b42841015611ea857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f506f6c7944657856323a20455850495245440000000000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015612009573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81161580159061208457508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6120ef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f506f6c7944657856323a20494e56414c49445f5349474e415455524500000000604482015290519081900360640190fd5b6120fa898989612968565b505050505050505050565b600d546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000009092041690565b600260209081526000928352604080842090915290825290205481565b600b546001146121c057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c7944657856323a204c4f434b4544000000000000000000000000000000604482015290519081900360640190fd5b6000600b55600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905161232e9273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561223757600080fd5b505afa15801561224b573d6000803e3d6000fd5b505050506040513d602081101561226157600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156122d457600080fd5b505afa1580156122e8573d6000803e3d6000fd5b505050506040513d60208110156122fe57600080fd5b50516008546dffffffffffffffffffffffffffff808216916e0100000000000000000000000000009004166126ac565b6001600b55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b6020831061243b57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016123fe565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461249d576040519150601f19603f3d011682016040523d82523d6000602084013e6124a2565b606091505b50915091508180156124d05750805115806124d057508080602001905160208110156124cd57600080fd5b50515b61253b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f506f6c7944657856323a205452414e534645525f4641494c4544000000000000604482015290519081900360640190fd5b5050505050565b600081158061255d5750508082028282828161255a57fe5b04145b61101757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082038281111561101757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b8082018281101561101757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff84118015906126d857506dffffffffffffffffffffffffffff8311155b61274357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f506f6c796465783a204f564552464c4f57000000000000000000000000000000604482015290519081900360640190fd5b60085463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061279357506dffffffffffffffffffffffffffff841615155b80156127ae57506dffffffffffffffffffffffffffff831615155b1561285e578063ffffffff166127f1856127c78661300b565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff61302f16565b600980547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff8116612831846127c78761300b565b600a80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600880547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054612a0d908263ffffffff6125c816565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160205260408082209390935590841681522054612a4f908263ffffffff61263a16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015612b2357600080fd5b505afa158015612b37573d6000803e3d6000fd5b505050506040513d6020811015612b4d57600080fd5b5051600554604080517fb0e21e8a000000000000000000000000000000000000000000000000000000008152905192935060009273ffffffffffffffffffffffffffffffffffffffff9092169163b0e21e8a91600480820192602092909190829003018186803b158015612bc057600080fd5b505afa158015612bd4573d6000803e3d6000fd5b505050506040513d6020811015612bea57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff8316151593509050600080612c14612105565b915091506000836dffffffffffffffffffffffffffff16118015612c355750845b8015612c6b57506000826dffffffffffffffffffffffffffff161180612c6b57506000816dffffffffffffffffffffffffffff16115b15612da457600c5460008054909173ffffffffffffffffffffffffffffffffffffffff16906327ecf786908a8a6dffffffffffffffffffffffffffff808a1690891681612cb457fe5b04896dffffffffffffffffffffffffffff16886dffffffffffffffffffffffffffff1681612cde57fe5b6040805160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260048101979097526dffffffffffffffffffffffffffff958616602488015293851660448701529184166064860152900490911660848301525160a4808301926020929190829003018186803b158015612d6457600080fd5b505afa158015612d78573d6000803e3d6000fd5b505050506040513d6020811015612d8e57600080fd5b505190508015612da257612da28582612e7e565b505b6dffffffffffffffffffffffffffff821615612de357600d80547fffffffffffffffffffffffffffffffffffff00000000000000000000000000001690555b6dffffffffffffffffffffffffffff811615612e2257600d80547fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff1690555b5050505092915050565b60006003821115612e6f575080600160028204015b81811015612e6957809150600281828581612e5857fe5b040181612e6157fe5b049050612e41565b50612e79565b8115612e79575060015b919050565b600054612e91908263ffffffff61263a16565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054612ec9908263ffffffff61263a16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310612f3d5781612f3f565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054612f7c908263ffffffff6125c816565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081209190915554612fb6908263ffffffff6125c816565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff84168161306857fe5b04939250505056fe506f6c7944657856323a20494e53554646494349454e545f4c4951554944495459506f6c7944657856323a20494e53554646494349454e545f4c49515549444954595f4d494e544544506f6c7944657856323a20494e53554646494349454e545f4f55545055545f414d4f554e54506f6c7944657856323a20494e53554646494349454e545f4c49515549444954595f4255524e4544506f6c7944657856323a20494e53554646494349454e545f494e5055545f414d4f554e54a265627a7a723158209fbaeb71ee1c409eeeb5f3041d27fb46f9c4e2bd555f3848ca64cd6366ed259f64736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.