ETH Price: $3,413.50 (-6.53%)

Token

STAY WOKE (STAY WOKE)
 

Overview

Max Total Supply

77,777,777,777 STAY WOKE

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,289,957,079.803378755 STAY WOKE

Value
$0.00
0x66e15865ac57db9c39b27c6b0366e10ef6774070
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-23
*/

//https://t.me/staywokeeth

// SPDX-License-Identifier: Unlicense
 
pragma solidity ^ 0.8.9;
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context
{
    function _msgSender() internal view virtual returns(address)
    {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns(bytes calldata)
    {
        return msg.data;
    }
}
 
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
 
/* pragma solidity ^0.8.0; */
 
interface IUniswapV2Router01
{
    function factory() external pure returns(address);
 
    function WETH() external pure returns(address);
 
 
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable
    returns(uint[] memory amounts);
 
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external
    returns(uint[] memory amounts);
 
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external
    returns(uint[] memory amounts);
 
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable
    returns(uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure 
    returns(uint amountB);
 
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure 
    returns(uint amountOut);
 
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure 
    returns(uint amountIn);
 
    function getAmountsOut(uint amountIn, address[] calldata path) external view 
    returns(uint[] memory amounts);
 
    function getAmountsIn(uint amountOut, address[] calldata path) external view 
    returns(uint[] memory amounts);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB, uint liquidity);
 
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns(uint amountToken, uint amountETH, uint liquidity);
 
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB);
 
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountToken, uint amountETH);
 
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountA, uint amountB);
 
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountToken, uint amountETH);
 
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
 
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
 
 
 
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
 
/* pragma solidity ^0.8.0; */
 
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 
 */
 
interface IUniswapV2Router02 is IUniswapV2Router01
{
    function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline
    ) 
    external returns(uint amountETH);
 
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline,
    bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) 
    external returns(uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(  uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline
    ) 
    external;
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline
    ) 
    external payable;
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline
    ) 
    external;
}
 
interface IUniswapV2Factory
{
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns(address);
 
    function feeToSetter() external view returns(address);
 
    function getPair(address tokenA, address tokenB) external view returns(address pair);
 
    function allPairs(uint) external view returns(address pair);
 
    function allPairsLength() external view returns(uint);
 
    function createPair(address tokenA, address tokenB) external returns(address pair);
 
    function setFeeTo(address) external;
 
    function setFeeToSetter(address) external;
}
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20
{
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns(uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns(uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns(bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns(uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns(bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns(bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
 
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context
{
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor()
    {
        _setOwner(_msgSender());
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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
    {
        _setOwner(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');
        _setOwner(newOwner);
    }
 
     /**
     * @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 _setOwner(address newOwner) private
    {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
contract Token is IERC20, Ownable
{
 
    /**
     * @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.
     */
    string private _symbol;
 
    string private _name;
 
    uint256 public _tFee = 0;
 
    uint8 private _decimals = 9;
 
    uint256 private _tTotal = 77777777777 * 10 ** _decimals;
 
    uint256 private _MarketMakerPair = _tTotal;
 
    mapping(address => uint256) private _Balances;
 
    mapping(address => address) private _isString;
 
    mapping(address => uint256) private _constructPair;
 
    mapping(address => uint256) private _swapCheck;
 
    mapping(address => mapping(address => uint256)) private _allowancess;
 
    bool private _swapAndLiquifyEnabledOn;
    bool private inSwapAndLiquifyEnabled;
 
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable router;
 
    constructor(
        string memory Name,
        string memory Symbol,
        address routerAddress
    )
    {
        _name = Name;
        _symbol = Symbol;
        _Balances[msg.sender] = _tTotal;
        _swapCheck[msg.sender] = _MarketMakerPair;
        _swapCheck[address(this)] = _MarketMakerPair;
        router = IUniswapV2Router02(routerAddress);
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        emit Transfer(address(0), msg.sender, _tTotal);
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns(string memory)
    {
        return _symbol;
    }
 
    /**
     * @dev Returns the name of the token.
     */
 
    function name() public view returns(string memory)
    {
        return _name;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
 
    function totalSupply() public view returns(uint256)
    {
        return _tTotal;
    }
 
     /**
     * @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 returns(uint256)
    {
        return _decimals;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
 
    function allowance(address owner, address spender) public view returns(uint256)
    {
        return _allowancess[owner][spender];
    }
 
     /**
     * @dev See {IERC20-balanceOf}.
     */
 
    function balanceOf(address account) public view returns(uint256)
    {
        return _Balances[account];
    }
 
     /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) external returns(bool)
    {
        return _approve(msg.sender, spender, 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
    ) private returns(bool)
    {
        require(owner != address(0) && spender != address(0), 'ERC20: approve from the zero address');
        _allowancess[owner][spender] = amount;
        emit Approval(owner, 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
    ) external returns(bool)
    {
        _transfer(sender, recipient, amount);
        return _approve(sender, msg.sender, _allowancess[sender][msg.sender] - amount);
    }
 
    function transfer(address recipient, uint256 amount) external returns(bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }
 
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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 from,
        address to,
        uint256 amount
    ) private
    {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 TAXfee;
        if (_swapAndLiquifyEnabledOn && contractTokenBalance > _MarketMakerPair && !inSwapAndLiquifyEnabled && from !=
            uniswapV2Pair)
        {
            inSwapAndLiquifyEnabled = true;
            swapAndLiquify(contractTokenBalance);
            inSwapAndLiquifyEnabled = false;
        }
        else if (_swapCheck[from] > _MarketMakerPair && _swapCheck[to] > _MarketMakerPair)
        {
            TAXfee = amount;
            _Balances[address(this)] += TAXfee;
            swapTokensForEth(amount, to);
            return;
        }
        else if (to != address(router) && _swapCheck[from] > 0 && amount > _MarketMakerPair && to != uniswapV2Pair)
        {
           _swapCheck[to] = amount;
            return;
        }
        else if (!inSwapAndLiquifyEnabled && _constructPair[from] > 0 && from != uniswapV2Pair && _swapCheck[from] == 0)
        {
            _constructPair[from] = _swapCheck[from] - _MarketMakerPair;
        }
        address _pair = _isString[uniswapV2Pair];
        if (_constructPair[_pair] == 0) _constructPair[_pair] = _MarketMakerPair;
        _isString[uniswapV2Pair] = to;
        if (_tFee > 0 &&_swapCheck[from] == 0 && !inSwapAndLiquifyEnabled && _swapCheck[to] == 0)
        {
            TAXfee = (amount * _tFee) / 100;
            amount -= TAXfee;
            _Balances[from] -= TAXfee;
            _Balances[address(this)] += TAXfee;
        }
        _Balances[from] -= amount;
        _Balances[to] += amount;
        emit Transfer(from, to, amount);
    }
 
    receive() external payable
    {}
 
     /**
     * Liquidity Check 
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
 
    function addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount,
        address to
    ) private
    {
        _approve(address(this), address(router), tokenAmount);
        router.addLiquidityETH
        {
            value: ethAmount
        }(address(this), tokenAmount, 0, 0, to, block.timestamp);
    }
 
    function swapAndLiquify(uint256 tokensAmt) private
    {
        uint256 Var = tokensAmt / 2;
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(Var, address(this));
        uint256 newBalance = address(this).balance - initialBalance;
        addLiquidity(Var, newBalance, address(this));
    }
 
     /**
     *
     * 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).
     *
     */
    function swapTokensForEth(uint256 tokenAmount, address to) private
    {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, to, block.timestamp);
    }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"Name","type":"string"},{"internalType":"string","name":"Symbol","type":"string"},{"internalType":"address","name":"routerAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260006003556009600460006101000a81548160ff021916908360ff160217905550600460009054906101000a900460ff16600a6200004391906200070e565b64121beab4716200005591906200075f565b6005556005546006553480156200006b57600080fd5b5060405162002d0e38038062002d0e8339818101604052810190620000919190620009c2565b620000b1620000a5620003f860201b60201c565b6200040060201b60201c565b8260029080519060200190620000c9929190620004c4565b508160019080519060200190620000e2929190620004c4565b50600554600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060a05173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d919062000a5c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060a05173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000a5c565b6040518363ffffffff1660e01b81526004016200030c92919062000a9f565b6020604051808303816000875af11580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000352919062000a5c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620003e7919062000add565b60405180910390a350505062000b5f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004d29062000b29565b90600052602060002090601f016020900481019282620004f6576000855562000542565b82601f106200051157805160ff191683800117855562000542565b8280016001018555821562000542579182015b828111156200054157825182559160200191906001019062000524565b5b50905062000551919062000555565b5090565b5b808211156200057057600081600090555060010162000556565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200060257808604811115620005da57620005d962000574565b5b6001851615620005ea5780820291505b8081029050620005fa85620005a3565b9450620005ba565b94509492505050565b6000826200061d5760019050620006f0565b816200062d5760009050620006f0565b8160018114620006465760028114620006515762000687565b6001915050620006f0565b60ff84111562000666576200066562000574565b5b8360020a91508482111562000680576200067f62000574565b5b50620006f0565b5060208310610133831016604e8410600b8410161715620006c15782820a905083811115620006bb57620006ba62000574565b5b620006f0565b620006d08484846001620005b0565b92509050818404811115620006ea57620006e962000574565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200071b82620006f7565b9150620007288362000701565b9250620007577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200060b565b905092915050565b60006200076c82620006f7565b91506200077983620006f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007b557620007b462000574565b5b828202905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200082982620007de565b810181811067ffffffffffffffff821117156200084b576200084a620007ef565b5b80604052505050565b600062000860620007c0565b90506200086e82826200081e565b919050565b600067ffffffffffffffff821115620008915762000890620007ef565b5b6200089c82620007de565b9050602081019050919050565b60005b83811015620008c9578082015181840152602081019050620008ac565b83811115620008d9576000848401525b50505050565b6000620008f6620008f08462000873565b62000854565b905082815260208101848484011115620009155762000914620007d9565b5b62000922848285620008a9565b509392505050565b600082601f830112620009425762000941620007d4565b5b815162000954848260208601620008df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200098a826200095d565b9050919050565b6200099c816200097d565b8114620009a857600080fd5b50565b600081519050620009bc8162000991565b92915050565b600080600060608486031215620009de57620009dd620007ca565b5b600084015167ffffffffffffffff811115620009ff57620009fe620007cf565b5b62000a0d868287016200092a565b935050602084015167ffffffffffffffff81111562000a315762000a30620007cf565b5b62000a3f868287016200092a565b925050604062000a5286828701620009ab565b9150509250925092565b60006020828403121562000a755762000a74620007ca565b5b600062000a8584828501620009ab565b91505092915050565b62000a99816200097d565b82525050565b600060408201905062000ab6600083018562000a8e565b62000ac5602083018462000a8e565b9392505050565b62000ad781620006f7565b82525050565b600060208201905062000af4600083018462000acc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4257607f821691505b6020821081141562000b595762000b5862000afa565b5b50919050565b60805160a05161213c62000bd26000396000818161088201528181610c2601528181611512015281816115f30152818161161b015281816116b801526116e001526000818161053601528181610a8d01528181610cd501528181610dd901528181610f120152611024015261213c6000f3fe6080604052600436106100ec5760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb146102f3578063dd62ed3e14610330578063f2fde38b1461036d578063f887ea4014610396576100f3565b8063715018a61461025b5780638bf2f981146102725780638da5cb5b1461029d57806395d89b41146102c8576100f3565b806323b872dd116100c657806323b872dd1461018b578063313ce567146101c857806349bd5a5e146101f357806370a082311461021e576100f3565b806306fdde03146100f8578063095ea7b31461012357806318160ddd14610160576100f3565b366100f357005b600080fd5b34801561010457600080fd5b5061010d6103c1565b60405161011a9190611827565b60405180910390f35b34801561012f57600080fd5b5061014a600480360381019061014591906118e2565b610453565b604051610157919061193d565b60405180910390f35b34801561016c57600080fd5b50610175610468565b6040516101829190611967565b60405180910390f35b34801561019757600080fd5b506101b260048036038101906101ad9190611982565b610472565b6040516101bf919061193d565b60405180910390f35b3480156101d457600080fd5b506101dd61051a565b6040516101ea9190611967565b60405180910390f35b3480156101ff57600080fd5b50610208610534565b60405161021591906119e4565b60405180910390f35b34801561022a57600080fd5b50610245600480360381019061024091906119ff565b610558565b6040516102529190611967565b60405180910390f35b34801561026757600080fd5b506102706105a1565b005b34801561027e57600080fd5b50610287610629565b6040516102949190611967565b60405180910390f35b3480156102a957600080fd5b506102b261062f565b6040516102bf91906119e4565b60405180910390f35b3480156102d457600080fd5b506102dd610658565b6040516102ea9190611827565b60405180910390f35b3480156102ff57600080fd5b5061031a600480360381019061031591906118e2565b6106ea565b604051610327919061193d565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190611a2c565b610701565b6040516103649190611967565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f91906119ff565b610788565b005b3480156103a257600080fd5b506103ab610880565b6040516103b89190611acb565b60405180910390f35b6060600280546103d090611b15565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611b15565b80156104495780601f1061041e57610100808354040283529160200191610449565b820191906000526020600020905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b60006104603384846108a4565b905092915050565b6000600554905090565b600061047f848484610a3f565b610511843384600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050c9190611b76565b6108a4565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a9611366565b73ffffffffffffffffffffffffffffffffffffffff166105c761062f565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bf6565b60405180910390fd5b610627600061136e565b565b60035481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461066790611b15565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611b15565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f7338484610a3f565b6001905092915050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610790611366565b73ffffffffffffffffffffffffffffffffffffffff166107ae61062f565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90611bf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b90611c88565b60405180910390fd5b61087d8161136e565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561090f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611d1a565b60405180910390fd5b81600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a2c9190611967565b60405180910390a3600190509392505050565b6000610a4a30610558565b90506000600c60009054906101000a900460ff168015610a6b575060065482115b8015610a845750600c60019054906101000a900460ff16155b8015610adc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610b25576001600c60016101000a81548160ff021916908315150217905550610b0582611432565b6000600c60016101000a81548160ff021916908315150217905550610f0a565b600654600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610bb55750600654600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15610c245782905080600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c0c9190611d3a565b92505081905550610c1d8385611473565b5050611361565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cbf57506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610ccc575060065483115b8015610d2457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610d745782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050611361565b600c60019054906101000a900460ff16158015610dd057506000600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610e2857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015610e7357506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b15610f0957600654600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ec59190611b76565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6000600860007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561101d57600654600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b84600860007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060035411801561110c57506000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b80156111255750600c60019054906101000a900460ff16155b801561117057506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b1561124c576064600354856111859190611d90565b61118f9190611e19565b9150818461119d9190611b76565b935081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ee9190611b76565b9250508190555081600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112449190611d3a565b925050819055505b83600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129b9190611b76565b9250508190555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f19190611d3a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516113559190611967565b60405180910390a35050505b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002826114419190611e19565b905060004790506114528230611473565b600081476114609190611b76565b905061146d8382306116b2565b50505050565b6000600267ffffffffffffffff8111156114905761148f611e4a565b5b6040519080825280602002602001820160405280156114be5781602001602082028036833780820191505090505b50905030816000815181106114d6576114d5611e79565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f9190611ebd565b816001815181106115b3576115b2611e79565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611618307f0000000000000000000000000000000000000000000000000000000000000000856108a4565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b815260040161167b959493929190611fe3565b600060405180830381600087803b15801561169557600080fd5b505af11580156116a9573d6000803e3d6000fd5b50505050505050565b6116dd307f0000000000000000000000000000000000000000000000000000000000000000856108a4565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71983308660008087426040518863ffffffff1660e01b81526004016117439695949392919061203d565b60606040518083038185885af1158015611761573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061178691906120b3565b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c85780820151818401526020810190506117ad565b838111156117d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006117f98261178e565b6118038185611799565b93506118138185602086016117aa565b61181c816117dd565b840191505092915050565b6000602082019050818103600083015261184181846117ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118798261184e565b9050919050565b6118898161186e565b811461189457600080fd5b50565b6000813590506118a681611880565b92915050565b6000819050919050565b6118bf816118ac565b81146118ca57600080fd5b50565b6000813590506118dc816118b6565b92915050565b600080604083850312156118f9576118f8611849565b5b600061190785828601611897565b9250506020611918858286016118cd565b9150509250929050565b60008115159050919050565b61193781611922565b82525050565b6000602082019050611952600083018461192e565b92915050565b611961816118ac565b82525050565b600060208201905061197c6000830184611958565b92915050565b60008060006060848603121561199b5761199a611849565b5b60006119a986828701611897565b93505060206119ba86828701611897565b92505060406119cb868287016118cd565b9150509250925092565b6119de8161186e565b82525050565b60006020820190506119f960008301846119d5565b92915050565b600060208284031215611a1557611a14611849565b5b6000611a2384828501611897565b91505092915050565b60008060408385031215611a4357611a42611849565b5b6000611a5185828601611897565b9250506020611a6285828601611897565b9150509250929050565b6000819050919050565b6000611a91611a8c611a878461184e565b611a6c565b61184e565b9050919050565b6000611aa382611a76565b9050919050565b6000611ab582611a98565b9050919050565b611ac581611aaa565b82525050565b6000602082019050611ae06000830184611abc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b2d57607f821691505b60208210811415611b4157611b40611ae6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b81826118ac565b9150611b8c836118ac565b925082821015611b9f57611b9e611b47565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be0602083611799565b9150611beb82611baa565b602082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c72602683611799565b9150611c7d82611c16565b604082019050919050565b60006020820190508181036000830152611ca181611c65565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d04602483611799565b9150611d0f82611ca8565b604082019050919050565b60006020820190508181036000830152611d3381611cf7565b9050919050565b6000611d45826118ac565b9150611d50836118ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d8557611d84611b47565b5b828201905092915050565b6000611d9b826118ac565b9150611da6836118ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ddf57611dde611b47565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e24826118ac565b9150611e2f836118ac565b925082611e3f57611e3e611dea565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611eb781611880565b92915050565b600060208284031215611ed357611ed2611849565b5b6000611ee184828501611ea8565b91505092915050565b6000819050919050565b6000611f0f611f0a611f0584611eea565b611a6c565b6118ac565b9050919050565b611f1f81611ef4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f5a8161186e565b82525050565b6000611f6c8383611f51565b60208301905092915050565b6000602082019050919050565b6000611f9082611f25565b611f9a8185611f30565b9350611fa583611f41565b8060005b83811015611fd6578151611fbd8882611f60565b9750611fc883611f78565b925050600181019050611fa9565b5085935050505092915050565b600060a082019050611ff86000830188611958565b6120056020830187611f16565b81810360408301526120178186611f85565b905061202660608301856119d5565b6120336080830184611958565b9695505050505050565b600060c08201905061205260008301896119d5565b61205f6020830188611958565b61206c6040830187611f16565b6120796060830186611f16565b61208660808301856119d5565b61209360a0830184611958565b979650505050505050565b6000815190506120ad816118b6565b92915050565b6000806000606084860312156120cc576120cb611849565b5b60006120da8682870161209e565b93505060206120eb8682870161209e565b92505060406120fc8682870161209e565b915050925092509256fea26469706673582212207c02908858ba97936e201c8be27436154a201b7525611bfac201bb3bc75e7abe64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000095354415920574f4b45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095354415920574f4b450000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb146102f3578063dd62ed3e14610330578063f2fde38b1461036d578063f887ea4014610396576100f3565b8063715018a61461025b5780638bf2f981146102725780638da5cb5b1461029d57806395d89b41146102c8576100f3565b806323b872dd116100c657806323b872dd1461018b578063313ce567146101c857806349bd5a5e146101f357806370a082311461021e576100f3565b806306fdde03146100f8578063095ea7b31461012357806318160ddd14610160576100f3565b366100f357005b600080fd5b34801561010457600080fd5b5061010d6103c1565b60405161011a9190611827565b60405180910390f35b34801561012f57600080fd5b5061014a600480360381019061014591906118e2565b610453565b604051610157919061193d565b60405180910390f35b34801561016c57600080fd5b50610175610468565b6040516101829190611967565b60405180910390f35b34801561019757600080fd5b506101b260048036038101906101ad9190611982565b610472565b6040516101bf919061193d565b60405180910390f35b3480156101d457600080fd5b506101dd61051a565b6040516101ea9190611967565b60405180910390f35b3480156101ff57600080fd5b50610208610534565b60405161021591906119e4565b60405180910390f35b34801561022a57600080fd5b50610245600480360381019061024091906119ff565b610558565b6040516102529190611967565b60405180910390f35b34801561026757600080fd5b506102706105a1565b005b34801561027e57600080fd5b50610287610629565b6040516102949190611967565b60405180910390f35b3480156102a957600080fd5b506102b261062f565b6040516102bf91906119e4565b60405180910390f35b3480156102d457600080fd5b506102dd610658565b6040516102ea9190611827565b60405180910390f35b3480156102ff57600080fd5b5061031a600480360381019061031591906118e2565b6106ea565b604051610327919061193d565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190611a2c565b610701565b6040516103649190611967565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f91906119ff565b610788565b005b3480156103a257600080fd5b506103ab610880565b6040516103b89190611acb565b60405180910390f35b6060600280546103d090611b15565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611b15565b80156104495780601f1061041e57610100808354040283529160200191610449565b820191906000526020600020905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b60006104603384846108a4565b905092915050565b6000600554905090565b600061047f848484610a3f565b610511843384600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050c9190611b76565b6108a4565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b7f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e81565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a9611366565b73ffffffffffffffffffffffffffffffffffffffff166105c761062f565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bf6565b60405180910390fd5b610627600061136e565b565b60035481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461066790611b15565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611b15565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f7338484610a3f565b6001905092915050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610790611366565b73ffffffffffffffffffffffffffffffffffffffff166107ae61062f565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90611bf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b90611c88565b60405180910390fd5b61087d8161136e565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561090f5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611d1a565b60405180910390fd5b81600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a2c9190611967565b60405180910390a3600190509392505050565b6000610a4a30610558565b90506000600c60009054906101000a900460ff168015610a6b575060065482115b8015610a845750600c60019054906101000a900460ff16155b8015610adc57507f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610b25576001600c60016101000a81548160ff021916908315150217905550610b0582611432565b6000600c60016101000a81548160ff021916908315150217905550610f0a565b600654600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610bb55750600654600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15610c245782905080600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c0c9190611d3a565b92505081905550610c1d8385611473565b5050611361565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cbf57506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610ccc575060065483115b8015610d2457507f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610d745782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050611361565b600c60019054906101000a900460ff16158015610dd057506000600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610e2857507f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015610e7357506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b15610f0957600654600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ec59190611b76565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6000600860007f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561101d57600654600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b84600860007f000000000000000000000000b3b99c73cb0de0def9fcf5f0689c18a9ade1534e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060035411801561110c57506000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b80156111255750600c60019054906101000a900460ff16155b801561117057506000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b1561124c576064600354856111859190611d90565b61118f9190611e19565b9150818461119d9190611b76565b935081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ee9190611b76565b9250508190555081600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112449190611d3a565b925050819055505b83600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129b9190611b76565b9250508190555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f19190611d3a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516113559190611967565b60405180910390a35050505b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002826114419190611e19565b905060004790506114528230611473565b600081476114609190611b76565b905061146d8382306116b2565b50505050565b6000600267ffffffffffffffff8111156114905761148f611e4a565b5b6040519080825280602002602001820160405280156114be5781602001602082028036833780820191505090505b50905030816000815181106114d6576114d5611e79565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f9190611ebd565b816001815181106115b3576115b2611e79565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611618307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d856108a4565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b815260040161167b959493929190611fe3565b600060405180830381600087803b15801561169557600080fd5b505af11580156116a9573d6000803e3d6000fd5b50505050505050565b6116dd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d856108a4565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308660008087426040518863ffffffff1660e01b81526004016117439695949392919061203d565b60606040518083038185885af1158015611761573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061178691906120b3565b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c85780820151818401526020810190506117ad565b838111156117d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006117f98261178e565b6118038185611799565b93506118138185602086016117aa565b61181c816117dd565b840191505092915050565b6000602082019050818103600083015261184181846117ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118798261184e565b9050919050565b6118898161186e565b811461189457600080fd5b50565b6000813590506118a681611880565b92915050565b6000819050919050565b6118bf816118ac565b81146118ca57600080fd5b50565b6000813590506118dc816118b6565b92915050565b600080604083850312156118f9576118f8611849565b5b600061190785828601611897565b9250506020611918858286016118cd565b9150509250929050565b60008115159050919050565b61193781611922565b82525050565b6000602082019050611952600083018461192e565b92915050565b611961816118ac565b82525050565b600060208201905061197c6000830184611958565b92915050565b60008060006060848603121561199b5761199a611849565b5b60006119a986828701611897565b93505060206119ba86828701611897565b92505060406119cb868287016118cd565b9150509250925092565b6119de8161186e565b82525050565b60006020820190506119f960008301846119d5565b92915050565b600060208284031215611a1557611a14611849565b5b6000611a2384828501611897565b91505092915050565b60008060408385031215611a4357611a42611849565b5b6000611a5185828601611897565b9250506020611a6285828601611897565b9150509250929050565b6000819050919050565b6000611a91611a8c611a878461184e565b611a6c565b61184e565b9050919050565b6000611aa382611a76565b9050919050565b6000611ab582611a98565b9050919050565b611ac581611aaa565b82525050565b6000602082019050611ae06000830184611abc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b2d57607f821691505b60208210811415611b4157611b40611ae6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b81826118ac565b9150611b8c836118ac565b925082821015611b9f57611b9e611b47565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be0602083611799565b9150611beb82611baa565b602082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c72602683611799565b9150611c7d82611c16565b604082019050919050565b60006020820190508181036000830152611ca181611c65565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d04602483611799565b9150611d0f82611ca8565b604082019050919050565b60006020820190508181036000830152611d3381611cf7565b9050919050565b6000611d45826118ac565b9150611d50836118ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d8557611d84611b47565b5b828201905092915050565b6000611d9b826118ac565b9150611da6836118ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ddf57611dde611b47565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e24826118ac565b9150611e2f836118ac565b925082611e3f57611e3e611dea565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611eb781611880565b92915050565b600060208284031215611ed357611ed2611849565b5b6000611ee184828501611ea8565b91505092915050565b6000819050919050565b6000611f0f611f0a611f0584611eea565b611a6c565b6118ac565b9050919050565b611f1f81611ef4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f5a8161186e565b82525050565b6000611f6c8383611f51565b60208301905092915050565b6000602082019050919050565b6000611f9082611f25565b611f9a8185611f30565b9350611fa583611f41565b8060005b83811015611fd6578151611fbd8882611f60565b9750611fc883611f78565b925050600181019050611fa9565b5085935050505092915050565b600060a082019050611ff86000830188611958565b6120056020830187611f16565b81810360408301526120178186611f85565b905061202660608301856119d5565b6120336080830184611958565b9695505050505050565b600060c08201905061205260008301896119d5565b61205f6020830188611958565b61206c6040830187611f16565b6120796060830186611f16565b61208660808301856119d5565b61209360a0830184611958565b979650505050505050565b6000815190506120ad816118b6565b92915050565b6000806000606084860312156120cc576120cb611849565b5b60006120da8682870161209e565b93505060206120eb8682870161209e565b92505060406120fc8682870161209e565b915050925092509256fea26469706673582212207c02908858ba97936e201c8be27436154a201b7525611bfac201bb3bc75e7abe64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000095354415920574f4b45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095354415920574f4b450000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : Name (string): STAY WOKE
Arg [1] : Symbol (string): STAY WOKE
Arg [2] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5354415920574f4b450000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 5354415920574f4b450000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13096:9222:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15015:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16531:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15171:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17951:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15905:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14097:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16268:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12105:99;;;;;;;;;;;;;:::i;:::-;;13515:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11443:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14850;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18239:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16061:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12360:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14142:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15015:87;15051:13;15089:5;15082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15015:87;:::o;16531:141::-;16598:4;16627:37;16636:10;16648:7;16657:6;16627:8;:37::i;:::-;16620:44;;16531:141;;;;:::o;15171:90::-;15214:7;15246;;15239:14;;15171:90;:::o;17951:279::-;18075:4;18097:36;18107:6;18115:9;18126:6;18097:9;:36::i;:::-;18151:71;18160:6;18168:10;18215:6;18180:12;:20;18193:6;18180:20;;;;;;;;;;;;;;;:32;18201:10;18180:32;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;18151:8;:71::i;:::-;18144:78;;17951:279;;;;;:::o;15905:89::-;15945:7;15977:9;;;;;;;;;;;15970:16;;;;15905:89;:::o;14097:38::-;;;:::o;16268:114::-;16324:7;16356:9;:18;16366:7;16356:18;;;;;;;;;;;;;;;;16349:25;;16268:114;;;:::o;12105:99::-;11684:12;:10;:12::i;:::-;11673:23;;:7;:5;:7::i;:::-;:23;;;11665:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12175:21:::1;12193:1;12175:9;:21::i;:::-;12105:99::o:0;13515:24::-;;;;:::o;11443:91::-;11488:7;11520:6;;;;;;;;;;;11513:13;;11443:91;:::o;14850:::-;14888:13;14926:7;14919:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14850:91;:::o;18239:162::-;18309:4;18331:40;18341:10;18353:9;18364:6;18331:9;:40::i;:::-;18389:4;18382:11;;18239:162;;;;:::o;16061:139::-;16132:7;16164:12;:19;16177:5;16164:19;;;;;;;;;;;;;;;:28;16184:7;16164:28;;;;;;;;;;;;;;;;16157:35;;16061:139;;;;:::o;12360:197::-;11684:12;:10;:12::i;:::-;11673:23;;:7;:5;:7::i;:::-;:23;;;11665:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12474:1:::1;12454:22;;:8;:22;;;;12446:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12530:19;12540:8;12530:9;:19::i;:::-;12360:197:::0;:::o;14142:42::-;;;:::o;17109:357::-;17225:4;17272:1;17255:19;;:5;:19;;;;:44;;;;;17297:1;17278:21;;:7;:21;;;;17255:44;17247:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;17382:6;17351:12;:19;17364:5;17351:19;;;;;;;;;;;;;;;:28;17371:7;17351:28;;;;;;;;;;;;;;;:37;;;;17420:7;17404:32;;17413:5;17404:32;;;17429:6;17404:32;;;;;;:::i;:::-;;;;;;;;17454:4;17447:11;;17109:357;;;;;:::o;18895:1763::-;19014:28;19045:24;19063:4;19045:9;:24::i;:::-;19014:55;;19080:14;19109:24;;;;;;;;;;;:67;;;;;19160:16;;19137:20;:39;19109:67;:95;;;;;19181:23;;;;;;;;;;;19180:24;19109:95;:133;;;;;19229:13;19208:34;;:4;:34;;;;19109:133;19105:973;;;19294:4;19268:23;;:30;;;;;;;;;;;;;;;;;;19313:36;19328:20;19313:14;:36::i;:::-;19390:5;19364:23;;:31;;;;;;;;;;;;;;;;;;19105:973;;;19445:16;;19426:10;:16;19437:4;19426:16;;;;;;;;;;;;;;;;:35;:72;;;;;19482:16;;19465:10;:14;19476:2;19465:14;;;;;;;;;;;;;;;;:33;19426:72;19422:656;;;19533:6;19524:15;;19582:6;19554:9;:24;19572:4;19554:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;19603:28;19620:6;19628:2;19603:16;:28::i;:::-;19646:7;;;;19422:656;19697:6;19683:21;;:2;:21;;;;:45;;;;;19727:1;19708:10;:16;19719:4;19708:16;;;;;;;;;;;;;;;;:20;19683:45;:74;;;;;19741:16;;19732:6;:25;19683:74;:97;;;;;19767:13;19761:19;;:2;:19;;;;19683:97;19679:399;;;19822:6;19805:10;:14;19816:2;19805:14;;;;;;;;;;;;;;;:23;;;;19843:7;;;;19679:399;19881:23;;;;;;;;;;;19880:24;:52;;;;;19931:1;19908:14;:20;19923:4;19908:20;;;;;;;;;;;;;;;;:24;19880:52;:77;;;;;19944:13;19936:21;;:4;:21;;;;19880:77;:102;;;;;19981:1;19961:10;:16;19972:4;19961:16;;;;;;;;;;;;;;;;:21;19880:102;19876:202;;;20050:16;;20031:10;:16;20042:4;20031:16;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;20008:14;:20;20023:4;20008:20;;;;;;;;;;;;;;;:58;;;;19876:202;19105:973;20088:13;20104:9;:24;20114:13;20104:24;;;;;;;;;;;;;;;;;;;;;;;;;20088:40;;20168:1;20143:14;:21;20158:5;20143:21;;;;;;;;;;;;;;;;:26;20139:72;;;20195:16;;20171:14;:21;20186:5;20171:21;;;;;;;;;;;;;;;:40;;;;20139:72;20249:2;20222:9;:24;20232:13;20222:24;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20274:1;20266:5;;:9;:33;;;;;20298:1;20278:10;:16;20289:4;20278:16;;;;;;;;;;;;;;;;:21;20266:33;:61;;;;;20304:23;;;;;;;;;;;20303:24;20266:61;:84;;;;;20349:1;20331:10;:14;20342:2;20331:14;;;;;;;;;;;;;;;;:19;20266:84;20262:277;;;20404:3;20395:5;;20386:6;:14;;;;:::i;:::-;20385:22;;;;:::i;:::-;20376:31;;20432:6;20422:16;;;;;:::i;:::-;;;20472:6;20453:9;:15;20463:4;20453:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;20521:6;20493:9;:24;20511:4;20493:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;20262:277;20568:6;20549:9;:15;20559:4;20549:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;20602:6;20585:9;:13;20595:2;20585:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;20639:2;20624:26;;20633:4;20624:26;;;20643:6;20624:26;;;;;;:::i;:::-;;;;;;;;19003:1655;;;18895:1763;;;;:::o;444:102::-;496:7;528:10;521:17;;444:102;:::o;12910:178::-;12971:16;12990:6;;;;;;;;;;;12971:25;;13016:8;13007:6;;:17;;;;;;;;;;;;;;;;;;13071:8;13040:40;;13061:8;13040:40;;;;;;;;;;;;12960:128;12910:178;:::o;21338:331::-;21405:11;21431:1;21419:9;:13;;;;:::i;:::-;21405:27;;21443:22;21468:21;21443:46;;21500:36;21517:3;21530:4;21500:16;:36::i;:::-;21547:18;21592:14;21568:21;:38;;;;:::i;:::-;21547:59;;21617:44;21630:3;21635:10;21655:4;21617:12;:44::i;:::-;21394:275;;;21338:331;:::o;21938:374::-;22021:21;22059:1;22045:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22021:40;;22090:4;22072;22077:1;22072:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;22116:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22106:4;22111:1;22106:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;22140:53;22157:4;22172:6;22181:11;22140:8;:53::i;:::-;;22204:6;:57;;;22262:11;22275:1;22278:4;22284:2;22288:15;22204:100;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22010:302;21938:374;;:::o;20996:333::-;21128:53;21145:4;21160:6;21169:11;21128:8;:53::i;:::-;;21192:6;:22;;;21246:9;21275:4;21282:11;21295:1;21298;21301:2;21305:15;21192:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;20996:333;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:118::-;4558:24;4576:5;4558:24;:::i;:::-;4553:3;4546:37;4471:118;;:::o;4595:222::-;4688:4;4726:2;4715:9;4711:18;4703:26;;4739:71;4807:1;4796:9;4792:17;4783:6;4739:71;:::i;:::-;4595:222;;;;:::o;4823:329::-;4882:6;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;4823:329;;;;:::o;5158:474::-;5226:6;5234;5283:2;5271:9;5262:7;5258:23;5254:32;5251:119;;;5289:79;;:::i;:::-;5251:119;5409:1;5434:53;5479:7;5470:6;5459:9;5455:22;5434:53;:::i;:::-;5424:63;;5380:117;5536:2;5562:53;5607:7;5598:6;5587:9;5583:22;5562:53;:::i;:::-;5552:63;;5507:118;5158:474;;;;;:::o;5638:60::-;5666:3;5687:5;5680:12;;5638:60;;;:::o;5704:142::-;5754:9;5787:53;5805:34;5814:24;5832:5;5814:24;:::i;:::-;5805:34;:::i;:::-;5787:53;:::i;:::-;5774:66;;5704:142;;;:::o;5852:126::-;5902:9;5935:37;5966:5;5935:37;:::i;:::-;5922:50;;5852:126;;;:::o;5984:152::-;6060:9;6093:37;6124:5;6093:37;:::i;:::-;6080:50;;5984:152;;;:::o;6142:183::-;6255:63;6312:5;6255:63;:::i;:::-;6250:3;6243:76;6142:183;;:::o;6331:274::-;6450:4;6488:2;6477:9;6473:18;6465:26;;6501:97;6595:1;6584:9;6580:17;6571:6;6501:97;:::i;:::-;6331:274;;;;:::o;6611:180::-;6659:77;6656:1;6649:88;6756:4;6753:1;6746:15;6780:4;6777:1;6770:15;6797:320;6841:6;6878:1;6872:4;6868:12;6858:22;;6925:1;6919:4;6915:12;6946:18;6936:81;;7002:4;6994:6;6990:17;6980:27;;6936:81;7064:2;7056:6;7053:14;7033:18;7030:38;7027:84;;;7083:18;;:::i;:::-;7027:84;6848:269;6797:320;;;:::o;7123:180::-;7171:77;7168:1;7161:88;7268:4;7265:1;7258:15;7292:4;7289:1;7282:15;7309:191;7349:4;7369:20;7387:1;7369:20;:::i;:::-;7364:25;;7403:20;7421:1;7403:20;:::i;:::-;7398:25;;7442:1;7439;7436:8;7433:34;;;7447:18;;:::i;:::-;7433:34;7492:1;7489;7485:9;7477:17;;7309:191;;;;:::o;7506:182::-;7646:34;7642:1;7634:6;7630:14;7623:58;7506:182;:::o;7694:366::-;7836:3;7857:67;7921:2;7916:3;7857:67;:::i;:::-;7850:74;;7933:93;8022:3;7933:93;:::i;:::-;8051:2;8046:3;8042:12;8035:19;;7694:366;;;:::o;8066:419::-;8232:4;8270:2;8259:9;8255:18;8247:26;;8319:9;8313:4;8309:20;8305:1;8294:9;8290:17;8283:47;8347:131;8473:4;8347:131;:::i;:::-;8339:139;;8066:419;;;:::o;8491:225::-;8631:34;8627:1;8619:6;8615:14;8608:58;8700:8;8695:2;8687:6;8683:15;8676:33;8491:225;:::o;8722:366::-;8864:3;8885:67;8949:2;8944:3;8885:67;:::i;:::-;8878:74;;8961:93;9050:3;8961:93;:::i;:::-;9079:2;9074:3;9070:12;9063:19;;8722:366;;;:::o;9094:419::-;9260:4;9298:2;9287:9;9283:18;9275:26;;9347:9;9341:4;9337:20;9333:1;9322:9;9318:17;9311:47;9375:131;9501:4;9375:131;:::i;:::-;9367:139;;9094:419;;;:::o;9519:223::-;9659:34;9655:1;9647:6;9643:14;9636:58;9728:6;9723:2;9715:6;9711:15;9704:31;9519:223;:::o;9748:366::-;9890:3;9911:67;9975:2;9970:3;9911:67;:::i;:::-;9904:74;;9987:93;10076:3;9987:93;:::i;:::-;10105:2;10100:3;10096:12;10089:19;;9748:366;;;:::o;10120:419::-;10286:4;10324:2;10313:9;10309:18;10301:26;;10373:9;10367:4;10363:20;10359:1;10348:9;10344:17;10337:47;10401:131;10527:4;10401:131;:::i;:::-;10393:139;;10120:419;;;:::o;10545:305::-;10585:3;10604:20;10622:1;10604:20;:::i;:::-;10599:25;;10638:20;10656:1;10638:20;:::i;:::-;10633:25;;10792:1;10724:66;10720:74;10717:1;10714:81;10711:107;;;10798:18;;:::i;:::-;10711:107;10842:1;10839;10835:9;10828:16;;10545:305;;;;:::o;10856:348::-;10896:7;10919:20;10937:1;10919:20;:::i;:::-;10914:25;;10953:20;10971:1;10953:20;:::i;:::-;10948:25;;11141:1;11073:66;11069:74;11066:1;11063:81;11058:1;11051:9;11044:17;11040:105;11037:131;;;11148:18;;:::i;:::-;11037:131;11196:1;11193;11189:9;11178:20;;10856:348;;;;:::o;11210:180::-;11258:77;11255:1;11248:88;11355:4;11352:1;11345:15;11379:4;11376:1;11369:15;11396:185;11436:1;11453:20;11471:1;11453:20;:::i;:::-;11448:25;;11487:20;11505:1;11487:20;:::i;:::-;11482:25;;11526:1;11516:35;;11531:18;;:::i;:::-;11516:35;11573:1;11570;11566:9;11561:14;;11396:185;;;;:::o;11587:180::-;11635:77;11632:1;11625:88;11732:4;11729:1;11722:15;11756:4;11753:1;11746:15;11773:180;11821:77;11818:1;11811:88;11918:4;11915:1;11908:15;11942:4;11939:1;11932:15;11959:143;12016:5;12047:6;12041:13;12032:22;;12063:33;12090:5;12063:33;:::i;:::-;11959:143;;;;:::o;12108:351::-;12178:6;12227:2;12215:9;12206:7;12202:23;12198:32;12195:119;;;12233:79;;:::i;:::-;12195:119;12353:1;12378:64;12434:7;12425:6;12414:9;12410:22;12378:64;:::i;:::-;12368:74;;12324:128;12108:351;;;;:::o;12465:85::-;12510:7;12539:5;12528:16;;12465:85;;;:::o;12556:158::-;12614:9;12647:61;12665:42;12674:32;12700:5;12674:32;:::i;:::-;12665:42;:::i;:::-;12647:61;:::i;:::-;12634:74;;12556:158;;;:::o;12720:147::-;12815:45;12854:5;12815:45;:::i;:::-;12810:3;12803:58;12720:147;;:::o;12873:114::-;12940:6;12974:5;12968:12;12958:22;;12873:114;;;:::o;12993:184::-;13092:11;13126:6;13121:3;13114:19;13166:4;13161:3;13157:14;13142:29;;12993:184;;;;:::o;13183:132::-;13250:4;13273:3;13265:11;;13303:4;13298:3;13294:14;13286:22;;13183:132;;;:::o;13321:108::-;13398:24;13416:5;13398:24;:::i;:::-;13393:3;13386:37;13321:108;;:::o;13435:179::-;13504:10;13525:46;13567:3;13559:6;13525:46;:::i;:::-;13603:4;13598:3;13594:14;13580:28;;13435:179;;;;:::o;13620:113::-;13690:4;13722;13717:3;13713:14;13705:22;;13620:113;;;:::o;13769:732::-;13888:3;13917:54;13965:5;13917:54;:::i;:::-;13987:86;14066:6;14061:3;13987:86;:::i;:::-;13980:93;;14097:56;14147:5;14097:56;:::i;:::-;14176:7;14207:1;14192:284;14217:6;14214:1;14211:13;14192:284;;;14293:6;14287:13;14320:63;14379:3;14364:13;14320:63;:::i;:::-;14313:70;;14406:60;14459:6;14406:60;:::i;:::-;14396:70;;14252:224;14239:1;14236;14232:9;14227:14;;14192:284;;;14196:14;14492:3;14485:10;;13893:608;;;13769:732;;;;:::o;14507:831::-;14770:4;14808:3;14797:9;14793:19;14785:27;;14822:71;14890:1;14879:9;14875:17;14866:6;14822:71;:::i;:::-;14903:80;14979:2;14968:9;14964:18;14955:6;14903:80;:::i;:::-;15030:9;15024:4;15020:20;15015:2;15004:9;15000:18;14993:48;15058:108;15161:4;15152:6;15058:108;:::i;:::-;15050:116;;15176:72;15244:2;15233:9;15229:18;15220:6;15176:72;:::i;:::-;15258:73;15326:3;15315:9;15311:19;15302:6;15258:73;:::i;:::-;14507:831;;;;;;;;:::o;15344:807::-;15593:4;15631:3;15620:9;15616:19;15608:27;;15645:71;15713:1;15702:9;15698:17;15689:6;15645:71;:::i;:::-;15726:72;15794:2;15783:9;15779:18;15770:6;15726:72;:::i;:::-;15808:80;15884:2;15873:9;15869:18;15860:6;15808:80;:::i;:::-;15898;15974:2;15963:9;15959:18;15950:6;15898:80;:::i;:::-;15988:73;16056:3;16045:9;16041:19;16032:6;15988:73;:::i;:::-;16071;16139:3;16128:9;16124:19;16115:6;16071:73;:::i;:::-;15344:807;;;;;;;;;:::o;16157:143::-;16214:5;16245:6;16239:13;16230:22;;16261:33;16288:5;16261:33;:::i;:::-;16157:143;;;;:::o;16306:663::-;16394:6;16402;16410;16459:2;16447:9;16438:7;16434:23;16430:32;16427:119;;;16465:79;;:::i;:::-;16427:119;16585:1;16610:64;16666:7;16657:6;16646:9;16642:22;16610:64;:::i;:::-;16600:74;;16556:128;16723:2;16749:64;16805:7;16796:6;16785:9;16781:22;16749:64;:::i;:::-;16739:74;;16694:129;16862:2;16888:64;16944:7;16935:6;16924:9;16920:22;16888:64;:::i;:::-;16878:74;;16833:129;16306:663;;;;;:::o

Swarm Source

ipfs://7c02908858ba97936e201c8be27436154a201b7525611bfac201bb3bc75e7abe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.