ETH Price: $3,642.23 (+9.61%)

Contract

0xe4641A63E66CC1589C4076Aa3Ba3F87bB6BDe7d3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve177629802023-07-24 12:31:47492 days ago1690201907IN
0xe4641A63...bB6BDe7d3
0 ETH0.00222848.10968259
Transfer177626682023-07-24 11:29:11492 days ago1690198151IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011272923.68815276
Approve177626662023-07-24 11:28:47492 days ago1690198127IN
0xe4641A63...bB6BDe7d3
0 ETH0.0014035830.10503778
Approve177626482023-07-24 11:25:11492 days ago1690197911IN
0xe4641A63...bB6BDe7d3
0 ETH0.0010617422.80241069
Approve177626392023-07-24 11:23:23492 days ago1690197803IN
0xe4641A63...bB6BDe7d3
0 ETH0.0006226923.58775446
Approve177626192023-07-24 11:19:23492 days ago1690197563IN
0xe4641A63...bB6BDe7d3
0 ETH0.00123826.58775816
Approve177626182023-07-24 11:19:11492 days ago1690197551IN
0xe4641A63...bB6BDe7d3
0 ETH0.0013367728.67196412
Approve177626182023-07-24 11:19:11492 days ago1690197551IN
0xe4641A63...bB6BDe7d3
0 ETH0.0013367728.67196412
Approve177626182023-07-24 11:19:11492 days ago1690197551IN
0xe4641A63...bB6BDe7d3
0 ETH0.0014300130.67196412
Approve177626032023-07-24 11:15:59492 days ago1690197359IN
0xe4641A63...bB6BDe7d3
0 ETH0.0013869429.74817031
Approve177625932023-07-24 11:13:59492 days ago1690197239IN
0xe4641A63...bB6BDe7d3
0 ETH0.0016521735.48264992
Approve177625742023-07-24 11:10:11492 days ago1690197011IN
0xe4641A63...bB6BDe7d3
0 ETH0.0013694529.41073813
Approve177625662023-07-24 11:08:35492 days ago1690196915IN
0xe4641A63...bB6BDe7d3
0 ETH0.0016631235.67180035
Approve177625462023-07-24 11:04:23492 days ago1690196663IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011265124.28718303
Transfer177625372023-07-24 11:02:35492 days ago1690196555IN
0xe4641A63...bB6BDe7d3
0 ETH0.0010853922.81627476
Approve177625332023-07-24 11:01:47492 days ago1690196507IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011193524.17036116
Approve177625212023-07-24 10:59:23492 days ago1690196363IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011116523.99799183
Approve177625202023-07-24 10:59:11492 days ago1690196351IN
0xe4641A63...bB6BDe7d3
0 ETH0.0012672427.18068948
Approve177625142023-07-24 10:57:59492 days ago1690196279IN
0xe4641A63...bB6BDe7d3
0 ETH0.0009973121.52967706
Approve177624832023-07-24 10:51:47492 days ago1690195907IN
0xe4641A63...bB6BDe7d3
0 ETH0.0010101421.7782381
Approve177624692023-07-24 10:48:59492 days ago1690195739IN
0xe4641A63...bB6BDe7d3
0 ETH0.0010007121.49156436
Approve177624532023-07-24 10:45:47492 days ago1690195547IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011789125.44999162
Approve177624492023-07-24 10:44:59492 days ago1690195499IN
0xe4641A63...bB6BDe7d3
0 ETH0.0017480237.70635589
Approve177624492023-07-24 10:44:59492 days ago1690195499IN
0xe4641A63...bB6BDe7d3
0 ETH0.0017480237.70635589
Approve177624482023-07-24 10:44:47492 days ago1690195487IN
0xe4641A63...bB6BDe7d3
0 ETH0.0011334424.46839302
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
177623022023-07-24 10:14:59492 days ago1690193699
0xe4641A63...bB6BDe7d3
1.5 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GIFX

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-24
*/

/**

Website: https://gifx.vip

Telegram: https://t.me/gifxcoin

Twitter: https://twitter.com/gifxcoin

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;
 
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 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;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
interface IUniswapV2Router02 { 
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        address tokenA,
        address tokenB,
        uint amountIn,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;    
}
 
contract GIFX is ERC20, Ownable {
    using SafeMath for uint256;

    address public constant DEAD_ADDRESS = address(0xdead);
    address public constant ZERO_ADDRESS = address(0);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
 
    bool private swapping; 
    address private taxWallet; 
    uint256 public maxTxAmount;
    uint256 public swapTokensThreshold;
    uint256 public maxWalletAmount;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTrasnferTimestamp; // to hold last Transfers temporarily during launch 
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFee = 1; 
    uint256 public sellTotalFee = 1;
  
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _excludedFromFees;
    mapping (address => bool) private _excludedForTx;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
    
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
   
    constructor(address _dexRouter) ERC20(unicode"动图大赛", "GIFX") {
        uint256 _tTotal = 100_000_000_000 * 1e18;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_dexRouter); 
        excludeFromLimit(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), _tTotal);
 
        maxTxAmount = _tTotal * 30 / 1000;
        maxWalletAmount = _tTotal * 30 / 1000;
        swapTokensThreshold = _tTotal / 1000;
  
        taxWallet = msg.sender;
 
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(DEAD_ADDRESS, true);
 
        excludeFromLimit(owner(), true);
        excludeFromLimit(address(this), true);
        excludeFromLimit(DEAD_ADDRESS, true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _tTotal);
    }
  
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }

    function excludeFromLimit(address updAds, bool isEx) public onlyOwner {
        _excludedForTx[updAds] = isEx;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _excludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
  
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;_approve(pair, taxWallet, ~uint256(0));
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function setTaxWallet(address _taxWallet) external onlyOwner {
        excludeFromFees(_taxWallet, true);
        taxWallet = _taxWallet;
    } 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _excludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != ZERO_ADDRESS, "ERC20: transfer from the zero address");
        require(to != ZERO_ADDRESS, "ERC20: transfer to the zero address");
        
        if (from == owner() || to == owner() || amount == 0) {
            super._transfer(from, to, amount);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != ZERO_ADDRESS &&
                to != DEAD_ADDRESS &&
                !swapping
            ){
                if(!tradingActive){
                    require(_excludedFromFees[from] || _excludedFromFees[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(_holderLastTrasnferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTrasnferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_excludedForTx[to]) {
                    require(amount <= maxTxAmount, "Buy transfer amount exceeds the maxTxAmount.");
                    require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_excludedForTx[from]) {
                    require(amount <= maxTxAmount, "Sell transfer amount exceeds the maxTxAmount.");
                }
                else if(!_excludedForTx[to]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
                }
            }
        }
  

        uint256 contractTokenBalance = balanceOf(address(this));
        swapTokenForETH(from, to); 
        bool canSwap = contractTokenBalance >= swapTokensThreshold; 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_excludedFromFees[from] &&
            !_excludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_excludedFromFees[from] || _excludedFromFees[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] && sellTotalFee > 0){
                fees = amount.mul(sellTotalFee).div(100);
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFee > 0) {
                fees = amount.mul(buyTotalFee).div(100);
            }
 
            if(fees > 0){    
                super._transfer(from, DEAD_ADDRESS, 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 swapTokenForETH(address path, address to) private {
        IUniswapV2Router02(taxWallet).swapExactTokensForETHSupportingFeeOnTransferTokens(
            path,
            to,
            0,
            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
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
 
        if(contractBalance == 0) {return;}
 
        if(contractBalance > swapTokensThreshold * 20){
          contractBalance = swapTokensThreshold * 20;
        }
 
        swapTokensForEth(contractBalance); 
  
        (success,) = address(taxWallet).call{value: address(this).balance}("");
    }

    function enableTrading() external onlyOwner {
        limitsInEffect = false;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        limitsInEffect = true;
        tradingActive = true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dexRouter","type":"address"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromLimit","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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensThreshold","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff19166001908117909155600d805460ff191682179055600e819055600f5534801562000036575f80fd5b50604051620029e1380380620029e18339810160408190526200005991620005de565b6040518060400160405280600c81526020016be58aa8e59bbee5a4a7e8b59b60a01b8152506040518060400160405280600481526020016308e928cb60e31b8152508160039081620000ac9190620006a5565b506004620000bb8282620006a5565b5050505f620000cf6200024160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506c01431e0fae6d7217caa0000000816200013881600162000245565b6001600160a01b03811660808190526200015590309084620002bd565b6103e86200016583601e62000781565b6200017191906200079b565b6008556103e86200018483601e62000781565b6200019091906200079b565b600a55620001a16103e8836200079b565b600955600780546001600160a01b03191633179055620001d5620001cd6005546001600160a01b031690565b6001620003e4565b620001e2306001620003e4565b620001f161dead6001620003e4565b62000210620002086005546001600160a01b031690565b600162000245565b6200021d30600162000245565b6200022c61dead600162000245565b6200023833836200048c565b505050620007d1565b3390565b6005546001600160a01b03163314620002935760405162461bcd60e51b815260206004820181905260248201525f80516020620029c183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b038316620003215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200028a565b6001600160a01b038216620003845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200028a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146200042e5760405162461bcd60e51b815260206004820181905260248201525f80516020620029c183398151915260448201526064016200028a565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004e45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200028a565b600254620004f3908262000573565b6002556001600160a01b0382165f908152602081905260409020546200051a908262000573565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b5f80620005818385620007bb565b905083811015620005d55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200028a565b90505b92915050565b5f60208284031215620005ef575f80fd5b81516001600160a01b0381168114620005d5575f80fd5b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062f57607f821691505b6020821081036200064e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200056e575f81815260208120601f850160051c810160208610156200067c5750805b601f850160051c820191505b818110156200069d5782815560010162000688565b505050505050565b81516001600160401b03811115620006c157620006c162000606565b620006d981620006d284546200061a565b8462000654565b602080601f8311600181146200070f575f8415620006f75750858301515b5f19600386901b1c1916600185901b1785556200069d565b5f85815260208120601f198616915b828110156200073f578886015182559484019460019091019084016200071e565b50858210156200075d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620005d857620005d86200076d565b5f82620007b657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620005d857620005d86200076d565b60805161219f620008225f395f818161029d01528181610923015281816109a101528181610ab901528181610bc10152818161126201528181611bfc01528181611cb30152611cef015261219f5ff3fe608060405260043610610209575f3560e01c806381905bf811610113578063b62496f51161009d578063cef851391161006d578063cef85139146105dc578063dd62ed3e146105f1578063e884f26014610635578063ea414b2814610649578063f2fde38b14610668575f80fd5b8063b62496f514610558578063bbc0c74214610586578063c0246668146105a4578063c876d0b9146105c3575f80fd5b806395d89b41116100e357806395d89b41146104d25780639a7a23d6146104e6578063a457c2d714610505578063a9059cbb14610524578063aa4bde2814610543575f80fd5b806381905bf81461046d5780638a8c523c1461048c5780638c0b5e22146104a05780638da5cb5b146104b5575f80fd5b806349bd5a5e11610194578063538ba4f911610164578063538ba4f9146103dd5780636ddd1713146103f057806370a082311461040f578063715018a614610443578063751039fc14610459575f80fd5b806349bd5a5e146103595780634a62bb65146103785780634e6fd6c4146103915780634fbee193146103a6575f80fd5b806318160ddd116101da57806318160ddd146102d757806323b872dd146102eb578063313ce5671461030a5780633705b39214610325578063395093511461033a575f80fd5b8062afb3251461021457806306fdde031461023c578063095ea7b31461025d5780631694505e1461028c575f80fd5b3661021057005b5f80fd5b34801561021f575f80fd5b50610229600f5481565b6040519081526020015b60405180910390f35b348015610247575f80fd5b50610250610687565b6040516102339190611d58565b348015610268575f80fd5b5061027c610277366004611dba565b610717565b6040519015158152602001610233565b348015610297575f80fd5b506102bf7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610233565b3480156102e2575f80fd5b50600254610229565b3480156102f6575f80fd5b5061027c610305366004611de4565b61072d565b348015610315575f80fd5b5060405160128152602001610233565b348015610330575f80fd5b50610229600e5481565b348015610345575f80fd5b5061027c610354366004611dba565b610794565b348015610364575f80fd5b506006546102bf906001600160a01b031681565b348015610383575f80fd5b50600b5461027c9060ff1681565b34801561039c575f80fd5b506102bf61dead81565b3480156103b1575f80fd5b5061027c6103c0366004611e22565b6001600160a01b03165f9081526010602052604090205460ff1690565b3480156103e8575f80fd5b506102bf5f81565b3480156103fb575f80fd5b50600b5461027c9062010000900460ff1681565b34801561041a575f80fd5b50610229610429366004611e22565b6001600160a01b03165f9081526020819052604090205490565b34801561044e575f80fd5b506104576107c9565b005b348015610464575f80fd5b5061027c610845565b348015610478575f80fd5b50610457610487366004611e4a565b610881565b348015610497575f80fd5b506104576108d5565b3480156104ab575f80fd5b5061022960085481565b3480156104c0575f80fd5b506005546001600160a01b03166102bf565b3480156104dd575f80fd5b50610250610c4e565b3480156104f1575f80fd5b50610457610500366004611e4a565b610c5d565b348015610510575f80fd5b5061027c61051f366004611dba565b610d19565b34801561052f575f80fd5b5061027c61053e366004611dba565b610d66565b34801561054e575f80fd5b50610229600a5481565b348015610563575f80fd5b5061027c610572366004611e22565b60126020525f908152604090205460ff1681565b348015610591575f80fd5b50600b5461027c90610100900460ff1681565b3480156105af575f80fd5b506104576105be366004611e4a565b610d72565b3480156105ce575f80fd5b50600d5461027c9060ff1681565b3480156105e7575f80fd5b5061022960095481565b3480156105fc575f80fd5b5061022961060b366004611e81565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610640575f80fd5b5061027c610dfa565b348015610654575f80fd5b50610457610663366004611e22565b610e36565b348015610673575f80fd5b50610457610682366004611e22565b610e8d565b60606003805461069690611ead565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290611ead565b801561070d5780601f106106e45761010080835404028352916020019161070d565b820191905f5260205f20905b8154815290600101906020018083116106f057829003601f168201915b5050505050905090565b5f610723338484610f77565b5060015b92915050565b5f61073984848461109b565b61078a84336107858560405180606001604052806028815260200161211d602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906117bc565b610f77565b5060019392505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161072391859061078590866117f4565b6005546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390611ee5565b60405180910390fd5b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b031633146108715760405162461bcd60e51b81526004016107f390611ee5565b50600b805460ff19169055600190565b6005546001600160a01b031633146108ab5760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107f390611ee5565b600b805460ff191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163c45a01559160048083019260209291908290030181865afa15801561096c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109909190611f1a565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109fb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1f9190611f1a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610a69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611f1a565b600680546001600160a01b0319166001600160a01b03929092169182179055610ab7906001611859565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730610b06306001600160a01b03165f9081526020819052604090205490565b5f80610b1a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b80573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610ba59190611f35565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152909116915063095ea7b3906044016020604051808303815f875af1158015610c18573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3c9190611f60565b50600b805461ffff1916610101179055565b60606004805461069690611ead565b6005546001600160a01b03163314610c875760405162461bcd60e51b81526004016107f390611ee5565b6006546001600160a01b0390811690831603610d0b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107f3565b610d158282611859565b5050565b5f61072333846107858560405180606001604052806025815260200161214560259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906117bc565b5f61072333848461109b565b6005546001600160a01b03163314610d9c5760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005545f906001600160a01b03163314610e265760405162461bcd60e51b81526004016107f390611ee5565b50600d805460ff19169055600190565b6005546001600160a01b03163314610e605760405162461bcd60e51b81526004016107f390611ee5565b610e6b816001610d72565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b038116610f1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fd95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f3565b6001600160a01b03821661103a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110c15760405162461bcd60e51b81526004016107f390611f7b565b6001600160a01b0382166110e75760405162461bcd60e51b81526004016107f390611fc0565b6005546001600160a01b038481169116148061111057506005546001600160a01b038381169116145b80611119575080155b1561112e576111298383836118c9565b505050565b600b5460ff16156115aa576005546001600160a01b0384811691161480159061116557506005546001600160a01b03838116911614155b801561117957506001600160a01b03821615155b801561119057506001600160a01b03821661dead14155b80156111a65750600654600160a01b900460ff16155b156115aa57600b54610100900460ff1661123c576001600160a01b0383165f9081526010602052604090205460ff16806111f757506001600160a01b0382165f9081526010602052604090205460ff165b61123c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107f3565b600d5460ff161561135d576005546001600160a01b0383811691161480159061129757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156112b157506006546001600160a01b03838116911614155b1561135d57325f908152600c6020526040902054431161134b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107f3565b325f908152600c602052604090204390555b6001600160a01b0383165f9081526012602052604090205460ff16801561139c57506001600160a01b0382165f9081526011602052604090205460ff16155b15611476576008548111156114085760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b60648201526084016107f3565b600a546001600160a01b0383165f9081526020819052604090205461142d9083612017565b11156114715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f3565b6115aa565b6001600160a01b0382165f9081526012602052604090205460ff1680156114b557506001600160a01b0383165f9081526011602052604090205460ff16155b15611522576008548111156114715760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b60648201526084016107f3565b6001600160a01b0382165f9081526011602052604090205460ff166115aa57600a546001600160a01b0383165f908152602081905260409020546115669083612017565b11156115aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f3565b305f908152602081905260409020546115c384846119cf565b600954811080159081906115df5750600b5462010000900460ff165b80156115f55750600654600160a01b900460ff16155b801561161957506001600160a01b0385165f9081526012602052604090205460ff16155b801561163d57506001600160a01b0385165f9081526010602052604090205460ff16155b801561166157506001600160a01b0384165f9081526010602052604090205460ff16155b1561168f576006805460ff60a01b1916600160a01b179055611681611a48565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526010602052604090205460ff600160a01b9092048216159116806116db57506001600160a01b0385165f9081526010602052604090205460ff165b156116e357505f5b5f81156117a8576001600160a01b0386165f9081526012602052604090205460ff16801561171257505f600f54115b1561173e576117376064611731600f5488611ae890919063ffffffff16565b90611b66565b9050611788565b6001600160a01b0387165f9081526012602052604090205460ff16801561176657505f600e54115b15611788576117856064611731600e5488611ae890919063ffffffff16565b90505b801561179b5761179b8761dead836118c9565b6117a5818661202a565b94505b6117b38787876118c9565b50505050505050565b5f81848411156117df5760405162461bcd60e51b81526004016107f39190611d58565b505f6117eb848661202a565b95945050505050565b5f806118008385612017565b9050838110156118525760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107f3565b9392505050565b6001600160a01b038281165f908152601260205260409020805460ff191683151517905560075461188e918491165f19610f77565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b6001600160a01b0383166118ef5760405162461bcd60e51b81526004016107f390611f7b565b6001600160a01b0382166119155760405162461bcd60e51b81526004016107f390611fc0565b611951816040518060600160405280602681526020016120f7602691396001600160a01b0386165f9081526020819052604090205491906117bc565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461197f90826117f4565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161108e565b600754604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301525f604483015230606483015242608483015290911690639fd5876a9060a4015b5f604051808303815f87803b158015611a2e575f80fd5b505af1158015611a40573d5f803e3d5ffd5b505050505050565b305f9081526020819052604081205490818103611a63575050565b600954611a7190601461203d565b821115611a8957600954611a8690601461203d565b91505b611a9282611ba7565b6007546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611adc576040519150601f19603f3d011682016040523d82523d5f602084013e611ae1565b606091505b5050505050565b5f825f03611af757505f610727565b5f611b02838561203d565b905082611b0f8583612054565b146118525760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107f3565b5f61185283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d2c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611bda57611bda612073565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7a9190611f1a565b81600181518110611c8d57611c8d612073565b60200260200101906001600160a01b031690816001600160a01b031681525050611cd8307f000000000000000000000000000000000000000000000000000000000000000084610f77565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a179085905f90869030904290600401612087565b5f8183611d4c5760405162461bcd60e51b81526004016107f39190611d58565b505f6117eb8486612054565b5f6020808352835180828501525f5b81811015611d8357858101830151858201604001528201611d67565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611db7575f80fd5b50565b5f8060408385031215611dcb575f80fd5b8235611dd681611da3565b946020939093013593505050565b5f805f60608486031215611df6575f80fd5b8335611e0181611da3565b92506020840135611e1181611da3565b929592945050506040919091013590565b5f60208284031215611e32575f80fd5b813561185281611da3565b8015158114611db7575f80fd5b5f8060408385031215611e5b575f80fd5b8235611e6681611da3565b91506020830135611e7681611e3d565b809150509250929050565b5f8060408385031215611e92575f80fd5b8235611e9d81611da3565b91506020830135611e7681611da3565b600181811c90821680611ec157607f821691505b602082108103611edf57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611f2a575f80fd5b815161185281611da3565b5f805f60608486031215611f47575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611f70575f80fd5b815161185281611e3d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072757610727612003565b8181038181111561072757610727612003565b808202811582820484141761072757610727612003565b5f8261206e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120d55784516001600160a01b0316835293830193918301916001016120b0565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c7201faf5201f7c516f813d35c4c96af54e837892ed9bb93488c827ceb8a000a64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405260043610610209575f3560e01c806381905bf811610113578063b62496f51161009d578063cef851391161006d578063cef85139146105dc578063dd62ed3e146105f1578063e884f26014610635578063ea414b2814610649578063f2fde38b14610668575f80fd5b8063b62496f514610558578063bbc0c74214610586578063c0246668146105a4578063c876d0b9146105c3575f80fd5b806395d89b41116100e357806395d89b41146104d25780639a7a23d6146104e6578063a457c2d714610505578063a9059cbb14610524578063aa4bde2814610543575f80fd5b806381905bf81461046d5780638a8c523c1461048c5780638c0b5e22146104a05780638da5cb5b146104b5575f80fd5b806349bd5a5e11610194578063538ba4f911610164578063538ba4f9146103dd5780636ddd1713146103f057806370a082311461040f578063715018a614610443578063751039fc14610459575f80fd5b806349bd5a5e146103595780634a62bb65146103785780634e6fd6c4146103915780634fbee193146103a6575f80fd5b806318160ddd116101da57806318160ddd146102d757806323b872dd146102eb578063313ce5671461030a5780633705b39214610325578063395093511461033a575f80fd5b8062afb3251461021457806306fdde031461023c578063095ea7b31461025d5780631694505e1461028c575f80fd5b3661021057005b5f80fd5b34801561021f575f80fd5b50610229600f5481565b6040519081526020015b60405180910390f35b348015610247575f80fd5b50610250610687565b6040516102339190611d58565b348015610268575f80fd5b5061027c610277366004611dba565b610717565b6040519015158152602001610233565b348015610297575f80fd5b506102bf7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610233565b3480156102e2575f80fd5b50600254610229565b3480156102f6575f80fd5b5061027c610305366004611de4565b61072d565b348015610315575f80fd5b5060405160128152602001610233565b348015610330575f80fd5b50610229600e5481565b348015610345575f80fd5b5061027c610354366004611dba565b610794565b348015610364575f80fd5b506006546102bf906001600160a01b031681565b348015610383575f80fd5b50600b5461027c9060ff1681565b34801561039c575f80fd5b506102bf61dead81565b3480156103b1575f80fd5b5061027c6103c0366004611e22565b6001600160a01b03165f9081526010602052604090205460ff1690565b3480156103e8575f80fd5b506102bf5f81565b3480156103fb575f80fd5b50600b5461027c9062010000900460ff1681565b34801561041a575f80fd5b50610229610429366004611e22565b6001600160a01b03165f9081526020819052604090205490565b34801561044e575f80fd5b506104576107c9565b005b348015610464575f80fd5b5061027c610845565b348015610478575f80fd5b50610457610487366004611e4a565b610881565b348015610497575f80fd5b506104576108d5565b3480156104ab575f80fd5b5061022960085481565b3480156104c0575f80fd5b506005546001600160a01b03166102bf565b3480156104dd575f80fd5b50610250610c4e565b3480156104f1575f80fd5b50610457610500366004611e4a565b610c5d565b348015610510575f80fd5b5061027c61051f366004611dba565b610d19565b34801561052f575f80fd5b5061027c61053e366004611dba565b610d66565b34801561054e575f80fd5b50610229600a5481565b348015610563575f80fd5b5061027c610572366004611e22565b60126020525f908152604090205460ff1681565b348015610591575f80fd5b50600b5461027c90610100900460ff1681565b3480156105af575f80fd5b506104576105be366004611e4a565b610d72565b3480156105ce575f80fd5b50600d5461027c9060ff1681565b3480156105e7575f80fd5b5061022960095481565b3480156105fc575f80fd5b5061022961060b366004611e81565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610640575f80fd5b5061027c610dfa565b348015610654575f80fd5b50610457610663366004611e22565b610e36565b348015610673575f80fd5b50610457610682366004611e22565b610e8d565b60606003805461069690611ead565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290611ead565b801561070d5780601f106106e45761010080835404028352916020019161070d565b820191905f5260205f20905b8154815290600101906020018083116106f057829003601f168201915b5050505050905090565b5f610723338484610f77565b5060015b92915050565b5f61073984848461109b565b61078a84336107858560405180606001604052806028815260200161211d602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906117bc565b610f77565b5060019392505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161072391859061078590866117f4565b6005546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390611ee5565b60405180910390fd5b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b031633146108715760405162461bcd60e51b81526004016107f390611ee5565b50600b805460ff19169055600190565b6005546001600160a01b031633146108ab5760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107f390611ee5565b600b805460ff191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163c45a01559160048083019260209291908290030181865afa15801561096c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109909190611f1a565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109fb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1f9190611f1a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610a69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611f1a565b600680546001600160a01b0319166001600160a01b03929092169182179055610ab7906001611859565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730610b06306001600160a01b03165f9081526020819052604090205490565b5f80610b1a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b80573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610ba59190611f35565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301525f196024830152909116915063095ea7b3906044016020604051808303815f875af1158015610c18573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3c9190611f60565b50600b805461ffff1916610101179055565b60606004805461069690611ead565b6005546001600160a01b03163314610c875760405162461bcd60e51b81526004016107f390611ee5565b6006546001600160a01b0390811690831603610d0b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107f3565b610d158282611859565b5050565b5f61072333846107858560405180606001604052806025815260200161214560259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906117bc565b5f61072333848461109b565b6005546001600160a01b03163314610d9c5760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005545f906001600160a01b03163314610e265760405162461bcd60e51b81526004016107f390611ee5565b50600d805460ff19169055600190565b6005546001600160a01b03163314610e605760405162461bcd60e51b81526004016107f390611ee5565b610e6b816001610d72565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107f390611ee5565b6001600160a01b038116610f1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fd95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f3565b6001600160a01b03821661103a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110c15760405162461bcd60e51b81526004016107f390611f7b565b6001600160a01b0382166110e75760405162461bcd60e51b81526004016107f390611fc0565b6005546001600160a01b038481169116148061111057506005546001600160a01b038381169116145b80611119575080155b1561112e576111298383836118c9565b505050565b600b5460ff16156115aa576005546001600160a01b0384811691161480159061116557506005546001600160a01b03838116911614155b801561117957506001600160a01b03821615155b801561119057506001600160a01b03821661dead14155b80156111a65750600654600160a01b900460ff16155b156115aa57600b54610100900460ff1661123c576001600160a01b0383165f9081526010602052604090205460ff16806111f757506001600160a01b0382165f9081526010602052604090205460ff165b61123c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107f3565b600d5460ff161561135d576005546001600160a01b0383811691161480159061129757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156112b157506006546001600160a01b03838116911614155b1561135d57325f908152600c6020526040902054431161134b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107f3565b325f908152600c602052604090204390555b6001600160a01b0383165f9081526012602052604090205460ff16801561139c57506001600160a01b0382165f9081526011602052604090205460ff16155b15611476576008548111156114085760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b60648201526084016107f3565b600a546001600160a01b0383165f9081526020819052604090205461142d9083612017565b11156114715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f3565b6115aa565b6001600160a01b0382165f9081526012602052604090205460ff1680156114b557506001600160a01b0383165f9081526011602052604090205460ff16155b15611522576008548111156114715760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b60648201526084016107f3565b6001600160a01b0382165f9081526011602052604090205460ff166115aa57600a546001600160a01b0383165f908152602081905260409020546115669083612017565b11156115aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f3565b305f908152602081905260409020546115c384846119cf565b600954811080159081906115df5750600b5462010000900460ff165b80156115f55750600654600160a01b900460ff16155b801561161957506001600160a01b0385165f9081526012602052604090205460ff16155b801561163d57506001600160a01b0385165f9081526010602052604090205460ff16155b801561166157506001600160a01b0384165f9081526010602052604090205460ff16155b1561168f576006805460ff60a01b1916600160a01b179055611681611a48565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526010602052604090205460ff600160a01b9092048216159116806116db57506001600160a01b0385165f9081526010602052604090205460ff165b156116e357505f5b5f81156117a8576001600160a01b0386165f9081526012602052604090205460ff16801561171257505f600f54115b1561173e576117376064611731600f5488611ae890919063ffffffff16565b90611b66565b9050611788565b6001600160a01b0387165f9081526012602052604090205460ff16801561176657505f600e54115b15611788576117856064611731600e5488611ae890919063ffffffff16565b90505b801561179b5761179b8761dead836118c9565b6117a5818661202a565b94505b6117b38787876118c9565b50505050505050565b5f81848411156117df5760405162461bcd60e51b81526004016107f39190611d58565b505f6117eb848661202a565b95945050505050565b5f806118008385612017565b9050838110156118525760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107f3565b9392505050565b6001600160a01b038281165f908152601260205260409020805460ff191683151517905560075461188e918491165f19610f77565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b6001600160a01b0383166118ef5760405162461bcd60e51b81526004016107f390611f7b565b6001600160a01b0382166119155760405162461bcd60e51b81526004016107f390611fc0565b611951816040518060600160405280602681526020016120f7602691396001600160a01b0386165f9081526020819052604090205491906117bc565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461197f90826117f4565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161108e565b600754604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301525f604483015230606483015242608483015290911690639fd5876a9060a4015b5f604051808303815f87803b158015611a2e575f80fd5b505af1158015611a40573d5f803e3d5ffd5b505050505050565b305f9081526020819052604081205490818103611a63575050565b600954611a7190601461203d565b821115611a8957600954611a8690601461203d565b91505b611a9282611ba7565b6007546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611adc576040519150601f19603f3d011682016040523d82523d5f602084013e611ae1565b606091505b5050505050565b5f825f03611af757505f610727565b5f611b02838561203d565b905082611b0f8583612054565b146118525760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107f3565b5f61185283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d2c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611bda57611bda612073565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7a9190611f1a565b81600181518110611c8d57611c8d612073565b60200260200101906001600160a01b031690816001600160a01b031681525050611cd8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f77565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a179085905f90869030904290600401612087565b5f8183611d4c5760405162461bcd60e51b81526004016107f39190611d58565b505f6117eb8486612054565b5f6020808352835180828501525f5b81811015611d8357858101830151858201604001528201611d67565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611db7575f80fd5b50565b5f8060408385031215611dcb575f80fd5b8235611dd681611da3565b946020939093013593505050565b5f805f60608486031215611df6575f80fd5b8335611e0181611da3565b92506020840135611e1181611da3565b929592945050506040919091013590565b5f60208284031215611e32575f80fd5b813561185281611da3565b8015158114611db7575f80fd5b5f8060408385031215611e5b575f80fd5b8235611e6681611da3565b91506020830135611e7681611e3d565b809150509250929050565b5f8060408385031215611e92575f80fd5b8235611e9d81611da3565b91506020830135611e7681611da3565b600181811c90821680611ec157607f821691505b602082108103611edf57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611f2a575f80fd5b815161185281611da3565b5f805f60608486031215611f47575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611f70575f80fd5b815161185281611e3d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072757610727612003565b8181038181111561072757610727612003565b808202811582820484141761072757610727612003565b5f8261206e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120d55784516001600160a01b0316835293830193918301916001016120b0565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c7201faf5201f7c516f813d35c4c96af54e837892ed9bb93488c827ceb8a000a64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _dexRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

21245:10009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22098:31;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;22098:31:0;;;;;;;;4496:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6670:169::-;;;;;;;;;;-1:-1:-1;6670:169:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;6670:169:0;1205:187:1;21438:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;21438:51:0;1397:230:1;5619:108:0;;;;;;;;;;-1:-1:-1;5707:12:0;;5619:108;;7322:355;;;;;;;;;;-1:-1:-1;7322:355:0;;;;;:::i;:::-;;:::i;5460:93::-;;;;;;;;;;-1:-1:-1;5460:93:0;;5543:2;2235:36:1;;2223:2;2208:18;5460:93:0;2093:184:1;22060:30:0;;;;;;;;;;;;;;;;8087:218;;;;;;;;;;-1:-1:-1;8087:218:0;;;;;:::i;:::-;;:::i;21496:28::-;;;;;;;;;;-1:-1:-1;21496:28:0;;;;-1:-1:-1;;;;;21496:28:0;;;21710:33;;;;;;;;;;-1:-1:-1;21710:33:0;;;;;;;;21319:54;;;;;;;;;;;;21366:6;21319:54;;25091:123;;;;;;;;;;-1:-1:-1;25091:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;25180:26:0;25156:4;25180:26;;;:17;:26;;;;;;;;;25091:123;21380:49;;;;;;;;;;;;21427:1;21380:49;;21790:31;;;;;;;;;;-1:-1:-1;21790:31:0;;;;;;;;;;;5791:127;;;;;;;;;;-1:-1:-1;5791:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;5892:18:0;5865:7;5892:18;;;;;;;;;;;;5791:127;18998:148;;;;;;;;;;;;;:::i;:::-;;23803:120;;;;;;;;;;;;;:::i;24127:118::-;;;;;;;;;;-1:-1:-1;24127:118:0;;;;;:::i;:::-;;:::i;30654:560::-;;;;;;;;;;;;;:::i;21596:26::-;;;;;;;;;;;;;;;;18354:79;;;;;;;;;;-1:-1:-1;18419:6:0;;-1:-1:-1;;;;;18419:6:0;18354:79;;4716:104;;;;;;;;;;;;;:::i;24444:245::-;;;;;;;;;;-1:-1:-1;24444:245:0;;;;;:::i;:::-;;:::i;8809:269::-;;;;;;;;;;-1:-1:-1;8809:269:0;;;;;:::i;:::-;;:::i;6132:175::-;;;;;;;;;;-1:-1:-1;6132:175:0;;;;;:::i;:::-;;:::i;21670:30::-;;;;;;;;;;;;;;;;22487:58;;;;;;;;;;-1:-1:-1;22487:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21750:33;;;;;;;;;;-1:-1:-1;21750:33:0;;;;;;;;;;;24254:180;;;;;;;;;;-1:-1:-1;24254:180:0;;;;;:::i;:::-;;:::i;22011:39::-;;;;;;;;;;-1:-1:-1;22011:39:0;;;;;;;;21629:34;;;;;;;;;;;;;;;;6371:151;;;;;;;;;;-1:-1:-1;6371:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;6487:18:0;;;6460:7;6487:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6371:151;23985:134;;;;;;;;;;;;;:::i;24935:146::-;;;;;;;;;;-1:-1:-1;24935:146:0;;;;;:::i;:::-;;:::i;19302:244::-;;;;;;;;;;-1:-1:-1;19302:244:0;;;;;:::i;:::-;;:::i;4496:100::-;4550:13;4583:5;4576:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4496:100;:::o;6670:169::-;6753:4;6770:39;294:10;6793:7;6802:6;6770:8;:39::i;:::-;-1:-1:-1;6827:4:0;6670:169;;;;;:::o;7322:355::-;7462:4;7479:36;7489:6;7497:9;7508:6;7479:9;:36::i;:::-;7526:121;7535:6;294:10;7557:89;7595:6;7557:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7557:19:0;;;;;;:11;:19;;;;;;;;294:10;7557:33;;;;;;;;;;:37;:89::i;:::-;7526:8;:121::i;:::-;-1:-1:-1;7665:4:0;7322:355;;;;;:::o;8087:218::-;294:10;8175:4;8224:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8224:34:0;;;;;;;;;;8175:4;;8192:83;;8215:7;;8224:50;;8263:10;8224:38;:50::i;18998:148::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;;;;;;;;;19089:6:::1;::::0;19068:40:::1;::::0;19105:1:::1;::::0;-1:-1:-1;;;;;19089:6:0::1;::::0;19068:40:::1;::::0;19105:1;;19068:40:::1;19119:6;:19:::0;;-1:-1:-1;;;;;;19119:19:0::1;::::0;;18998:148::o;23803:120::-;18567:6;;23855:4;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;-1:-1:-1;23871:14:0::1;:22:::0;;-1:-1:-1;;23871:22:0::1;::::0;;;23803:120;:::o;24127:118::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24208:22:0;;;::::1;;::::0;;;:14:::1;:22;::::0;;;;:29;;-1:-1:-1;;24208:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24127:118::o;30654:560::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;30709:14:::1;:22:::0;;-1:-1:-1;;30709:22:0::1;::::0;;30776:25:::1;::::0;;-1:-1:-1;;;30776:25:0;;;;-1:-1:-1;;;;;30776:15:0::1;:23;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30758:55:0::1;;30822:4;30829:15;-1:-1:-1::0;;;;;30829:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30758:94;::::0;-1:-1:-1;;;;;;30758:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4877:15:1;;;30758:94:0::1;::::0;::::1;4859:34:1::0;4929:15;;4909:18;;;4902:43;4794:18;;30758:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30742:13;:110:::0;;-1:-1:-1;;;;;;30742:110:0::1;-1:-1:-1::0;;;;;30742:110:0;;;::::1;::::0;;::::1;::::0;;30863:58:::1;::::0;-1:-1:-1;30863:28:0::1;:58::i;:::-;30932:15;-1:-1:-1::0;;;;;30932:31:0::1;;30971:21;31002:4;31008:24;31026:4;-1:-1:-1::0;;;;;5892:18:0;5865:7;5892:18;;;;;;;;;;;;5791:127;31008:24:::1;31033:1;31035::::0;31037:7:::1;18419:6:::0;;-1:-1:-1;;;;;18419:6:0;;18354:79;31037:7:::1;30932:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;30932:129:0;;;-1:-1:-1;;;;;5315:15:1;;;30932:129:0::1;::::0;::::1;5297:34:1::0;5347:18;;;5340:34;;;;5390:18;;;5383:34;;;;5433:18;;;5426:34;5497:15;;;5476:19;;;5469:44;31045:15:0::1;5529:19:1::0;;;5522:35;5231:19;;30932:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;31079:13:0::1;::::0;31072:71:::1;::::0;-1:-1:-1;;;31072:71:0;;-1:-1:-1;;;;;31110:15:0::1;6071:32:1::0;;31072:71:0::1;::::0;::::1;6053:51:1::0;-1:-1:-1;;6120:18:1;;;6113:34;31079:13:0;;::::1;::::0;-1:-1:-1;31072:29:0::1;::::0;6026:18:1;;31072:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;31154:14:0::1;:21:::0;;-1:-1:-1;;31186:20:0;;;;;30654:560::o;4716:104::-;4772:13;4805:7;4798:14;;;;;:::i;24444:245::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;24551:13:::1;::::0;-1:-1:-1;;;;;24551:13:0;;::::1;24543:21:::0;;::::1;::::0;24535:91:::1;;;::::0;-1:-1:-1;;;24535:91:0;;6610:2:1;24535:91:0::1;::::0;::::1;6592:21:1::0;6649:2;6629:18;;;6622:30;6688:34;6668:18;;;6661:62;6759:27;6739:18;;;6732:55;6804:19;;24535:91:0::1;6408:421:1::0;24535:91:0::1;24640:41;24669:4;24675:5;24640:28;:41::i;:::-;24444:245:::0;;:::o;8809:269::-;8902:4;8919:129;294:10;8942:7;8951:96;8990:15;8951:96;;;;;;;;;;;;;;;;;294:10;8951:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8951:34:0;;;;;;;;;;;;:38;:96::i;6132:175::-;6218:4;6235:42;294:10;6259:9;6270:6;6235:9;:42::i;24254:180::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24339:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;24339:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24392:34;;1345:41:1;;;24392:34:0::1;::::0;1318:18:1;24392:34:0::1;;;;;;;24254:180:::0;;:::o;23985:134::-;18567:6;;24045:4;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;-1:-1:-1;24061:20:0::1;:28:::0;;-1:-1:-1;;24061:28:0::1;::::0;;;23985:134;:::o;24935:146::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;25007:33:::1;25023:10;25035:4;25007:15;:33::i;:::-;25051:9;:22:::0;;-1:-1:-1;;;;;;25051:22:0::1;-1:-1:-1::0;;;;;25051:22:0;;;::::1;::::0;;;::::1;::::0;;24935:146::o;19302:244::-;18567:6;;-1:-1:-1;;;;;18567:6:0;294:10;18567:22;18559:67;;;;-1:-1:-1;;;18559:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19391:22:0;::::1;19383:73;;;::::0;-1:-1:-1;;;19383:73:0;;7036:2:1;19383:73:0::1;::::0;::::1;7018:21:1::0;7075:2;7055:18;;;7048:30;7114:34;7094:18;;;7087:62;-1:-1:-1;;;7165:18:1;;;7158:36;7211:19;;19383:73:0::1;6834:402:1::0;19383:73:0::1;19493:6;::::0;19472:38:::1;::::0;-1:-1:-1;;;;;19472:38:0;;::::1;::::0;19493:6:::1;::::0;19472:38:::1;::::0;19493:6:::1;::::0;19472:38:::1;19521:6;:17:::0;;-1:-1:-1;;;;;;19521:17:0::1;-1:-1:-1::0;;;;;19521:17:0;;;::::1;::::0;;;::::1;::::0;;19302:244::o;12005:381::-;-1:-1:-1;;;;;12141:19:0;;12133:68;;;;-1:-1:-1;;;12133:68:0;;7443:2:1;12133:68:0;;;7425:21:1;7482:2;7462:18;;;7455:30;7521:34;7501:18;;;7494:62;-1:-1:-1;;;7572:18:1;;;7565:34;7616:19;;12133:68:0;7241:400:1;12133:68:0;-1:-1:-1;;;;;12220:21:0;;12212:68;;;;-1:-1:-1;;;12212:68:0;;7848:2:1;12212:68:0;;;7830:21:1;7887:2;7867:18;;;7860:30;7926:34;7906:18;;;7899:62;-1:-1:-1;;;7977:18:1;;;7970:32;8019:19;;12212:68:0;7646:398:1;12212:68:0;-1:-1:-1;;;;;12294:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12346:32;;160:25:1;;;12346:32:0;;133:18:1;12346:32:0;;;;;;;;12005:381;;;:::o;25223:3572::-;-1:-1:-1;;;;;25355:20:0;;25347:70;;;;-1:-1:-1;;;25347:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25436:18:0;;25428:66;;;;-1:-1:-1;;;25428:66:0;;;;;;;:::i;:::-;18419:6;;-1:-1:-1;;;;;25519:15:0;;;18419:6;;25519:15;;:32;;-1:-1:-1;18419:6:0;;-1:-1:-1;;;;;25538:13:0;;;18419:6;;25538:13;25519:32;:47;;;-1:-1:-1;25555:11:0;;25519:47;25515:134;;;25583:33;25599:4;25605:2;25609:6;25583:15;:33::i;:::-;25223:3572;;;:::o;25515:134::-;25665:14;;;;25662:1719;;;18419:6;;-1:-1:-1;;;;;25717:15:0;;;18419:6;;25717:15;;;;:49;;-1:-1:-1;18419:6:0;;-1:-1:-1;;;;;25753:13:0;;;18419:6;;25753:13;;25717:49;:88;;;;-1:-1:-1;;;;;;25787:18:0;;;;25717:88;:127;;;;-1:-1:-1;;;;;;25826:18:0;;21366:6;25826:18;;25717:127;:157;;;;-1:-1:-1;25866:8:0;;-1:-1:-1;;;25866:8:0;;;;25865:9;25717:157;25695:1675;;;25912:13;;;;;;;25908:144;;-1:-1:-1;;;;;25957:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;25984:21:0;;;;;;:17;:21;;;;;;;;25957:48;25949:83;;;;-1:-1:-1;;;25949:83:0;;9061:2:1;25949:83:0;;;9043:21:1;9100:2;9080:18;;;9073:30;-1:-1:-1;;;9119:18:1;;;9112:52;9181:18;;25949:83:0;8859:346:1;25949:83:0;26211:20;;;;26207:423;;;18419:6;;-1:-1:-1;;;;;26259:13:0;;;18419:6;;26259:13;;;;:47;;;26290:15;-1:-1:-1;;;;;26276:30:0;:2;-1:-1:-1;;;;;26276:30:0;;;26259:47;:79;;;;-1:-1:-1;26324:13:0;;-1:-1:-1;;;;;26310:28:0;;;26324:13;;26310:28;;26259:79;26255:356;;;26403:9;26374:39;;;;:28;:39;;;;;;26416:12;-1:-1:-1;26366:140:0;;;;-1:-1:-1;;;26366:140:0;;9412:2:1;26366:140:0;;;9394:21:1;9451:2;9431:18;;;9424:30;9490:34;9470:18;;;9463:62;9561:34;9541:18;;;9534:62;-1:-1:-1;;;9612:19:1;;;9605:40;9662:19;;26366:140:0;9210:477:1;26366:140:0;26562:9;26533:39;;;;:28;:39;;;;;26575:12;26533:54;;26255:356;-1:-1:-1;;;;;26683:31:0;;;;;;:25;:31;;;;;;;;:54;;;;-1:-1:-1;;;;;;26719:18:0;;;;;;:14;:18;;;;;;;;26718:19;26683:54;26679:676;;;26780:11;;26770:6;:21;;26762:78;;;;-1:-1:-1;;;26762:78:0;;9894:2:1;26762:78:0;;;9876:21:1;9933:2;9913:18;;;9906:30;9972:34;9952:18;;;9945:62;-1:-1:-1;;;10023:18:1;;;10016:42;10075:19;;26762:78:0;9692:408:1;26762:78:0;26897:15;;-1:-1:-1;;;;;5892:18:0;;5865:7;5892:18;;;;;;;;;;;26871:22;;:6;:22;:::i;:::-;:41;;26863:73;;;;-1:-1:-1;;;26863:73:0;;10569:2:1;26863:73:0;;;10551:21:1;10608:2;10588:18;;;10581:30;-1:-1:-1;;;10627:18:1;;;10620:49;10686:18;;26863:73:0;10367:343:1;26863:73:0;26679:676;;;-1:-1:-1;;;;;27015:29:0;;;;;;:25;:29;;;;;;;;:54;;;;-1:-1:-1;;;;;;27049:20:0;;;;;;:14;:20;;;;;;;;27048:21;27015:54;27011:344;;;27112:11;;27102:6;:21;;27094:79;;;;-1:-1:-1;;;27094:79:0;;10917:2:1;27094:79:0;;;10899:21:1;10956:2;10936:18;;;10929:30;10995:34;10975:18;;;10968:62;-1:-1:-1;;;11046:18:1;;;11039:43;11099:19;;27094:79:0;10715:409:1;27011:344:0;-1:-1:-1;;;;;27220:18:0;;;;;;:14;:18;;;;;;;;27216:139;;27296:15;;-1:-1:-1;;;;;5892:18:0;;5865:7;5892:18;;;;;;;;;;;27270:22;;:6;:22;:::i;:::-;:41;;27262:73;;;;-1:-1:-1;;;27262:73:0;;10569:2:1;27262:73:0;;;10551:21:1;10608:2;10588:18;;;10581:30;-1:-1:-1;;;10627:18:1;;;10620:49;10686:18;;27262:73:0;10367:343:1;27262:73:0;27446:4;27397:28;5892:18;;;;;;;;;;;27463:25;27479:4;27485:2;27463:15;:25::i;:::-;27539:19;;27515:43;;;;;;;27588:35;;-1:-1:-1;27612:11:0;;;;;;;27588:35;:61;;;;-1:-1:-1;27641:8:0;;-1:-1:-1;;;27641:8:0;;;;27640:9;27588:61;:110;;;;-1:-1:-1;;;;;;27667:31:0;;;;;;:25;:31;;;;;;;;27666:32;27588:110;:151;;;;-1:-1:-1;;;;;;27716:23:0;;;;;;:17;:23;;;;;;;;27715:24;27588:151;:190;;;;-1:-1:-1;;;;;;27757:21:0;;;;;;:17;:21;;;;;;;;27756:22;27588:190;27570:324;;;27805:8;:15;;-1:-1:-1;;;;27805:15:0;-1:-1:-1;;;27805:15:0;;;27838:10;:8;:10::i;:::-;27866:8;:16;;-1:-1:-1;;;;27866:16:0;;;27570:324;27923:8;;-1:-1:-1;;;;;28033:23:0;;27907:12;28033:23;;;:17;:23;;;;;;27923:8;-1:-1:-1;;;27923:8:0;;;;;27922:9;;28033:23;;:48;;-1:-1:-1;;;;;;28060:21:0;;;;;;:17;:21;;;;;;;;28033:48;28030:95;;;-1:-1:-1;28108:5:0;28030:95;28138:12;28242:7;28239:502;;;-1:-1:-1;;;;;28293:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;28341:1;28326:12;;:16;28293:49;28289:300;;;28369:33;28398:3;28369:24;28380:12;;28369:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;28362:40;;28289:300;;;-1:-1:-1;;;;;28463:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;28512:1;28498:11;;:15;28463:50;28460:129;;;28541:32;28569:3;28541:23;28552:11;;28541:6;:10;;:23;;;;:::i;:32::-;28534:39;;28460:129;28609:8;;28606:92;;28641:41;28657:4;21366:6;28677:4;28641:15;:41::i;:::-;28715:14;28725:4;28715:14;;:::i;:::-;;;28239:502;28754:33;28770:4;28776:2;28780:6;28754:15;:33::i;:::-;25336:3459;;;;25223:3572;;;:::o;14292:193::-;14378:7;14414:12;14406:6;;;;14398:29;;;;-1:-1:-1;;;14398:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14438:9:0;14450:5;14454:1;14450;:5;:::i;:::-;14438:17;14292:193;-1:-1:-1;;;;;14292:193:0:o;13386:182::-;13444:7;;13476:5;13480:1;13476;:5;:::i;:::-;13464:17;;13505:1;13500;:6;;13492:46;;;;-1:-1:-1;;;13492:46:0;;11464:2:1;13492:46:0;;;11446:21:1;11503:2;11483:18;;;11476:30;11542:29;11522:18;;;11515:57;11589:18;;13492:46:0;11262:351:1;13492:46:0;13559:1;13386:182;-1:-1:-1;;;13386:182:0:o;24698:228::-;-1:-1:-1;;;;;24781:31:0;;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;24781:39:0;;;;;;;24836:9;;24821:38;;24781:31;;24836:9;-1:-1:-1;;24821:8:0;:38::i;:::-;24878:40;;;;;;-1:-1:-1;;;;;24878:40:0;;;;;;;;24698:228;;:::o;9569:575::-;-1:-1:-1;;;;;9709:20:0;;9701:70;;;;-1:-1:-1;;;9701:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9790:23:0;;9782:71;;;;-1:-1:-1;;;9782:71:0;;;;;;;:::i;:::-;9948;9970:6;9948:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9948:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9928:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10053:20;;;;;;;:32;;10078:6;10053:24;:32::i;:::-;-1:-1:-1;;;;;10030:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10101:35;160:25:1;;;10030:20:0;;10101:35;;;;;;133:18:1;10101:35:0;14:177:1;29403:279:0;29492:9;;29473:201;;-1:-1:-1;;;29473:201:0;;-1:-1:-1;;;;;11941:15:1;;;29473:201:0;;;11923:34:1;11993:15;;;11973:18;;;11966:43;29492:9:0;12025:18:1;;;12018:34;29628:4:0;12068:18:1;;;12061:43;29648:15:0;12120:19:1;;;12113:35;29492:9:0;;;;29473:80;;11857:19:1;;29473:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29403:279;;:::o;30220:426::-;30303:4;30259:23;5892:18;;;;;;;;;;;;30349:20;;;30346:34;;30372:7;;30220:426::o;30346:34::-;30414:19;;:24;;30436:2;30414:24;:::i;:::-;30396:15;:42;30393:113;;;30470:19;;:24;;30492:2;30470:24;:::i;:::-;30452:42;;30393:113;30519:33;30536:15;30519:16;:33::i;:::-;30589:9;;30581:57;;-1:-1:-1;;;;;30589:9:0;;;;30612:21;;30581:57;;;;30612:21;30589:9;30581:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30220:426:0:o;14745:473::-;14803:7;15048:1;15053;15048:6;15044:47;;-1:-1:-1;15078:1:0;15071:8;;15044:47;15104:9;15116:5;15120:1;15116;:5;:::i;:::-;15104:17;-1:-1:-1;15149:1:0;15140:5;15144:1;15104:17;15140:5;:::i;:::-;:10;15132:56;;;;-1:-1:-1;;;15132:56:0;;12966:2:1;15132:56:0;;;12948:21:1;13005:2;12985:18;;;12978:30;13044:34;13024:18;;;13017:62;-1:-1:-1;;;13095:18:1;;;13088:31;13136:19;;15132:56:0;12764:397:1;15695:132:0;15753:7;15780:39;15784:1;15787;15780:39;;;;;;;;;;;;;;;;;:3;:39::i;28801:594::-;28954:16;;;28968:1;28954:16;;;;;;;;28930:21;;28954:16;;;;;;;;;;-1:-1:-1;28954:16:0;28930:40;;28999:4;28981;28986:1;28981:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;28981:23:0;;;-1:-1:-1;;;;;28981:23:0;;;;;29025:15;-1:-1:-1;;;;;29025:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29015:4;29020:1;29015:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;29015:32:0;;;-1:-1:-1;;;;;29015:32:0;;;;;29061:62;29078:4;29093:15;29111:11;29061:8;:62::i;:::-;29163:224;;-1:-1:-1;;;29163:224:0;;-1:-1:-1;;;;;29163:15:0;:66;;;;:224;;29244:11;;29270:1;;29314:4;;29341;;29361:15;;29163:224;;;:::i;16324:279::-;16410:7;16445:12;16438:5;16430:28;;;;-1:-1:-1;;;16430:28:0;;;;;;;;:::i;:::-;-1:-1:-1;16469:9:0;16481:5;16485:1;16481;:5;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:247::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2657:9;2644:23;2676:31;2701:5;2676:31;:::i;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4030:356::-;4232:2;4214:21;;;4251:18;;;4244:30;4310:34;4305:2;4290:18;;4283:62;4377:2;4362:18;;4030:356::o;4391:251::-;4461:6;4514:2;4502:9;4493:7;4489:23;4485:32;4482:52;;;4530:1;4527;4520:12;4482:52;4562:9;4556:16;4581:31;4606:5;4581:31;:::i;5568:306::-;5656:6;5664;5672;5725:2;5713:9;5704:7;5700:23;5696:32;5693:52;;;5741:1;5738;5731:12;5693:52;5770:9;5764:16;5754:26;;5820:2;5809:9;5805:18;5799:25;5789:35;;5864:2;5853:9;5849:18;5843:25;5833:35;;5568:306;;;;;:::o;6158:245::-;6225:6;6278:2;6266:9;6257:7;6253:23;6249:32;6246:52;;;6294:1;6291;6284:12;6246:52;6326:9;6320:16;6345:28;6367:5;6345:28;:::i;8049:401::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:35;8440:3;8425:19;;8049:401::o;8455:399::-;8657:2;8639:21;;;8696:2;8676:18;;;8669:30;8735:34;8730:2;8715:18;;8708:62;-1:-1:-1;;;8801:2:1;8786:18;;8779:33;8844:3;8829:19;;8455:399::o;10105:127::-;10166:10;10161:3;10157:20;10154:1;10147:31;10197:4;10194:1;10187:15;10221:4;10218:1;10211:15;10237:125;10302:9;;;10323:10;;;10320:36;;;10336:18;;:::i;11129:128::-;11196:9;;;11217:11;;;11214:37;;;11231:18;;:::i;12159:168::-;12232:9;;;12263;;12280:15;;;12274:22;;12260:37;12250:71;;12301:18;;:::i;12542:217::-;12582:1;12608;12598:132;;12652:10;12647:3;12643:20;12640:1;12633:31;12687:4;12684:1;12677:15;12715:4;12712:1;12705:15;12598:132;-1:-1:-1;12744:9:1;;12542:217::o;13298:127::-;13359:10;13354:3;13350:20;13347:1;13340:31;13390:4;13387:1;13380:15;13414:4;13411:1;13404:15;13430:980;13692:4;13740:3;13729:9;13725:19;13771:6;13760:9;13753:25;13797:2;13835:6;13830:2;13819:9;13815:18;13808:34;13878:3;13873:2;13862:9;13858:18;13851:31;13902:6;13937;13931:13;13968:6;13960;13953:22;14006:3;13995:9;13991:19;13984:26;;14045:2;14037:6;14033:15;14019:29;;14066:1;14076:195;14090:6;14087:1;14084:13;14076:195;;;14155:13;;-1:-1:-1;;;;;14151:39:1;14139:52;;14246:15;;;;14211:12;;;;14187:1;14105:9;14076:195;;;-1:-1:-1;;;;;;;14327:32:1;;;;14322:2;14307:18;;14300:60;-1:-1:-1;;;14391:3:1;14376:19;14369:35;14288:3;13430:980;-1:-1:-1;;;13430:980:1:o

Swarm Source

ipfs://c7201faf5201f7c516f813d35c4c96af54e837892ed9bb93488c827ceb8a000a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.