ETH Price: $2,528.31 (+0.68%)
Gas: 0.63 Gwei

Token

SHIBA.STABLE (SHST)
 

Overview

Max Total Supply

7,538,476.551397427 SHST

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
334.072196397 SHST

Value
$0.00
0x12634b07C68953c713b275b6420b16FF938a8328
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:
ShibaStable

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 2000 runs

Other Settings:
byzantium EvmVersion
File 1 of 15 : SHST.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/proxy/Initializable.sol";
import "./external/IUniswapV2Factory.sol";
import "./external/IUniswapV2Router02.sol";
import "./external/IWETH.sol";
import "./Constants.sol";
import "./Setters.sol";

contract ShibaStable is Setters, Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    modifier taxlessTx {
        _taxLess = true;
        _;
        _taxLess = false;
    }

    constructor () public {
        // uniswapRouterV2 = IUniswapV2Router02(Constants.getRouterAdd());
        // uniswapFactory = IUniswapV2Factory(Constants.getFactoryAdd());
        updateEpoch();
        initializeLargeTotal();
        _totalSupply = 10**5 * 10**9;
        uint256 currentFactor = getFactor();
        _largeBalances[_msgSender()] = _largeBalances[_msgSender()].add(_totalSupply.mul(currentFactor));
        _presaleTime = now + 24 hours;
        _presalePrice = 600000;
        emit Transfer(address(0),_msgSender(),_totalSupply);
    }

    function name() public view returns (string memory) {
        return Constants.getName();
    }
    
    function symbol() public view returns (string memory) {
        return Constants.getSymbol();
    }
    
    function decimals() public view returns (uint8) {
        return Constants.getDecimals();
    }
    
    function totalSupply() public view override returns (uint256) {
        return getTotalSupply();
    }
    
    function balanceOf(address account) public view override returns (uint256) {
        uint256 currentFactor = getFactor();
        return getLargeBalances(account).div(currentFactor);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return getAllowances(owner,spender);
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), getAllowances(sender,_msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        setAllowances(owner, spender, amount);
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Amount must be greater than zero");
        require(amount <= balanceOf(sender),"Amount exceeds balance");
        require(isPresaleDone(),"Presale yet to close");
        if (now > getCurrentEpoch().add(Constants.getEpochLength())) updateEpoch();
        uint256 currentFactor = getFactor();
        uint256 largeAmount = amount.mul(currentFactor);
        uint256 txType;
        if (isTaxLess()) {
            txType = 3;
        } else {
            bool lpBurn;
            if (isSupportedPool(sender)) {
                lpBurn = syncPair(sender);
            } else if (isSupportedPool(recipient)){
                silentSyncPair(recipient);
            } else {
                silentSyncPair(_mainPool);
            }
            txType = _getTxType(sender, recipient, lpBurn);
        }
        // Buy Transaction from supported pools - requires mint, no utility fee
        if (txType == 1) {
            _implementBuy(sender, recipient, amount, largeAmount, currentFactor);
        }
        // Sells to supported pools or unsupported transfer - requires exit burn and utility fee
        else if (txType == 2) {
            _implementSell(sender, recipient, amount, largeAmount, currentFactor);
        } 
        // Add Liquidity via interface or Remove Liquidity Transaction to supported pools - no fee of any sort
        else if (txType == 3) {
            _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
            _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount);
            emit Transfer(sender, recipient, amount);
        }
    }

    function _implementBuy(address sender, address recipient, uint256 amount, uint256 largeAmount, uint256 currentFactor) private {
        (uint256 totalMint, uint256 incentive) = getMintValue(sender, amount);
        // uint256 mintSize = amount.div(100);
        _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
        _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount);
        _totalSupply = _totalSupply.add(totalMint);
        if (incentive > 0) {
            _largeBalances[recipient] = _largeBalances[recipient].add(incentive.mul(currentFactor));
            _largeBalances[address(this)] = _largeBalances[address(this)].sub(incentive.mul(currentFactor));
            _currentPot = _currentPot.sub(incentive);
            emit Transfer(address(this), recipient, incentive);
        }
        emit Transfer(sender, recipient, amount);
    }

    function _implementSell(address sender, address recipient, uint256 amount, uint256 largeAmount, uint256 currentFactor) private {
        SellDetails memory sell;
        (sell.burnSize, sell.largeBurnSize, sell.potSize, sell.largePotSize) = getBurnValues(recipient, amount);
        sell.actualTransferAmount = amount.sub(sell.burnSize).sub(sell.potSize);
        sell.largeTransferAmount = sell.actualTransferAmount.mul(currentFactor);
        _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
        _largeBalances[recipient] = _largeBalances[recipient].add(sell.largeTransferAmount);
        if (sell.potSize > 0) {
            _largeBalances[address(this)] = _largeBalances[address(this)].add(sell.largePotSize);
            _currentPot = _currentPot.add(sell.potSize);
            emit Transfer(sender, address(this), sell.potSize);
        }
        _totalSupply = _totalSupply.sub(sell.burnSize);
        _largeTotal = _largeTotal.sub(sell.largeBurnSize);
        emit Transfer(sender, recipient, sell.actualTransferAmount);
        emit Transfer(sender, address(0), sell.burnSize);
    }

    function _getTxType(address sender, address recipient, bool lpBurn) private returns(uint256) {
        uint256 txType = 2;
        if (isSupportedPool(sender)) {
            if (lpBurn) {
                txType = 3;
            } else {
                txType = 1;
            }
        } else if (sender == Constants.getRouterAdd()) {
            txType = 3;
        }
        return txType;
    }

    function setPresaleTime(uint256 time) external onlyOwner() {
        require(isPresaleDone() == false, "This cannot be modified after the presale is done");
        _presaleTime = time;
    }

    function setPresalePrice(uint256 priceInWei) external onlyOwner() {
        require(!isPresaleDone(),"Can only be set before presale");
        _presalePrice = priceInWei;
    }

    // Presale function
    function buyPresale() external payable {
        require(!isPresaleDone(), "Presale is already completed");
        require(_presaleTime <= now, "Presale hasn't started yet");
        require(_presaleParticipation[_msgSender()].add(msg.value) <= Constants.getPresaleIndividualCap(), "Crossed individual cap");
        require(_presalePrice != 0, "Presale price is not set");
        require(msg.value >= Constants.getPresaleIndividualMin(), "Needs to be above min eth!");
        require(!Address.isContract(_msgSender()),"no contracts");
        require(tx.gasprice <= Constants.getMaxPresaleGas(),"gas price above limit");
        uint256 amountToDist = msg.value.div(_presalePrice);
        require(_presaleDist.add(amountToDist) <= Constants.getPresaleCap(), "Presale max cap already reached");
        uint256 currentFactor = getFactor();
        uint256 largeAmount = amountToDist.mul(currentFactor);
        _largeBalances[owner()] = _largeBalances[owner()].sub(largeAmount);
        _largeBalances[_msgSender()] = _largeBalances[_msgSender()].add(largeAmount);
        emit Transfer(owner(), _msgSender(), amountToDist);
        _presaleParticipation[_msgSender()] = _presaleParticipation[_msgSender()].add(msg.value);
        _presaleDist = _presaleDist.add(amountToDist);
    }

    function setPresaleDone() public onlyOwner() {
        require(totalSupply() <= Constants.getLaunchSupply(), "Total supply is already minted");
        _mintRemaining();
        _presaleDone = true;
        _createEthPool();
    }

    function _mintRemaining() private {
        require(!isPresaleDone(), "Cannot mint post presale");
        addToAccount(address(this),65000 * 10 ** 9);
        addToAccount(owner(),15000 * 10 ** 9);
        emit Transfer(address(0),address(this),65000 * 10 ** 9);
    }

    function _createEthPool() private taxlessTx {
        IUniswapV2Router02 uniswapRouterV2 = getUniswapRouter();
        IUniswapV2Factory uniswapFactory = getUniswapFactory();
        address tokenUniswapPair;
        if (uniswapFactory.getPair(address(uniswapRouterV2.WETH()), address(this)) == address(0)) {
            tokenUniswapPair = uniswapFactory.createPair(
            address(uniswapRouterV2.WETH()), address(this));
        } else {
            tokenUniswapPair = uniswapFactory.getPair(address(this),uniswapRouterV2.WETH());
        }
        Constants.getDeployerAdd().transfer(Constants.getDeployerCost());
        _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 65 * 10**3 * 10**9);
        uniswapRouterV2.addLiquidityETH{value: address(this).balance}(address(this),
            65 * 10**3 * 10**9, 0, 0, Constants.getDeployerAdd(), block.timestamp);
        addSupportedPool(tokenUniswapPair, address(uniswapRouterV2.WETH()));
        _mainPool = tokenUniswapPair;
    }
}

File 2 of 15 : Constants.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

library Constants {
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _launchSupply = 180000 * 10**9;
    uint256 private constant _largeTotal = (MAX - (MAX % _launchSupply));
    uint256 private constant _deployerCost = 10 ether;

    uint256 private constant _baseExpansionFactor = 100;
    uint256 private constant _baseContractionFactor = 100;
    uint256 private constant _incentivePot = 50;
    uint256 private constant _baseUtilityFee = 50;
    uint256 private constant _baseContractionCap = 1000;

    uint256 private constant _presaleIndividualCap = 1 ether;
    uint256 private constant _presaleIndividualMin = 1 ether;
    uint256 private constant _presaleCap = 1 * 10**5 * 10**9;
    uint256 private constant _maxPresaleGas = 300000000000;

    uint256 private constant _epochLength = 60 minutes;

    address private constant _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private constant _factoryAddress = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address payable private constant _deployerAddress = 0x083c3b9a697596755834dbEF3D0a70a77c36Ae07;

    string private constant _name = "SHIBA.STABLE";
    string private constant _symbol = "SHST";
    uint8 private constant _decimals = 9;


    /****** Getters *******/
    function getLaunchSupply() internal pure returns (uint256) {
        return _launchSupply;
    }
    function getLargeTotal() internal pure returns (uint256) {
        return _largeTotal;
    }
    function getBaseExpansionFactor() internal pure returns (uint256) {
        return _baseExpansionFactor;
    }
    function getBaseContractionFactor() internal pure returns (uint256) {
        return _baseContractionFactor;
    }
    function getBaseContractionCap() internal pure returns (uint256) {
        return _baseContractionCap;
    }
    function getIncentivePot() internal pure returns (uint256) {
        return _incentivePot;
    }
    function getDeployerCost() internal pure returns (uint256) {
        return _deployerCost;
    }
    function getPresaleCap() internal pure returns (uint256) {
        return _presaleCap;
    }
    function getPresaleIndividualMin() internal pure returns (uint256) {
        return _presaleIndividualMin;
    }
    function getPresaleIndividualCap() internal pure returns (uint256) {
        return _presaleIndividualCap;
    }
    function getMaxPresaleGas() internal pure returns (uint256) {
        return _maxPresaleGas;
    }
    function getBaseUtilityFee() internal pure returns (uint256) {
        return _baseUtilityFee;
    }
    function getEpochLength() internal pure returns (uint256) {
        return _epochLength;
    }
    function getRouterAdd() internal pure returns (address) {
        return _routerAddress;
    }
    function getFactoryAdd() internal pure returns (address) {
        return _factoryAddress;
    }
    function getDeployerAdd() internal pure returns (address payable) {
        return _deployerAddress;
    }
    function getName() internal pure returns (string memory)  {
        return _name;
    }
    function getSymbol() internal pure returns (string memory) {
        return _symbol;
    }
    function getDecimals() internal pure returns (uint8) {
        return _decimals;
    }

}

File 3 of 15 : Getters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./external/IUniswapV2Factory.sol";
import "./external/IUniswapV2Router02.sol";
import "./Constants.sol";
import "./State.sol";

contract Getters is State {
    using SafeMath for uint256;
    using Address for address;

    function getLargeBalances(address account) public view returns (uint256) {
        return _largeBalances[account];
    }
    function getAllowances(address account, address spender) public view returns (uint256) {
        return _allowances[account][spender];
    } 
    function getSupportedPools(uint256 index) public view returns (address) {
        return _supportedPools[index];
    }
    function getPoolCounters(address pool) public view returns (address, uint256, uint256, uint256, uint256, uint256) {
        PoolCounter memory pc = _poolCounters[pool];
        return (pc.pairToken, pc.tokenBalance, pc.pairTokenBalance, pc.lpBalance, pc.startTokenBalance, pc.startPairTokenBalance);
    }
    function isSupportedPool(address pool) public view returns (bool) {
        return _isSupportedPool[pool];
    }
    function mainPool() public view returns (address) {
        return _mainPool;
    }
    function getCurrentEpoch() public view returns (uint256) {
        return _currentEpoch;
    }
    function getLargeTotal() public view returns (uint256) {
        return _largeTotal;
    }
    function getTotalSupply() public view returns (uint256) {
        return _totalSupply;
    }
    function isPresaleDone() public view returns (bool) {
        return _presaleDone;
    }
    function isTaxLess() public view returns (bool) {
        return _taxLess;
    }
    function getUniswapRouter() public view returns (IUniswapV2Router02) {
        return IUniswapV2Router02(Constants.getRouterAdd());
    }
    function getUniswapFactory() public view returns (IUniswapV2Factory) {
        return IUniswapV2Factory(Constants.getFactoryAdd());
    }
    function getFactor() public view returns(uint256) {
        if (isPresaleDone()) {
            return _largeTotal.div(_totalSupply);
        } else {
            return _largeTotal.div(Constants.getLaunchSupply());
        }
    }
    function getUpdatedPoolCounters(address pool, address pairToken) public view returns (uint256, uint256, uint256) {
        uint256 lpBalance = IERC20(pool).totalSupply();
        uint256 tokenBalance = IERC20(address(this)).balanceOf(pool);
        uint256 pairTokenBalance = IERC20(address(pairToken)).balanceOf(pool);
        return (tokenBalance, pairTokenBalance, lpBalance);
    }

    function getCurrentPot() public view returns (uint256) {
        return _currentPot;
    }
    function getMintRate(address pool) external view returns (uint256) {
        uint256 expansionR = (_poolCounters[pool].pairTokenBalance).mul(_poolCounters[pool].startTokenBalance).mul(100).div(_poolCounters[pool].startPairTokenBalance).div(_poolCounters[pool].tokenBalance);
        if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) {
            uint256 mintFactor = expansionR.mul(expansionR);
            return mintFactor.sub(10000);
        } else {
            return Constants.getBaseExpansionFactor();
        }
    }
    function getBurnRate(address pool) public view returns (uint256) {
        uint256 contractionR = (_poolCounters[pool].tokenBalance).mul(_poolCounters[pool].startPairTokenBalance).mul(100).div(_poolCounters[pool].pairTokenBalance).div(_poolCounters[pool].startTokenBalance);
        uint256 burnRate;
        if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) {
            uint256 burnFactor = contractionR.mul(contractionR);
            burnRate = burnFactor.sub(10000);
            if (burnRate > Constants.getBaseContractionCap()) {
                return Constants.getBaseContractionCap();
            }
            return burnRate;

        } else {
            return Constants.getBaseContractionFactor();
        }
    }
    function getMintValue(address sender, uint256 amount) internal view returns(uint256, uint256) {
        uint256 expansionR = (_poolCounters[sender].pairTokenBalance).mul(_poolCounters[sender].startTokenBalance).mul(100);
        expansionR = expansionR.div(_poolCounters[sender].startPairTokenBalance).div(_poolCounters[sender].tokenBalance);
        uint256 mintAmount;
        uint256 incentive;
        if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) {
            uint256 mintFactor = expansionR.mul(expansionR);
            mintAmount = amount.mul(mintFactor.sub(10000)).div(10000);
        } else {
            mintAmount = amount.mul(Constants.getBaseExpansionFactor()).div(10000);
            uint256 burnRate = getBurnRate(sender);
            if (burnRate > Constants.getBaseContractionFactor() && _currentPot > 0) {
                incentive = (burnRate.sub(Constants.getBaseContractionFactor())).div(2).mul(amount).div(10000);
                if (incentive > _currentPot) {
                    incentive = _currentPot;
                }
            }
        }
        return (mintAmount,incentive);
    }

    function getBurnValues(address recipient, uint256 amount) internal view returns(uint256, uint256, uint256, uint256) {
        uint256 currentFactor = getFactor();
        uint256 contractionR;
        uint256 potAmount;
        uint256 netBurn;
        if (isSupportedPool(recipient)) {
            contractionR = (_poolCounters[recipient].tokenBalance).mul(_poolCounters[recipient].startPairTokenBalance).mul(100);
            contractionR = contractionR.div(_poolCounters[recipient].pairTokenBalance).div(_poolCounters[recipient].startTokenBalance);
        } else {
            contractionR = (_poolCounters[_mainPool].tokenBalance).mul(_poolCounters[_mainPool].startPairTokenBalance).mul(100).div(_poolCounters[_mainPool].pairTokenBalance).div(_poolCounters[_mainPool].startTokenBalance);
        }
        uint256 burnAmount;
        if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) {
            uint256 burnFactor = contractionR.mul(contractionR);
            burnAmount = amount.mul(burnFactor.sub(10000)).div(10000);
            if (burnAmount > amount.mul(Constants.getBaseContractionCap()).div(10000)) burnAmount = amount.mul(Constants.getBaseContractionCap()).div(10000);
            potAmount = burnAmount.mul(Constants.getIncentivePot()).div(100);
            netBurn = burnAmount.sub(potAmount);
        } else {
            burnAmount = amount.mul(Constants.getBaseContractionFactor()).div(10000);
            netBurn = burnAmount;
        }
        return (netBurn, netBurn.mul(currentFactor), potAmount, potAmount.mul(currentFactor));
    }
}

File 4 of 15 : Setters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "./Constants.sol";
import "./State.sol";
import "./Getters.sol";

contract Setters is State, Getters {
    function setAllowances(address owner, address spender, uint256 amount) internal {
        _allowances[owner][spender] = amount;
    }
    function addToAccount(address account, uint256 amount) internal {
        uint256 currentFactor = getFactor();
        uint256 largeAmount = amount.mul(currentFactor);
        _largeBalances[account] = _largeBalances[account].add(largeAmount);
        _totalSupply = _totalSupply.add(amount);
    }
    function addToAll(uint256 amount) internal {
        _totalSupply = _totalSupply.add(amount);
    }
    function initializeEpoch() internal {
        _currentEpoch = now;
    }
    function updateEpoch() internal {
        initializeEpoch();
        for (uint256 i=0; i<_supportedPools.length; i++) {
            _poolCounters[_supportedPools[i]].startTokenBalance = _poolCounters[_supportedPools[i]].tokenBalance;
            _poolCounters[_supportedPools[i]].startPairTokenBalance = _poolCounters[_supportedPools[i]].pairTokenBalance;
        }
    }
    function initializeLargeTotal() internal {
        _largeTotal = Constants.getLargeTotal();
    }
    function syncPair(address pool) internal returns(bool) {
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken);
        bool lpBurn = lpBalance < _poolCounters[pool].lpBalance;
        _poolCounters[pool].lpBalance = lpBalance;
        _poolCounters[pool].tokenBalance = tokenBalance;
        _poolCounters[pool].pairTokenBalance = pairTokenBalance;
        return (lpBurn);
    }
    function silentSyncPair(address pool) public {
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken);
        _poolCounters[pool].lpBalance = lpBalance;
        _poolCounters[pool].tokenBalance = tokenBalance;
        _poolCounters[pool].pairTokenBalance = pairTokenBalance;
    }
    function addSupportedPool(address pool, address pairToken) internal {
        require(!isSupportedPool(pool),"This pool is already supported");
        _isSupportedPool[pool] = true;
        _supportedPools.push(pool);
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, pairToken);
        _poolCounters[pool] = PoolCounter(pairToken, tokenBalance, pairTokenBalance, lpBalance, tokenBalance, pairTokenBalance);
    }
    function removeSupportedPool(address pool) internal {
        require(isSupportedPool(pool), "This pool is currently not supported");
        for (uint256 i = 0; i < _supportedPools.length; i++) {
            if (_supportedPools[i] == pool) {
                _supportedPools[i] = _supportedPools[_supportedPools.length - 1];
                _isSupportedPool[pool] = false;
                delete _poolCounters[pool];
                _supportedPools.pop();
                break;
            }
        }
    }
}

File 5 of 15 : State.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

contract State {

    mapping (address => uint256) _largeBalances;
    mapping (address => mapping (address => uint256)) _allowances;

    // Supported pools and data for measuring mint & burn factors
    struct PoolCounter {
        address pairToken;
        uint256 tokenBalance;
        uint256 pairTokenBalance;
        uint256 lpBalance;
        uint256 startTokenBalance;
        uint256 startPairTokenBalance;
    }

    address[] _supportedPools;
    mapping (address => PoolCounter) _poolCounters;
    mapping (address => bool) _isSupportedPool;
    address _mainPool;

    uint256 _currentEpoch;
 
    uint256 _largeTotal;
    uint256 _totalSupply;

    uint256 _presaleDist;
    uint256 _presaleTime;
    uint256 _presalePrice;
    mapping (address => uint256) _presaleParticipation;
    bool _presaleDone;
    
    bool _taxLess;
    uint256 _currentPot;
    struct SellDetails {
            uint256 burnSize;
            uint256 largeBurnSize;
            uint256 potSize;
            uint256 largePotSize;
            uint256 utilityFee;
            uint256 largeUtilityFee;
            uint256 actualTransferAmount;
            uint256 largeTransferAmount;
        }
}

File 6 of 15 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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

File 7 of 15 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 8 of 15 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 9 of 15 : IWETH.sol
pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

File 10 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

File 11 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

    /**
     * @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 == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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 15 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 * 
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 * 
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        // extcodesize checks the size of the code stored in an address, and
        // address returns the current address. Since the code is still not
        // deployed when running a constructor, any checks on its code size will
        // yield zero, making it an effective way to detect if a contract is
        // under construction or not.
        address self = address(this);
        uint256 cs;
        // solhint-disable-next-line no-inline-assembly
        assembly { cs := extcodesize(self) }
        return cs == 0;
    }
}

File 14 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

File 15 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"getAllowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getBurnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLargeBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLargeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getPoolCounters","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getSupportedPools","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"pairToken","type":"address"}],"name":"getUpdatedPoolCounters","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isPresaleDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"isSupportedPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxLess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleDone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInWei","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setPresaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"silentSyncPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600062000027640100000000620001cd810204565b600f8054600160a060020a031916600160a060020a038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000088640100000000620001d2810204565b6200009b64010000000062000320810204565b655af3107a40006008556000620000ba6401000000006200033d810204565b6008549091506200012490620000df908364010000000062001348620003b382021704565b600080620000f5640100000000620001cd810204565b600160a060020a03168152602081019190915260400160002054906401000000006200138a6200041f82021704565b6000806200013a640100000000620001cd810204565b600160a060020a03168152602081019190915260400160002055620151804201600a55620927c0600b5562000177640100000000620001cd810204565b600160a060020a03166000600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620001be919062000617565b60405180910390a35062000620565b335b90565b620001e564010000000062000461810204565b60005b6002548110156200031d5760036000600283815481106200020557fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a031681526020019081526020016000206001015460036000600284815481106200025957fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812060040191909155600280546003929190849081106200029857fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110620002ec57fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101620001e8565b50565b62000338640100000000620013b76200046782021704565b600755565b60006200035264010000000062000472810204565b156200037f576008546007546200037791640100000000620013db6200047b82021704565b9050620001cf565b620003776200039b6401000000006200141d620004ce82021704565b60075490640100000000620013db6200047b82021704565b600082620003c45750600062000419565b82820282848281620003d257fe5b041462000416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040d90620005ba565b60405180910390fd5b90505b92915050565b60008282018381101562000416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040d9062000583565b42600655565b651963082d3fff1990565b600d5460ff1690565b60006200041683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004d8640100000000026401000000009004565b65a3b5840f400090565b6000818362000516576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040d91906200052d565b5060008385816200052357fe5b0495945050505050565b6000602080835283518082850152825b818110156200055b578581018301518582016040015282016200053d565b818111156200056d5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b61340380620006306000396000f3fe608060405260043610610287576000357c01000000000000000000000000000000000000000000000000000000009004806380c2bbd211610170578063ae2089ad116100e8578063c4e41b221161009c578063e7eed1f711610081578063e7eed1f714610671578063ec2b4e3614610686578063f2fde38b146106a657610287565b8063c4e41b221461063c578063dd62ed3e1461065157610287565b8063b72455bd116100cd578063b72455bd146105e3578063b97dd9e2146105f8578063bf9a3a1b1461060d57610287565b8063ae2089ad146105a3578063b21c3278146105c357610287565b806395d89b411161013f578063a457c2d711610124578063a457c2d71461054e578063a5a302d31461056e578063a9059cbb1461058357610287565b806395d89b41146105315780639fcdec611461054657610287565b806380c2bbd2146104b557806389398783146104d55780638da5cb5b14610507578063927ac3861461051c57610287565b80633eedf63c116102035780635184cc43116101d257806370a08231116101b757806370a0823114610460578063715018a6146104805780637dff26801461049557610287565b80635184cc4314610436578063524900b51461044b57610287565b80633eedf63c146103c157806342b5f375146103d657806348ce8584146103f65780634f78aa821461041657610287565b806323ecdf611161025a5780633549345e1161023f5780633549345e1461035d578063395093511461037f5780633e6dfa361461039f57610287565b806323ecdf6114610326578063313ce5671461033b57610287565b806306fdde031461028c578063095ea7b3146102b757806318160ddd146102e457806323b872dd14610306575b600080fd5b34801561029857600080fd5b506102a16106c6565b6040516102ae9190612c88565b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612b50565b6106d6565b6040516102ae9190612c74565b3480156102f057600080fd5b506102f96106f4565b6040516102ae9190612c7f565b34801561031257600080fd5b506102d7610321366004612b10565b6106fe565b34801561033257600080fd5b506102d7610756565b34801561034757600080fd5b50610350610764565b6040516102ae919061333d565b34801561036957600080fd5b5061037d610378366004612b7b565b61076e565b005b34801561038b57600080fd5b506102d761039a366004612b50565b6107e6565b3480156103ab57600080fd5b506103b461080f565b6040516102ae9190612bd8565b3480156103cd57600080fd5b5061037d610819565b3480156103e257600080fd5b506102f96103f1366004612aa0565b6108ab565b34801561040257600080fd5b5061037d610411366004612b7b565b610977565b34801561042257600080fd5b506102f9610431366004612aa0565b6109e6565b34801561044257600080fd5b506102f9610a75565b34801561045757600080fd5b506103b4610aae565b34801561046c57600080fd5b506102f961047b366004612aa0565b610ab8565b34801561048c57600080fd5b5061037d610ad9565b3480156104a157600080fd5b506103b46104b0366004612b7b565b610b6d565b3480156104c157600080fd5b5061037d6104d0366004612aa0565b610b97565b3480156104e157600080fd5b506104f56104f0366004612aa0565b610bfc565b6040516102ae96959493929190612c41565b34801561051357600080fd5b506103b4610c88565b34801561052857600080fd5b506102d7610c97565b34801561053d57600080fd5b506102a1610ca0565b61037d610caa565b34801561055a57600080fd5b506102d7610569366004612b50565b610fbd565b34801561057a57600080fd5b506103b4610ff9565b34801561058f57600080fd5b506102d761059e366004612b50565b611008565b3480156105af57600080fd5b506102f96105be366004612aa0565b61101c565b3480156105cf57600080fd5b506102f96105de366004612ad8565b611037565b3480156105ef57600080fd5b506102f9611062565b34801561060457600080fd5b506102f9611068565b34801561061957600080fd5b5061062d610628366004612ad8565b61106e565b6040516102ae93929190613327565b34801561064857600080fd5b506102f961123e565b34801561065d57600080fd5b506102f961066c366004612ad8565b611244565b34801561067d57600080fd5b506102f9611250565b34801561069257600080fd5b506102d76106a1366004612aa0565b611256565b3480156106b257600080fd5b5061037d6106c1366004612aa0565b611274565b60606106d0611427565b90505b90565b60006106ea6106e361145e565b8484611462565b5060015b92915050565b60006106d061123e565b600061070b848484611519565b61074c8461071761145e565b61074785604051806060016040528060288152602001613381602891396107408a6105de61145e565b919061179b565b611462565b5060019392505050565b600d54610100900460ff1690565b60006106d06117cf565b61077661145e565b600f54600160a060020a039081169116146107b45760405160008051602061336183398151915281526004016107ab906130ff565b60405180910390fd5b6107bc610c97565b156107e15760405160008051602061336183398151915281526004016107ab90612f8f565b600b55565b60006106ea6107f361145e565b846107478561080961080361145e565b89611037565b9061138a565b60006106d06117d4565b61082161145e565b600f54600160a060020a039081169116146108565760405160008051602061336183398151915281526004016107ab906130ff565b61085e61141d565b6108666106f4565b111561088c5760405160008051602061336183398151915281526004016107ab90613134565b6108946117ec565b600d805460ff191660011790556108a9611885565b565b600160a060020a0381166000908152600360205260408120600481015460028201546005830154600190930154849361090093926108fa92909183916064916108f49190611348565b90611348565b906113db565b9050600061091760646108fa612710610809611e39565b82111561096557600061092a8380611348565b905061093881612710611e3e565b9150610942611e80565b82111561095b57610951611e80565b9350505050610972565b5091506109729050565b61096d611e39565b925050505b919050565b61097f61145e565b600f54600160a060020a039081169116146109b45760405160008051602061336183398151915281526004016107ab906130ff565b6109bc610c97565b156109e15760405160008051602061336183398151915281526004016107ab906132ca565b600a55565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610a2f93926108fa92909183916064916108f49190611348565b9050610a4460646108fa612710610809611e39565b811115610a65576000610a578280611348565b905061096d81612710611e3e565b610a6d611e39565b915050610972565b6000610a7f610c97565b15610a9a57600854600754610a93916113db565b90506106d3565b610a93610aa561141d565b600754906113db565b60006106d0611e86565b600080610ac3610a75565b9050610ad2816108fa8561101c565b9392505050565b610ae161145e565b600f54600160a060020a03908116911614610b165760405160008051602061336183398151915281526004016107ab906130ff565b600f54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600060028281548110610b7c57fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291610bc39186911661106e565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b600080600080600080610c0d612a1c565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600f54600160a060020a031690565b600d5460ff1690565b60606106d0611e9e565b610cb2610c97565b15610cd75760405160008051602061336183398151915281526004016107ab90612ffd565b42600a541115610d015760405160008051602061336183398151915281526004016107ab90612dfb565b610d09611ed5565b610d3934600c6000610d1961145e565b600160a060020a031681526020810191909152604001600020549061138a565b1115610d5f5760405160008051602061336183398151915281526004016107ab90613293565b600b54610d865760405160008051602061336183398151915281526004016107ab906130c8565b610d8e611ed5565b341015610db55760405160008051602061336183398151915281526004016107ab90612dc4565b610dc5610dc061145e565b611ee1565b15610dea5760405160008051602061336183398151915281526004016107ab90613034565b610df2611ee7565b3a1115610e195760405160008051602061336183398151915281526004016107ab90612fc6565b6000610e30600b54346113db90919063ffffffff16565b9050610e3a611ef0565b600954610e47908361138a565b1115610e6d5760405160008051602061336183398151915281526004016107ab9061325c565b6000610e77610a75565b90506000610e858383611348565b9050610eb681600080610e96610c88565b600160a060020a0316815260208101919091526040016000205490611e3e565b600080610ec1610c88565b600160a060020a0316600160a060020a0316815260200190815260200160002081905550610ef481600080610d1961145e565b600080610eff61145e565b600160a060020a03168152602081019190915260400160002055610f2161145e565b600160a060020a0316610f32610c88565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f6a9190612c7f565b60405180910390a3610f8234600c6000610d1961145e565b600c6000610f8e61145e565b600160a060020a03168152602081019190915260400160002055600954610fb5908461138a565b600955505050565b60006106ea610fca61145e565b84610747856040518060600160405280602581526020016133a960259139610740610ff361145e565b8a611037565b600554600160a060020a031690565b60006106ea61101561145e565b8484611519565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156110c957600080fd5b505afa1580156110dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111019190612b93565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611143908a90600401612bd8565b60206040518083038186803b15801561115b57600080fd5b505afa15801561116f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111939190612b93565b9050600086600160a060020a03166370a08231896040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016111df9190612bd8565b60206040518083038186803b1580156111f757600080fd5b505afa15801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612b93565b91989197509195509350505050565b60085490565b6000610ad28383611037565b600e5490565b600160a060020a031660009081526004602052604090205460ff1690565b61127c61145e565b600f54600160a060020a039081169116146112b15760405160008051602061336183398151915281526004016107ab906130ff565b600160a060020a0381166112df5760405160008051602061336183398151915281526004016107ab90612e32565b600f54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082611357575060006106ee565b8282028284828161136457fe5b0414610ad25760405160008051602061336183398151915281526004016107ab9061306b565b600082820183811015610ad25760405160008051602061336183398151915281526004016107ab90612eec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffe69cf7d2c00090565b6000610ad283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611efa565b65a3b5840f400090565b60408051808201909152600c81527f53484942412e535441424c450000000000000000000000000000000000000000602082015290565b3390565b600160a060020a0383166114905760405160008051602061336183398151915281526004016107ab906131c8565b600160a060020a0382166114be5760405160008051602061336183398151915281526004016107ab90612e8f565b6114c9838383611f39565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150c9190612c7f565b60405180910390a3505050565b600160a060020a0383166115475760405160008051602061336183398151915281526004016107ab9061316b565b600160a060020a0382166115755760405160008051602061336183398151915281526004016107ab90612d30565b6000811161159d5760405160008051602061336183398151915281526004016107ab90612f23565b6115a683610ab8565b8111156115cd5760405160008051602061336183398151915281526004016107ab90612cf9565b6115d5610c97565b6115f95760405160008051602061336183398151915281526004016107ab90612f58565b61160c611604611f65565b610809611068565b42111561161b5761161b611f6b565b6000611625610a75565b905060006116338383611348565b9050600061163f610756565b1561164c575060036116ac565b600061165787611256565b1561166c57611665876120a8565b905061169d565b61167586611256565b156116885761168386610b97565b61169d565b60055461169d90600160a060020a0316610b97565b6116a8878783612113565b9150505b80600114156116c7576116c28686868587612169565b611793565b80600214156116dd576116c2868686858761231e565b806003141561179357600160a060020a0386166000908152602081905260409020546117099083611e3e565b600160a060020a038088166000908152602081905260408082209390935590871681522054611738908361138a565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061178a908890612c7f565b60405180910390a35b505050505050565b600081848411156117c75760405160008051602061336183398151915281526004016107ab9190612c88565b505050900390565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6117f4610c97565b156118195760405160008051602061336183398151915281526004016107ab90612d8d565b61182930653b1dfde91000612534565b611840611834610c88565b650da475abf000612534565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061187b90653b1dfde9100090612c7f565b60405180910390a3565b600d805461ff001916610100179055600061189e610aae565b905060006118aa61080f565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561191c57600080fd5b505afa158015611930573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119549190612abc565b306040518363ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161198e929190612bec565b60206040518083038186803b1580156119a657600080fd5b505afa1580156119ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119de9190612abc565b600160a060020a03161415611b1c5781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611a5157600080fd5b505afa158015611a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a899190612abc565b306040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611ac3929190612bec565b602060405180830381600087803b158015611add57600080fd5b505af1158015611af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b159190612abc565b9050611c45565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611b8157600080fd5b505afa158015611b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb99190612abc565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611bf2929190612bec565b60206040518083038186803b158015611c0a57600080fd5b505afa158015611c1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c429190612abc565b90505b611c4d6125a1565b600160a060020a03166108fc611c616125b9565b6040518115909202916000818181858888f19350505050158015611c89573d6000803e3d6000fd5b50611caf30737a250d5630b4cf539739df2c5dacb4c659f2488d653b1dfde91000611462565b600160a060020a03831663f305d71930803190653b1dfde91000600080611cd46125a1565b426040518863ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611d1296959493929190612c06565b6060604051808303818588803b158015611d2b57600080fd5b505af1158015611d3f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d649190612bab565b505050611dfd8184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611dc057600080fd5b505afa158015611dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df89190612abc565b6125c5565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555050600d805461ff0019169055565b606490565b6000610ad283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061179b565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600481527f5348535400000000000000000000000000000000000000000000000000000000602082015290565b670de0b6b3a764000090565b3b151590565b6445d964b80090565b655af3107a400090565b60008183611f235760405160008051602061336183398151915281526004016107ab9190612c88565b506000838581611f2f57fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b610e1090565b611f7361270c565b60005b6002548110156120a5576003600060028381548110611f9157fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110611fe457fe5b6000918252602080832090910154600160a060020a031683528201929092526040018120600401919091556002805460039291908490811061202257fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a0316815260200190815260200160002060020154600360006002848154811061207557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101611f76565b50565b600160a060020a0380821660009081526003602052604081205490918291829182916120d69187911661106e565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b6000600261212085611256565b1561213c57821561213357506003612137565b5060015b612161565b612144611e86565b600160a060020a031685600160a060020a03161415612161575060035b949350505050565b6000806121768786612712565b600160a060020a038916600090815260208190526040902054919350915061219e9085611e3e565b600160a060020a0380891660009081526020819052604080822093909355908816815220546121cd908561138a565b600160a060020a0387166000908152602081905260409020556008546121f3908361138a565b60085580156122ca576122286122098285611348565b600160a060020a0388166000908152602081905260409020549061138a565b600160a060020a03871660009081526020819052604090205561226461224e8285611348565b3060009081526020819052604090205490611e3e565b30600090815260208190526040902055600e546122819082611e3e565b600e55604051600160a060020a0387169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906122c1908590612c7f565b60405180910390a35b85600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161230d9190612c7f565b60405180910390a350505050505050565b612326612a5b565b6123308585612852565b606085015260408401819052602084019190915281835261235c91612356908790611e3e565b90611e3e565b60c0820181905261236d9083611348565b60e0820152600160a060020a0386166000908152602081905260409020546123959084611e3e565b600160a060020a038088166000908152602081905260408082209390935560e0840151918816815291909120546123cb9161138a565b600160a060020a03861660009081526020819052604090819020919091558101511561247f5760608101513060009081526020819052604090205461240f9161138a565b306000908152602081905260409081902091909155810151600e546124339161138a565b600e5560408082015190513091600160a060020a038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9161247691612c7f565b60405180910390a35b805160085461248d91611e3e565b60085560208101516007546124a191611e3e565b60078190555084600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c001516040516124ee9190612c7f565b60405180910390a38051604051600091600160a060020a038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9161178a91612c7f565b600061253e610a75565b9050600061254c8383611348565b600160a060020a038516600090815260208190526040902054909150612572908261138a565b600160a060020a038516600090815260208190526040902055600854612598908461138a565b60085550505050565b73083c3b9a697596755834dbef3d0a70a77c36ae0790565b678ac7230489e8000090565b6125ce82611256565b156125f35760405160008051602061336183398151915281526004016107ab90613225565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19169092179091558080612671858561106e565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b42600655565b600160a060020a0382166000908152600360205260408120600481015460029091015482918291612749916064916108f491611348565b600160a060020a0386166000908152600360205260409020600181015460059091015491925061277e916108fa9084906113db565b905060008061279660646108fa612710610809611e39565b8311156127cd5760006127a98480611348565b90506127c56127106108fa6127be8483611e3e565b8a90611348565b925050612846565b6127e56127106108fa6127de611e39565b8990611348565b915060006127f2886108ab565b90506127fc611e39565b8111801561280c57506000600e54115b15612844576128326127106108fa896108f460026108fa61282b611e39565b8890611e3e565b9150600e5482111561284457600e5491505b505b90969095509350505050565b6000806000806000612862610a75565b905060008060006128728a611256565b156128e657600160a060020a038a16600090815260036020526040902060058101546001909101546128aa916064916108f491611348565b600160a060020a038b16600090815260036020526040902060048101546002909101549194506128df916108fa9086906113db565b9250612931565b60058054600160a060020a03166000908152600360205260409020600481015460028201549282015460019092015461292e9391926108fa929183916064916108f491611348565b92505b600061294660646108fa612710610809611e39565b8411156129ce5760006129598580611348565b90506129756127106108fa61296e8483611e3e565b8e90611348565b91506129886127106108fa61296e611e80565b8211156129a3576129a06127106108fa61296e611e80565b91505b6129ba60646108fa6129b3612a17565b8590611348565b93506129c68285611e3e565b9250506129ec565b6129e66127106108fa6129df611e39565b8d90611348565b90508091505b816129f78187611348565b84612a028189611348565b929e919d509b50909950975050505050505050565b603290565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600060208284031215612ab1578081fd5b8135610ad28161334b565b600060208284031215612acd578081fd5b8151610ad28161334b565b60008060408385031215612aea578081fd5b8235612af58161334b565b91506020830135612b058161334b565b809150509250929050565b600080600060608486031215612b24578081fd5b8335612b2f8161334b565b92506020840135612b3f8161334b565b929592945050506040919091013590565b60008060408385031215612b62578182fd5b8235612b6d8161334b565b946020939093013593505050565b600060208284031215612b8c578081fd5b5035919050565b600060208284031215612ba4578081fd5b5051919050565b600080600060608486031215612bbf578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b81811015612cb457858101830151858201604001528201612c98565b81811115612cc55783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b6020808252601a908201527f4e6565647320746f2062652061626f7665206d696e2065746821000000000000604082015260600190565b6020808252601a908201527f50726573616c65206861736e2774207374617274656420796574000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252601e908201527f43616e206f6e6c7920626520736574206265666f72652070726573616c650000604082015260600190565b60208082526015908201527f6761732070726963652061626f7665206c696d69740000000000000000000000604082015260600190565b6020808252601c908201527f50726573616c6520697320616c726561647920636f6d706c6574656400000000604082015260600190565b6020808252600c908201527f6e6f20636f6e7472616374730000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f50726573616c65207072696365206973206e6f74207365740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601f908201527f50726573616c65206d61782063617020616c7265616479207265616368656400604082015260600190565b60208082526016908201527f43726f7373656420696e646976696475616c2063617000000000000000000000604082015260600190565b60208082526031908201527f546869732063616e6e6f74206265206d6f64696669656420616674657220746860408201527f652070726573616c6520697320646f6e65000000000000000000000000000000606082015260800190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600160a060020a03811681146120a557600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122097600ad92f3f44a99062eb580a00f0d13064cfd95be44f041bded439f3c8f3e364736f6c634300060c0033

Deployed Bytecode

0x608060405260043610610287576000357c01000000000000000000000000000000000000000000000000000000009004806380c2bbd211610170578063ae2089ad116100e8578063c4e41b221161009c578063e7eed1f711610081578063e7eed1f714610671578063ec2b4e3614610686578063f2fde38b146106a657610287565b8063c4e41b221461063c578063dd62ed3e1461065157610287565b8063b72455bd116100cd578063b72455bd146105e3578063b97dd9e2146105f8578063bf9a3a1b1461060d57610287565b8063ae2089ad146105a3578063b21c3278146105c357610287565b806395d89b411161013f578063a457c2d711610124578063a457c2d71461054e578063a5a302d31461056e578063a9059cbb1461058357610287565b806395d89b41146105315780639fcdec611461054657610287565b806380c2bbd2146104b557806389398783146104d55780638da5cb5b14610507578063927ac3861461051c57610287565b80633eedf63c116102035780635184cc43116101d257806370a08231116101b757806370a0823114610460578063715018a6146104805780637dff26801461049557610287565b80635184cc4314610436578063524900b51461044b57610287565b80633eedf63c146103c157806342b5f375146103d657806348ce8584146103f65780634f78aa821461041657610287565b806323ecdf611161025a5780633549345e1161023f5780633549345e1461035d578063395093511461037f5780633e6dfa361461039f57610287565b806323ecdf6114610326578063313ce5671461033b57610287565b806306fdde031461028c578063095ea7b3146102b757806318160ddd146102e457806323b872dd14610306575b600080fd5b34801561029857600080fd5b506102a16106c6565b6040516102ae9190612c88565b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612b50565b6106d6565b6040516102ae9190612c74565b3480156102f057600080fd5b506102f96106f4565b6040516102ae9190612c7f565b34801561031257600080fd5b506102d7610321366004612b10565b6106fe565b34801561033257600080fd5b506102d7610756565b34801561034757600080fd5b50610350610764565b6040516102ae919061333d565b34801561036957600080fd5b5061037d610378366004612b7b565b61076e565b005b34801561038b57600080fd5b506102d761039a366004612b50565b6107e6565b3480156103ab57600080fd5b506103b461080f565b6040516102ae9190612bd8565b3480156103cd57600080fd5b5061037d610819565b3480156103e257600080fd5b506102f96103f1366004612aa0565b6108ab565b34801561040257600080fd5b5061037d610411366004612b7b565b610977565b34801561042257600080fd5b506102f9610431366004612aa0565b6109e6565b34801561044257600080fd5b506102f9610a75565b34801561045757600080fd5b506103b4610aae565b34801561046c57600080fd5b506102f961047b366004612aa0565b610ab8565b34801561048c57600080fd5b5061037d610ad9565b3480156104a157600080fd5b506103b46104b0366004612b7b565b610b6d565b3480156104c157600080fd5b5061037d6104d0366004612aa0565b610b97565b3480156104e157600080fd5b506104f56104f0366004612aa0565b610bfc565b6040516102ae96959493929190612c41565b34801561051357600080fd5b506103b4610c88565b34801561052857600080fd5b506102d7610c97565b34801561053d57600080fd5b506102a1610ca0565b61037d610caa565b34801561055a57600080fd5b506102d7610569366004612b50565b610fbd565b34801561057a57600080fd5b506103b4610ff9565b34801561058f57600080fd5b506102d761059e366004612b50565b611008565b3480156105af57600080fd5b506102f96105be366004612aa0565b61101c565b3480156105cf57600080fd5b506102f96105de366004612ad8565b611037565b3480156105ef57600080fd5b506102f9611062565b34801561060457600080fd5b506102f9611068565b34801561061957600080fd5b5061062d610628366004612ad8565b61106e565b6040516102ae93929190613327565b34801561064857600080fd5b506102f961123e565b34801561065d57600080fd5b506102f961066c366004612ad8565b611244565b34801561067d57600080fd5b506102f9611250565b34801561069257600080fd5b506102d76106a1366004612aa0565b611256565b3480156106b257600080fd5b5061037d6106c1366004612aa0565b611274565b60606106d0611427565b90505b90565b60006106ea6106e361145e565b8484611462565b5060015b92915050565b60006106d061123e565b600061070b848484611519565b61074c8461071761145e565b61074785604051806060016040528060288152602001613381602891396107408a6105de61145e565b919061179b565b611462565b5060019392505050565b600d54610100900460ff1690565b60006106d06117cf565b61077661145e565b600f54600160a060020a039081169116146107b45760405160008051602061336183398151915281526004016107ab906130ff565b60405180910390fd5b6107bc610c97565b156107e15760405160008051602061336183398151915281526004016107ab90612f8f565b600b55565b60006106ea6107f361145e565b846107478561080961080361145e565b89611037565b9061138a565b60006106d06117d4565b61082161145e565b600f54600160a060020a039081169116146108565760405160008051602061336183398151915281526004016107ab906130ff565b61085e61141d565b6108666106f4565b111561088c5760405160008051602061336183398151915281526004016107ab90613134565b6108946117ec565b600d805460ff191660011790556108a9611885565b565b600160a060020a0381166000908152600360205260408120600481015460028201546005830154600190930154849361090093926108fa92909183916064916108f49190611348565b90611348565b906113db565b9050600061091760646108fa612710610809611e39565b82111561096557600061092a8380611348565b905061093881612710611e3e565b9150610942611e80565b82111561095b57610951611e80565b9350505050610972565b5091506109729050565b61096d611e39565b925050505b919050565b61097f61145e565b600f54600160a060020a039081169116146109b45760405160008051602061336183398151915281526004016107ab906130ff565b6109bc610c97565b156109e15760405160008051602061336183398151915281526004016107ab906132ca565b600a55565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610a2f93926108fa92909183916064916108f49190611348565b9050610a4460646108fa612710610809611e39565b811115610a65576000610a578280611348565b905061096d81612710611e3e565b610a6d611e39565b915050610972565b6000610a7f610c97565b15610a9a57600854600754610a93916113db565b90506106d3565b610a93610aa561141d565b600754906113db565b60006106d0611e86565b600080610ac3610a75565b9050610ad2816108fa8561101c565b9392505050565b610ae161145e565b600f54600160a060020a03908116911614610b165760405160008051602061336183398151915281526004016107ab906130ff565b600f54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600060028281548110610b7c57fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291610bc39186911661106e565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b600080600080600080610c0d612a1c565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600f54600160a060020a031690565b600d5460ff1690565b60606106d0611e9e565b610cb2610c97565b15610cd75760405160008051602061336183398151915281526004016107ab90612ffd565b42600a541115610d015760405160008051602061336183398151915281526004016107ab90612dfb565b610d09611ed5565b610d3934600c6000610d1961145e565b600160a060020a031681526020810191909152604001600020549061138a565b1115610d5f5760405160008051602061336183398151915281526004016107ab90613293565b600b54610d865760405160008051602061336183398151915281526004016107ab906130c8565b610d8e611ed5565b341015610db55760405160008051602061336183398151915281526004016107ab90612dc4565b610dc5610dc061145e565b611ee1565b15610dea5760405160008051602061336183398151915281526004016107ab90613034565b610df2611ee7565b3a1115610e195760405160008051602061336183398151915281526004016107ab90612fc6565b6000610e30600b54346113db90919063ffffffff16565b9050610e3a611ef0565b600954610e47908361138a565b1115610e6d5760405160008051602061336183398151915281526004016107ab9061325c565b6000610e77610a75565b90506000610e858383611348565b9050610eb681600080610e96610c88565b600160a060020a0316815260208101919091526040016000205490611e3e565b600080610ec1610c88565b600160a060020a0316600160a060020a0316815260200190815260200160002081905550610ef481600080610d1961145e565b600080610eff61145e565b600160a060020a03168152602081019190915260400160002055610f2161145e565b600160a060020a0316610f32610c88565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f6a9190612c7f565b60405180910390a3610f8234600c6000610d1961145e565b600c6000610f8e61145e565b600160a060020a03168152602081019190915260400160002055600954610fb5908461138a565b600955505050565b60006106ea610fca61145e565b84610747856040518060600160405280602581526020016133a960259139610740610ff361145e565b8a611037565b600554600160a060020a031690565b60006106ea61101561145e565b8484611519565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156110c957600080fd5b505afa1580156110dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111019190612b93565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611143908a90600401612bd8565b60206040518083038186803b15801561115b57600080fd5b505afa15801561116f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111939190612b93565b9050600086600160a060020a03166370a08231896040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016111df9190612bd8565b60206040518083038186803b1580156111f757600080fd5b505afa15801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612b93565b91989197509195509350505050565b60085490565b6000610ad28383611037565b600e5490565b600160a060020a031660009081526004602052604090205460ff1690565b61127c61145e565b600f54600160a060020a039081169116146112b15760405160008051602061336183398151915281526004016107ab906130ff565b600160a060020a0381166112df5760405160008051602061336183398151915281526004016107ab90612e32565b600f54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082611357575060006106ee565b8282028284828161136457fe5b0414610ad25760405160008051602061336183398151915281526004016107ab9061306b565b600082820183811015610ad25760405160008051602061336183398151915281526004016107ab90612eec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffe69cf7d2c00090565b6000610ad283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611efa565b65a3b5840f400090565b60408051808201909152600c81527f53484942412e535441424c450000000000000000000000000000000000000000602082015290565b3390565b600160a060020a0383166114905760405160008051602061336183398151915281526004016107ab906131c8565b600160a060020a0382166114be5760405160008051602061336183398151915281526004016107ab90612e8f565b6114c9838383611f39565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150c9190612c7f565b60405180910390a3505050565b600160a060020a0383166115475760405160008051602061336183398151915281526004016107ab9061316b565b600160a060020a0382166115755760405160008051602061336183398151915281526004016107ab90612d30565b6000811161159d5760405160008051602061336183398151915281526004016107ab90612f23565b6115a683610ab8565b8111156115cd5760405160008051602061336183398151915281526004016107ab90612cf9565b6115d5610c97565b6115f95760405160008051602061336183398151915281526004016107ab90612f58565b61160c611604611f65565b610809611068565b42111561161b5761161b611f6b565b6000611625610a75565b905060006116338383611348565b9050600061163f610756565b1561164c575060036116ac565b600061165787611256565b1561166c57611665876120a8565b905061169d565b61167586611256565b156116885761168386610b97565b61169d565b60055461169d90600160a060020a0316610b97565b6116a8878783612113565b9150505b80600114156116c7576116c28686868587612169565b611793565b80600214156116dd576116c2868686858761231e565b806003141561179357600160a060020a0386166000908152602081905260409020546117099083611e3e565b600160a060020a038088166000908152602081905260408082209390935590871681522054611738908361138a565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061178a908890612c7f565b60405180910390a35b505050505050565b600081848411156117c75760405160008051602061336183398151915281526004016107ab9190612c88565b505050900390565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6117f4610c97565b156118195760405160008051602061336183398151915281526004016107ab90612d8d565b61182930653b1dfde91000612534565b611840611834610c88565b650da475abf000612534565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061187b90653b1dfde9100090612c7f565b60405180910390a3565b600d805461ff001916610100179055600061189e610aae565b905060006118aa61080f565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561191c57600080fd5b505afa158015611930573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119549190612abc565b306040518363ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161198e929190612bec565b60206040518083038186803b1580156119a657600080fd5b505afa1580156119ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119de9190612abc565b600160a060020a03161415611b1c5781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611a5157600080fd5b505afa158015611a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a899190612abc565b306040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611ac3929190612bec565b602060405180830381600087803b158015611add57600080fd5b505af1158015611af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b159190612abc565b9050611c45565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611b8157600080fd5b505afa158015611b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb99190612abc565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611bf2929190612bec565b60206040518083038186803b158015611c0a57600080fd5b505afa158015611c1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c429190612abc565b90505b611c4d6125a1565b600160a060020a03166108fc611c616125b9565b6040518115909202916000818181858888f19350505050158015611c89573d6000803e3d6000fd5b50611caf30737a250d5630b4cf539739df2c5dacb4c659f2488d653b1dfde91000611462565b600160a060020a03831663f305d71930803190653b1dfde91000600080611cd46125a1565b426040518863ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611d1296959493929190612c06565b6060604051808303818588803b158015611d2b57600080fd5b505af1158015611d3f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d649190612bab565b505050611dfd8184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611dc057600080fd5b505afa158015611dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df89190612abc565b6125c5565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555050600d805461ff0019169055565b606490565b6000610ad283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061179b565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600481527f5348535400000000000000000000000000000000000000000000000000000000602082015290565b670de0b6b3a764000090565b3b151590565b6445d964b80090565b655af3107a400090565b60008183611f235760405160008051602061336183398151915281526004016107ab9190612c88565b506000838581611f2f57fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b610e1090565b611f7361270c565b60005b6002548110156120a5576003600060028381548110611f9157fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110611fe457fe5b6000918252602080832090910154600160a060020a031683528201929092526040018120600401919091556002805460039291908490811061202257fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a0316815260200190815260200160002060020154600360006002848154811061207557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101611f76565b50565b600160a060020a0380821660009081526003602052604081205490918291829182916120d69187911661106e565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b6000600261212085611256565b1561213c57821561213357506003612137565b5060015b612161565b612144611e86565b600160a060020a031685600160a060020a03161415612161575060035b949350505050565b6000806121768786612712565b600160a060020a038916600090815260208190526040902054919350915061219e9085611e3e565b600160a060020a0380891660009081526020819052604080822093909355908816815220546121cd908561138a565b600160a060020a0387166000908152602081905260409020556008546121f3908361138a565b60085580156122ca576122286122098285611348565b600160a060020a0388166000908152602081905260409020549061138a565b600160a060020a03871660009081526020819052604090205561226461224e8285611348565b3060009081526020819052604090205490611e3e565b30600090815260208190526040902055600e546122819082611e3e565b600e55604051600160a060020a0387169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906122c1908590612c7f565b60405180910390a35b85600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161230d9190612c7f565b60405180910390a350505050505050565b612326612a5b565b6123308585612852565b606085015260408401819052602084019190915281835261235c91612356908790611e3e565b90611e3e565b60c0820181905261236d9083611348565b60e0820152600160a060020a0386166000908152602081905260409020546123959084611e3e565b600160a060020a038088166000908152602081905260408082209390935560e0840151918816815291909120546123cb9161138a565b600160a060020a03861660009081526020819052604090819020919091558101511561247f5760608101513060009081526020819052604090205461240f9161138a565b306000908152602081905260409081902091909155810151600e546124339161138a565b600e5560408082015190513091600160a060020a038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9161247691612c7f565b60405180910390a35b805160085461248d91611e3e565b60085560208101516007546124a191611e3e565b60078190555084600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c001516040516124ee9190612c7f565b60405180910390a38051604051600091600160a060020a038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9161178a91612c7f565b600061253e610a75565b9050600061254c8383611348565b600160a060020a038516600090815260208190526040902054909150612572908261138a565b600160a060020a038516600090815260208190526040902055600854612598908461138a565b60085550505050565b73083c3b9a697596755834dbef3d0a70a77c36ae0790565b678ac7230489e8000090565b6125ce82611256565b156125f35760405160008051602061336183398151915281526004016107ab90613225565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19169092179091558080612671858561106e565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b42600655565b600160a060020a0382166000908152600360205260408120600481015460029091015482918291612749916064916108f491611348565b600160a060020a0386166000908152600360205260409020600181015460059091015491925061277e916108fa9084906113db565b905060008061279660646108fa612710610809611e39565b8311156127cd5760006127a98480611348565b90506127c56127106108fa6127be8483611e3e565b8a90611348565b925050612846565b6127e56127106108fa6127de611e39565b8990611348565b915060006127f2886108ab565b90506127fc611e39565b8111801561280c57506000600e54115b15612844576128326127106108fa896108f460026108fa61282b611e39565b8890611e3e565b9150600e5482111561284457600e5491505b505b90969095509350505050565b6000806000806000612862610a75565b905060008060006128728a611256565b156128e657600160a060020a038a16600090815260036020526040902060058101546001909101546128aa916064916108f491611348565b600160a060020a038b16600090815260036020526040902060048101546002909101549194506128df916108fa9086906113db565b9250612931565b60058054600160a060020a03166000908152600360205260409020600481015460028201549282015460019092015461292e9391926108fa929183916064916108f491611348565b92505b600061294660646108fa612710610809611e39565b8411156129ce5760006129598580611348565b90506129756127106108fa61296e8483611e3e565b8e90611348565b91506129886127106108fa61296e611e80565b8211156129a3576129a06127106108fa61296e611e80565b91505b6129ba60646108fa6129b3612a17565b8590611348565b93506129c68285611e3e565b9250506129ec565b6129e66127106108fa6129df611e39565b8d90611348565b90508091505b816129f78187611348565b84612a028189611348565b929e919d509b50909950975050505050505050565b603290565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600060208284031215612ab1578081fd5b8135610ad28161334b565b600060208284031215612acd578081fd5b8151610ad28161334b565b60008060408385031215612aea578081fd5b8235612af58161334b565b91506020830135612b058161334b565b809150509250929050565b600080600060608486031215612b24578081fd5b8335612b2f8161334b565b92506020840135612b3f8161334b565b929592945050506040919091013590565b60008060408385031215612b62578182fd5b8235612b6d8161334b565b946020939093013593505050565b600060208284031215612b8c578081fd5b5035919050565b600060208284031215612ba4578081fd5b5051919050565b600080600060608486031215612bbf578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b81811015612cb457858101830151858201604001528201612c98565b81811115612cc55783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b6020808252601a908201527f4e6565647320746f2062652061626f7665206d696e2065746821000000000000604082015260600190565b6020808252601a908201527f50726573616c65206861736e2774207374617274656420796574000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252601e908201527f43616e206f6e6c7920626520736574206265666f72652070726573616c650000604082015260600190565b60208082526015908201527f6761732070726963652061626f7665206c696d69740000000000000000000000604082015260600190565b6020808252601c908201527f50726573616c6520697320616c726561647920636f6d706c6574656400000000604082015260600190565b6020808252600c908201527f6e6f20636f6e7472616374730000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f50726573616c65207072696365206973206e6f74207365740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601f908201527f50726573616c65206d61782063617020616c7265616479207265616368656400604082015260600190565b60208082526016908201527f43726f7373656420696e646976696475616c2063617000000000000000000000604082015260600190565b60208082526031908201527f546869732063616e6e6f74206265206d6f64696669656420616674657220746860408201527f652070726573616c6520697320646f6e65000000000000000000000000000000606082015260800190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600160a060020a03811681146120a557600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122097600ad92f3f44a99062eb580a00f0d13064cfd95be44f041bded439f3c8f3e364736f6c634300060c0033

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.