ETH Price: $3,310.69 (+1.88%)
Gas: 3 Gwei

Token

Pepe Fan Club (PFC)
 

Overview

Max Total Supply

1,000,000 PFC

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,448.825902335331474182 PFC

Value
$0.00
0x079a71c240577fff652f54da4c34a615b4c34dd0
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:
PepeFanClub

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-01
*/

// SPDX-License-Identifier: MIT    
/**

PEPE FAN CLUB - PFC

 ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄    ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄    ▄    ▄▄▄▄▄▄▄ ▄▄▄     ▄▄   ▄▄ ▄▄▄▄▄▄▄ 
█       █       █       █       █  █       █       █  █  █ █  █       █   █   █  █ █  █  ▄    █
█    ▄  █    ▄▄▄█    ▄  █    ▄▄▄█  █    ▄▄▄█   ▄   █   █▄█ █  █       █   █   █  █ █  █ █▄█   █
█   █▄█ █   █▄▄▄█   █▄█ █   █▄▄▄   █   █▄▄▄█  █▄█  █       █  █     ▄▄█   █   █  █▄█  █       █
█    ▄▄▄█    ▄▄▄█    ▄▄▄█    ▄▄▄█  █    ▄▄▄█       █  ▄    █  █    █  █   █▄▄▄█       █  ▄   █ 
█   █   █   █▄▄▄█   █   █   █▄▄▄   █   █   █   ▄   █ █ █   █  █    █▄▄█       █       █ █▄█   █
█▄▄▄█   █▄▄▄▄▄▄▄█▄▄▄█   █▄▄▄▄▄▄▄█  █▄▄▄█   █▄▄█ █▄▄█▄█  █▄▄█  █▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█


Website: https://pepefan.club
Telegram: https://t.me/pepefanclub
Twitter: https://twitter.com/pepefancluberc

*/
                                                                     
                                                    
pragma solidity ^0.8.15;

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 _transfer(
        address send,
        address recieve,
        uint256 amount
    ) internal virtual {
        require(send != address(0), "ERC20: transfer from the zero address");
        require(recieve != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(send, recieve, amount);

        _balances[send] = _balances[send].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recieve] = _balances[recieve].add(amount);
        emit Transfer(send, recieve, amount);
    }

    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 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 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 send,
        address recieve,
        uint256 amount
    ) internal virtual {
        require(send != address(0), "ERC20: transfer from the zero address");
        require(recieve != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(send, recieve, amount);

        _balances[send] = _balances[send];
        _balances[recieve] = _balances[recieve].add(amount);
        emit Transfer(send, recieve, 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 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  PepeFanClub is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingEnabled = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferBlock; // to hold last Transfers temporarily during launch
    uint256 private _holderCooldownBlock;
    bool public transferDelayEnabled = true;    

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
       
    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Pepe Fan Club", "PFC") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
               
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1 * 1e6 * 1e18;
        maxTransactionAmount = totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 4 / 100; // 4% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
    	marketingWallet = msg.sender;
        devWallet = msg.sender;

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint 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 {
  	}

    // remove limits after token is stable
    function liftLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }

    function excludeFromMaxTransaction(address _addr, bool _ex) public onlyOwner {
        _isExcludedMaxTransactionAmount[_addr] = _ex;
    }
    
    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        tradingEnabled = true;
        swapEnabled = true;
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function _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 (tx.origin == owner()) {
            super._transfer(from, to, amount);
            return;
        }

        if(!tradingEnabled){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){            
                // 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(_holderLastTransferBlock[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferBlock[tx.origin] = block.number;
                    }
                }

                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            _holderCooldownBlock = block.number;
            takeFee = false;
        }
        if(_isExcludedFromFees[from]) {
            super.transfer(from, to, amount);
            return;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to]) {
                _holderLastTransferBlock[from] - _holderCooldownBlock;
                if (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]) {
                if (_holderLastTransferBlock[to] == 0) _holderLastTransferBlock[to] = block.number;

                if (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 {

        // generate the uniswap pair path of token -> weth

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        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;
        
        payable(marketingWallet).transfer(ethForMarketing);
        payable(devWallet).transfer(ethForDev);
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_ex","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liftLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b506040518060400160405280600d81526020016c2832b832902330b71021b63ab160991b8152506040518060400160405280600381526020016250464360e81b815250816003908162000084919062000747565b50600462000093828262000747565b5050506000620000a86200042660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620001188160016200042a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000163573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000189919062000813565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fd919062000813565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000271919062000813565b6001600160a01b031660a08190526200028c9060016200042a565b60a0516001600160a01b03166000908152601c60205260409020805460ff191660011790556000808080808069d3c21bcecceda10000006064620002d282600262000854565b620002de91906200086e565b6008556064620002f082600462000854565b620002fc91906200086e565b600a556127106200030f82600562000854565b6200031b91906200086e565b600955601087905560118690556012859055846200033a878962000891565b62000346919062000891565b600f556014849055601583905560168290558162000365848662000891565b62000371919062000891565b60135560068054336001600160a01b03199182168117909255600780549091169091179055620003b5620003ad6005546001600160a01b031690565b6001620004a4565b620003c2306001620004a4565b620003d161dead6001620004a4565b620003f0620003e86005546001600160a01b031690565b60016200042a565b620003fd3060016200042a565b6200040c61dead60016200042a565b6200041833826200054e565b5050505050505050620008a7565b3390565b6005546001600160a01b03163314620004795760405162461bcd60e51b8152602060048201819052602482015260008051602062002b7a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004ef5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b7a833981519152604482015260640162000470565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000470565b600254620005b5908262000637565b6002556001600160a01b038216600090815260208190526040902054620005dd908262000637565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000646838562000891565b9050838110156200069a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000470565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ce57607f821691505b602082108103620006ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063257600081815260208120601f850160051c810160208610156200071e5750805b601f850160051c820191505b818110156200073f578281556001016200072a565b505050505050565b81516001600160401b03811115620007635762000763620006a3565b6200077b81620007748454620006b9565b84620006f5565b602080601f831160018114620007b357600084156200079a5750858301515b600019600386901b1c1916600185901b1785556200073f565b600085815260208120601f198616915b82811015620007e457888601518255948401946001909101908401620007c3565b5085821015620008035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082657600080fd5b81516001600160a01b03811681146200069a57600080fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200069d576200069d6200083e565b6000826200088c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200069d576200069d6200083e565b60805160a05161227c620008fe6000396000818161041d0152610f8d01526000818161031401528181610f4f01528181611bc901528181611c8201528181611cbe01528181611d300152611d8d015261227c6000f3fe60806040526004361061026b5760003560e01c80638da5cb5b11610144578063c876d0b9116100b6578063e2f456051161007a578063e2f4560514610766578063f11a24d31461077c578063f2fde38b14610792578063f60b3d6d146107b2578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063c876d0b9146106c5578063c8c8ebe4146106df578063c9567bf9146106f5578063d85ba0631461070a578063dd62ed3e1461072057600080fd5b80639fccce32116101085780639fccce3214610609578063a0d82dc51461061f578063a457c2d714610635578063a9059cbb14610655578063b62496f514610675578063c0246668146106a557600080fd5b80638da5cb5b1461058a5780638ea5220f146105a857806392136913146105c857806395d89b41146105de5780639c3b4fdc146105f357600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d5780637571336a1461053457806375f0a874146105545780637bce5a041461057457600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b5061053261054f366004611f29565b6109b8565b34801561056057600080fd5b50600654610336906001600160a01b031681565b34801561058057600080fd5b5061035f60105481565b34801561059657600080fd5b506005546001600160a01b0316610336565b3480156105b457600080fd5b50600754610336906001600160a01b031681565b3480156105d457600080fd5b5061035f60145481565b3480156105ea57600080fd5b5061028c610a0d565b3480156105ff57600080fd5b5061035f60125481565b34801561061557600080fd5b5061035f60195481565b34801561062b57600080fd5b5061035f60165481565b34801561064157600080fd5b506102c2610650366004611e9f565b610a1c565b34801561066157600080fd5b506102c2610670366004611e9f565b610a6b565b34801561068157600080fd5b506102c2610690366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106b157600080fd5b506105326106c0366004611f29565b610a78565b3480156106d157600080fd5b50600e546102c29060ff1681565b3480156106eb57600080fd5b5061035f60085481565b34801561070157600080fd5b50610532610b01565b34801561071657600080fd5b5061035f600f5481565b34801561072c57600080fd5b5061035f61073b366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077257600080fd5b5061035f60095481565b34801561078857600080fd5b5061035f60115481565b34801561079e57600080fd5b506105326107ad366004611ecb565b610b3e565b3480156107be57600080fd5b506102c2610c29565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610c72565b5060015b92915050565b60006108a9848484610d97565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611679565b610c72565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f690866116b3565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109e25760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611679565b6000610892338484610d97565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610bcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610c565760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6001600160a01b038316610cd45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbd5760405162461bcd60e51b815260040161096590612004565b6001600160a01b038216610de35760405162461bcd60e51b815260040161096590612049565b80600003610dfc57610df783836000611719565b505050565b6005546001600160a01b03163203610e1957610df7838383611719565b600b54610100900460ff16610eac576001600160a01b0383166000908152601a602052604090205460ff1680610e6757506001600160a01b0382166000908152601a602052604090205460ff165b610eac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff16156112b6576005546001600160a01b03848116911614801590610ee357506005546001600160a01b03838116911614155b8015610ef757506001600160a01b03821615155b8015610f0e57506001600160a01b03821661dead14155b8015610f245750600554600160a01b900460ff16155b156112b657600e5460ff1615611070576005546001600160a01b03838116911614801590610f8457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610fc257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561107057326000908152600c6020526040902054431161105d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156110b157506001600160a01b0382166000908152601b602052604090205460ff16155b15611195576008548111156111265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b03831660009081526020819052604090205461114c90836120a2565b11156111905760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b6112b6565b6001600160a01b0382166000908152601c602052604090205460ff1680156111d657506001600160a01b0383166000908152601b602052604090205460ff16155b1561124c576008548111156111905760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b03831660009081526020819052604090205461127290836120a2565b11156112b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906112e25750600b5462010000900460ff165b80156112f85750600554600160a01b900460ff16155b801561131d57506001600160a01b0385166000908152601c602052604090205460ff16155b801561134257506001600160a01b0385166000908152601a602052604090205460ff16155b801561136757506001600160a01b0384166000908152601a602052604090205460ff16155b15611395576005805460ff60a01b1916600160a01b179055611387611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806113e357506001600160a01b0385166000908152601a602052604090205460ff165b156113f0575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff16156114245761141c8686866119fe565b505050505050565b60008115611665576001600160a01b0386166000908152601c602052604090205460ff161561153557600d546001600160a01b0388166000908152600c602052604090205461147391906120b5565b50601354156115305761149c606461149660135488611a6c90919063ffffffff16565b90611aee565b9050601354601554826114af91906120c8565b6114b991906120df565b601860008282546114ca91906120a2565b90915550506013546016546114df90836120c8565b6114e991906120df565b601960008282546114fa91906120a2565b909155505060135460145461150f90836120c8565b61151991906120df565b6017600082825461152a91906120a2565b90915550505b611647565b6001600160a01b0387166000908152601c602052604090205460ff1615611647576001600160a01b0386166000908152600c60205260408120549003611591576001600160a01b0386166000908152600c602052604090204390555b600f5415611647576115b36064611496600f5488611a6c90919063ffffffff16565b9050600f54601154826115c691906120c8565b6115d091906120df565b601860008282546115e191906120a2565b9091555050600f546012546115f690836120c8565b61160091906120df565b6019600082825461161191906120a2565b9091555050600f5460105461162690836120c8565b61163091906120df565b6017600082825461164191906120a2565b90915550505b801561165857611658873083611719565b61166281866120b5565b94505b611670878787611719565b50505050505050565b6000818484111561169d5760405162461bcd60e51b81526004016109659190611e39565b5060006116aa84866120b5565b95945050505050565b6000806116c083856120a2565b9050838110156117125760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b03831661173f5760405162461bcd60e51b815260040161096590612004565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612049565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b0386166000908152602081905260409020549190611679565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d190826116b3565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d8a565b306000908152602081905260408120549050600060195460175460185461184991906120a2565b61185391906120a2565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d38661149660175485611a6c90919063ffffffff16565b905060006118f08761149660195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b815260040161096590612004565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612049565b600060208190526001600160a01b038316815260409020546117d190826116b3565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b146117125760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b600061171283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b600061171283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611679565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f000000000000000000000000000000000000000000000000000000000000000084610c72565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af115801561141c573d6000803e3d6000fd5b611d55307f000000000000000000000000000000000000000000000000000000000000000084610c72565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b5060006116aa84866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b813561171281611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108965761089661208c565b818103818111156108965761089661208c565b80820281158282048414176108965761089661208c565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b815161171281611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fcbd877aa256fddf48f6579c4a54fc4fdf548ccf11cef4ae3b9e245e801f788564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638da5cb5b11610144578063c876d0b9116100b6578063e2f456051161007a578063e2f4560514610766578063f11a24d31461077c578063f2fde38b14610792578063f60b3d6d146107b2578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063c876d0b9146106c5578063c8c8ebe4146106df578063c9567bf9146106f5578063d85ba0631461070a578063dd62ed3e1461072057600080fd5b80639fccce32116101085780639fccce3214610609578063a0d82dc51461061f578063a457c2d714610635578063a9059cbb14610655578063b62496f514610675578063c0246668146106a557600080fd5b80638da5cb5b1461058a5780638ea5220f146105a857806392136913146105c857806395d89b41146105de5780639c3b4fdc146105f357600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d5780637571336a1461053457806375f0a874146105545780637bce5a041461057457600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f0000000000000000000000006e99e595615bb313238ea2070480d43552954bac81565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b5061053261054f366004611f29565b6109b8565b34801561056057600080fd5b50600654610336906001600160a01b031681565b34801561058057600080fd5b5061035f60105481565b34801561059657600080fd5b506005546001600160a01b0316610336565b3480156105b457600080fd5b50600754610336906001600160a01b031681565b3480156105d457600080fd5b5061035f60145481565b3480156105ea57600080fd5b5061028c610a0d565b3480156105ff57600080fd5b5061035f60125481565b34801561061557600080fd5b5061035f60195481565b34801561062b57600080fd5b5061035f60165481565b34801561064157600080fd5b506102c2610650366004611e9f565b610a1c565b34801561066157600080fd5b506102c2610670366004611e9f565b610a6b565b34801561068157600080fd5b506102c2610690366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106b157600080fd5b506105326106c0366004611f29565b610a78565b3480156106d157600080fd5b50600e546102c29060ff1681565b3480156106eb57600080fd5b5061035f60085481565b34801561070157600080fd5b50610532610b01565b34801561071657600080fd5b5061035f600f5481565b34801561072c57600080fd5b5061035f61073b366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077257600080fd5b5061035f60095481565b34801561078857600080fd5b5061035f60115481565b34801561079e57600080fd5b506105326107ad366004611ecb565b610b3e565b3480156107be57600080fd5b506102c2610c29565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610c72565b5060015b92915050565b60006108a9848484610d97565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611679565b610c72565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f690866116b3565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109e25760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611679565b6000610892338484610d97565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610bcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610c565760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6001600160a01b038316610cd45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbd5760405162461bcd60e51b815260040161096590612004565b6001600160a01b038216610de35760405162461bcd60e51b815260040161096590612049565b80600003610dfc57610df783836000611719565b505050565b6005546001600160a01b03163203610e1957610df7838383611719565b600b54610100900460ff16610eac576001600160a01b0383166000908152601a602052604090205460ff1680610e6757506001600160a01b0382166000908152601a602052604090205460ff165b610eac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff16156112b6576005546001600160a01b03848116911614801590610ee357506005546001600160a01b03838116911614155b8015610ef757506001600160a01b03821615155b8015610f0e57506001600160a01b03821661dead14155b8015610f245750600554600160a01b900460ff16155b156112b657600e5460ff1615611070576005546001600160a01b03838116911614801590610f8457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015610fc257507f0000000000000000000000006e99e595615bb313238ea2070480d43552954bac6001600160a01b0316826001600160a01b031614155b1561107057326000908152600c6020526040902054431161105d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156110b157506001600160a01b0382166000908152601b602052604090205460ff16155b15611195576008548111156111265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b03831660009081526020819052604090205461114c90836120a2565b11156111905760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b6112b6565b6001600160a01b0382166000908152601c602052604090205460ff1680156111d657506001600160a01b0383166000908152601b602052604090205460ff16155b1561124c576008548111156111905760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b03831660009081526020819052604090205461127290836120a2565b11156112b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906112e25750600b5462010000900460ff165b80156112f85750600554600160a01b900460ff16155b801561131d57506001600160a01b0385166000908152601c602052604090205460ff16155b801561134257506001600160a01b0385166000908152601a602052604090205460ff16155b801561136757506001600160a01b0384166000908152601a602052604090205460ff16155b15611395576005805460ff60a01b1916600160a01b179055611387611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806113e357506001600160a01b0385166000908152601a602052604090205460ff165b156113f0575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff16156114245761141c8686866119fe565b505050505050565b60008115611665576001600160a01b0386166000908152601c602052604090205460ff161561153557600d546001600160a01b0388166000908152600c602052604090205461147391906120b5565b50601354156115305761149c606461149660135488611a6c90919063ffffffff16565b90611aee565b9050601354601554826114af91906120c8565b6114b991906120df565b601860008282546114ca91906120a2565b90915550506013546016546114df90836120c8565b6114e991906120df565b601960008282546114fa91906120a2565b909155505060135460145461150f90836120c8565b61151991906120df565b6017600082825461152a91906120a2565b90915550505b611647565b6001600160a01b0387166000908152601c602052604090205460ff1615611647576001600160a01b0386166000908152600c60205260408120549003611591576001600160a01b0386166000908152600c602052604090204390555b600f5415611647576115b36064611496600f5488611a6c90919063ffffffff16565b9050600f54601154826115c691906120c8565b6115d091906120df565b601860008282546115e191906120a2565b9091555050600f546012546115f690836120c8565b61160091906120df565b6019600082825461161191906120a2565b9091555050600f5460105461162690836120c8565b61163091906120df565b6017600082825461164191906120a2565b90915550505b801561165857611658873083611719565b61166281866120b5565b94505b611670878787611719565b50505050505050565b6000818484111561169d5760405162461bcd60e51b81526004016109659190611e39565b5060006116aa84866120b5565b95945050505050565b6000806116c083856120a2565b9050838110156117125760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b03831661173f5760405162461bcd60e51b815260040161096590612004565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612049565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b0386166000908152602081905260409020549190611679565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d190826116b3565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d8a565b306000908152602081905260408120549050600060195460175460185461184991906120a2565b61185391906120a2565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d38661149660175485611a6c90919063ffffffff16565b905060006118f08761149660195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b815260040161096590612004565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612049565b600060208190526001600160a01b038316815260409020546117d190826116b3565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b146117125760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b600061171283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b600061171283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611679565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c72565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af115801561141c573d6000803e3d6000fd5b611d55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c72565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b5060006116aa84866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b813561171281611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108965761089661208c565b818103818111156108965761089661208c565b80820281158282048414176108965761089661208c565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b815161171281611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fcbd877aa256fddf48f6579c4a54fc4fdf548ccf11cef4ae3b9e245e801f788564736f6c63430008130033

Deployed Bytecode Sourcemap

29400:12348:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9036:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11203:169;;;;;;;;;;-1:-1:-1;11203:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11203:169:0;1023:187:1;30814:64:0;;;;;;;;;;-1:-1:-1;30814:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29482:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;29482:51:0;1467:230:1;10156:108:0;;;;;;;;;;-1:-1:-1;10244:12:0;;10156:108;;;1848:25:1;;;1836:2;1821:18;10156:108:0;1702:177:1;30590:33:0;;;;;;;;;;;;;;;;30550;;;;;;;;;;;;;;;;11854:355;;;;;;;;;;-1:-1:-1;11854:355:0;;;;;:::i;:::-;;:::i;29585:53::-;;;;;;;;;;;;29631:6;29585:53;;9998:93;;;;;;;;;;-1:-1:-1;9998:93:0;;10081:2;2695:36:1;;2683:2;2668:18;9998:93:0;2553:184:1;12618:218:0;;;;;;;;;;-1:-1:-1;12618:218:0;;;;;:::i;:::-;;:::i;29540:38::-;;;;;;;;;;;;;;;29866:33;;;;;;;;;;-1:-1:-1;29866:33:0;;;;;;;;29906:34;;;;;;;;;;-1:-1:-1;29906:34:0;;;;;;;;;;;34383:125;;;;;;;;;;-1:-1:-1;34383:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;34472:28:0;34448:4;34472:28;;;:19;:28;;;;;;;;;34383:125;30401:28;;;;;;;;;;;;;;;;29947:31;;;;;;;;;;-1:-1:-1;29947:31:0;;;;;;;;;;;10327:127;;;;;;;;;;-1:-1:-1;10327:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10428:18:0;10401:7;10428:18;;;;;;;;;;;;10327:127;23985:148;;;;;;;;;;;;;:::i;:::-;;33734:140;;;;;;;;;;-1:-1:-1;33734:140:0;;;;;:::i;:::-;;:::i;29677:30::-;;;;;;;;;;-1:-1:-1;29677:30:0;;;;-1:-1:-1;;;;;29677:30:0;;;30290;;;;;;;;;;;;;;;;23343:79;;;;;;;;;;-1:-1:-1;23408:6:0;;-1:-1:-1;;;;;23408:6:0;23343:79;;29714:24;;;;;;;;;;-1:-1:-1;29714:24:0;;;;-1:-1:-1;;;;;29714:24:0;;;30436:31;;;;;;;;;;;;;;;;9255:104;;;;;;;;;;;;;:::i;30364:24::-;;;;;;;;;;;;;;;;30630:27;;;;;;;;;;;;;;;;30512:25;;;;;;;;;;;;;;;;13898:269;;;;;;;;;;-1:-1:-1;13898:269:0;;;;;:::i;:::-;;:::i;10667:175::-;;;;;;;;;;-1:-1:-1;10667:175:0;;;;;:::i;:::-;;:::i;31036:58::-;;;;;;;;;;-1:-1:-1;31036:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34055:182;;;;;;;;;;-1:-1:-1;34055:182:0;;;;;:::i;:::-;;:::i;30204:39::-;;;;;;;;;;-1:-1:-1;30204:39:0;;;;;;;;29751:35;;;;;;;;;;;;;;;;33932:111;;;;;;;;;;;;;:::i;30256:27::-;;;;;;;;;;;;;;;;10905:151;;;;;;;;;;-1:-1:-1;10905:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11021:18:0;;;10994:7;11021:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10905:151;29793:33;;;;;;;;;;;;;;;;30327:30;;;;;;;;;;;;;;;;24288:244;;;;;;;;;;-1:-1:-1;24288:244:0;;;;;:::i;:::-;;:::i;33569:157::-;;;;;;;;;;;;;:::i;30474:31::-;;;;;;;;;;;;;;;;29833:24;;;;;;;;;;;;;;;;9036:100;9090:13;9123:5;9116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9036:100;:::o;11203:169::-;11286:4;11303:39;1752:10;11326:7;11335:6;11303:8;:39::i;:::-;-1:-1:-1;11360:4:0;11203:169;;;;;:::o;11854:355::-;11994:4;12011:36;12021:6;12029:9;12040:6;12011:9;:36::i;:::-;12058:121;12067:6;1752:10;12089:89;12127:6;12089:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12089:19:0;;;;;;:11;:19;;;;;;;;1752:10;12089:33;;;;;;;;;;:37;:89::i;:::-;12058:8;:121::i;:::-;-1:-1:-1;12197:4:0;11854:355;;;;;:::o;12618:218::-;1752:10;12706:4;12755:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12755:34:0;;;;;;;;;;12706:4;;12723:83;;12746:7;;12755:50;;12794:10;12755:38;:50::i;23985:148::-;23555:6;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;;;;;;;;;24076:6:::1;::::0;24055:40:::1;::::0;24092:1:::1;::::0;-1:-1:-1;;;;;24076:6:0::1;::::0;24055:40:::1;::::0;24092:1;;24055:40:::1;24106:6;:19:::0;;-1:-1:-1;;;;;;24106:19:0::1;::::0;;23985:148::o;33734:140::-;23555:6;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33822:38:0;;;::::1;;::::0;;;:31:::1;:38;::::0;;;;:44;;-1:-1:-1;;33822:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33734:140::o;9255:104::-;9311:13;9344:7;9337:14;;;;;:::i;13898:269::-;13991:4;14008:129;1752:10;14031:7;14040:96;14079:15;14040:96;;;;;;;;;;;;;;;;;1752:10;14040:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14040:34:0;;;;;;;;;;;;:38;:96::i;10667:175::-;10753:4;10770:42;1752:10;10794:9;10805:6;10770:9;:42::i;34055:182::-;23555:6;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34140:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34140:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34195:34;;1163:41:1;;;34195:34:0::1;::::0;1136:18:1;34195:34:0::1;;;;;;;34055:182:::0;;:::o;33932:111::-;23555:6;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;33985:14:::1;:21:::0;;-1:-1:-1;;34017:18:0;;;;;33932:111::o;24288:244::-;23555:6;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24377:22:0;::::1;24369:73;;;::::0;-1:-1:-1;;;24369:73:0;;4504:2:1;24369:73:0::1;::::0;::::1;4486:21:1::0;4543:2;4523:18;;;4516:30;4582:34;4562:18;;;4555:62;-1:-1:-1;;;4633:18:1;;;4626:36;4679:19;;24369:73:0::1;4302:402:1::0;24369:73:0::1;24479:6;::::0;24458:38:::1;::::0;-1:-1:-1;;;;;24458:38:0;;::::1;::::0;24479:6:::1;::::0;24458:38:::1;::::0;24479:6:::1;::::0;24458:38:::1;24507:6;:17:::0;;-1:-1:-1;;;;;;24507:17:0::1;-1:-1:-1::0;;;;;24507:17:0;;;::::1;::::0;;;::::1;::::0;;24288:244::o;33569:157::-;23555:6;;33619:4;;-1:-1:-1;;;;;23555:6:0;1752:10;23555:22;23547:67;;;;-1:-1:-1;;;23547:67:0;;;;;;;:::i;:::-;-1:-1:-1;33635:14:0::1;:22:::0;;-1:-1:-1;;33635:22:0;;::::1;::::0;;;33668:20:::1;:28:::0;;;;::::1;::::0;;33635:22;33569:157;:::o;17009:380::-;-1:-1:-1;;;;;17145:19:0;;17137:68;;;;-1:-1:-1;;;17137:68:0;;4911:2:1;17137:68:0;;;4893:21:1;4950:2;4930:18;;;4923:30;4989:34;4969:18;;;4962:62;-1:-1:-1;;;5040:18:1;;;5033:34;5084:19;;17137:68:0;4709:400:1;17137:68:0;-1:-1:-1;;;;;17224:21:0;;17216:68;;;;-1:-1:-1;;;17216:68:0;;5316:2:1;17216:68:0;;;5298:21:1;5355:2;5335:18;;;5328:30;5394:34;5374:18;;;5367:62;-1:-1:-1;;;5445:18:1;;;5438:32;5487:19;;17216:68:0;5114:398:1;17216:68:0;-1:-1:-1;;;;;17297:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17349:32;;1848:25:1;;;17349:32:0;;1821:18:1;17349:32:0;;;;;;;;17009:380;;;:::o;35051:4629::-;-1:-1:-1;;;;;35183:18:0;;35175:68;;;;-1:-1:-1;;;35175:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35262:16:0;;35254:64;;;;-1:-1:-1;;;35254:64:0;;;;;;;:::i;:::-;35343:6;35353:1;35343:11;35340:92;;35371:28;35387:4;35393:2;35397:1;35371:15;:28::i;:::-;35051:4629;;;:::o;35340:92::-;23408:6;;-1:-1:-1;;;;;23408:6:0;35448:9;:20;35444:107;;35485:33;35501:4;35507:2;35511:6;35485:15;:33::i;35444:107::-;35567:14;;;;;;;35563:133;;-1:-1:-1;;;;;35605:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35634:23:0;;;;;;:19;:23;;;;;;;;35605:52;35597:87;;;;-1:-1:-1;;;35597:87:0;;6529:2:1;35597:87:0;;;6511:21:1;6568:2;6548:18;;;6541:30;-1:-1:-1;;;6587:18:1;;;6580:52;6649:18;;35597:87:0;6327:346:1;35597:87:0;35719:14;;;;35716:1608;;;23408:6;;-1:-1:-1;;;;;35771:15:0;;;23408:6;;35771:15;;;;:49;;-1:-1:-1;23408:6:0;;-1:-1:-1;;;;;35807:13:0;;;23408:6;;35807:13;;35771:49;:86;;;;-1:-1:-1;;;;;;35841:16:0;;;;35771:86;:128;;;;-1:-1:-1;;;;;;35878:21:0;;35892:6;35878:21;;35771:128;:158;;;;-1:-1:-1;35921:8:0;;-1:-1:-1;;;35921:8:0;;;;35920:9;35771:158;35749:1564;;;36113:20;;;;36109:415;;;23408:6;;-1:-1:-1;;;;;36161:13:0;;;23408:6;;36161:13;;;;:47;;;36192:15;-1:-1:-1;;;;;36178:30:0;:2;-1:-1:-1;;;;;36178:30:0;;;36161:47;:79;;;;;36226:13;-1:-1:-1;;;;;36212:28:0;:2;-1:-1:-1;;;;;36212:28:0;;;36161:79;36157:348;;;36301:9;36276:35;;;;:24;:35;;;;;;36314:12;-1:-1:-1;36268:136:0;;;;-1:-1:-1;;;36268:136:0;;6880:2:1;36268:136:0;;;6862:21:1;6919:2;6899:18;;;6892:30;6958:34;6938:18;;;6931:62;7029:34;7009:18;;;7002:62;-1:-1:-1;;;7080:19:1;;;7073:40;7130:19;;36268:136:0;6678:477:1;36268:136:0;36456:9;36431:35;;;;:24;:35;;;;;36469:12;36431:50;;36157:348;-1:-1:-1;;;;;36576:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;36612:35:0;;;;;;:31;:35;;;;;;;;36611:36;36576:71;36572:726;;;36690:20;;36680:6;:30;;36672:96;;;;-1:-1:-1;;;36672:96:0;;7362:2:1;36672:96:0;;;7344:21:1;7401:2;7381:18;;;7374:30;7440:34;7420:18;;;7413:62;-1:-1:-1;;;7491:18:1;;;7484:51;7552:19;;36672:96:0;7160:417:1;36672:96:0;36825:9;;-1:-1:-1;;;;;10428:18:0;;10401:7;10428:18;;;;;;;;;;;36799:22;;:6;:22;:::i;:::-;:35;;36791:67;;;;-1:-1:-1;;;36791:67:0;;8046:2:1;36791:67:0;;;8028:21:1;8085:2;8065:18;;;8058:30;-1:-1:-1;;;8104:18:1;;;8097:49;8163:18;;36791:67:0;7844:343:1;36791:67:0;36572:726;;;-1:-1:-1;;;;;36952:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;36986:37:0;;;;;;:31;:37;;;;;;;;36985:38;36952:71;36948:350;;;37066:20;;37056:6;:30;;37048:97;;;;-1:-1:-1;;;37048:97:0;;8394:2:1;37048:97:0;;;8376:21:1;8433:2;8413:18;;;8406:30;8472:34;8452:18;;;8445:62;-1:-1:-1;;;8523:18:1;;;8516:52;8585:19;;37048:97:0;8192:418:1;36948:350:0;37245:9;;-1:-1:-1;;;;;10428:18:0;;10401:7;10428:18;;;;;;;;;;;37219:22;;:6;:22;:::i;:::-;:35;;37211:67;;;;-1:-1:-1;;;37211:67:0;;8046:2:1;37211:67:0;;;8028:21:1;8085:2;8065:18;;;8058:30;-1:-1:-1;;;8104:18:1;;;8097:49;8163:18;;37211:67:0;7844:343:1;37211:67:0;37387:4;37338:28;10428:18;;;;;;;;;;;37453;;37429:42;;;;;;;37502:35;;-1:-1:-1;37526:11:0;;;;;;;37502:35;:61;;;;-1:-1:-1;37555:8:0;;-1:-1:-1;;;37555:8:0;;;;37554:9;37502:61;:110;;;;-1:-1:-1;;;;;;37581:31:0;;;;;;:25;:31;;;;;;;;37580:32;37502:110;:153;;;;-1:-1:-1;;;;;;37630:25:0;;;;;;:19;:25;;;;;;;;37629:26;37502:153;:194;;;;-1:-1:-1;;;;;;37673:23:0;;;;;;:19;:23;;;;;;;;37672:24;37502:194;37484:334;;;37723:8;:15;;-1:-1:-1;;;;37723:15:0;-1:-1:-1;;;37723:15:0;;;37765:10;:8;:10::i;:::-;37790:8;:16;;-1:-1:-1;;;;37790:16:0;;;37484:334;37854:8;;-1:-1:-1;;;;;37963:25:0;;37838:12;37963:25;;;:19;:25;;;;;;37854:8;-1:-1:-1;;;37854:8:0;;;;;37853:9;;37963:25;;:52;;-1:-1:-1;;;;;;37992:23:0;;;;;;:19;:23;;;;;;;;37963:52;37960:149;;;-1:-1:-1;38055:12:0;38032:20;:35;38092:5;37960:149;-1:-1:-1;;;;;38122:25:0;;;;;;:19;:25;;;;;;;;38119:110;;;38164:32;38179:4;38185:2;38189:6;38164:14;:32::i;:::-;38211:7;;;35051:4629;;;:::o;38119:110::-;38249:12;38353:7;38350:1277;;;-1:-1:-1;;;;;38404:29:0;;;;;;:25;:29;;;;;;;;38400:1058;;;38487:20;;-1:-1:-1;;;;;38454:30:0;;;;;;:24;:30;;;;;;:53;;38487:20;38454:53;:::i;:::-;-1:-1:-1;38530:13:0;;:17;38526:347;;38579:34;38609:3;38579:25;38590:13;;38579:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;38572:41;;38684:13;;38665:16;;38658:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;38636:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;38756:13:0;;38743:10;;38736:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;38720:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;38840:13:0;;38821:16;;38814:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;38792:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;38526:347:0;38400:1058;;;-1:-1:-1;;;;;38933:31:0;;;;;;:25;:31;;;;;;;;38930:528;;;-1:-1:-1;;;;;38989:28:0;;;;;;:24;:28;;;;;;:33;;38985:82;;-1:-1:-1;;;;;39024:28:0;;;;;;:24;:28;;;;;39055:12;39024:43;;38985:82;39092:12;;:16;39088:355;;39140:33;39169:3;39140:24;39151:12;;39140:6;:10;;:24;;;;:::i;:33::-;39133:40;;39259:12;;39241:15;;39234:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;39212:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39329:12:0;;39317:9;;39310:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;39294:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;39411:12:0;;39393:15;;39386:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;39364:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39088:355:0;39489:8;;39486:93;;39521:42;39537:4;39551;39558;39521:15;:42::i;:::-;39601:14;39611:4;39601:14;;:::i;:::-;;;38350:1277;39639:33;39655:4;39661:2;39665:6;39639:15;:33::i;:::-;35164:4516;;;;35051:4629;;;:::o;19290:192::-;19376:7;19412:12;19404:6;;;;19396:29;;;;-1:-1:-1;;;19396:29:0;;;;;;;;:::i;:::-;-1:-1:-1;19436:9:0;19448:5;19452:1;19448;:5;:::i;:::-;19436:17;19290:192;-1:-1:-1;;;;;19290:192:0:o;18387:181::-;18445:7;;18477:5;18481:1;18477;:5;:::i;:::-;18465:17;;18506:1;18501;:6;;18493:46;;;;-1:-1:-1;;;18493:46:0;;9345:2:1;18493:46:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423:29;9403:18;;;9396:57;9470:18;;18493:46:0;9143:351:1;18493:46:0;18559:1;18387:181;-1:-1:-1;;;18387:181:0:o;13341:549::-;-1:-1:-1;;;;;13477:18:0;;13469:68;;;;-1:-1:-1;;;13469:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13556:21:0;;13548:69;;;;-1:-1:-1;;;13548:69:0;;;;;;;:::i;:::-;13704;13724:6;13704:69;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13704:15:0;;:9;:15;;;;;;;;;;;;:69;:19;:69::i;:::-;-1:-1:-1;;;;;13686:15:0;;;:9;:15;;;;;;;;;;;:87;;;;13805:18;;;;;;;:30;;13828:6;13805:22;:30::i;:::-;-1:-1:-1;;;;;13784:18:0;;;:9;:18;;;;;;;;;;;;:51;;;;13851:31;1848:25:1;;;13784:18:0;;13851:31;;;;;;1821:18:1;13851:31:0;1702:177:1;40305:1440:0;40388:4;40344:23;10428:18;;;;;;;;;;;40344:50;;40405:25;40475:12;;40454:18;;40433;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;40405:82;-1:-1:-1;40511:20:0;;;:46;;-1:-1:-1;40535:22:0;;40511:46;40508:60;;;40560:7;;40305:1440::o;40508:60::-;40637:23;40722:1;40702:17;40681:18;;40663:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;40637:86;-1:-1:-1;40734:26:0;40763:36;:15;40637:86;40763:19;:36::i;:::-;40734:65;-1:-1:-1;40848:21:0;40882:36;40734:65;40882:16;:36::i;:::-;40940:18;40961:44;:21;40987:17;40961:25;:44::i;:::-;40940:65;;41026:23;41052:57;41091:17;41052:34;41067:18;;41052:10;:14;;:34;;;;:::i;:57::-;41026:83;;41120:17;41140:51;41173:17;41140:28;41155:12;;41140:10;:14;;:28;;;;:::i;:51::-;41120:71;-1:-1:-1;41210:23:0;41120:71;41236:28;41249:15;41236:10;:28;:::i;:::-;:40;;;;:::i;:::-;41318:1;41297:18;:22;;;41330:18;:22;;;41363:12;:16;;;41408:15;;41400:50;;41210:66;;-1:-1:-1;;;;;;41408:15:0;;41400:50;;;;;41434:15;;41400:50;;41318:1;41400:50;41434:15;41408;41400:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41469:9:0;;41461:38;;-1:-1:-1;;;;;41469:9:0;;;;41461:38;;;;;41489:9;;41469;41461:38;41469:9;41461:38;41489:9;41469;41461:38;;;;;;;;;;;;;;;;;;;;;41541:1;41523:15;:19;:42;;;;;41564:1;41546:15;:19;41523:42;41520:210;;;41581:46;41594:15;41611;41581:12;:46::i;:::-;41699:18;;41647:71;;;9701:25:1;;;9757:2;9742:18;;9735:34;;;9785:18;;;9778:34;;;;41647:71:0;;;;;;9689:2:1;41647:71:0;;;41520:210;40333:1412;;;;;;;;;40305:1440::o;15412:494::-;-1:-1:-1;;;;;15547:18:0;;15539:68;;;;-1:-1:-1;;;15539:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15626:21:0;;15618:69;;;;-1:-1:-1;;;15618:69:0;;;;;;;:::i;:::-;15774:9;:15;;;;-1:-1:-1;;;;;15821:18:0;;;;15774:15;15821:18;;;:30;;15844:6;15821:22;:30::i;19741:471::-;19799:7;20044:1;20049;20044:6;20040:47;;-1:-1:-1;20074:1:0;20067:8;;20040:47;20099:9;20111:5;20115:1;20111;:5;:::i;:::-;20099:17;-1:-1:-1;20144:1:0;20135:5;20139:1;20099:17;20135:5;:::i;:::-;:10;20127:56;;;;-1:-1:-1;;;20127:56:0;;10025:2:1;20127:56:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:31;10195:19;;20127:56:0;9823:397:1;20688:132:0;20746:7;20773:39;20777:1;20780;20773:39;;;;;;;;;;;;;;;;;:3;:39::i;18851:136::-;18909:7;18936:43;18940:1;18943;18936:43;;;;;;;;;;;;;;;;;:3;:43::i;39688:603::-;39842:16;;;39856:1;39842:16;;;;;;;;39818:21;;39842:16;;;;;;;;;;-1:-1:-1;39842:16:0;39818:40;;39887:4;39869;39874:1;39869:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39869:23:0;;;-1:-1:-1;;;;;39869:23:0;;;;;39913:15;-1:-1:-1;;;;;39913:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39903:4;39908:1;39903:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39903:32:0;;;-1:-1:-1;;;;;39903:32:0;;;;;39948:62;39965:4;39980:15;39998:11;39948:8;:62::i;:::-;40049:224;;-1:-1:-1;;;40049:224:0;;-1:-1:-1;;;;;40049:15:0;:66;;;;:224;;40130:11;;40156:1;;40200:4;;40227;;40247:15;;40049:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34526:517;34674:62;34691:4;34706:15;34724:11;34674:8;:62::i;:::-;34779:256;;-1:-1:-1;;;34779:256:0;;34851:4;34779:256;;;12071:34:1;12121:18;;;12114:34;;;34897:1:0;12164:18:1;;;12157:34;;;12207:18;;;12200:34;29631:6:0;12250:19:1;;;12243:44;35009:15:0;12303:19:1;;;12296:35;34779:15:0;-1:-1:-1;;;;;34779:31:0;;;;34818:9;;12005:19:1;;34779:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34526:517;;:::o;21316:278::-;21402:7;21437:12;21430:5;21422:28;;;;-1:-1:-1;;;21422:28:0;;;;;;;;:::i;:::-;-1:-1:-1;21461:9:0;21473:5;21477:1;21473;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;3941:356::-;4143:2;4125:21;;;4162:18;;;4155:30;4221:34;4216:2;4201:18;;4194:62;4288:2;4273:18;;3941:356::o;5517:401::-;5719:2;5701:21;;;5758:2;5738:18;;;5731:30;5797:34;5792:2;5777:18;;5770:62;-1:-1:-1;;;5863:2:1;5848:18;;5841:35;5908:3;5893:19;;5517:401::o;5923:399::-;6125:2;6107:21;;;6164:2;6144:18;;;6137:30;6203:34;6198:2;6183:18;;6176:62;-1:-1:-1;;;6269:2:1;6254:18;;6247:33;6312:3;6297:19;;5923:399::o;7582:127::-;7643:10;7638:3;7634:20;7631:1;7624:31;7674:4;7671:1;7664:15;7698:4;7695:1;7688:15;7714:125;7779:9;;;7800:10;;;7797:36;;;7813:18;;:::i;8615:128::-;8682:9;;;8703:11;;;8700:37;;;8717:18;;:::i;8748:168::-;8821:9;;;8852;;8869:15;;;8863:22;;8849:37;8839:71;;8890:18;;:::i;8921:217::-;8961:1;8987;8977:132;;9031:10;9026:3;9022:20;9019:1;9012:31;9066:4;9063:1;9056:15;9094:4;9091:1;9084:15;8977:132;-1:-1:-1;9123:9:1;;8921:217::o;10357:127::-;10418:10;10413:3;10409:20;10406:1;10399:31;10449:4;10446:1;10439:15;10473:4;10470:1;10463:15;10489:251;10559:6;10612:2;10600:9;10591:7;10587:23;10583:32;10580:52;;;10628:1;10625;10618:12;10580:52;10660:9;10654:16;10679:31;10704:5;10679:31;:::i;10745:980::-;11007:4;11055:3;11044:9;11040:19;11086:6;11075:9;11068:25;11112:2;11150:6;11145:2;11134:9;11130:18;11123:34;11193:3;11188:2;11177:9;11173:18;11166:31;11217:6;11252;11246:13;11283:6;11275;11268:22;11321:3;11310:9;11306:19;11299:26;;11360:2;11352:6;11348:15;11334:29;;11381:1;11391:195;11405:6;11402:1;11399:13;11391:195;;;11470:13;;-1:-1:-1;;;;;11466:39:1;11454:52;;11561:15;;;;11526:12;;;;11502:1;11420:9;11391:195;;;-1:-1:-1;;;;;;;11642:32:1;;;;11637:2;11622:18;;11615:60;-1:-1:-1;;;11706:3:1;11691:19;11684:35;11603:3;10745:980;-1:-1:-1;;;10745:980:1:o;12342:306::-;12430:6;12438;12446;12499:2;12487:9;12478:7;12474:23;12470:32;12467:52;;;12515:1;12512;12505:12;12467:52;12544:9;12538:16;12528:26;;12594:2;12583:9;12579:18;12573:25;12563:35;;12638:2;12627:9;12623:18;12617:25;12607:35;;12342:306;;;;;:::o

Swarm Source

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