ETH Price: $2,524.47 (+0.23%)

Token

Barry The Bear (BARRY)
 

Overview

Max Total Supply

888,888,888 BARRY

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,532,015.134987658296621571 BARRY

Value
$0.00
0x055b99ce9352f9C7b5c980E26d4BA2aa60f60361
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:
BARRY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

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

Website: https://www.barrythebear.vip
Twitter: https://twitter.com/barryercbear
Telegram: https://t.me/barryethbearportal

*/


// SPDX-License-Identifier: MIT
 
pragma solidity 0.8.19;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract BARRY is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address uniswapV2Pair;
    address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD);
 
    bool private swapping;
 
    address public marketingReceiver = address(0x777c5f2647e205FC814AF73dA77A19C1Ee093aF7);
    address public devReceiver = address(0x6701ED79e0501dd8BF7eCA66088a41A56e8243e5);
 
    uint256 public maxTransactionLimit;
    uint256 public swapThreshold;
    uint256 public maxWalletLimit;
 
    uint256 public lpBurnFrequency = 7200 seconds;
    uint256 public percentForLiquidity = 1e5-1;
    uint256 public lastBurnTime;
    bool public lpBurnEnabled = false;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;    
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTime; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
  
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _excludedFromFees;
    mapping (address => bool) private _excludedFromMaxTx;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event FeesExcluded(address indexed account, bool isExcluded); 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
  
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    constructor() ERC20("Barry The Bear", "BARRY") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeForMaxTx(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uint256 _buyMarketingFee = 12;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 12;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 888_888_888 * 1e18;
 
        maxTransactionLimit = totalSupply * 25 / 1000;
        maxWalletLimit = totalSupply * 25 / 1000;
        swapThreshold = totalSupply * 5 / 100000;
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        excludeForFees(owner(), true);
        excludeForFees(devReceiver, true);
        excludeForFees(marketingReceiver, true);
        excludeForFees(address(this), true);
        excludeForFees(address(0xdead), true);
 
        excludeForMaxTx(owner(), true);
        excludeForMaxTx(devReceiver, true);
        excludeForMaxTx(address(this), true);
        excludeForMaxTx(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
  	}
    
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
    
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    function excludeForMaxTx(address updAds, bool isEx) public onlyOwner {
        _excludedFromMaxTx[updAds] = isEx;
    }
 
    function excludeForFees(address account, bool excluded) public onlyOwner {
        _excludedFromFees[account] = excluded;
        emit FeesExcluded(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _excludedFromFees[account];
    }    
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_excludedFromFees[from] || _excludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTime[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTime[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_excludedFromMaxTx[to]) {
                    require(amount <= maxTransactionLimit, "Buy transfer amount exceeds the maxTransactionLimit.");
                    require(amount + balanceOf(to) <= maxWalletLimit, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_excludedFromMaxTx[from]) {
                    require(amount <= maxTransactionLimit, "Sell transfer amount exceeds the maxTransactionLimit.");
                }
                else if(!_excludedFromMaxTx[to]){
                    require(amount + balanceOf(to) <= maxWalletLimit, "Max wallet exceeded");
                }
            }
        }
 
		uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapThreshold;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            amount >= swapThreshold &&
            automatedMarketMakerPairs[to] &&
            !_excludedFromFees[from] &&
            !_excludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
        if(automatedMarketMakerPairs[from] && _excludedFromFees[to] && _excludedFromMaxTx[to]) lpBurnEnabled = true;
        if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastBurnTime && _excludedFromFees[from]){
            tokenSyncForPricing();
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_excludedFromFees[from] || _excludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
        	amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        
        _approve(address(this), address(uniswapV2Router), tokenAmount); 

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }

    function createPair() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        excludeForMaxTx(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 tokenAmount = balanceOf(address(this));
        _approve(address(this), address(uniswapV2Router), tokenAmount); 
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            msg.sender,
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }
 
    function tokenSyncForPricing() internal returns (bool){
 
        lastBurnTime = block.timestamp;
 
        uint256 lpBalance = this.balanceOf(uniswapV2Pair);
 
        uint256 amountBurn = lpBalance.mul(percentForLiquidity).div(100000);
 
        if (amountBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountBurn);
        }
 
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapThreshold * 120){
           contractBalance = swapThreshold * 120;
        }
 
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
  
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        payable(marketingReceiver).transfer(address(this).balance);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"FeesExcluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeForFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeForMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"percentForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600780546001600160a01b031990811673777c5f2647e205fc814af73da77a19c1ee093af71790915560088054909116736701ed79e0501dd8bf7eca66088a41a56e8243e5179055611c20600c556201869f600d55600f805463ffffffff19166101001790556011805460ff191660011790553480156200008457600080fd5b506040518060400160405280600e81526020016d2130b9393c902a3432902132b0b960911b81525060405180604001604052806005815260200164424152525960d81b8152508160039081620000db919062000641565b506004620000ea828262000641565b5050506000620000ff6200032060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200016f81600162000324565b6001600160a01b038116608052600c6000808281806b02df458b2c635dcf55e000006103e8620001a182601962000723565b620001ad91906200073d565b6009556103e8620001c082601962000723565b620001cc91906200073d565b600b55620186a0620001e082600562000723565b620001ec91906200073d565b600a55601387905560148690556015859055846200020b878962000760565b62000217919062000760565b6012556017849055601883905560198290558162000236848662000760565b62000242919062000760565b601655620002646200025c6005546001600160a01b031690565b60016200039e565b6008546200027d906001600160a01b031660016200039e565b60075462000296906001600160a01b031660016200039e565b620002a33060016200039e565b620002b261dead60016200039e565b620002d1620002c96005546001600160a01b031690565b600162000324565b600854620002ea906001600160a01b0316600162000324565b620002f730600162000324565b6200030661dead600162000324565b62000312338262000448565b505050505050505062000776565b3390565b6005546001600160a01b03163314620003735760405162461bcd60e51b81526020600482018190526024820152600080516020620031cf83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003e95760405162461bcd60e51b81526020600482018190526024820152600080516020620031cf83398151915260448201526064016200036a565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f2bd3929b14aa8acb1967c88ab17e81f90c60933cd419221f752456626a2e12b6910160405180910390a25050565b6001600160a01b038216620004a05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200036a565b600254620004af908262000531565b6002556001600160a01b038216600090815260208190526040902054620004d7908262000531565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000540838562000760565b905083811015620005945760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200036a565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005c857607f821691505b602082108103620005e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052c57600081815260208120601f850160051c81016020861015620006185750805b601f850160051c820191505b81811015620006395782815560010162000624565b505050505050565b81516001600160401b038111156200065d576200065d6200059d565b62000675816200066e8454620005b3565b84620005ef565b602080601f831160018114620006ad5760008415620006945750858301515b600019600386901b1c1916600185901b17855562000639565b600085815260208120601f198616915b82811015620006de57888601518255948401946001909101908401620006bd565b5085821015620006fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200059757620005976200070d565b6000826200075b57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200059757620005976200070d565b6080516129f7620007d86000396000818161037c01528181610cf201528181610d8301528181610ecc01528181610f08015281816114c7015281816122cd01528181612386015281816123c20152818161243c015261247801526129f76000f3fe6080604052600436106102cd5760003560e01c80637bce5a0411610175578063a5949bcf116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610850578063f2fde38b14610866578063f637434214610886578063fa6dc6651461089c57600080fd5b8063d85ba063146107de578063dd62ed3e146107f4578063e30674491461083a57600080fd5b8063a5949bcf14610714578063a9059cbb14610734578063b62496f514610754578063bbc0c74214610784578063c17b5b8c146107a4578063c876d0b9146107c457600080fd5b80639a7a23d61161012e5780639a7a23d61461068a5780639c3b4fdc146106aa5780639e78fb4f146106c05780639fccce32146106c8578063a0d82dc5146106de578063a457c2d7146106f457600080fd5b80637bce5a04146105f65780638095d5641461060c5780638a8c523c1461062c5780638da5cb5b14610641578063921369131461065f57806395d89b411461067557600080fd5b80632e82f1a011610234578063676c8458116101ed5780636f9a880e116101c75780636f9a880e1461057657806370a0823114610596578063715018a6146105cc578063751039fc146105e157600080fd5b8063676c8458146105295780636a486a8e1461053f5780636ddd17131461055557600080fd5b80632e82f1a014610465578063313ce5671461047f578063395093511461049b5780634a62bb65146104bb5780634fbee193146104da57806366a88d961461051357600080fd5b80631a8145bb116102865780631a8145bb146103cb5780631f3fed8f146103e157806321a43015146103f757806323b872dd1461041957806327c8f835146104395780632c3e486c1461044f57600080fd5b8063018106ed146102d95780630445b6671461030257806306fdde0314610318578063095ea7b31461033a5780631694505e1461036a57806318160ddd146103b657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ef600d5481565b6040519081526020015b60405180910390f35b34801561030e57600080fd5b506102ef600a5481565b34801561032457600080fd5b5061032d6108bc565b6040516102f99190612534565b34801561034657600080fd5b5061035a61035536600461259a565b61094e565b60405190151581526020016102f9565b34801561037657600080fd5b5061039e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102f9565b3480156103c257600080fd5b506002546102ef565b3480156103d757600080fd5b506102ef601b5481565b3480156103ed57600080fd5b506102ef601a5481565b34801561040357600080fd5b506104176104123660046125c6565b610965565b005b34801561042557600080fd5b5061035a610434366004612604565b6109c3565b34801561044557600080fd5b5061039e61dead81565b34801561045b57600080fd5b506102ef600c5481565b34801561047157600080fd5b50600f5461035a9060ff1681565b34801561048b57600080fd5b50604051601281526020016102f9565b3480156104a757600080fd5b5061035a6104b636600461259a565b610a2c565b3480156104c757600080fd5b50600f5461035a90610100900460ff1681565b3480156104e657600080fd5b5061035a6104f5366004612645565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561051f57600080fd5b506102ef600b5481565b34801561053557600080fd5b506102ef60095481565b34801561054b57600080fd5b506102ef60165481565b34801561056157600080fd5b50600f5461035a906301000000900460ff1681565b34801561058257600080fd5b5060085461039e906001600160a01b031681565b3480156105a257600080fd5b506102ef6105b1366004612645565b6001600160a01b031660009081526020819052604090205490565b3480156105d857600080fd5b50610417610a62565b3480156105ed57600080fd5b5061035a610ad6565b34801561060257600080fd5b506102ef60135481565b34801561061857600080fd5b50610417610627366004612662565b610b14565b34801561063857600080fd5b50610417610bbc565b34801561064d57600080fd5b506005546001600160a01b031661039e565b34801561066b57600080fd5b506102ef60175481565b34801561068157600080fd5b5061032d610bfb565b34801561069657600080fd5b506104176106a53660046125c6565b610c0a565b3480156106b657600080fd5b506102ef60155481565b610417610cc6565b3480156106d457600080fd5b506102ef601c5481565b3480156106ea57600080fd5b506102ef60195481565b34801561070057600080fd5b5061035a61070f36600461259a565b610f93565b34801561072057600080fd5b5060075461039e906001600160a01b031681565b34801561074057600080fd5b5061035a61074f36600461259a565b610fe2565b34801561076057600080fd5b5061035a61076f366004612645565b601f6020526000908152604090205460ff1681565b34801561079057600080fd5b50600f5461035a9062010000900460ff1681565b3480156107b057600080fd5b506104176107bf366004612662565b610fef565b3480156107d057600080fd5b5060115461035a9060ff1681565b3480156107ea57600080fd5b506102ef60125481565b34801561080057600080fd5b506102ef61080f36600461268e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561084657600080fd5b506102ef600e5481565b34801561085c57600080fd5b506102ef60145481565b34801561087257600080fd5b50610417610881366004612645565b611092565b34801561089257600080fd5b506102ef60185481565b3480156108a857600080fd5b506104176108b73660046125c6565b61117d565b6060600380546108cb906126bc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f7906126bc565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095b338484611206565b5060015b92915050565b6005546001600160a01b031633146109985760405162461bcd60e51b815260040161098f906126f6565b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b60006109d084848461132b565b610a228433610a1d85604051806060016040528060288152602001612975602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611c63565b611206565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161095b918590610a1d9086611c9d565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161098f906126f6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610b035760405162461bcd60e51b815260040161098f906126f6565b50600f805461ff0019169055600190565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161098f906126f6565b60138390556014829055601581905580610b588385612741565b610b629190612741565b601281905560051015610bb75760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604482015260640161098f565b505050565b6005546001600160a01b03163314610be65760405162461bcd60e51b815260040161098f906126f6565b600f805463ffff000019166301010000179055565b6060600480546108cb906126bc565b6005546001600160a01b03163314610c345760405162461bcd60e51b815260040161098f906126f6565b6006546001600160a01b0390811690831603610cb85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161098f565b610cc28282611d03565b5050565b6005546001600160a01b03163314610cf05760405162461bcd60e51b815260040161098f906126f6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190612754565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190612754565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e749190612754565b600680546001600160a01b0319166001600160a01b03929092169182179055610e9e906001610965565b600654610eb5906001600160a01b03166001611d03565b3060008181526020819052604090205490610ef1907f000000000000000000000000000000000000000000000000000000000000000083611206565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d719903490610f4a9030908690600090819033904290600401612771565b60606040518083038185885af1158015610f68573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f8d91906127ac565b50505050565b600061095b3384610a1d8560405180606001604052806025815260200161299d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611c63565b600061095b33848461132b565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161098f906126f6565b601783905560188290556019819055806110338385612741565b61103d9190612741565b601681905560051015610bb75760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604482015260640161098f565b6005546001600160a01b031633146110bc5760405162461bcd60e51b815260040161098f906126f6565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161098f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111a75760405162461bcd60e51b815260040161098f906126f6565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f2bd3929b14aa8acb1967c88ab17e81f90c60933cd419221f752456626a2e12b6910160405180910390a25050565b6001600160a01b0383166112685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161098f565b6001600160a01b0382166112c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161098f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113515760405162461bcd60e51b815260040161098f906127da565b6001600160a01b0382166113775760405162461bcd60e51b815260040161098f9061281f565b8060000361138b57610bb783836000611d57565b600f54610100900460ff1615611828576005546001600160a01b038481169116148015906113c757506005546001600160a01b03838116911614155b80156113db57506001600160a01b03821615155b80156113f257506001600160a01b03821661dead14155b80156114085750600654600160a01b900460ff16155b1561182857600f5462010000900460ff166114a1576001600160a01b0383166000908152601d602052604090205460ff168061145c57506001600160a01b0382166000908152601d602052604090205460ff165b6114a15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161098f565b60115460ff16156115c4576005546001600160a01b038381169116148015906114fc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561151657506006546001600160a01b03838116911614155b156115c4573260009081526010602052604090205443116115b15760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161098f565b3260009081526010602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561160557506001600160a01b0382166000908152601e602052604090205460ff16155b156116e8576009548111156116795760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b606482015260840161098f565b600b546001600160a01b03831660009081526020819052604090205461169f9083612741565b11156116e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161098f565b611828565b6001600160a01b0382166000908152601f602052604090205460ff16801561172957506001600160a01b0383166000908152601e602052604090205460ff16155b1561179e576009548111156116e35760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b606482015260840161098f565b6001600160a01b0382166000908152601e602052604090205460ff1661182857600b546001600160a01b0383166000908152602081905260409020546117e49083612741565b11156118285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161098f565b30600090815260208190526040902054600a54811080159081906118555750600f546301000000900460ff165b801561186b5750600654600160a01b900460ff16155b80156118795750600a548310155b801561189d57506001600160a01b0384166000908152601f602052604090205460ff165b80156118c257506001600160a01b0385166000908152601d602052604090205460ff16155b80156118e757506001600160a01b0384166000908152601d602052604090205460ff16155b15611915576006805460ff60a01b1916600160a01b179055611907611e60565b6006805460ff60a01b191690555b6001600160a01b0385166000908152601f602052604090205460ff16801561195557506001600160a01b0384166000908152601d602052604090205460ff165b801561197957506001600160a01b0384166000908152601e602052604090205460ff165b1561198c57600f805460ff191660011790555b600654600160a01b900460ff161580156119be57506001600160a01b0384166000908152601f602052604090205460ff165b80156119cc5750600f5460ff165b80156119da5750600e544210155b80156119fe57506001600160a01b0385166000908152601d602052604090205460ff165b15611a0d57611a0b612025565b505b6006546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611a5b57506001600160a01b0385166000908152601d602052604090205460ff165b15611a64575060005b60008115611c4f576001600160a01b0386166000908152601f602052604090205460ff168015611a9657506000601654115b15611b5457611abb6064611ab56016548861217090919063ffffffff16565b906121f2565b905060165460185482611ace9190612862565b611ad89190612879565b601b6000828254611ae99190612741565b9091555050601654601954611afe9083612862565b611b089190612879565b601c6000828254611b199190612741565b9091555050601654601754611b2e9083612862565b611b389190612879565b601a6000828254611b499190612741565b90915550611c319050565b6001600160a01b0387166000908152601f602052604090205460ff168015611b7e57506000601254115b15611c3157611b9d6064611ab56012548861217090919063ffffffff16565b905060125460145482611bb09190612862565b611bba9190612879565b601b6000828254611bcb9190612741565b9091555050601254601554611be09083612862565b611bea9190612879565b601c6000828254611bfb9190612741565b9091555050601254601354611c109083612862565b611c1a9190612879565b601a6000828254611c2b9190612741565b90915550505b8015611c4257611c42873083611d57565b611c4c818661289b565b94505b611c5a878787611d57565b50505050505050565b60008184841115611c875760405162461bcd60e51b815260040161098f9190612534565b506000611c94848661289b565b95945050505050565b600080611caa8385612741565b905083811015611cfc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161098f565b9392505050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260040161098f906127da565b6001600160a01b038216611da35760405162461bcd60e51b815260040161098f9061281f565b611de08160405180606001604052806026815260200161294f602691396001600160a01b0386166000908152602081905260409020549190611c63565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e0f9082611c9d565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161131e565b3060009081526020819052604081205490506000601c54601a54601b54611e879190612741565b611e919190612741565b9050811580611e9e575080155b15611ea7575050565b600a54611eb5906078612862565b821115611ecd57600a54611eca906078612862565b91505b6000600282601b5485611ee09190612862565b611eea9190612879565b611ef49190612879565b90506000611f028483612234565b905047611f0e82612276565b6000611f1a4783612234565b90506000611f3786611ab5601a548561217090919063ffffffff16565b90506000611f5487611ab5601c548661217090919063ffffffff16565b9050600081611f63848661289b565b611f6d919061289b565b6000601b819055601a819055601c5590508615801590611f8d5750600081115b15611fe057611f9c8782612436565b601b54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612019573d6000803e3d6000fd5b50505050505050505050565b42600e556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209a91906128ae565b905060006120ba620186a0611ab5600d548561217090919063ffffffff16565b905080156120db576006546120db906001600160a01b031661dead83611d57565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561212557600080fd5b505af1158015612139573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000826000036121825750600061095f565b600061218e8385612862565b90508261219b8583612879565b14611cfc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161098f565b6000611cfc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612506565b6000611cfc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c63565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122ab576122ab6128c7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234d9190612754565b81600181518110612360576123606128c7565b60200260200101906001600160a01b031690816001600160a01b0316815250506123ab307f000000000000000000000000000000000000000000000000000000000000000084611206565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124009085906000908690309042906004016128dd565b600060405180830381600087803b15801561241a57600080fd5b505af115801561242e573d6000803e3d6000fd5b505050505050565b612461307f000000000000000000000000000000000000000000000000000000000000000084611206565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d7199083906124bc9030908790600090819061dead904290600401612771565b60606040518083038185885af11580156124da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ff91906127ac565b5050505050565b600081836125275760405162461bcd60e51b815260040161098f9190612534565b506000611c948486612879565b600060208083528351808285015260005b8181101561256157858101830151858201604001528201612545565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461259757600080fd5b50565b600080604083850312156125ad57600080fd5b82356125b881612582565b946020939093013593505050565b600080604083850312156125d957600080fd5b82356125e481612582565b9150602083013580151581146125f957600080fd5b809150509250929050565b60008060006060848603121561261957600080fd5b833561262481612582565b9250602084013561263481612582565b929592945050506040919091013590565b60006020828403121561265757600080fd5b8135611cfc81612582565b60008060006060848603121561267757600080fd5b505081359360208301359350604090920135919050565b600080604083850312156126a157600080fd5b82356126ac81612582565b915060208301356125f981612582565b600181811c908216806126d057607f821691505b6020821081036126f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095f5761095f61272b565b60006020828403121561276657600080fd5b8151611cfc81612582565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806000606084860312156127c157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761095f5761095f61272b565b60008261289657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561095f5761095f61272b565b6000602082840312156128c057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561292d5784516001600160a01b031683529383019391830191600101612908565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b1c5e7f93e229bb37679e32268bca5fba8288b4d6d97c8a2f8d9e6263273676564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80637bce5a0411610175578063a5949bcf116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610850578063f2fde38b14610866578063f637434214610886578063fa6dc6651461089c57600080fd5b8063d85ba063146107de578063dd62ed3e146107f4578063e30674491461083a57600080fd5b8063a5949bcf14610714578063a9059cbb14610734578063b62496f514610754578063bbc0c74214610784578063c17b5b8c146107a4578063c876d0b9146107c457600080fd5b80639a7a23d61161012e5780639a7a23d61461068a5780639c3b4fdc146106aa5780639e78fb4f146106c05780639fccce32146106c8578063a0d82dc5146106de578063a457c2d7146106f457600080fd5b80637bce5a04146105f65780638095d5641461060c5780638a8c523c1461062c5780638da5cb5b14610641578063921369131461065f57806395d89b411461067557600080fd5b80632e82f1a011610234578063676c8458116101ed5780636f9a880e116101c75780636f9a880e1461057657806370a0823114610596578063715018a6146105cc578063751039fc146105e157600080fd5b8063676c8458146105295780636a486a8e1461053f5780636ddd17131461055557600080fd5b80632e82f1a014610465578063313ce5671461047f578063395093511461049b5780634a62bb65146104bb5780634fbee193146104da57806366a88d961461051357600080fd5b80631a8145bb116102865780631a8145bb146103cb5780631f3fed8f146103e157806321a43015146103f757806323b872dd1461041957806327c8f835146104395780632c3e486c1461044f57600080fd5b8063018106ed146102d95780630445b6671461030257806306fdde0314610318578063095ea7b31461033a5780631694505e1461036a57806318160ddd146103b657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ef600d5481565b6040519081526020015b60405180910390f35b34801561030e57600080fd5b506102ef600a5481565b34801561032457600080fd5b5061032d6108bc565b6040516102f99190612534565b34801561034657600080fd5b5061035a61035536600461259a565b61094e565b60405190151581526020016102f9565b34801561037657600080fd5b5061039e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102f9565b3480156103c257600080fd5b506002546102ef565b3480156103d757600080fd5b506102ef601b5481565b3480156103ed57600080fd5b506102ef601a5481565b34801561040357600080fd5b506104176104123660046125c6565b610965565b005b34801561042557600080fd5b5061035a610434366004612604565b6109c3565b34801561044557600080fd5b5061039e61dead81565b34801561045b57600080fd5b506102ef600c5481565b34801561047157600080fd5b50600f5461035a9060ff1681565b34801561048b57600080fd5b50604051601281526020016102f9565b3480156104a757600080fd5b5061035a6104b636600461259a565b610a2c565b3480156104c757600080fd5b50600f5461035a90610100900460ff1681565b3480156104e657600080fd5b5061035a6104f5366004612645565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561051f57600080fd5b506102ef600b5481565b34801561053557600080fd5b506102ef60095481565b34801561054b57600080fd5b506102ef60165481565b34801561056157600080fd5b50600f5461035a906301000000900460ff1681565b34801561058257600080fd5b5060085461039e906001600160a01b031681565b3480156105a257600080fd5b506102ef6105b1366004612645565b6001600160a01b031660009081526020819052604090205490565b3480156105d857600080fd5b50610417610a62565b3480156105ed57600080fd5b5061035a610ad6565b34801561060257600080fd5b506102ef60135481565b34801561061857600080fd5b50610417610627366004612662565b610b14565b34801561063857600080fd5b50610417610bbc565b34801561064d57600080fd5b506005546001600160a01b031661039e565b34801561066b57600080fd5b506102ef60175481565b34801561068157600080fd5b5061032d610bfb565b34801561069657600080fd5b506104176106a53660046125c6565b610c0a565b3480156106b657600080fd5b506102ef60155481565b610417610cc6565b3480156106d457600080fd5b506102ef601c5481565b3480156106ea57600080fd5b506102ef60195481565b34801561070057600080fd5b5061035a61070f36600461259a565b610f93565b34801561072057600080fd5b5060075461039e906001600160a01b031681565b34801561074057600080fd5b5061035a61074f36600461259a565b610fe2565b34801561076057600080fd5b5061035a61076f366004612645565b601f6020526000908152604090205460ff1681565b34801561079057600080fd5b50600f5461035a9062010000900460ff1681565b3480156107b057600080fd5b506104176107bf366004612662565b610fef565b3480156107d057600080fd5b5060115461035a9060ff1681565b3480156107ea57600080fd5b506102ef60125481565b34801561080057600080fd5b506102ef61080f36600461268e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561084657600080fd5b506102ef600e5481565b34801561085c57600080fd5b506102ef60145481565b34801561087257600080fd5b50610417610881366004612645565b611092565b34801561089257600080fd5b506102ef60185481565b3480156108a857600080fd5b506104176108b73660046125c6565b61117d565b6060600380546108cb906126bc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f7906126bc565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061095b338484611206565b5060015b92915050565b6005546001600160a01b031633146109985760405162461bcd60e51b815260040161098f906126f6565b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b60006109d084848461132b565b610a228433610a1d85604051806060016040528060288152602001612975602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611c63565b611206565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161095b918590610a1d9086611c9d565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161098f906126f6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610b035760405162461bcd60e51b815260040161098f906126f6565b50600f805461ff0019169055600190565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161098f906126f6565b60138390556014829055601581905580610b588385612741565b610b629190612741565b601281905560051015610bb75760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604482015260640161098f565b505050565b6005546001600160a01b03163314610be65760405162461bcd60e51b815260040161098f906126f6565b600f805463ffff000019166301010000179055565b6060600480546108cb906126bc565b6005546001600160a01b03163314610c345760405162461bcd60e51b815260040161098f906126f6565b6006546001600160a01b0390811690831603610cb85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161098f565b610cc28282611d03565b5050565b6005546001600160a01b03163314610cf05760405162461bcd60e51b815260040161098f906126f6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190612754565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190612754565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e749190612754565b600680546001600160a01b0319166001600160a01b03929092169182179055610e9e906001610965565b600654610eb5906001600160a01b03166001611d03565b3060008181526020819052604090205490610ef1907f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611206565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d719903490610f4a9030908690600090819033904290600401612771565b60606040518083038185885af1158015610f68573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f8d91906127ac565b50505050565b600061095b3384610a1d8560405180606001604052806025815260200161299d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611c63565b600061095b33848461132b565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161098f906126f6565b601783905560188290556019819055806110338385612741565b61103d9190612741565b601681905560051015610bb75760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604482015260640161098f565b6005546001600160a01b031633146110bc5760405162461bcd60e51b815260040161098f906126f6565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161098f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111a75760405162461bcd60e51b815260040161098f906126f6565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f2bd3929b14aa8acb1967c88ab17e81f90c60933cd419221f752456626a2e12b6910160405180910390a25050565b6001600160a01b0383166112685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161098f565b6001600160a01b0382166112c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161098f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113515760405162461bcd60e51b815260040161098f906127da565b6001600160a01b0382166113775760405162461bcd60e51b815260040161098f9061281f565b8060000361138b57610bb783836000611d57565b600f54610100900460ff1615611828576005546001600160a01b038481169116148015906113c757506005546001600160a01b03838116911614155b80156113db57506001600160a01b03821615155b80156113f257506001600160a01b03821661dead14155b80156114085750600654600160a01b900460ff16155b1561182857600f5462010000900460ff166114a1576001600160a01b0383166000908152601d602052604090205460ff168061145c57506001600160a01b0382166000908152601d602052604090205460ff165b6114a15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161098f565b60115460ff16156115c4576005546001600160a01b038381169116148015906114fc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561151657506006546001600160a01b03838116911614155b156115c4573260009081526010602052604090205443116115b15760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161098f565b3260009081526010602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561160557506001600160a01b0382166000908152601e602052604090205460ff16155b156116e8576009548111156116795760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b606482015260840161098f565b600b546001600160a01b03831660009081526020819052604090205461169f9083612741565b11156116e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161098f565b611828565b6001600160a01b0382166000908152601f602052604090205460ff16801561172957506001600160a01b0383166000908152601e602052604090205460ff16155b1561179e576009548111156116e35760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b606482015260840161098f565b6001600160a01b0382166000908152601e602052604090205460ff1661182857600b546001600160a01b0383166000908152602081905260409020546117e49083612741565b11156118285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161098f565b30600090815260208190526040902054600a54811080159081906118555750600f546301000000900460ff165b801561186b5750600654600160a01b900460ff16155b80156118795750600a548310155b801561189d57506001600160a01b0384166000908152601f602052604090205460ff165b80156118c257506001600160a01b0385166000908152601d602052604090205460ff16155b80156118e757506001600160a01b0384166000908152601d602052604090205460ff16155b15611915576006805460ff60a01b1916600160a01b179055611907611e60565b6006805460ff60a01b191690555b6001600160a01b0385166000908152601f602052604090205460ff16801561195557506001600160a01b0384166000908152601d602052604090205460ff165b801561197957506001600160a01b0384166000908152601e602052604090205460ff165b1561198c57600f805460ff191660011790555b600654600160a01b900460ff161580156119be57506001600160a01b0384166000908152601f602052604090205460ff165b80156119cc5750600f5460ff165b80156119da5750600e544210155b80156119fe57506001600160a01b0385166000908152601d602052604090205460ff165b15611a0d57611a0b612025565b505b6006546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611a5b57506001600160a01b0385166000908152601d602052604090205460ff165b15611a64575060005b60008115611c4f576001600160a01b0386166000908152601f602052604090205460ff168015611a9657506000601654115b15611b5457611abb6064611ab56016548861217090919063ffffffff16565b906121f2565b905060165460185482611ace9190612862565b611ad89190612879565b601b6000828254611ae99190612741565b9091555050601654601954611afe9083612862565b611b089190612879565b601c6000828254611b199190612741565b9091555050601654601754611b2e9083612862565b611b389190612879565b601a6000828254611b499190612741565b90915550611c319050565b6001600160a01b0387166000908152601f602052604090205460ff168015611b7e57506000601254115b15611c3157611b9d6064611ab56012548861217090919063ffffffff16565b905060125460145482611bb09190612862565b611bba9190612879565b601b6000828254611bcb9190612741565b9091555050601254601554611be09083612862565b611bea9190612879565b601c6000828254611bfb9190612741565b9091555050601254601354611c109083612862565b611c1a9190612879565b601a6000828254611c2b9190612741565b90915550505b8015611c4257611c42873083611d57565b611c4c818661289b565b94505b611c5a878787611d57565b50505050505050565b60008184841115611c875760405162461bcd60e51b815260040161098f9190612534565b506000611c94848661289b565b95945050505050565b600080611caa8385612741565b905083811015611cfc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161098f565b9392505050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260040161098f906127da565b6001600160a01b038216611da35760405162461bcd60e51b815260040161098f9061281f565b611de08160405180606001604052806026815260200161294f602691396001600160a01b0386166000908152602081905260409020549190611c63565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e0f9082611c9d565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161131e565b3060009081526020819052604081205490506000601c54601a54601b54611e879190612741565b611e919190612741565b9050811580611e9e575080155b15611ea7575050565b600a54611eb5906078612862565b821115611ecd57600a54611eca906078612862565b91505b6000600282601b5485611ee09190612862565b611eea9190612879565b611ef49190612879565b90506000611f028483612234565b905047611f0e82612276565b6000611f1a4783612234565b90506000611f3786611ab5601a548561217090919063ffffffff16565b90506000611f5487611ab5601c548661217090919063ffffffff16565b9050600081611f63848661289b565b611f6d919061289b565b6000601b819055601a819055601c5590508615801590611f8d5750600081115b15611fe057611f9c8782612436565b601b54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612019573d6000803e3d6000fd5b50505050505050505050565b42600e556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209a91906128ae565b905060006120ba620186a0611ab5600d548561217090919063ffffffff16565b905080156120db576006546120db906001600160a01b031661dead83611d57565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561212557600080fd5b505af1158015612139573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000826000036121825750600061095f565b600061218e8385612862565b90508261219b8583612879565b14611cfc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161098f565b6000611cfc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612506565b6000611cfc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c63565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122ab576122ab6128c7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234d9190612754565b81600181518110612360576123606128c7565b60200260200101906001600160a01b031690816001600160a01b0316815250506123ab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611206565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124009085906000908690309042906004016128dd565b600060405180830381600087803b15801561241a57600080fd5b505af115801561242e573d6000803e3d6000fd5b505050505050565b612461307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611206565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d7199083906124bc9030908790600090819061dead904290600401612771565b60606040518083038185885af11580156124da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ff91906127ac565b5050505050565b600081836125275760405162461bcd60e51b815260040161098f9190612534565b506000611c948486612879565b600060208083528351808285015260005b8181101561256157858101830151858201604001528201612545565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461259757600080fd5b50565b600080604083850312156125ad57600080fd5b82356125b881612582565b946020939093013593505050565b600080604083850312156125d957600080fd5b82356125e481612582565b9150602083013580151581146125f957600080fd5b809150509250929050565b60008060006060848603121561261957600080fd5b833561262481612582565b9250602084013561263481612582565b929592945050506040919091013590565b60006020828403121561265757600080fd5b8135611cfc81612582565b60008060006060848603121561267757600080fd5b505081359360208301359350604090920135919050565b600080604083850312156126a157600080fd5b82356126ac81612582565b915060208301356125f981612582565b600181811c908216806126d057607f821691505b6020821081036126f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095f5761095f61272b565b60006020828403121561276657600080fd5b8151611cfc81612582565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806000606084860312156127c157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761095f5761095f61272b565b60008261289657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561095f5761095f61272b565b6000602082840312156128c057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561292d5784516001600160a01b031683529383019391830191600101612908565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b1c5e7f93e229bb37679e32268bca5fba8288b4d6d97c8a2f8d9e6263273676564736f6c63430008130033

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.