ETH Price: $2,681.31 (+1.95%)
Gas: 1 Gwei

Token

For Real (FR)
 

Overview

Max Total Supply

1,000,000,000,000 FR

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,732,432,093.769985892759887108 FR

Value
$0.00
0xbec073e2b105c0326e82d7343465f66cea565090
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:
ForReal

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion
File 1 of 1 : fr.sol
/*

Are You For Real Seeing this?
Guess you are join the chat below

tg: https://t.me/FORREALPORTAL

*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this;
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
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;
}
 
interface IERC20 {

    function totalSupply() external view returns (uint256);
 
    function balanceOf(address account) external view returns (uint256);
 
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    function allowance(address owner, address spender) external view returns (uint256);
 
    function approve(address spender, uint256 amount) external returns (bool);
 
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);
 
    function symbol() external view returns (string memory);
 
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    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;
    }
 
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by 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;
    }
 
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    function owner() public view returns (address) {
        return _owner;
    }
 
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
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);
}
 
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;
}
 
contract ForReal is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0x0);
    
    address[] public AllHolders;
    mapping(address => bool) private InFRHolders;

    bool private swapping;
 
    address public marketingWallet;
    address public devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    uint256 public percentForLPBurn = 10; // 10 = .10%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 7200 seconds;
    uint256 public lastLpBurnTime;
 
    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public enableEarlySellTax = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public earlySellLiquidityFee;
    uint256 public earlySellMarketingFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("For Real", "FR") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 0;
 
        uint256 _earlySellLiquidityFee = 2;
        uint256 _earlySellMarketingFee = 3;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000;
        maxWallet = totalSupply * 20 / 1000; 
        swapTokensAtAmount = totalSupply * 5 / 10000;
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
 
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
  	}
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        // anti bot logic
        if (block.number <= (launchedAt + 2) && 
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) {
            _blacklist[to] = true;
        }
 
        // early sell logic
        bool isBuy = from == uniswapV2Pair;
        if (!isBuy && enableEarlySellTax) {
            if (_holderFirstBuyTimestamp[from] != 0 &&
                (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp))  {
                sellLiquidityFee = earlySellLiquidityFee;
                sellMarketingFee = earlySellMarketingFee;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            } else {
                sellLiquidityFee = 3;
                sellMarketingFee = 4;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            }
        } else {
            if (_holderFirstBuyTimestamp[to] == 0) {
                _holderFirstBuyTimestamp[to] = block.timestamp;
            }
 
            if (!enableEarlySellTax) {
                sellLiquidityFee = 2;
                sellMarketingFee = 3;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            }
        }
 
		uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){
            autoBurnLiquidityPairTokens();
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
        	amount -= fees;
        }

        if (!InFRHolders[to]  && to != uniswapV2Pair && to != address(uniswapV2Router)) {
            AllHolders.push(to);
            InFRHolders[to] = true;
        }

        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
 
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
 
    function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }
 
    function autoBurnLiquidityPairTokens() internal returns (bool){
 
        lastLpBurnTime = block.timestamp;
 
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
 
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000);
 
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
 
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }
 
    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
 
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
 
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
 
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
 
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    // get all holders with balance higher then 0;
    function getAllHolders() public view returns (address[] memory) {
        address[] memory holders = new address[](AllHolders.length);
        uint256 counter = 0;
        for (uint256 i = 0; i < AllHolders.length; i++) {
            if (balanceOf(AllHolders[i]) > 0) {
                holders[counter] = AllHolders[i];
                counter++;
            }
        }
        return holders;
    }

    
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"AllHolders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a600d55600e805460ff19908116909155611c20600f556107086011556013805463ffffffff19166001908117909155601780549092161790553480156200004c57600080fd5b5060405180604001604052806008815260200167119bdc881499585b60c21b81525060405180604001604052806002815260200161232960f11b81525081600390816200009a9190620007cf565b506004620000a98282620007cf565b5050506000620000be6200044260201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200012e81600162000446565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000179573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019f91906200089b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021391906200089b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000261573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028791906200089b565b6001600160a01b031660a0819052620002a290600162000446565b60a051620002b2906001620004c0565b60036002600082828281836c0c9f2c9cd04674edea400000006103e8620002db826014620008dc565b620002e79190620008f6565b600a556103e8620002fa826014620008dc565b620003069190620008f6565b600c5561271062000319826005620008dc565b620003259190620008f6565b600b556019899055601a889055601b8790558662000344898b62000919565b62000350919062000919565b601855601d869055601e859055601f849055836200036f868862000919565b6200037b919062000919565b601c5560208390556021829055600554600880546101006001600160a01b03909316928302610100600160a81b0319909116179055600980546001600160a01b03191682179055620003cf90600162000514565b620003dc30600162000514565b620003eb61dead600162000514565b6200040a620004026005546001600160a01b031690565b600162000446565b6200041730600162000446565b6200042661dead600162000446565b620004323382620005be565b505050505050505050506200092f565b3390565b6005546001600160a01b03163314620004955760405162461bcd60e51b815260206004820181905260248201526000805160206200579883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602760205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260286020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200055f5760405162461bcd60e51b815260206004820181905260248201526000805160206200579883398151915260448201526064016200048c565b6001600160a01b038216600081815260266020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048c565b6200063281600254620006bf60201b620028f81790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000665918390620028f8620006bf821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600080620006ce838562000919565b905083811015620007225760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200048c565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200075657607f821691505b6020821081036200077757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006ba57600081815260208120601f850160051c81016020861015620007a65750805b601f850160051c820191505b81811015620007c757828155600101620007b2565b505050505050565b81516001600160401b03811115620007eb57620007eb6200072b565b6200080381620007fc845462000741565b846200077d565b602080601f8311600181146200083b5760008415620008225750858301515b600019600386901b1c1916600185901b178555620007c7565b600085815260208120601f198616915b828110156200086c578886015182559484019460019091019084016200084b565b50858210156200088b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008ae57600080fd5b81516001600160a01b03811681146200072257600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007255762000725620008c6565b6000826200091457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007255762000725620008c6565b60805160a051614dc5620009d36000396000818161070201528181611aa701528181612657015281816126f20152818161271e01528181612f7101528181613402015281816134dd01528181613ae8015281816142e00152818161438201526143ae0152600081816104f701528181612f1901528181613b400152818161455d0152818161463d0152818161469f01528181614719015261478e0152614dc56000f3fe60806040526004361061044e5760003560e01c80638095d56411610243578063aacebbe311610143578063dd62ed3e116100bb578063f2fde38b1161008a578063f8b45b051161006f578063f8b45b0514610cab578063fe72b27a14610cc1578063ff935af614610ce157600080fd5b8063f2fde38b14610c75578063f637434214610c9557600080fd5b8063dd62ed3e14610be1578063e2f4560514610c34578063e884f26014610c4a578063f11a24d314610c5f57600080fd5b8063c18bc19511610112578063c8c8ebe4116100f7578063c8c8ebe414610b95578063d257b34f14610bab578063d85ba06314610bcb57600080fd5b8063c18bc19514610b5b578063c876d0b914610b7b57600080fd5b8063aacebbe314610acc578063b62496f514610aec578063bbc0c74214610b1c578063c024666814610b3b57600080fd5b80639c3b4fdc116101d6578063a2657778116101a5578063a4c82a001161018a578063a4c82a0014610a75578063a4d15b6414610a8b578063a9059cbb14610aac57600080fd5b8063a265777814610a35578063a457c2d714610a5557600080fd5b80639c3b4fdc146109dd5780639ec22c0e146109f35780639fccce3214610a09578063a0d82dc514610a1f57600080fd5b806392136913116102125780639213691314610972578063924de9b71461098857806395d89b41146109a85780639a7a23d6146109bd57600080fd5b80638095d564146108e55780638a8c523c146109055780638da5cb5b1461091a5780638ea5220f1461094557600080fd5b80632e82f1a01161034e5780636a486a8e116102e1578063730c1888116102b05780637571336a116102955780637571336a1461087d57806375f0a8741461089d5780637bce5a04146108cf57600080fd5b8063730c188814610848578063751039fc1461086857600080fd5b80636a486a8e146107ba5780636ddd1713146107d057806370a08231146107f0578063715018a61461083357600080fd5b80634a62bb651161031d5780634a62bb65146107245780634fbee1931461073e578063541a43cf1461078457806354e715351461079a57600080fd5b80632e82f1a01461069a578063313ce567146106b457806339509351146106d057806349bd5a5e146106f057600080fd5b80631a8145bb116103e157806323b872dd116103b05780632bf3d42d116103955780632bf3d42d1461064e5780632c3e486c146106645780632d5a5d341461067a57600080fd5b806323b872dd1461061957806327c8f8351461063957600080fd5b80631a8145bb146105ab5780631d92f25e146105c15780631f3fed8f146105e3578063203e727e146105f957600080fd5b806318160ddd1161041d57806318160ddd1461053e5780631816467f1461055d578063184c16c51461057f578063199ffc721461059557600080fd5b806306fdde031461045a578063095ea7b31461048557806310d5de53146104b55780631694505e146104e557600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061046f610d01565b60405161047c9190614812565b60405180910390f35b34801561049157600080fd5b506104a56104a03660046148a3565b610d93565b604051901515815260200161047c565b3480156104c157600080fd5b506104a56104d03660046148cf565b60276020526000908152604090205460ff1681565b3480156104f157600080fd5b506105197f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161047c565b34801561054a57600080fd5b506002545b60405190815260200161047c565b34801561056957600080fd5b5061057d6105783660046148cf565b610daa565b005b34801561058b57600080fd5b5061054f60115481565b3480156105a157600080fd5b5061054f600d5481565b3480156105b757600080fd5b5061054f60235481565b3480156105cd57600080fd5b506105d6610ebf565b60405161047c919061493d565b3480156105ef57600080fd5b5061054f60225481565b34801561060557600080fd5b5061057d610614366004614950565b611006565b34801561062557600080fd5b506104a5610634366004614969565b611162565b34801561064557600080fd5b50610519600081565b34801561065a57600080fd5b5061054f60215481565b34801561067057600080fd5b5061054f600f5481565b34801561068657600080fd5b5061057d6106953660046149ba565b6111d8565b3480156106a657600080fd5b50600e546104a59060ff1681565b3480156106c057600080fd5b506040516012815260200161047c565b3480156106dc57600080fd5b506104a56106eb3660046148a3565b6112af565b3480156106fc57600080fd5b506105197f000000000000000000000000000000000000000000000000000000000000000081565b34801561073057600080fd5b506013546104a59060ff1681565b34801561074a57600080fd5b506104a56107593660046148cf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526026602052604090205460ff1690565b34801561079057600080fd5b5061054f60205481565b3480156107a657600080fd5b506105196107b5366004614950565b6112f2565b3480156107c657600080fd5b5061054f601c5481565b3480156107dc57600080fd5b506013546104a59062010000900460ff1681565b3480156107fc57600080fd5b5061054f61080b3660046148cf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561083f57600080fd5b5061057d611329565b34801561085457600080fd5b5061057d6108633660046149ef565b611419565b34801561087457600080fd5b506104a5611602565b34801561088957600080fd5b5061057d6108983660046149ba565b6116b4565b3480156108a957600080fd5b5060085461051990610100900473ffffffffffffffffffffffffffffffffffffffff1681565b3480156108db57600080fd5b5061054f60195481565b3480156108f157600080fd5b5061057d610900366004614a24565b61178b565b34801561091157600080fd5b5061057d6118a4565b34801561092657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610519565b34801561095157600080fd5b506009546105199073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097e57600080fd5b5061054f601d5481565b34801561099457600080fd5b5061057d6109a3366004614a50565b61195c565b3480156109b457600080fd5b5061046f611a15565b3480156109c957600080fd5b5061057d6109d83660046149ba565b611a24565b3480156109e957600080fd5b5061054f601b5481565b3480156109ff57600080fd5b5061054f60125481565b348015610a1557600080fd5b5061054f60245481565b348015610a2b57600080fd5b5061054f601f5481565b348015610a4157600080fd5b5061057d610a50366004614a50565b611b8e565b348015610a6157600080fd5b506104a5610a703660046148a3565b611c48565b348015610a8157600080fd5b5061054f60105481565b348015610a9757600080fd5b506013546104a5906301000000900460ff1681565b348015610ab857600080fd5b506104a5610ac73660046148a3565b611ca4565b348015610ad857600080fd5b5061057d610ae73660046148cf565b611cb1565b348015610af857600080fd5b506104a5610b073660046148cf565b60286020526000908152604090205460ff1681565b348015610b2857600080fd5b506013546104a590610100900460ff1681565b348015610b4757600080fd5b5061057d610b563660046149ba565b611dcb565b348015610b6757600080fd5b5061057d610b76366004614950565b611ed6565b348015610b8757600080fd5b506017546104a59060ff1681565b348015610ba157600080fd5b5061054f600a5481565b348015610bb757600080fd5b506104a5610bc6366004614950565b612031565b348015610bd757600080fd5b5061054f60185481565b348015610bed57600080fd5b5061054f610bfc366004614a6b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610c4057600080fd5b5061054f600b5481565b348015610c5657600080fd5b506104a5612224565b348015610c6b57600080fd5b5061054f601a5481565b348015610c8157600080fd5b5061057d610c903660046148cf565b6122d6565b348015610ca157600080fd5b5061054f601e5481565b348015610cb757600080fd5b5061054f600c5481565b348015610ccd57600080fd5b506104a5610cdc366004614950565b612488565b348015610ced57600080fd5b5061057d610cfc366004614aa4565b6127d3565b606060038054610d1090614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c90614adf565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b5050505050905090565b6000610da0338484612978565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065460609060009067ffffffffffffffff811115610ee057610ee0614b32565b604051908082528060200260200182016040528015610f09578160200160208202803683370190505b5090506000805b600654811015610ffe576000610f6360068381548110610f3257610f32614b61565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168252819052604090205490565b1115610fec5760068181548110610f7c57610f7c614b61565b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610fb957610fb9614b61565b73ffffffffffffffffffffffffffffffffffffffff9092166020928302919091019091015281610fe881614bbf565b9250505b80610ff681614bbf565b915050610f10565b509092915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b670de0b6b3a76400006103e861109c60025490565b6110a7906001614bf7565b6110b19190614c0e565b6110bb9190614c0e565b81101561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e27565b61115c81670de0b6b3a7640000614bf7565b600a5550565b600061116f848484612b2c565b6111ce84336111c985604051806060016040528060288152602001614d436028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190613c50565b612978565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610da09185906111c990866128f8565b6006818154811061130257600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b61025883101561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610e27565b6103e8821115801561153c575060015b6115c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610e27565b600f92909255600d55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260276020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b6019839055601a829055601b819055806118268385614c49565b6118309190614c49565b60188190556014101561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610e27565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff16620101001790554260105543602555565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b6013805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610d1090614adf565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610e27565b611b8a8282613ca4565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601380549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610da033846111c985604051806060016040528060258152602001614d6b6025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190613c50565b6000610da0338484612b2c565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60085460405173ffffffffffffffffffffffffffffffffffffffff6101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a36008805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660008181526026602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b670de0b6b3a76400006103e8611f6c60025490565b611f77906005614bf7565b611f819190614c0e565b611f8b9190614c0e565b811015612019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610e27565b61202b81670de0b6b3a7640000614bf7565b600c5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b620186a06120c260025490565b6120cd906001614bf7565b6120d79190614c0e565b821015612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610e27565b6103e861217260025490565b61217d906005614bf7565b6121879190614c0e565b821115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610e27565b50600b81905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff81166123fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e27565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60115460125461251c9190614c49565b4211612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610e27565b6103e8821115612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610e27565b426012556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa1580156126a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cb9190614c5c565b905060006126e56127106126df8487613d23565b90613ddb565b9050801561271a5761271a7f000000000000000000000000000000000000000000000000000000000000000061dead83613e1d565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561278757600080fd5b505af115801561279b573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601d859055601e849055601f83905560208290556021819055826128788587614c49565b6128829190614c49565b601c819055601910156128f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610e27565b5050505050565b6000806129058385614c49565b905083811015612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e27565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216612abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216612c72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16158015612cce575073ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff16155b612d5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527f72616e73666572696e6720746f6b656e730000000000000000000000000000006064820152608401610e27565b80600003612d6e5761189f83836000613e1d565b60135460ff16156133e85760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612dbf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612de0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612e04575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612e13575060085460ff16155b156133e857601354610100900460ff16612ee65773ffffffffffffffffffffffffffffffffffffffff831660009081526026602052604090205460ff1680612e80575073ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604090205460ff165b612ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610e27565b60175460ff161561309c5760055473ffffffffffffffffffffffffffffffffffffffff838116911614801590612f6857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fc057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561309c57326000908152601460205260409020544311613089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610e27565b3260009081526014602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526028602052604090205460ff1680156130f7575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b1561322e57600a5481111561318e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610e27565b600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546131c19083614c49565b1115613229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610e27565b6133e8565b73ffffffffffffffffffffffffffffffffffffffff821660009081526028602052604090205460ff168015613289575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b1561332057600a54811115613229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff166133e857600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546133809083614c49565b11156133e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610e27565b6025546133f6906002614c49565b431115801561345157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613487575073ffffffffffffffffffffffffffffffffffffffff8216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b156134db5773ffffffffffffffffffffffffffffffffffffffff8216600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff9081169084161480158161352e57506013546301000000900460ff165b156135e95773ffffffffffffffffffffffffffffffffffffffff84166000908152601560205260409020541580159061359a575073ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090205442906135979062015180614c49565b10155b156135ce57602054601e819055602154601d819055601f54916135bc91614c49565b6135c69190614c49565b601c55613678565b6003601e8190556004601d819055601f54916135bc91614c49565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260156020526040812054900361363e5773ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090204290555b6013546301000000900460ff16613678576002601e8190556003601d819055601f549161366a91614c49565b6136749190614c49565b601c555b30600090815260208190526040902054600b54811080159081906136a4575060135462010000900460ff165b80156136b3575060085460ff16155b80156136e5575073ffffffffffffffffffffffffffffffffffffffff861660009081526028602052604090205460ff16155b8015613717575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b8015613749575073ffffffffffffffffffffffffffffffffffffffff851660009081526026602052604090205460ff16155b156137aa57600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055613781614047565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60085460ff161580156137e2575073ffffffffffffffffffffffffffffffffffffffff851660009081526028602052604090205460ff165b80156137f05750600e5460ff165b801561380b5750600f546010546138079190614c49565b4210155b801561383d575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b1561384c5761384a61429f565b505b60085473ffffffffffffffffffffffffffffffffffffffff871660009081526026602052604090205460ff918216159116806138ad575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff165b156138b6575060005b60008115613ab55773ffffffffffffffffffffffffffffffffffffffff871660009081526028602052604090205460ff1680156138f557506000601c54115b156139ad5761391460646126df601c5489613d2390919063ffffffff16565b9050601c54601e54826139279190614bf7565b6139319190614c0e565b602360008282546139429190614c49565b9091555050601c54601f546139579083614bf7565b6139619190614c0e565b602460008282546139729190614c49565b9091555050601c54601d546139879083614bf7565b6139919190614c0e565b602260008282546139a29190614c49565b90915550613a979050565b73ffffffffffffffffffffffffffffffffffffffff881660009081526028602052604090205460ff1680156139e457506000601854115b15613a9757613a0360646126df60185489613d2390919063ffffffff16565b9050601854601a5482613a169190614bf7565b613a209190614c0e565b60236000828254613a319190614c49565b9091555050601854601b54613a469083614bf7565b613a509190614c0e565b60246000828254613a619190614c49565b9091555050601854601954613a769083614bf7565b613a809190614c0e565b60226000828254613a919190614c49565b90915550505b8015613aa857613aa8883083613e1d565b613ab28187614c75565b95505b73ffffffffffffffffffffffffffffffffffffffff871660009081526007602052604090205460ff16158015613b3757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b8015613b8f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15613c3b576006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8a16908117909155600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b613c46888888613e1d565b5050505050505050565b60008184841115613c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279190614812565b506000613c9b8486614c75565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526028602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600082600003613d3557506000610da4565b6000613d418385614bf7565b905082613d4e8583614c0e565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610e27565b600061297183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614462565b73ffffffffffffffffffffffffffffffffffffffff8316613ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216613f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e27565b613fad81604051806060016040528060268152602001614d1d6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190613c50565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054613fe990826128f8565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612b1f565b306000908152602081905260408120549050600060245460225460235461406e9190614c49565b6140789190614c49565b90506000821580614087575081155b1561409157505050565b600b5461409f906014614bf7565b8311156140b757600b546140b4906014614bf7565b92505b6000600283602354866140ca9190614bf7565b6140d49190614c0e565b6140de9190614c0e565b905060006140ec85836144aa565b9050476140f8826144ec565b600061410447836144aa565b90506000614121876126df60225485613d2390919063ffffffff16565b9050600061413e886126df60245486613d2390919063ffffffff16565b905060008161414d8486614c75565b6141579190614c75565b600060238190556022819055602481905560095460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146141c1576040519150601f19603f3d011682016040523d82523d6000602084013e6141c6565b606091505b509098505086158015906141da5750600081115b1561422d576141e98782614713565b602354604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60085460405161010090910473ffffffffffffffffffffffffffffffffffffffff16904790600081818185875af1925050503d806000811461428b576040519150601f19603f3d011682016040523d82523d6000602084013e614290565b606091505b50505050505050505050505050565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015614332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143569190614c5c565b905060006143756127106126df600d5485613d2390919063ffffffff16565b905080156143aa576143aa7f000000000000000000000000000000000000000000000000000000000000000061dead83613e1d565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561441757600080fd5b505af115801561442b573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000818361449d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279190614812565b506000613c9b8486614c0e565b600061297183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c50565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061452157614521614b61565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145ea9190614c88565b816001815181106145fd576145fd614b61565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614662307f000000000000000000000000000000000000000000000000000000000000000084612978565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906146dd908590600090869030904290600401614ca5565b600060405180830381600087803b1580156146f757600080fd5b505af115801561470b573d6000803e3d6000fd5b505050505050565b61473e307f000000000000000000000000000000000000000000000000000000000000000084612978565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482018190526064820181905260848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156147ed573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128f19190614cee565b600060208083528351808285015260005b8181101561483f57858101830151858201604001528201614823565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146148a057600080fd5b50565b600080604083850312156148b657600080fd5b82356148c18161487e565b946020939093013593505050565b6000602082840312156148e157600080fd5b81356129718161487e565b600081518084526020808501945080840160005b8381101561493257815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101614900565b509495945050505050565b60208152600061297160208301846148ec565b60006020828403121561496257600080fd5b5035919050565b60008060006060848603121561497e57600080fd5b83356149898161487e565b925060208401356149998161487e565b929592945050506040919091013590565b8035801515811461221f57600080fd5b600080604083850312156149cd57600080fd5b82356149d88161487e565b91506149e6602084016149aa565b90509250929050565b600080600060608486031215614a0457600080fd5b8335925060208401359150614a1b604085016149aa565b90509250925092565b600080600060608486031215614a3957600080fd5b505081359360208301359350604090920135919050565b600060208284031215614a6257600080fd5b612971826149aa565b60008060408385031215614a7e57600080fd5b8235614a898161487e565b91506020830135614a998161487e565b809150509250929050565b600080600080600060a08688031215614abc57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c90821680614af357607f821691505b602082108103614b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf057614bf0614b90565b5060010190565b8082028115828204841417610da457610da4614b90565b600082614c44577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610da457610da4614b90565b600060208284031215614c6e57600080fd5b5051919050565b81810381811115610da457610da4614b90565b600060208284031215614c9a57600080fd5b81516129718161487e565b85815284602082015260a060408201526000614cc460a08301866148ec565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b600080600060608486031215614d0357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9eceb70c7ff584f4442f5d3da79fb5535f34d81e20f9711d859059a41c07e2d64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061044e5760003560e01c80638095d56411610243578063aacebbe311610143578063dd62ed3e116100bb578063f2fde38b1161008a578063f8b45b051161006f578063f8b45b0514610cab578063fe72b27a14610cc1578063ff935af614610ce157600080fd5b8063f2fde38b14610c75578063f637434214610c9557600080fd5b8063dd62ed3e14610be1578063e2f4560514610c34578063e884f26014610c4a578063f11a24d314610c5f57600080fd5b8063c18bc19511610112578063c8c8ebe4116100f7578063c8c8ebe414610b95578063d257b34f14610bab578063d85ba06314610bcb57600080fd5b8063c18bc19514610b5b578063c876d0b914610b7b57600080fd5b8063aacebbe314610acc578063b62496f514610aec578063bbc0c74214610b1c578063c024666814610b3b57600080fd5b80639c3b4fdc116101d6578063a2657778116101a5578063a4c82a001161018a578063a4c82a0014610a75578063a4d15b6414610a8b578063a9059cbb14610aac57600080fd5b8063a265777814610a35578063a457c2d714610a5557600080fd5b80639c3b4fdc146109dd5780639ec22c0e146109f35780639fccce3214610a09578063a0d82dc514610a1f57600080fd5b806392136913116102125780639213691314610972578063924de9b71461098857806395d89b41146109a85780639a7a23d6146109bd57600080fd5b80638095d564146108e55780638a8c523c146109055780638da5cb5b1461091a5780638ea5220f1461094557600080fd5b80632e82f1a01161034e5780636a486a8e116102e1578063730c1888116102b05780637571336a116102955780637571336a1461087d57806375f0a8741461089d5780637bce5a04146108cf57600080fd5b8063730c188814610848578063751039fc1461086857600080fd5b80636a486a8e146107ba5780636ddd1713146107d057806370a08231146107f0578063715018a61461083357600080fd5b80634a62bb651161031d5780634a62bb65146107245780634fbee1931461073e578063541a43cf1461078457806354e715351461079a57600080fd5b80632e82f1a01461069a578063313ce567146106b457806339509351146106d057806349bd5a5e146106f057600080fd5b80631a8145bb116103e157806323b872dd116103b05780632bf3d42d116103955780632bf3d42d1461064e5780632c3e486c146106645780632d5a5d341461067a57600080fd5b806323b872dd1461061957806327c8f8351461063957600080fd5b80631a8145bb146105ab5780631d92f25e146105c15780631f3fed8f146105e3578063203e727e146105f957600080fd5b806318160ddd1161041d57806318160ddd1461053e5780631816467f1461055d578063184c16c51461057f578063199ffc721461059557600080fd5b806306fdde031461045a578063095ea7b31461048557806310d5de53146104b55780631694505e146104e557600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061046f610d01565b60405161047c9190614812565b60405180910390f35b34801561049157600080fd5b506104a56104a03660046148a3565b610d93565b604051901515815260200161047c565b3480156104c157600080fd5b506104a56104d03660046148cf565b60276020526000908152604090205460ff1681565b3480156104f157600080fd5b506105197f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161047c565b34801561054a57600080fd5b506002545b60405190815260200161047c565b34801561056957600080fd5b5061057d6105783660046148cf565b610daa565b005b34801561058b57600080fd5b5061054f60115481565b3480156105a157600080fd5b5061054f600d5481565b3480156105b757600080fd5b5061054f60235481565b3480156105cd57600080fd5b506105d6610ebf565b60405161047c919061493d565b3480156105ef57600080fd5b5061054f60225481565b34801561060557600080fd5b5061057d610614366004614950565b611006565b34801561062557600080fd5b506104a5610634366004614969565b611162565b34801561064557600080fd5b50610519600081565b34801561065a57600080fd5b5061054f60215481565b34801561067057600080fd5b5061054f600f5481565b34801561068657600080fd5b5061057d6106953660046149ba565b6111d8565b3480156106a657600080fd5b50600e546104a59060ff1681565b3480156106c057600080fd5b506040516012815260200161047c565b3480156106dc57600080fd5b506104a56106eb3660046148a3565b6112af565b3480156106fc57600080fd5b506105197f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa281565b34801561073057600080fd5b506013546104a59060ff1681565b34801561074a57600080fd5b506104a56107593660046148cf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526026602052604090205460ff1690565b34801561079057600080fd5b5061054f60205481565b3480156107a657600080fd5b506105196107b5366004614950565b6112f2565b3480156107c657600080fd5b5061054f601c5481565b3480156107dc57600080fd5b506013546104a59062010000900460ff1681565b3480156107fc57600080fd5b5061054f61080b3660046148cf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561083f57600080fd5b5061057d611329565b34801561085457600080fd5b5061057d6108633660046149ef565b611419565b34801561087457600080fd5b506104a5611602565b34801561088957600080fd5b5061057d6108983660046149ba565b6116b4565b3480156108a957600080fd5b5060085461051990610100900473ffffffffffffffffffffffffffffffffffffffff1681565b3480156108db57600080fd5b5061054f60195481565b3480156108f157600080fd5b5061057d610900366004614a24565b61178b565b34801561091157600080fd5b5061057d6118a4565b34801561092657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610519565b34801561095157600080fd5b506009546105199073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097e57600080fd5b5061054f601d5481565b34801561099457600080fd5b5061057d6109a3366004614a50565b61195c565b3480156109b457600080fd5b5061046f611a15565b3480156109c957600080fd5b5061057d6109d83660046149ba565b611a24565b3480156109e957600080fd5b5061054f601b5481565b3480156109ff57600080fd5b5061054f60125481565b348015610a1557600080fd5b5061054f60245481565b348015610a2b57600080fd5b5061054f601f5481565b348015610a4157600080fd5b5061057d610a50366004614a50565b611b8e565b348015610a6157600080fd5b506104a5610a703660046148a3565b611c48565b348015610a8157600080fd5b5061054f60105481565b348015610a9757600080fd5b506013546104a5906301000000900460ff1681565b348015610ab857600080fd5b506104a5610ac73660046148a3565b611ca4565b348015610ad857600080fd5b5061057d610ae73660046148cf565b611cb1565b348015610af857600080fd5b506104a5610b073660046148cf565b60286020526000908152604090205460ff1681565b348015610b2857600080fd5b506013546104a590610100900460ff1681565b348015610b4757600080fd5b5061057d610b563660046149ba565b611dcb565b348015610b6757600080fd5b5061057d610b76366004614950565b611ed6565b348015610b8757600080fd5b506017546104a59060ff1681565b348015610ba157600080fd5b5061054f600a5481565b348015610bb757600080fd5b506104a5610bc6366004614950565b612031565b348015610bd757600080fd5b5061054f60185481565b348015610bed57600080fd5b5061054f610bfc366004614a6b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610c4057600080fd5b5061054f600b5481565b348015610c5657600080fd5b506104a5612224565b348015610c6b57600080fd5b5061054f601a5481565b348015610c8157600080fd5b5061057d610c903660046148cf565b6122d6565b348015610ca157600080fd5b5061054f601e5481565b348015610cb757600080fd5b5061054f600c5481565b348015610ccd57600080fd5b506104a5610cdc366004614950565b612488565b348015610ced57600080fd5b5061057d610cfc366004614aa4565b6127d3565b606060038054610d1090614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c90614adf565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b5050505050905090565b6000610da0338484612978565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065460609060009067ffffffffffffffff811115610ee057610ee0614b32565b604051908082528060200260200182016040528015610f09578160200160208202803683370190505b5090506000805b600654811015610ffe576000610f6360068381548110610f3257610f32614b61565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168252819052604090205490565b1115610fec5760068181548110610f7c57610f7c614b61565b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610fb957610fb9614b61565b73ffffffffffffffffffffffffffffffffffffffff9092166020928302919091019091015281610fe881614bbf565b9250505b80610ff681614bbf565b915050610f10565b509092915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b670de0b6b3a76400006103e861109c60025490565b6110a7906001614bf7565b6110b19190614c0e565b6110bb9190614c0e565b81101561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e27565b61115c81670de0b6b3a7640000614bf7565b600a5550565b600061116f848484612b2c565b6111ce84336111c985604051806060016040528060288152602001614d436028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190613c50565b612978565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610da09185906111c990866128f8565b6006818154811061130257600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b61025883101561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610e27565b6103e8821115801561153c575060015b6115c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610e27565b600f92909255600d55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260276020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b6019839055601a829055601b819055806118268385614c49565b6118309190614c49565b60188190556014101561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610e27565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff16620101001790554260105543602555565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b6013805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610d1090614adf565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610e27565b611b8a8282613ca4565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601380549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610da033846111c985604051806060016040528060258152602001614d6b6025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190613c50565b6000610da0338484612b2c565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60085460405173ffffffffffffffffffffffffffffffffffffffff6101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a36008805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660008181526026602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b670de0b6b3a76400006103e8611f6c60025490565b611f77906005614bf7565b611f819190614c0e565b611f8b9190614c0e565b811015612019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610e27565b61202b81670de0b6b3a7640000614bf7565b600c5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b620186a06120c260025490565b6120cd906001614bf7565b6120d79190614c0e565b821015612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610e27565b6103e861217260025490565b61217d906005614bf7565b6121879190614c0e565b821115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610e27565b50600b81905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b73ffffffffffffffffffffffffffffffffffffffff81166123fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e27565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b60115460125461251c9190614c49565b4211612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610e27565b6103e8821115612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610e27565b426012556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa216600482015260009030906370a0823190602401602060405180830381865afa1580156126a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cb9190614c5c565b905060006126e56127106126df8487613d23565b90613ddb565b9050801561271a5761271a7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa261dead83613e1d565b60007f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561278757600080fd5b505af115801561279b573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e27565b601d859055601e849055601f83905560208290556021819055826128788587614c49565b6128829190614c49565b601c819055601910156128f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610e27565b5050505050565b6000806129058385614c49565b905083811015612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e27565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216612abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216612c72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16158015612cce575073ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff16155b612d5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527f72616e73666572696e6720746f6b656e730000000000000000000000000000006064820152608401610e27565b80600003612d6e5761189f83836000613e1d565b60135460ff16156133e85760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612dbf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612de0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612e04575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612e13575060085460ff16155b156133e857601354610100900460ff16612ee65773ffffffffffffffffffffffffffffffffffffffff831660009081526026602052604090205460ff1680612e80575073ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604090205460ff165b612ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610e27565b60175460ff161561309c5760055473ffffffffffffffffffffffffffffffffffffffff838116911614801590612f6857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fc057507f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561309c57326000908152601460205260409020544311613089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610e27565b3260009081526014602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526028602052604090205460ff1680156130f7575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b1561322e57600a5481111561318e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610e27565b600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546131c19083614c49565b1115613229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610e27565b6133e8565b73ffffffffffffffffffffffffffffffffffffffff821660009081526028602052604090205460ff168015613289575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b1561332057600a54811115613229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff166133e857600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546133809083614c49565b11156133e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610e27565b6025546133f6906002614c49565b431115801561345157507f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613487575073ffffffffffffffffffffffffffffffffffffffff8216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b156134db5773ffffffffffffffffffffffffffffffffffffffff8216600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa273ffffffffffffffffffffffffffffffffffffffff9081169084161480158161352e57506013546301000000900460ff165b156135e95773ffffffffffffffffffffffffffffffffffffffff84166000908152601560205260409020541580159061359a575073ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090205442906135979062015180614c49565b10155b156135ce57602054601e819055602154601d819055601f54916135bc91614c49565b6135c69190614c49565b601c55613678565b6003601e8190556004601d819055601f54916135bc91614c49565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260156020526040812054900361363e5773ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090204290555b6013546301000000900460ff16613678576002601e8190556003601d819055601f549161366a91614c49565b6136749190614c49565b601c555b30600090815260208190526040902054600b54811080159081906136a4575060135462010000900460ff165b80156136b3575060085460ff16155b80156136e5575073ffffffffffffffffffffffffffffffffffffffff861660009081526028602052604090205460ff16155b8015613717575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b8015613749575073ffffffffffffffffffffffffffffffffffffffff851660009081526026602052604090205460ff16155b156137aa57600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055613781614047565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60085460ff161580156137e2575073ffffffffffffffffffffffffffffffffffffffff851660009081526028602052604090205460ff165b80156137f05750600e5460ff165b801561380b5750600f546010546138079190614c49565b4210155b801561383d575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b1561384c5761384a61429f565b505b60085473ffffffffffffffffffffffffffffffffffffffff871660009081526026602052604090205460ff918216159116806138ad575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff165b156138b6575060005b60008115613ab55773ffffffffffffffffffffffffffffffffffffffff871660009081526028602052604090205460ff1680156138f557506000601c54115b156139ad5761391460646126df601c5489613d2390919063ffffffff16565b9050601c54601e54826139279190614bf7565b6139319190614c0e565b602360008282546139429190614c49565b9091555050601c54601f546139579083614bf7565b6139619190614c0e565b602460008282546139729190614c49565b9091555050601c54601d546139879083614bf7565b6139919190614c0e565b602260008282546139a29190614c49565b90915550613a979050565b73ffffffffffffffffffffffffffffffffffffffff881660009081526028602052604090205460ff1680156139e457506000601854115b15613a9757613a0360646126df60185489613d2390919063ffffffff16565b9050601854601a5482613a169190614bf7565b613a209190614c0e565b60236000828254613a319190614c49565b9091555050601854601b54613a469083614bf7565b613a509190614c0e565b60246000828254613a619190614c49565b9091555050601854601954613a769083614bf7565b613a809190614c0e565b60226000828254613a919190614c49565b90915550505b8015613aa857613aa8883083613e1d565b613ab28187614c75565b95505b73ffffffffffffffffffffffffffffffffffffffff871660009081526007602052604090205460ff16158015613b3757507f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b8015613b8f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15613c3b576006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8a16908117909155600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b613c46888888613e1d565b5050505050505050565b60008184841115613c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279190614812565b506000613c9b8486614c75565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526028602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600082600003613d3557506000610da4565b6000613d418385614bf7565b905082613d4e8583614c0e565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610e27565b600061297183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614462565b73ffffffffffffffffffffffffffffffffffffffff8316613ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e27565b73ffffffffffffffffffffffffffffffffffffffff8216613f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610e27565b613fad81604051806060016040528060268152602001614d1d6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190613c50565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054613fe990826128f8565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612b1f565b306000908152602081905260408120549050600060245460225460235461406e9190614c49565b6140789190614c49565b90506000821580614087575081155b1561409157505050565b600b5461409f906014614bf7565b8311156140b757600b546140b4906014614bf7565b92505b6000600283602354866140ca9190614bf7565b6140d49190614c0e565b6140de9190614c0e565b905060006140ec85836144aa565b9050476140f8826144ec565b600061410447836144aa565b90506000614121876126df60225485613d2390919063ffffffff16565b9050600061413e886126df60245486613d2390919063ffffffff16565b905060008161414d8486614c75565b6141579190614c75565b600060238190556022819055602481905560095460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146141c1576040519150601f19603f3d011682016040523d82523d6000602084013e6141c6565b606091505b509098505086158015906141da5750600081115b1561422d576141e98782614713565b602354604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60085460405161010090910473ffffffffffffffffffffffffffffffffffffffff16904790600081818185875af1925050503d806000811461428b576040519150601f19603f3d011682016040523d82523d6000602084013e614290565b606091505b50505050505050505050505050565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa2166004820152600090819030906370a0823190602401602060405180830381865afa158015614332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143569190614c5c565b905060006143756127106126df600d5485613d2390919063ffffffff16565b905080156143aa576143aa7f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa261dead83613e1d565b60007f0000000000000000000000007d62a0d6e29af331854024c9e2a88e4f87ce4aa290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561441757600080fd5b505af115801561442b573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000818361449d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e279190614812565b506000613c9b8486614c0e565b600061297183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c50565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061452157614521614b61565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145ea9190614c88565b816001815181106145fd576145fd614b61565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614662307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612978565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906146dd908590600090869030904290600401614ca5565b600060405180830381600087803b1580156146f757600080fd5b505af115801561470b573d6000803e3d6000fd5b505050505050565b61473e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612978565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482018190526064820181905260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156147ed573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128f19190614cee565b600060208083528351808285015260005b8181101561483f57858101830151858201604001528201614823565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146148a057600080fd5b50565b600080604083850312156148b657600080fd5b82356148c18161487e565b946020939093013593505050565b6000602082840312156148e157600080fd5b81356129718161487e565b600081518084526020808501945080840160005b8381101561493257815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101614900565b509495945050505050565b60208152600061297160208301846148ec565b60006020828403121561496257600080fd5b5035919050565b60008060006060848603121561497e57600080fd5b83356149898161487e565b925060208401356149998161487e565b929592945050506040919091013590565b8035801515811461221f57600080fd5b600080604083850312156149cd57600080fd5b82356149d88161487e565b91506149e6602084016149aa565b90509250929050565b600080600060608486031215614a0457600080fd5b8335925060208401359150614a1b604085016149aa565b90509250925092565b600080600060608486031215614a3957600080fd5b505081359360208301359350604090920135919050565b600060208284031215614a6257600080fd5b612971826149aa565b60008060408385031215614a7e57600080fd5b8235614a898161487e565b91506020830135614a998161487e565b809150509250929050565b600080600080600060a08688031215614abc57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c90821680614af357607f821691505b602082108103614b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf057614bf0614b90565b5060010190565b8082028115828204841417610da457610da4614b90565b600082614c44577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610da457610da4614b90565b600060208284031215614c6e57600080fd5b5051919050565b81810381811115610da457610da4614b90565b600060208284031215614c9a57600080fd5b81516129718161487e565b85815284602082015260a060408201526000614cc460a08301866148ec565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b600080600060608486031215614d0357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9eceb70c7ff584f4442f5d3da79fb5535f34d81e20f9711d859059a41c07e2d64736f6c63430008110033

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.