ETH Price: $2,942.73 (-4.07%)
Gas: 2 Gwei

Token

DOGE KILLER 2.0 (LEASH2.0)
 

Overview

Max Total Supply

1,000,000,000,000 LEASH2.0

Holders

345

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
141,822,224.058656549874645109 LEASH2.0

Value
$0.00
0x9f4ab99e87d8192b7d3c901ceb22da5828cdfc42
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:
LEASH20

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : LEASH20.sol
//Twitter: https://twitter.com/leash2coin

//Website: https://www.leash20.vip/

//Telegram: https://t.me/Leash2Portal



// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity = 0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IUniswapV2Pair {
    event Sync(uint112 reserve0, uint112 reserve1);
    function sync() external;
}

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    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);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    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 addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract LEASH20 is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    
    uint256 public manualBurnFrequency = 30 minutes;

    bool public limitsInEffect = true;
    uint256 public tradingOpenTime;
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    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 tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    // exlcude 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;

    constructor() ERC20("DOGE KILLER 2.0", "LEASH2.0") {
        
        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 = 5;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 5;

        uint256 _sellMarketingFee = 5;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 5;
        
        uint256 totalSupply = 1000000000000 * 1e18; 
        
        maxTransactionAmount = totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 1 / 100; // 1% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 1000; // 0.5% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        marketingWallet = 0x0217Eb574E3804557643DCEB25e8A55aaf1688c2; // 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(msg.sender, totalSupply);
    }

    receive() external payable {

  	}

   // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        _approve(address(this), address(uniswapV2Router), balanceOf(address(this)));
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        } (
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        tradingOpenTime = block.timestamp;
        swapEnabled = true;
    }
    
    // remove limits after token is stable
    function removelimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }
    
    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount <= 1, "Swap amount cannot be higher than 1% total supply.");
  	    swapTokensAtAmount = totalSupply() * newAmount / 100;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 txNum, uint256 walNum) external onlyOwner {
        require(txNum >= 1, "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = (totalSupply() * txNum / 100)/1e18;
        require(walNum >= 1, "Cannot set maxWallet lower than 1%");
        maxWallet = (totalSupply() * walNum / 100)/1e18;
    }

    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) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        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;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }


    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");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(tradingOpenTime == 0){
                    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");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }

        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 * sellTotalFees/100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees / 100;
                if(block.timestamp == tradingOpenTime) {
                    fees = fees * 25 / 10;
                }
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        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 - liquidityTokens;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance - initialETHBalance;
        
        uint256 ethForMarketing = ethBalance * tokensForMarketing/totalTokensToSwap;
        uint256 ethForDev = ethBalance * tokensForDev/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);
        }
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":[],"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":[{"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":[{"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":"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":[],"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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":[],"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":"tradingOpenTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint256","name":"txNum","type":"uint256"},{"internalType":"uint256","name":"walNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600e556001600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506001601360006101000a81548160ff0219169083151502179055503480156200008e57600080fd5b506040518060400160405280600f81526020017f444f4745204b494c4c455220322e3000000000000000000000000000000000008152506040518060400160405280600881526020017f4c45415348322e3000000000000000000000000000000000000000000000000081525081600390816200010c919062000d68565b5080600490816200011e919062000d68565b5050506000620001336200065b60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fe8160016200066360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a4919062000eb9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000332919062000eb9565b6040518363ffffffff1660e01b81526004016200035192919062000efc565b6020604051808303816000875af115801562000371573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000397919062000eb9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003df60a05160016200066360201b60201c565b620003f460a05160016200076060201b60201c565b600060059050600080600590506000600590506000806005905060006c0c9f2c9cd04674edea400000009050606460028262000431919062000f58565b6200043d919062000fd2565b600881905550606460018262000454919062000f58565b62000460919062000fd2565b600a819055506103e860058262000478919062000f58565b62000484919062000fd2565b600981905550866015819055508560168190555084601781905550601754601654601554620004b491906200100a565b620004c091906200100a565b6014819055508360198190555082601a8190555081601b81905550601b54601a54601954620004f091906200100a565b620004fc91906200100a565b601881905550730217eb574e3804557643dceb25e8a55aaf1688c2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000567620007bb60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c9620005bb620007bb60201b60201c565b6001620007e560201b60201c565b620005dc306001620007e560201b60201c565b620005f161dead6001620007e560201b60201c565b6200061362000605620007bb60201b60201c565b60016200066360201b60201c565b620006263060016200066360201b60201c565b6200063b61dead60016200066360201b60201c565b6200064d3382620008e260201b60201c565b5050505050505050620011da565b600033905090565b620006736200065b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc90620010a6565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007f56200065b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000887576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087e90620010a6565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000954576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200094b9062001118565b60405180910390fd5b620009686000838362000a8660201b60201c565b6200097f8160025462000a8b60201b90919060201c565b600281905550620009d8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a8b60201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a7a91906200114b565b60405180910390a35050565b505050565b600080828462000a9c91906200100a565b90508381101562000ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000adb90620011b8565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7057607f821691505b60208210810362000b865762000b8562000b28565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bf07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb1565b62000bfc868362000bb1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c4962000c4362000c3d8462000c14565b62000c1e565b62000c14565b9050919050565b6000819050919050565b62000c658362000c28565b62000c7d62000c748262000c50565b84845462000bbe565b825550505050565b600090565b62000c9462000c85565b62000ca181848462000c5a565b505050565b5b8181101562000cc95762000cbd60008262000c8a565b60018101905062000ca7565b5050565b601f82111562000d185762000ce28162000b8c565b62000ced8462000ba1565b8101602085101562000cfd578190505b62000d1562000d0c8562000ba1565b83018262000ca6565b50505b505050565b600082821c905092915050565b600062000d3d6000198460080262000d1d565b1980831691505092915050565b600062000d58838362000d2a565b9150826002028217905092915050565b62000d738262000aee565b67ffffffffffffffff81111562000d8f5762000d8e62000af9565b5b62000d9b825462000b57565b62000da882828562000ccd565b600060209050601f83116001811462000de0576000841562000dcb578287015190505b62000dd7858262000d4a565b86555062000e47565b601f19841662000df08662000b8c565b60005b8281101562000e1a5784890151825560018201915060208501945060208101905062000df3565b8683101562000e3a578489015162000e36601f89168262000d2a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e818262000e54565b9050919050565b62000e938162000e74565b811462000e9f57600080fd5b50565b60008151905062000eb38162000e88565b92915050565b60006020828403121562000ed25762000ed162000e4f565b5b600062000ee28482850162000ea2565b91505092915050565b62000ef68162000e74565b82525050565b600060408201905062000f13600083018562000eeb565b62000f22602083018462000eeb565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f658262000c14565b915062000f728362000c14565b925082820262000f828162000c14565b9150828204841483151762000f9c5762000f9b62000f29565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fdf8262000c14565b915062000fec8362000c14565b92508262000fff5762000ffe62000fa3565b5b828204905092915050565b6000620010178262000c14565b9150620010248362000c14565b92508282019050808211156200103f576200103e62000f29565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200108e60208362001045565b91506200109b8262001056565b602082019050919050565b60006020820190508181036000830152620010c1816200107f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001100601f8362001045565b91506200110d82620010c8565b602082019050919050565b600060208201905081810360008301526200113381620010f1565b9050919050565b620011458162000c14565b82525050565b60006020820190506200116260008301846200113a565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620011a0601b8362001045565b9150620011ad8262001168565b602082019050919050565b60006020820190508181036000830152620011d38162001191565b9050919050565b60805160a051614ac36200123f600039600081816110ff01526125ce015260008181610f0501528181611bd101528181611c000152818161257601528181613532015281816136130152818161363a015281816136d601526136fd0152614ac36000f3fe60806040526004361061031e5760003560e01c806375f0a874116101ab578063b62496f5116100f7578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610bf7578063f2fde38b14610c22578063f637434214610c4b578063f8b45b0514610c7657610325565b8063d85ba06314610b64578063dd62ed3e14610b8f578063e2f4560514610bcc57610325565b8063c876d0b9116100d1578063c876d0b914610aba578063c8c8ebe414610ae5578063c9567bf914610b10578063d257b34f14610b2757610325565b8063b62496f514610a2b578063c024666814610a68578063c17b5b8c14610a9157610325565b8063924de9b7116101645780639fccce321161013e5780639fccce321461095b578063a0d82dc514610986578063a457c2d7146109b1578063a9059cbb146109ee57610325565b8063924de9b7146108dc57806395d89b41146109055780639c3b4fdc1461093057610325565b806375f0a874146107dc5780637bce5a04146108075780638095d564146108325780638da5cb5b1461085b5780638ea5220f1461088657806392136913146108b157610325565b80632e82f1a01161026a5780635e2d0df1116102235780636ddd1713116101fd5780636ddd17131461073457806370a082311461075f578063715018a61461079c5780637571336a146107b357610325565b80635e2d0df1146106b35780635e4ae81b146106de5780636a486a8e1461070957610325565b80632e82f1a01461058d578063313ce567146105b857806339509351146105e357806349bd5a5e146106205780634a62bb651461064b5780634fbee1931461067657610325565b8063184c16c5116102d75780631f3fed8f116102b15780631f3fed8f146104cf57806323b872dd146104fa57806327c8f835146105375780632c3e486c1461056257610325565b8063184c16c51461044e578063199ffc72146104795780631a8145bb146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de531461039257806311a582c3146103cf5780631694505e146103f857806318160ddd1461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610ca1565b60405161034c919061383c565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906138f7565b610d33565b6040516103899190613952565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061396d565b610d51565b6040516103c69190613952565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061399a565b610d70565b005b34801561040457600080fd5b5061040d610f03565b60405161041a9190613a39565b60405180910390f35b34801561042f57600080fd5b50610438610f27565b6040516104459190613a63565b60405180910390f35b34801561045a57600080fd5b50610463610f31565b6040516104709190613a63565b60405180910390f35b34801561048557600080fd5b5061048e610f37565b60405161049b9190613a63565b60405180910390f35b3480156104b057600080fd5b506104b9610f3d565b6040516104c69190613a63565b60405180910390f35b3480156104db57600080fd5b506104e4610f43565b6040516104f19190613a63565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613a7e565b610f49565b60405161052e9190613952565b60405180910390f35b34801561054357600080fd5b5061054c611022565b6040516105599190613ae0565b60405180910390f35b34801561056e57600080fd5b50610577611028565b6040516105849190613a63565b60405180910390f35b34801561059957600080fd5b506105a261102e565b6040516105af9190613952565b60405180910390f35b3480156105c457600080fd5b506105cd611041565b6040516105da9190613b17565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906138f7565b61104a565b6040516106179190613952565b60405180910390f35b34801561062c57600080fd5b506106356110fd565b6040516106429190613ae0565b60405180910390f35b34801561065757600080fd5b50610660611121565b60405161066d9190613952565b60405180910390f35b34801561068257600080fd5b5061069d6004803603810190610698919061396d565b611134565b6040516106aa9190613952565b60405180910390f35b3480156106bf57600080fd5b506106c861118a565b6040516106d59190613a63565b60405180910390f35b3480156106ea57600080fd5b506106f3611190565b6040516107009190613952565b60405180910390f35b34801561071557600080fd5b5061071e611266565b60405161072b9190613a63565b60405180910390f35b34801561074057600080fd5b5061074961126c565b6040516107569190613952565b60405180910390f35b34801561076b57600080fd5b506107866004803603810190610781919061396d565b61127f565b6040516107939190613a63565b60405180910390f35b3480156107a857600080fd5b506107b16112c7565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190613b5e565b61141f565b005b3480156107e857600080fd5b506107f1611511565b6040516107fe9190613ae0565b60405180910390f35b34801561081357600080fd5b5061081c611537565b6040516108299190613a63565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613b9e565b61153d565b005b34801561086757600080fd5b50610870611656565b60405161087d9190613ae0565b60405180910390f35b34801561089257600080fd5b5061089b611680565b6040516108a89190613ae0565b60405180910390f35b3480156108bd57600080fd5b506108c66116a6565b6040516108d39190613a63565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613bf1565b6116ac565b005b34801561091157600080fd5b5061091a611760565b604051610927919061383c565b60405180910390f35b34801561093c57600080fd5b506109456117f2565b6040516109529190613a63565b60405180910390f35b34801561096757600080fd5b506109706117f8565b60405161097d9190613a63565b60405180910390f35b34801561099257600080fd5b5061099b6117fe565b6040516109a89190613a63565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906138f7565b611804565b6040516109e59190613952565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906138f7565b6118d1565b604051610a229190613952565b60405180910390f35b348015610a3757600080fd5b50610a526004803603810190610a4d919061396d565b6118ef565b604051610a5f9190613952565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a9190613b5e565b61190f565b005b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613b9e565b611a01565b005b348015610ac657600080fd5b50610acf611b1b565b604051610adc9190613952565b60405180910390f35b348015610af157600080fd5b50610afa611b2e565b604051610b079190613a63565b60405180910390f35b348015610b1c57600080fd5b50610b25611b34565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190613c1e565b611cdc565b604051610b5b9190613952565b60405180910390f35b348015610b7057600080fd5b50610b79611de7565b604051610b869190613a63565b60405180910390f35b348015610b9b57600080fd5b50610bb66004803603810190610bb19190613c4b565b611ded565b604051610bc39190613a63565b60405180910390f35b348015610bd857600080fd5b50610be1611e74565b604051610bee9190613a63565b60405180910390f35b348015610c0357600080fd5b50610c0c611e7a565b604051610c199190613a63565b60405180910390f35b348015610c2e57600080fd5b50610c496004803603810190610c44919061396d565b611e80565b005b348015610c5757600080fd5b50610c60612046565b604051610c6d9190613a63565b60405180910390f35b348015610c8257600080fd5b50610c8b61204c565b604051610c989190613a63565b60405180910390f35b606060038054610cb090613cba565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdc90613cba565b8015610d295780601f10610cfe57610100808354040283529160200191610d29565b820191906000526020600020905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b6000610d47610d40612052565b848461205a565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b610d78612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90613d37565b60405180910390fd5b6001821015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613dc9565b60405180910390fd5b670de0b6b3a7640000606483610e5f610f27565b610e699190613e18565b610e739190613e89565b610e7d9190613e89565b6008819055506001811015610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613f2c565b60405180910390fd5b670de0b6b3a7640000606482610edb610f27565b610ee59190613e18565b610eef9190613e89565b610ef99190613e89565b600a819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600e5481565b600b5481565b601d5481565b601c5481565b6000610f56848484612223565b61101784610f62612052565b61101285604051806060016040528060288152602001614a4160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fc8612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b61205a565b600190509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006110f3611057612052565b846110ee8560016000611068612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f1d90919063ffffffff16565b61205a565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600061119a612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090613d37565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506001905090565b60185481565b601160009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611427612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613d37565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611545612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613d37565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546115fc9190613f4c565b6116069190613f4c565b601481905550601480541115611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613fcc565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6116b4612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613d37565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606004805461176f90613cba565b80601f016020809104026020016040519081016040528092919081815260200182805461179b90613cba565b80156117e85780601f106117bd576101008083540402835291602001916117e8565b820191906000526020600020905b8154815290600101906020018083116117cb57829003601f168201915b5050505050905090565b60175481565b601e5481565b601b5481565b60006118c7611811612052565b846118c285604051806060016040528060258152602001614a69602591396001600061183b612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b61205a565b6001905092915050565b60006118e56118de612052565b8484612223565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b611917612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613d37565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a09612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613d37565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611ac09190613f4c565b611aca9190613f4c565b60188190555060196018541115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614038565b60405180910390fd5b505050565b601360009054906101000a900460ff1681565b60085481565b611b3c612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613d37565b60405180910390fd5b611bfe307f0000000000000000000000000000000000000000000000000000000000000000611bf93061127f565b61205a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611c453061127f565b600080611c50611656565b426040518863ffffffff1660e01b8152600401611c7296959493929190614093565b60606040518083038185885af1158015611c90573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611cb59190614109565b505050426010819055506001601160006101000a81548160ff021916908315150217905550565b6000611ce6612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613d37565b60405180910390fd5b6001821115611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906141ce565b60405180910390fd5b606482611dc4610f27565b611dce9190613e18565b611dd89190613e89565b60098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611e88612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614260565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906142f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614384565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122169190613a63565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614416565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f8906144a8565b60405180910390fd5b6000810361231a5761231583836000612f7b565b612eb4565b600f60009054906101000a900460ff16156129d357612337611656565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123a55750612375611656565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123de5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612418575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124315750600560149054906101000a900460ff16155b156129d25760006010540361252157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124e15750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614514565b60405180910390fd5b5b601360009054906101000a900460ff16156126e95761253e611656565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125c557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561261d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126e85743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906145cc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612833576008548111156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061465e565b60405180910390fd5b600a546127e28361127f565b826127ed9190613f4c565b111561282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906146ca565b60405180910390fd5b6129d1565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d65750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561292557600854811115612920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129179061475c565b60405180910390fd5b6129d0565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129cf57600a546129828361127f565b8261298d9190613f4c565b11156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c5906146ca565b60405180910390fd5b5b5b5b5b5b60006129de3061127f565b905060006009548210159050808015612a035750601160009054906101000a900460ff165b8015612a1c5750600560149054906101000a900460ff16155b8015612a725750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ac85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b1e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b62576001600560146101000a81548160ff021916908315150217905550612b4661320e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c185750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c2257600090505b60008115612ea457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c8557506000601854115b15612d4457606460185486612c9a9190613e18565b612ca49190613e89565b9050601854601a5482612cb79190613e18565b612cc19190613e89565b601d6000828254612cd29190613f4c565b92505081905550601854601b5482612cea9190613e18565b612cf49190613e89565b601e6000828254612d059190613f4c565b9250508190555060185460195482612d1d9190613e18565b612d279190613e89565b601c6000828254612d389190613f4c565b92505081905550612e80565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9f57506000601454115b15612e7f57606460145486612db49190613e18565b612dbe9190613e89565b90506010544203612de557600a601982612dd89190613e18565b612de29190613e89565b90505b60145460165482612df69190613e18565b612e009190613e89565b601d6000828254612e119190613f4c565b9250508190555060145460175482612e299190613e18565b612e339190613e89565b601e6000828254612e449190613f4c565b9250508190555060145460155482612e5c9190613e18565b612e669190613e89565b601c6000828254612e779190613f4c565b925050819055505b5b6000811115612e9557612e94873083612f7b565b5b8085612ea1919061477c565b94505b612eaf878787612f7b565b505050505b505050565b6000838311158290612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef8919061383c565b60405180910390fd5b5060008385612f10919061477c565b9050809150509392505050565b6000808284612f2c9190613f4c565b905083811015612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f68906147fc565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614416565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906144a8565b60405180910390fd5b61306483838361348e565b6130cf81604051806060016040528060268152602001614a1b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613162816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132019190613a63565b60405180910390a3505050565b60006132193061127f565b90506000601e54601c54601d546132309190613f4c565b61323a9190613f4c565b905060008083148061324c5750600082145b156132595750505061348c565b60146009546132689190613e18565b83111561328157601460095461327e9190613e18565b92505b6000600283601d54866132949190613e18565b61329e9190613e89565b6132a89190613e89565b9050600081856132b8919061477c565b905060004790506132c882613493565b600081476132d6919061477c565b9050600086601c54836132e99190613e18565b6132f39190613e89565b9050600087601e54846133069190613e18565b6133109190613e89565b90506000818385613321919061477c565b61332b919061477c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161338b9061484d565b60006040518083038185875af1925050503d80600081146133c8576040519150601f19603f3d011682016040523d82523d6000602084013e6133cd565b606091505b5050809850506000871180156133e35750600081115b156133f3576133f287826136d0565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134399061484d565b60006040518083038185875af1925050503d8060008114613476576040519150601f19603f3d011682016040523d82523d6000602084013e61347b565b606091505b505080985050505050505050505050505b565b505050565b6000600267ffffffffffffffff8111156134b0576134af614862565b5b6040519080825280602002602001820160405280156134de5781602001602082028036833780820191505090505b50905030816000815181106134f6576134f5614891565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561359b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135bf91906148d5565b816001815181106135d3576135d2614891565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613638307f00000000000000000000000000000000000000000000000000000000000000008461205a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161369a9594939291906149c0565b600060405180830381600087803b1580156136b457600080fd5b505af11580156136c8573d6000803e3d6000fd5b505050505050565b6136fb307f00000000000000000000000000000000000000000000000000000000000000008461205a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161376296959493929190614093565b60606040518083038185885af1158015613780573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137a59190614109565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e65780820151818401526020810190506137cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061380e826137ac565b61381881856137b7565b93506138288185602086016137c8565b613831816137f2565b840191505092915050565b600060208201905081810360008301526138568184613803565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388e82613863565b9050919050565b61389e81613883565b81146138a957600080fd5b50565b6000813590506138bb81613895565b92915050565b6000819050919050565b6138d4816138c1565b81146138df57600080fd5b50565b6000813590506138f1816138cb565b92915050565b6000806040838503121561390e5761390d61385e565b5b600061391c858286016138ac565b925050602061392d858286016138e2565b9150509250929050565b60008115159050919050565b61394c81613937565b82525050565b60006020820190506139676000830184613943565b92915050565b6000602082840312156139835761398261385e565b5b6000613991848285016138ac565b91505092915050565b600080604083850312156139b1576139b061385e565b5b60006139bf858286016138e2565b92505060206139d0858286016138e2565b9150509250929050565b6000819050919050565b60006139ff6139fa6139f584613863565b6139da565b613863565b9050919050565b6000613a11826139e4565b9050919050565b6000613a2382613a06565b9050919050565b613a3381613a18565b82525050565b6000602082019050613a4e6000830184613a2a565b92915050565b613a5d816138c1565b82525050565b6000602082019050613a786000830184613a54565b92915050565b600080600060608486031215613a9757613a9661385e565b5b6000613aa5868287016138ac565b9350506020613ab6868287016138ac565b9250506040613ac7868287016138e2565b9150509250925092565b613ada81613883565b82525050565b6000602082019050613af56000830184613ad1565b92915050565b600060ff82169050919050565b613b1181613afb565b82525050565b6000602082019050613b2c6000830184613b08565b92915050565b613b3b81613937565b8114613b4657600080fd5b50565b600081359050613b5881613b32565b92915050565b60008060408385031215613b7557613b7461385e565b5b6000613b83858286016138ac565b9250506020613b9485828601613b49565b9150509250929050565b600080600060608486031215613bb757613bb661385e565b5b6000613bc5868287016138e2565b9350506020613bd6868287016138e2565b9250506040613be7868287016138e2565b9150509250925092565b600060208284031215613c0757613c0661385e565b5b6000613c1584828501613b49565b91505092915050565b600060208284031215613c3457613c3361385e565b5b6000613c42848285016138e2565b91505092915050565b60008060408385031215613c6257613c6161385e565b5b6000613c70858286016138ac565b9250506020613c81858286016138ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cd257607f821691505b602082108103613ce557613ce4613c8b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d216020836137b7565b9150613d2c82613ceb565b602082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000613db3602d836137b7565b9150613dbe82613d57565b604082019050919050565b60006020820190508181036000830152613de281613da6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e23826138c1565b9150613e2e836138c1565b9250828202613e3c816138c1565b91508282048414831517613e5357613e52613de9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e94826138c1565b9150613e9f836138c1565b925082613eaf57613eae613e5a565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f166022836137b7565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b6000613f57826138c1565b9150613f62836138c1565b9250828201905080821115613f7a57613f79613de9565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613fb6601d836137b7565b9150613fc182613f80565b602082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614022601d836137b7565b915061402d82613fec565b602082019050919050565b6000602082019050818103600083015261405181614015565b9050919050565b6000819050919050565b600061407d61407861407384614058565b6139da565b6138c1565b9050919050565b61408d81614062565b82525050565b600060c0820190506140a86000830189613ad1565b6140b56020830188613a54565b6140c26040830187614084565b6140cf6060830186614084565b6140dc6080830185613ad1565b6140e960a0830184613a54565b979650505050505050565b600081519050614103816138cb565b92915050565b6000806000606084860312156141225761412161385e565b5b6000614130868287016140f4565b9350506020614141868287016140f4565b9250506040614152868287016140f4565b9150509250925092565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b60006141b86032836137b7565b91506141c38261415c565b604082019050919050565b600060208201905081810360008301526141e7816141ab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061424a6026836137b7565b9150614255826141ee565b604082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142dc6024836137b7565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061436e6022836137b7565b915061437982614312565b604082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144006025836137b7565b915061440b826143a4565b604082019050919050565b6000602082019050818103600083015261442f816143f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144926023836137b7565b915061449d82614436565b604082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006144fe6016836137b7565b9150614509826144c8565b602082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006145b66049836137b7565b91506145c182614534565b606082019050919050565b600060208201905081810360008301526145e5816145a9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146486035836137b7565b9150614653826145ec565b604082019050919050565b600060208201905081810360008301526146778161463b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006146b46013836137b7565b91506146bf8261467e565b602082019050919050565b600060208201905081810360008301526146e3816146a7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147466036836137b7565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826138c1565b9150614792836138c1565b92508282039050818111156147aa576147a9613de9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147e6601b836137b7565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b600081905092915050565b50565b600061483760008361481c565b915061484282614827565b600082019050919050565b60006148588261482a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148cf81613895565b92915050565b6000602082840312156148eb576148ea61385e565b5b60006148f9848285016148c0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61493781613883565b82525050565b6000614949838361492e565b60208301905092915050565b6000602082019050919050565b600061496d82614902565b614977818561490d565b93506149828361491e565b8060005b838110156149b357815161499a888261493d565b97506149a583614955565b925050600181019050614986565b5085935050505092915050565b600060a0820190506149d56000830188613a54565b6149e26020830187614084565b81810360408301526149f48186614962565b9050614a036060830185613ad1565b614a106080830184613a54565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055ec32a4fc2c70a62f90283415b36baa92dbe240022faae4a8071663684cf4c564736f6c63430008130033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806375f0a874116101ab578063b62496f5116100f7578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610bf7578063f2fde38b14610c22578063f637434214610c4b578063f8b45b0514610c7657610325565b8063d85ba06314610b64578063dd62ed3e14610b8f578063e2f4560514610bcc57610325565b8063c876d0b9116100d1578063c876d0b914610aba578063c8c8ebe414610ae5578063c9567bf914610b10578063d257b34f14610b2757610325565b8063b62496f514610a2b578063c024666814610a68578063c17b5b8c14610a9157610325565b8063924de9b7116101645780639fccce321161013e5780639fccce321461095b578063a0d82dc514610986578063a457c2d7146109b1578063a9059cbb146109ee57610325565b8063924de9b7146108dc57806395d89b41146109055780639c3b4fdc1461093057610325565b806375f0a874146107dc5780637bce5a04146108075780638095d564146108325780638da5cb5b1461085b5780638ea5220f1461088657806392136913146108b157610325565b80632e82f1a01161026a5780635e2d0df1116102235780636ddd1713116101fd5780636ddd17131461073457806370a082311461075f578063715018a61461079c5780637571336a146107b357610325565b80635e2d0df1146106b35780635e4ae81b146106de5780636a486a8e1461070957610325565b80632e82f1a01461058d578063313ce567146105b857806339509351146105e357806349bd5a5e146106205780634a62bb651461064b5780634fbee1931461067657610325565b8063184c16c5116102d75780631f3fed8f116102b15780631f3fed8f146104cf57806323b872dd146104fa57806327c8f835146105375780632c3e486c1461056257610325565b8063184c16c51461044e578063199ffc72146104795780631a8145bb146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de531461039257806311a582c3146103cf5780631694505e146103f857806318160ddd1461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610ca1565b60405161034c919061383c565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906138f7565b610d33565b6040516103899190613952565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061396d565b610d51565b6040516103c69190613952565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061399a565b610d70565b005b34801561040457600080fd5b5061040d610f03565b60405161041a9190613a39565b60405180910390f35b34801561042f57600080fd5b50610438610f27565b6040516104459190613a63565b60405180910390f35b34801561045a57600080fd5b50610463610f31565b6040516104709190613a63565b60405180910390f35b34801561048557600080fd5b5061048e610f37565b60405161049b9190613a63565b60405180910390f35b3480156104b057600080fd5b506104b9610f3d565b6040516104c69190613a63565b60405180910390f35b3480156104db57600080fd5b506104e4610f43565b6040516104f19190613a63565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613a7e565b610f49565b60405161052e9190613952565b60405180910390f35b34801561054357600080fd5b5061054c611022565b6040516105599190613ae0565b60405180910390f35b34801561056e57600080fd5b50610577611028565b6040516105849190613a63565b60405180910390f35b34801561059957600080fd5b506105a261102e565b6040516105af9190613952565b60405180910390f35b3480156105c457600080fd5b506105cd611041565b6040516105da9190613b17565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906138f7565b61104a565b6040516106179190613952565b60405180910390f35b34801561062c57600080fd5b506106356110fd565b6040516106429190613ae0565b60405180910390f35b34801561065757600080fd5b50610660611121565b60405161066d9190613952565b60405180910390f35b34801561068257600080fd5b5061069d6004803603810190610698919061396d565b611134565b6040516106aa9190613952565b60405180910390f35b3480156106bf57600080fd5b506106c861118a565b6040516106d59190613a63565b60405180910390f35b3480156106ea57600080fd5b506106f3611190565b6040516107009190613952565b60405180910390f35b34801561071557600080fd5b5061071e611266565b60405161072b9190613a63565b60405180910390f35b34801561074057600080fd5b5061074961126c565b6040516107569190613952565b60405180910390f35b34801561076b57600080fd5b506107866004803603810190610781919061396d565b61127f565b6040516107939190613a63565b60405180910390f35b3480156107a857600080fd5b506107b16112c7565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190613b5e565b61141f565b005b3480156107e857600080fd5b506107f1611511565b6040516107fe9190613ae0565b60405180910390f35b34801561081357600080fd5b5061081c611537565b6040516108299190613a63565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613b9e565b61153d565b005b34801561086757600080fd5b50610870611656565b60405161087d9190613ae0565b60405180910390f35b34801561089257600080fd5b5061089b611680565b6040516108a89190613ae0565b60405180910390f35b3480156108bd57600080fd5b506108c66116a6565b6040516108d39190613a63565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613bf1565b6116ac565b005b34801561091157600080fd5b5061091a611760565b604051610927919061383c565b60405180910390f35b34801561093c57600080fd5b506109456117f2565b6040516109529190613a63565b60405180910390f35b34801561096757600080fd5b506109706117f8565b60405161097d9190613a63565b60405180910390f35b34801561099257600080fd5b5061099b6117fe565b6040516109a89190613a63565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906138f7565b611804565b6040516109e59190613952565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906138f7565b6118d1565b604051610a229190613952565b60405180910390f35b348015610a3757600080fd5b50610a526004803603810190610a4d919061396d565b6118ef565b604051610a5f9190613952565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a9190613b5e565b61190f565b005b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613b9e565b611a01565b005b348015610ac657600080fd5b50610acf611b1b565b604051610adc9190613952565b60405180910390f35b348015610af157600080fd5b50610afa611b2e565b604051610b079190613a63565b60405180910390f35b348015610b1c57600080fd5b50610b25611b34565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190613c1e565b611cdc565b604051610b5b9190613952565b60405180910390f35b348015610b7057600080fd5b50610b79611de7565b604051610b869190613a63565b60405180910390f35b348015610b9b57600080fd5b50610bb66004803603810190610bb19190613c4b565b611ded565b604051610bc39190613a63565b60405180910390f35b348015610bd857600080fd5b50610be1611e74565b604051610bee9190613a63565b60405180910390f35b348015610c0357600080fd5b50610c0c611e7a565b604051610c199190613a63565b60405180910390f35b348015610c2e57600080fd5b50610c496004803603810190610c44919061396d565b611e80565b005b348015610c5757600080fd5b50610c60612046565b604051610c6d9190613a63565b60405180910390f35b348015610c8257600080fd5b50610c8b61204c565b604051610c989190613a63565b60405180910390f35b606060038054610cb090613cba565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdc90613cba565b8015610d295780601f10610cfe57610100808354040283529160200191610d29565b820191906000526020600020905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b6000610d47610d40612052565b848461205a565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b610d78612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90613d37565b60405180910390fd5b6001821015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613dc9565b60405180910390fd5b670de0b6b3a7640000606483610e5f610f27565b610e699190613e18565b610e739190613e89565b610e7d9190613e89565b6008819055506001811015610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613f2c565b60405180910390fd5b670de0b6b3a7640000606482610edb610f27565b610ee59190613e18565b610eef9190613e89565b610ef99190613e89565b600a819055505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600e5481565b600b5481565b601d5481565b601c5481565b6000610f56848484612223565b61101784610f62612052565b61101285604051806060016040528060288152602001614a4160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fc8612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b61205a565b600190509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006110f3611057612052565b846110ee8560016000611068612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f1d90919063ffffffff16565b61205a565b6001905092915050565b7f000000000000000000000000ac04afbc296fe6e0189b8ce70712e33ef7c5222481565b600f60009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600061119a612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090613d37565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506001905090565b60185481565b601160009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611427612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613d37565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611545612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613d37565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546115fc9190613f4c565b6116069190613f4c565b601481905550601480541115611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613fcc565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6116b4612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613d37565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606004805461176f90613cba565b80601f016020809104026020016040519081016040528092919081815260200182805461179b90613cba565b80156117e85780601f106117bd576101008083540402835291602001916117e8565b820191906000526020600020905b8154815290600101906020018083116117cb57829003601f168201915b5050505050905090565b60175481565b601e5481565b601b5481565b60006118c7611811612052565b846118c285604051806060016040528060258152602001614a69602591396001600061183b612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b61205a565b6001905092915050565b60006118e56118de612052565b8484612223565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b611917612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613d37565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a09612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613d37565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611ac09190613f4c565b611aca9190613f4c565b60188190555060196018541115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614038565b60405180910390fd5b505050565b601360009054906101000a900460ff1681565b60085481565b611b3c612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613d37565b60405180910390fd5b611bfe307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d611bf93061127f565b61205a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611c453061127f565b600080611c50611656565b426040518863ffffffff1660e01b8152600401611c7296959493929190614093565b60606040518083038185885af1158015611c90573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611cb59190614109565b505050426010819055506001601160006101000a81548160ff021916908315150217905550565b6000611ce6612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613d37565b60405180910390fd5b6001821115611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906141ce565b60405180910390fd5b606482611dc4610f27565b611dce9190613e18565b611dd89190613e89565b60098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611e88612052565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614260565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906142f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614384565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122169190613a63565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614416565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f8906144a8565b60405180910390fd5b6000810361231a5761231583836000612f7b565b612eb4565b600f60009054906101000a900460ff16156129d357612337611656565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123a55750612375611656565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123de5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612418575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124315750600560149054906101000a900460ff16155b156129d25760006010540361252157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124e15750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614514565b60405180910390fd5b5b601360009054906101000a900460ff16156126e95761253e611656565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125c557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561261d57507f000000000000000000000000ac04afbc296fe6e0189b8ce70712e33ef7c5222473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126e85743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906145cc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612833576008548111156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061465e565b60405180910390fd5b600a546127e28361127f565b826127ed9190613f4c565b111561282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906146ca565b60405180910390fd5b6129d1565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d65750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561292557600854811115612920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129179061475c565b60405180910390fd5b6129d0565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129cf57600a546129828361127f565b8261298d9190613f4c565b11156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c5906146ca565b60405180910390fd5b5b5b5b5b5b60006129de3061127f565b905060006009548210159050808015612a035750601160009054906101000a900460ff165b8015612a1c5750600560149054906101000a900460ff16155b8015612a725750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ac85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b1e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b62576001600560146101000a81548160ff021916908315150217905550612b4661320e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c185750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c2257600090505b60008115612ea457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c8557506000601854115b15612d4457606460185486612c9a9190613e18565b612ca49190613e89565b9050601854601a5482612cb79190613e18565b612cc19190613e89565b601d6000828254612cd29190613f4c565b92505081905550601854601b5482612cea9190613e18565b612cf49190613e89565b601e6000828254612d059190613f4c565b9250508190555060185460195482612d1d9190613e18565b612d279190613e89565b601c6000828254612d389190613f4c565b92505081905550612e80565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9f57506000601454115b15612e7f57606460145486612db49190613e18565b612dbe9190613e89565b90506010544203612de557600a601982612dd89190613e18565b612de29190613e89565b90505b60145460165482612df69190613e18565b612e009190613e89565b601d6000828254612e119190613f4c565b9250508190555060145460175482612e299190613e18565b612e339190613e89565b601e6000828254612e449190613f4c565b9250508190555060145460155482612e5c9190613e18565b612e669190613e89565b601c6000828254612e779190613f4c565b925050819055505b5b6000811115612e9557612e94873083612f7b565b5b8085612ea1919061477c565b94505b612eaf878787612f7b565b505050505b505050565b6000838311158290612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef8919061383c565b60405180910390fd5b5060008385612f10919061477c565b9050809150509392505050565b6000808284612f2c9190613f4c565b905083811015612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f68906147fc565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614416565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906144a8565b60405180910390fd5b61306483838361348e565b6130cf81604051806060016040528060268152602001614a1b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613162816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132019190613a63565b60405180910390a3505050565b60006132193061127f565b90506000601e54601c54601d546132309190613f4c565b61323a9190613f4c565b905060008083148061324c5750600082145b156132595750505061348c565b60146009546132689190613e18565b83111561328157601460095461327e9190613e18565b92505b6000600283601d54866132949190613e18565b61329e9190613e89565b6132a89190613e89565b9050600081856132b8919061477c565b905060004790506132c882613493565b600081476132d6919061477c565b9050600086601c54836132e99190613e18565b6132f39190613e89565b9050600087601e54846133069190613e18565b6133109190613e89565b90506000818385613321919061477c565b61332b919061477c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161338b9061484d565b60006040518083038185875af1925050503d80600081146133c8576040519150601f19603f3d011682016040523d82523d6000602084013e6133cd565b606091505b5050809850506000871180156133e35750600081115b156133f3576133f287826136d0565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134399061484d565b60006040518083038185875af1925050503d8060008114613476576040519150601f19603f3d011682016040523d82523d6000602084013e61347b565b606091505b505080985050505050505050505050505b565b505050565b6000600267ffffffffffffffff8111156134b0576134af614862565b5b6040519080825280602002602001820160405280156134de5781602001602082028036833780820191505090505b50905030816000815181106134f6576134f5614891565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561359b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135bf91906148d5565b816001815181106135d3576135d2614891565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613638307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161369a9594939291906149c0565b600060405180830381600087803b1580156136b457600080fd5b505af11580156136c8573d6000803e3d6000fd5b505050505050565b6136fb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161376296959493929190614093565b60606040518083038185885af1158015613780573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137a59190614109565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e65780820151818401526020810190506137cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061380e826137ac565b61381881856137b7565b93506138288185602086016137c8565b613831816137f2565b840191505092915050565b600060208201905081810360008301526138568184613803565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388e82613863565b9050919050565b61389e81613883565b81146138a957600080fd5b50565b6000813590506138bb81613895565b92915050565b6000819050919050565b6138d4816138c1565b81146138df57600080fd5b50565b6000813590506138f1816138cb565b92915050565b6000806040838503121561390e5761390d61385e565b5b600061391c858286016138ac565b925050602061392d858286016138e2565b9150509250929050565b60008115159050919050565b61394c81613937565b82525050565b60006020820190506139676000830184613943565b92915050565b6000602082840312156139835761398261385e565b5b6000613991848285016138ac565b91505092915050565b600080604083850312156139b1576139b061385e565b5b60006139bf858286016138e2565b92505060206139d0858286016138e2565b9150509250929050565b6000819050919050565b60006139ff6139fa6139f584613863565b6139da565b613863565b9050919050565b6000613a11826139e4565b9050919050565b6000613a2382613a06565b9050919050565b613a3381613a18565b82525050565b6000602082019050613a4e6000830184613a2a565b92915050565b613a5d816138c1565b82525050565b6000602082019050613a786000830184613a54565b92915050565b600080600060608486031215613a9757613a9661385e565b5b6000613aa5868287016138ac565b9350506020613ab6868287016138ac565b9250506040613ac7868287016138e2565b9150509250925092565b613ada81613883565b82525050565b6000602082019050613af56000830184613ad1565b92915050565b600060ff82169050919050565b613b1181613afb565b82525050565b6000602082019050613b2c6000830184613b08565b92915050565b613b3b81613937565b8114613b4657600080fd5b50565b600081359050613b5881613b32565b92915050565b60008060408385031215613b7557613b7461385e565b5b6000613b83858286016138ac565b9250506020613b9485828601613b49565b9150509250929050565b600080600060608486031215613bb757613bb661385e565b5b6000613bc5868287016138e2565b9350506020613bd6868287016138e2565b9250506040613be7868287016138e2565b9150509250925092565b600060208284031215613c0757613c0661385e565b5b6000613c1584828501613b49565b91505092915050565b600060208284031215613c3457613c3361385e565b5b6000613c42848285016138e2565b91505092915050565b60008060408385031215613c6257613c6161385e565b5b6000613c70858286016138ac565b9250506020613c81858286016138ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cd257607f821691505b602082108103613ce557613ce4613c8b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d216020836137b7565b9150613d2c82613ceb565b602082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000613db3602d836137b7565b9150613dbe82613d57565b604082019050919050565b60006020820190508181036000830152613de281613da6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e23826138c1565b9150613e2e836138c1565b9250828202613e3c816138c1565b91508282048414831517613e5357613e52613de9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e94826138c1565b9150613e9f836138c1565b925082613eaf57613eae613e5a565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f166022836137b7565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b6000613f57826138c1565b9150613f62836138c1565b9250828201905080821115613f7a57613f79613de9565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613fb6601d836137b7565b9150613fc182613f80565b602082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614022601d836137b7565b915061402d82613fec565b602082019050919050565b6000602082019050818103600083015261405181614015565b9050919050565b6000819050919050565b600061407d61407861407384614058565b6139da565b6138c1565b9050919050565b61408d81614062565b82525050565b600060c0820190506140a86000830189613ad1565b6140b56020830188613a54565b6140c26040830187614084565b6140cf6060830186614084565b6140dc6080830185613ad1565b6140e960a0830184613a54565b979650505050505050565b600081519050614103816138cb565b92915050565b6000806000606084860312156141225761412161385e565b5b6000614130868287016140f4565b9350506020614141868287016140f4565b9250506040614152868287016140f4565b9150509250925092565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b60006141b86032836137b7565b91506141c38261415c565b604082019050919050565b600060208201905081810360008301526141e7816141ab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061424a6026836137b7565b9150614255826141ee565b604082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142dc6024836137b7565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061436e6022836137b7565b915061437982614312565b604082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144006025836137b7565b915061440b826143a4565b604082019050919050565b6000602082019050818103600083015261442f816143f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144926023836137b7565b915061449d82614436565b604082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006144fe6016836137b7565b9150614509826144c8565b602082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006145b66049836137b7565b91506145c182614534565b606082019050919050565b600060208201905081810360008301526145e5816145a9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146486035836137b7565b9150614653826145ec565b604082019050919050565b600060208201905081810360008301526146778161463b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006146b46013836137b7565b91506146bf8261467e565b602082019050919050565b600060208201905081810360008301526146e3816146a7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147466036836137b7565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826138c1565b9150614792836138c1565b92508282039050818111156147aa576147a9613de9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147e6601b836137b7565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b600081905092915050565b50565b600061483760008361481c565b915061484282614827565b600082019050919050565b60006148588261482a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148cf81613895565b92915050565b6000602082840312156148eb576148ea61385e565b5b60006148f9848285016148c0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61493781613883565b82525050565b6000614949838361492e565b60208301905092915050565b6000602082019050919050565b600061496d82614902565b614977818561490d565b93506149828361491e565b8060005b838110156149b357815161499a888261493d565b97506149a583614955565b925050600181019050614986565b5085935050505092915050565b600060a0820190506149d56000830188613a54565b6149e26020830187614084565b81810360408301526149f48186614962565b9050614a036060830185613ad1565b614a106080830184613a54565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055ec32a4fc2c70a62f90283415b36baa92dbe240022faae4a8071663684cf4c564736f6c63430008130033

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.