ETH Price: $3,332.09 (-1.28%)
Gas: 9 Gwei

Token

Pepe Boyz ($PB)
 

Overview

Max Total Supply

100,000,000,000,000 $PB

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,823,650,828,312.59548125 $PB

Value
$0.00
0x37C5cC285D2Ce2EFA1eea597cd5163ca2D6B7e95
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:
PepeBoyz

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
// TG: t.me/PepeBoyz
*/

/**
// SPDX-License-Identifier: NONE
*/

pragma solidity 0.8.9;
 
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 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 9;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 

}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
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 PepeBoyz is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private developmentWallet;
    address private teamWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
  
    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyLiquidityFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyTeamFee;

 
    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellLiquidityFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellTeamFee;

 
    uint256 private tokensForMarketing;
    uint256 private tokensForLiquidity;
    uint256 private tokensForDevelopment;
    uint256 private tokensForTeam;

    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
    mapping (address => bool) public _isExcludedMaxWalletAmount;

 
    // 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 UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event developmentWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event teamWalletUpdated(address indexed newWallet, address indexed oldWallet);

 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Pepe Boyz", "$PB") {
 
        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 = 12;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevelopmentFee = 1;
        uint256 _buyTeamFee = 0;

 
        uint256 _sellMarketingFee = 12;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevelopmentFee = 1;
        uint256 _sellTeamFee = 0;

 
        uint256 totalSupply = 100000000000000000000000;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2.5%
        maxWallet = totalSupply * 20 / 1000; // 2.5% 
        swapTokensAtAmount = totalSupply * 20 / 10000; // 0.25%
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevelopmentFee = _buyDevelopmentFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevelopmentFee + buyTeamFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevelopmentFee = _sellDevelopmentFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevelopmentFee + sellTeamFee;
 
        marketingWallet = msg.sender; //
        developmentWallet = msg.sender; //
        teamWallet = 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 {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }

 
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 1000, "Swap amount cannot be lower than 0.1% total supply.");
        require(newAmount <= totalSupply() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _developmentFee,
        uint256 _teamFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        buyDevelopmentFee = _developmentFee;
        buyTeamFee = _teamFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyDevelopmentFee + buyTeamFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 100);
    }

    function updateSellFees(
        uint256 _developmentFee,
        uint256 _teamFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        sellDevelopmentFee = _developmentFee;
        sellTeamFee = _teamFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellDevelopmentFee +  sellTeamFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 100);
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevelopmentWallet(address newWallet) external onlyOwner {
        emit developmentWalletUpdated(newWallet, developmentWallet);
        developmentWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
 
                //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 if(!_isExcludedMaxTransactionAmount[to]){
                    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]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDevelopment += fees * sellDevelopmentFee / sellTotalFees;
                tokensForTeam += fees * sellTeamFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDevelopment += fees * buyDevelopmentFee / buyTotalFees;
                tokensForTeam += fees * buyTeamFee / 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment + tokensForTeam;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // 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 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(totalTokensToSwap);
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment - ethForTeam;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;
        tokensForTeam = 0;
 
        (success,) = address(developmentWallet).call{value: ethForDevelopment}("");
        (success,) = address(teamWallet).call{value: ethForTeam}("");

 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"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"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191660011790553480156200002057600080fd5b50604051806040016040528060098152602001682832b832902137bcbd60b91b8152506040518060400160405280600381526020016212282160e91b81525081600390805190602001906200007792919062000754565b5080516200008d90600490602084019062000754565b5050506000620000a26200047260201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011281600162000476565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200015857600080fd5b505afa1580156200016d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001939190620007fa565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001dc57600080fd5b505afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002179190620007fa565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026057600080fd5b505af115801562000275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029b9190620007fa565b6001600160a01b031660a0819052620002b690600162000476565b60a051620002c6906001620004f0565b600c6002600160008383838369152d02c7e14af68000006103e8620002ed8260146200083b565b620002f991906200085d565b6009556103e86200030c8260146200083b565b6200031891906200085d565b600b556127106200032b8260146200083b565b6200033791906200085d565b600a55601089905560118890556012879055601386905585876200035c8a8c62000880565b62000368919062000880565b62000374919062000880565b600f556015859055601684905560178390556018829055818362000399868862000880565b620003a5919062000880565b620003b1919062000880565b60145560068054336001600160a01b0319918216811790925560078054821683179055600880549091169091179055620003ff620003f76005546001600160a01b031690565b600162000544565b6200040c30600162000544565b6200041b61dead600162000544565b6200043a620004326005546001600160a01b031690565b600162000476565b6200044730600162000476565b6200045661dead600162000476565b620004623382620005ee565b50505050505050505050620008d8565b3390565b6005546001600160a01b03163314620004c55760405162461bcd60e51b8152602060048201819052602482015260008051602062002e4983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058f5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e498339815191526044820152606401620004bc565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006465760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004bc565b6200066281600254620006ea60201b62000f051790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200069591839062000f05620006ea821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620006f9838562000880565b9050838110156200074d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004bc565b9392505050565b82805462000762906200089b565b90600052602060002090601f016020900481019282620007865760008555620007d1565b82601f10620007a157805160ff1916838001178555620007d1565b82800160010185558215620007d1579182015b82811115620007d1578251825591602001919060010190620007b4565b50620007df929150620007e3565b5090565b5b80821115620007df5760008155600101620007e4565b6000602082840312156200080d57600080fd5b81516001600160a01b03811681146200074d57600080fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000858576200085862000825565b500290565b6000826200087b57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000896576200089662000825565b500190565b600181811c90821680620008b057607f821691505b60208210811415620008d257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161252162000928600039600081816103b00152610a9c0152600081816102c701528181611db801528181611e8001528181611ebc01528181611f360152611f9201526125216000f3fe60806040526004361061021e5760003560e01c80638da5cb5b11610123578063bbc0c742116100ab578063dd62ed3e1161006f578063dd62ed3e14610698578063e2f45605146106de578063e7ad9fcd146106f4578063f023f57314610714578063f8b45b051461073457600080fd5b8063bbc0c7421461060d578063c02466681461062c578063c8c8ebe41461064c578063d257b34f14610662578063d85ba0631461068257600080fd5b80639a7a23d6116100f25780639a7a23d61461055d578063a457c2d71461057d578063a9059cbb1461059d578063aacebbe3146105bd578063b62496f5146105dd57600080fd5b80638da5cb5b146104db578063924de9b7146104f957806395d89b411461051957806396880b171461052e57600080fd5b806349bd5a5e116101a65780636ddd1713116101755780636ddd17131461043b57806370a082311461045b578063715018a6146104915780637571336a146104a65780638a8c523c146104c657600080fd5b806349bd5a5e1461039e5780634a62bb65146103d25780634fbee193146103ec5780636a486a8e1461042557600080fd5b806318160ddd116101ed57806318160ddd1461030157806323b872dd146103205780632e6ed7ef14610340578063313ce56714610362578063395093511461037e57600080fd5b806306fdde031461022a578063095ea7b31461025557806310d5de53146102855780631694505e146102b557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f61074a565b60405161024c919061204d565b60405180910390f35b34801561026157600080fd5b506102756102703660046120ba565b6107dc565b604051901515815260200161024c565b34801561029157600080fd5b506102756102a03660046120e6565b601f6020526000908152604090205460ff1681565b3480156102c157600080fd5b506102e97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b34801561030d57600080fd5b506002545b60405190815260200161024c565b34801561032c57600080fd5b5061027561033b366004612103565b6107f3565b34801561034c57600080fd5b5061036061035b366004612144565b61085c565b005b34801561036e57600080fd5b506040516009815260200161024c565b34801561038a57600080fd5b506102756103993660046120ba565b6108db565b3480156103aa57600080fd5b506102e97f000000000000000000000000000000000000000000000000000000000000000081565b3480156103de57600080fd5b50600c546102759060ff1681565b3480156103f857600080fd5b506102756104073660046120e6565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561043157600080fd5b5061031260145481565b34801561044757600080fd5b50600c546102759062010000900460ff1681565b34801561046757600080fd5b506103126104763660046120e6565b6001600160a01b031660009081526020819052604090205490565b34801561049d57600080fd5b50610360610911565b3480156104b257600080fd5b506103606104c1366004612186565b610985565b3480156104d257600080fd5b506103606109da565b3480156104e757600080fd5b506005546001600160a01b03166102e9565b34801561050557600080fd5b506103606105143660046121bb565b610a1b565b34801561052557600080fd5b5061023f610a61565b34801561053a57600080fd5b506102756105493660046120e6565b602080526000908152604090205460ff1681565b34801561056957600080fd5b50610360610578366004612186565b610a70565b34801561058957600080fd5b506102756105983660046120ba565b610b50565b3480156105a957600080fd5b506102756105b83660046120ba565b610b9f565b3480156105c957600080fd5b506103606105d83660046120e6565b610bac565b3480156105e957600080fd5b506102756105f83660046120e6565b60216020526000908152604090205460ff1681565b34801561061957600080fd5b50600c5461027590610100900460ff1681565b34801561063857600080fd5b50610360610647366004612186565b610c33565b34801561065857600080fd5b5061031260095481565b34801561066e57600080fd5b5061027561067d3660046121d6565b610cbc565b34801561068e57600080fd5b50610312600f5481565b3480156106a457600080fd5b506103126106b33660046121ef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ea57600080fd5b50610312600a5481565b34801561070057600080fd5b5061036061070f366004612144565b610e0e565b34801561072057600080fd5b5061036061072f3660046120e6565b610e7e565b34801561074057600080fd5b50610312600b5481565b60606003805461075990612228565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612228565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e9338484610f6b565b5060015b92915050565b6000610800848484611090565b610852843361084d8560405180606001604052806028815260200161249f602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906117fd565b610f6b565b5060019392505050565b6005546001600160a01b0316331461088f5760405162461bcd60e51b815260040161088690612263565b60405180910390fd5b601284905560138390556011829055601081905580826108af85876122ae565b6108b991906122ae565b6108c391906122ae565b600f819055606410156108d557600080fd5b50505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061084d9086610f05565b6005546001600160a01b0316331461093b5760405162461bcd60e51b815260040161088690612263565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109af5760405162461bcd60e51b815260040161088690612263565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a045760405162461bcd60e51b815260040161088690612263565b600c805462ffff0019166201010017905543601d55565b6005546001600160a01b03163314610a455760405162461bcd60e51b815260040161088690612263565b600c8054911515620100000262ff000019909216919091179055565b60606004805461075990612228565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161088690612263565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610b425760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610886565b610b4c8282611837565b5050565b60006107e9338461084d856040518060600160405280602581526020016124c7602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906117fd565b60006107e9338484611090565b6005546001600160a01b03163314610bd65760405162461bcd60e51b815260040161088690612263565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161088690612263565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610ce95760405162461bcd60e51b815260040161088690612263565b6103e8610cf560025490565b610d009060016122c6565b610d0a91906122e5565b821015610d755760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152721018171892903a37ba30b61039bab838363c9760691b6064820152608401610886565b6103e8610d8160025490565b610d8c90600a6122c6565b610d9691906122e5565b821115610e005760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610886565b50600a81905560015b919050565b6005546001600160a01b03163314610e385760405162461bcd60e51b815260040161088690612263565b60178490556018839055601682905560158190558082610e5885876122ae565b610e6291906122ae565b610e6c91906122ae565b6014819055606410156108d557600080fd5b6005546001600160a01b03163314610ea85760405162461bcd60e51b815260040161088690612263565b6007546040516001600160a01b03918216918316907ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600080610f1283856122ae565b905083811015610f645760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610886565b9392505050565b6001600160a01b038316610fcd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610886565b6001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610886565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110b65760405162461bcd60e51b815260040161088690612307565b6001600160a01b0382166110dc5760405162461bcd60e51b81526004016108869061234c565b806110f2576110ed8383600061188b565b505050565b600c5460ff1615611468576005546001600160a01b0384811691161480159061112957506005546001600160a01b03838116911614155b801561113d57506001600160a01b03821615155b801561115457506001600160a01b03821661dead14155b801561116a5750600554600160a01b900460ff16155b1561146857600c54610100900460ff16611202576001600160a01b0383166000908152601e602052604090205460ff16806111bd57506001600160a01b0382166000908152601e602052604090205460ff165b6112025760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610886565b6001600160a01b03831660009081526021602052604090205460ff16801561124357506001600160a01b0382166000908152601f602052604090205460ff16155b15611327576009548111156112b85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610886565b600b546001600160a01b0383166000908152602081905260409020546112de90836122ae565b11156113225760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610886565b611468565b6001600160a01b03821660009081526021602052604090205460ff16801561136857506001600160a01b0383166000908152601f602052604090205460ff16155b156113de576009548111156113225760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610886565b6001600160a01b0382166000908152601f602052604090205460ff1661146857600b546001600160a01b03831660009081526020819052604090205461142490836122ae565b11156114685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610886565b30600090815260208190526040902054600a54811080159081906114945750600c5462010000900460ff165b80156114aa5750600554600160a01b900460ff16155b80156114cf57506001600160a01b03851660009081526021602052604090205460ff16155b80156114f457506001600160a01b0385166000908152601e602052604090205460ff16155b801561151957506001600160a01b0384166000908152601e602052604090205460ff16155b15611547576005805460ff60a01b1916600160a01b179055611539611994565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b90920482161591168061159557506001600160a01b0385166000908152601e602052604090205460ff165b1561159e575060005b600081156117e9576001600160a01b03861660009081526021602052604090205460ff1680156115d057506000601454115b156116be576115f560646115ef60145488611c5e90919063ffffffff16565b90611cdd565b90506014546016548261160891906122c6565b61161291906122e5565b601a600082825461162391906122ae565b909155505060145460175461163890836122c6565b61164291906122e5565b601b600082825461165391906122ae565b909155505060145460185461166890836122c6565b61167291906122e5565b601c600082825461168391906122ae565b909155505060145460155461169890836122c6565b6116a291906122e5565b601960008282546116b391906122ae565b909155506117cb9050565b6001600160a01b03871660009081526021602052604090205460ff1680156116e857506000600f54115b156117cb5761170760646115ef600f5488611c5e90919063ffffffff16565b9050600f546011548261171a91906122c6565b61172491906122e5565b601a600082825461173591906122ae565b9091555050600f5460125461174a90836122c6565b61175491906122e5565b601b600082825461176591906122ae565b9091555050600f5460135461177a90836122c6565b61178491906122e5565b601c600082825461179591906122ae565b9091555050600f546010546117aa90836122c6565b6117b491906122e5565b601960008282546117c591906122ae565b90915550505b80156117dc576117dc87308361188b565b6117e6818661238f565b94505b6117f487878761188b565b50505050505050565b600081848411156118215760405162461bcd60e51b8152600401610886919061204d565b50600061182e848661238f565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118b15760405162461bcd60e51b815260040161088690612307565b6001600160a01b0382166118d75760405162461bcd60e51b81526004016108869061234c565b61191481604051806060016040528060268152602001612479602691396001600160a01b03861660009081526020819052604090205491906117fd565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119439082610f05565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611083565b3060009081526020819052604081205490506000601c54601b54601954601a546119be91906122ae565b6119c891906122ae565b6119d291906122ae565b905060008215806119e1575081155b156119eb57505050565b600a546119f99060146122c6565b831115611a1157600a54611a0e9060146122c6565b92505b6000600283601a5486611a2491906122c6565b611a2e91906122e5565b611a3891906122e5565b90506000611a468583611d1f565b905047611a5282611d61565b6000611a5e4783611d1f565b90506000611a7b876115ef60195485611c5e90919063ffffffff16565b90506000611a98886115ef601b5486611c5e90919063ffffffff16565b90506000611ab5896115ef601c5487611c5e90919063ffffffff16565b905060008183611ac5868861238f565b611acf919061238f565b611ad9919061238f565b6000601a8190556019819055601b819055601c8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114611b90576040519150601f19603f3d011682016040523d82523d6000602084013e611b95565b606091505b50909950508715801590611ba95750600081115b15611bfc57611bb88882611f30565b601a54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c49576040519150601f19603f3d011682016040523d82523d6000602084013e611c4e565b606091505b5050505050505050505050505050565b600082611c6d575060006107ed565b6000611c7983856122c6565b905082611c8685836122e5565b14610f645760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610886565b6000610f6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061201f565b6000610f6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117fd565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d9657611d966123a6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e0f57600080fd5b505afa158015611e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4791906123bc565b81600181518110611e5a57611e5a6123a6565b60200260200101906001600160a01b031690816001600160a01b031681525050611ea5307f000000000000000000000000000000000000000000000000000000000000000084610f6b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611efa9085906000908690309042906004016123d9565b600060405180830381600087803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b505050505050565b611f5b307f000000000000000000000000000000000000000000000000000000000000000084610f6b565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611fdf57600080fd5b505af1158015611ff3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612018919061244a565b5050505050565b600081836120405760405162461bcd60e51b8152600401610886919061204d565b50600061182e84866122e5565b600060208083528351808285015260005b8181101561207a5785810183015185820160400152820161205e565b8181111561208c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120b757600080fd5b50565b600080604083850312156120cd57600080fd5b82356120d8816120a2565b946020939093013593505050565b6000602082840312156120f857600080fd5b8135610f64816120a2565b60008060006060848603121561211857600080fd5b8335612123816120a2565b92506020840135612133816120a2565b929592945050506040919091013590565b6000806000806080858703121561215a57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114610e0957600080fd5b6000806040838503121561219957600080fd5b82356121a4816120a2565b91506121b260208401612176565b90509250929050565b6000602082840312156121cd57600080fd5b610f6482612176565b6000602082840312156121e857600080fd5b5035919050565b6000806040838503121561220257600080fd5b823561220d816120a2565b9150602083013561221d816120a2565b809150509250929050565b600181811c9082168061223c57607f821691505b6020821081141561225d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c1576122c1612298565b500190565b60008160001904831182151516156122e0576122e0612298565b500290565b60008261230257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156123a1576123a1612298565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123ce57600080fd5b8151610f64816120a2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124295784516001600160a01b031683529383019391830191600101612404565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561245f57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122044be78f672fa7d2392cc168cfeb2f8c647d01d8ad219ac7dcc0aa8651d121e9364736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80638da5cb5b11610123578063bbc0c742116100ab578063dd62ed3e1161006f578063dd62ed3e14610698578063e2f45605146106de578063e7ad9fcd146106f4578063f023f57314610714578063f8b45b051461073457600080fd5b8063bbc0c7421461060d578063c02466681461062c578063c8c8ebe41461064c578063d257b34f14610662578063d85ba0631461068257600080fd5b80639a7a23d6116100f25780639a7a23d61461055d578063a457c2d71461057d578063a9059cbb1461059d578063aacebbe3146105bd578063b62496f5146105dd57600080fd5b80638da5cb5b146104db578063924de9b7146104f957806395d89b411461051957806396880b171461052e57600080fd5b806349bd5a5e116101a65780636ddd1713116101755780636ddd17131461043b57806370a082311461045b578063715018a6146104915780637571336a146104a65780638a8c523c146104c657600080fd5b806349bd5a5e1461039e5780634a62bb65146103d25780634fbee193146103ec5780636a486a8e1461042557600080fd5b806318160ddd116101ed57806318160ddd1461030157806323b872dd146103205780632e6ed7ef14610340578063313ce56714610362578063395093511461037e57600080fd5b806306fdde031461022a578063095ea7b31461025557806310d5de53146102855780631694505e146102b557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f61074a565b60405161024c919061204d565b60405180910390f35b34801561026157600080fd5b506102756102703660046120ba565b6107dc565b604051901515815260200161024c565b34801561029157600080fd5b506102756102a03660046120e6565b601f6020526000908152604090205460ff1681565b3480156102c157600080fd5b506102e97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b34801561030d57600080fd5b506002545b60405190815260200161024c565b34801561032c57600080fd5b5061027561033b366004612103565b6107f3565b34801561034c57600080fd5b5061036061035b366004612144565b61085c565b005b34801561036e57600080fd5b506040516009815260200161024c565b34801561038a57600080fd5b506102756103993660046120ba565b6108db565b3480156103aa57600080fd5b506102e97f000000000000000000000000033bcf2ecca614b158d75f9744d1c9dd0d68b64a81565b3480156103de57600080fd5b50600c546102759060ff1681565b3480156103f857600080fd5b506102756104073660046120e6565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561043157600080fd5b5061031260145481565b34801561044757600080fd5b50600c546102759062010000900460ff1681565b34801561046757600080fd5b506103126104763660046120e6565b6001600160a01b031660009081526020819052604090205490565b34801561049d57600080fd5b50610360610911565b3480156104b257600080fd5b506103606104c1366004612186565b610985565b3480156104d257600080fd5b506103606109da565b3480156104e757600080fd5b506005546001600160a01b03166102e9565b34801561050557600080fd5b506103606105143660046121bb565b610a1b565b34801561052557600080fd5b5061023f610a61565b34801561053a57600080fd5b506102756105493660046120e6565b602080526000908152604090205460ff1681565b34801561056957600080fd5b50610360610578366004612186565b610a70565b34801561058957600080fd5b506102756105983660046120ba565b610b50565b3480156105a957600080fd5b506102756105b83660046120ba565b610b9f565b3480156105c957600080fd5b506103606105d83660046120e6565b610bac565b3480156105e957600080fd5b506102756105f83660046120e6565b60216020526000908152604090205460ff1681565b34801561061957600080fd5b50600c5461027590610100900460ff1681565b34801561063857600080fd5b50610360610647366004612186565b610c33565b34801561065857600080fd5b5061031260095481565b34801561066e57600080fd5b5061027561067d3660046121d6565b610cbc565b34801561068e57600080fd5b50610312600f5481565b3480156106a457600080fd5b506103126106b33660046121ef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ea57600080fd5b50610312600a5481565b34801561070057600080fd5b5061036061070f366004612144565b610e0e565b34801561072057600080fd5b5061036061072f3660046120e6565b610e7e565b34801561074057600080fd5b50610312600b5481565b60606003805461075990612228565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612228565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e9338484610f6b565b5060015b92915050565b6000610800848484611090565b610852843361084d8560405180606001604052806028815260200161249f602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906117fd565b610f6b565b5060019392505050565b6005546001600160a01b0316331461088f5760405162461bcd60e51b815260040161088690612263565b60405180910390fd5b601284905560138390556011829055601081905580826108af85876122ae565b6108b991906122ae565b6108c391906122ae565b600f819055606410156108d557600080fd5b50505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061084d9086610f05565b6005546001600160a01b0316331461093b5760405162461bcd60e51b815260040161088690612263565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109af5760405162461bcd60e51b815260040161088690612263565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a045760405162461bcd60e51b815260040161088690612263565b600c805462ffff0019166201010017905543601d55565b6005546001600160a01b03163314610a455760405162461bcd60e51b815260040161088690612263565b600c8054911515620100000262ff000019909216919091179055565b60606004805461075990612228565b6005546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161088690612263565b7f000000000000000000000000033bcf2ecca614b158d75f9744d1c9dd0d68b64a6001600160a01b0316826001600160a01b03161415610b425760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610886565b610b4c8282611837565b5050565b60006107e9338461084d856040518060600160405280602581526020016124c7602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906117fd565b60006107e9338484611090565b6005546001600160a01b03163314610bd65760405162461bcd60e51b815260040161088690612263565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161088690612263565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610ce95760405162461bcd60e51b815260040161088690612263565b6103e8610cf560025490565b610d009060016122c6565b610d0a91906122e5565b821015610d755760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152721018171892903a37ba30b61039bab838363c9760691b6064820152608401610886565b6103e8610d8160025490565b610d8c90600a6122c6565b610d9691906122e5565b821115610e005760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610886565b50600a81905560015b919050565b6005546001600160a01b03163314610e385760405162461bcd60e51b815260040161088690612263565b60178490556018839055601682905560158190558082610e5885876122ae565b610e6291906122ae565b610e6c91906122ae565b6014819055606410156108d557600080fd5b6005546001600160a01b03163314610ea85760405162461bcd60e51b815260040161088690612263565b6007546040516001600160a01b03918216918316907ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600080610f1283856122ae565b905083811015610f645760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610886565b9392505050565b6001600160a01b038316610fcd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610886565b6001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610886565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110b65760405162461bcd60e51b815260040161088690612307565b6001600160a01b0382166110dc5760405162461bcd60e51b81526004016108869061234c565b806110f2576110ed8383600061188b565b505050565b600c5460ff1615611468576005546001600160a01b0384811691161480159061112957506005546001600160a01b03838116911614155b801561113d57506001600160a01b03821615155b801561115457506001600160a01b03821661dead14155b801561116a5750600554600160a01b900460ff16155b1561146857600c54610100900460ff16611202576001600160a01b0383166000908152601e602052604090205460ff16806111bd57506001600160a01b0382166000908152601e602052604090205460ff165b6112025760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610886565b6001600160a01b03831660009081526021602052604090205460ff16801561124357506001600160a01b0382166000908152601f602052604090205460ff16155b15611327576009548111156112b85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610886565b600b546001600160a01b0383166000908152602081905260409020546112de90836122ae565b11156113225760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610886565b611468565b6001600160a01b03821660009081526021602052604090205460ff16801561136857506001600160a01b0383166000908152601f602052604090205460ff16155b156113de576009548111156113225760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610886565b6001600160a01b0382166000908152601f602052604090205460ff1661146857600b546001600160a01b03831660009081526020819052604090205461142490836122ae565b11156114685760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610886565b30600090815260208190526040902054600a54811080159081906114945750600c5462010000900460ff165b80156114aa5750600554600160a01b900460ff16155b80156114cf57506001600160a01b03851660009081526021602052604090205460ff16155b80156114f457506001600160a01b0385166000908152601e602052604090205460ff16155b801561151957506001600160a01b0384166000908152601e602052604090205460ff16155b15611547576005805460ff60a01b1916600160a01b179055611539611994565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b90920482161591168061159557506001600160a01b0385166000908152601e602052604090205460ff165b1561159e575060005b600081156117e9576001600160a01b03861660009081526021602052604090205460ff1680156115d057506000601454115b156116be576115f560646115ef60145488611c5e90919063ffffffff16565b90611cdd565b90506014546016548261160891906122c6565b61161291906122e5565b601a600082825461162391906122ae565b909155505060145460175461163890836122c6565b61164291906122e5565b601b600082825461165391906122ae565b909155505060145460185461166890836122c6565b61167291906122e5565b601c600082825461168391906122ae565b909155505060145460155461169890836122c6565b6116a291906122e5565b601960008282546116b391906122ae565b909155506117cb9050565b6001600160a01b03871660009081526021602052604090205460ff1680156116e857506000600f54115b156117cb5761170760646115ef600f5488611c5e90919063ffffffff16565b9050600f546011548261171a91906122c6565b61172491906122e5565b601a600082825461173591906122ae565b9091555050600f5460125461174a90836122c6565b61175491906122e5565b601b600082825461176591906122ae565b9091555050600f5460135461177a90836122c6565b61178491906122e5565b601c600082825461179591906122ae565b9091555050600f546010546117aa90836122c6565b6117b491906122e5565b601960008282546117c591906122ae565b90915550505b80156117dc576117dc87308361188b565b6117e6818661238f565b94505b6117f487878761188b565b50505050505050565b600081848411156118215760405162461bcd60e51b8152600401610886919061204d565b50600061182e848661238f565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118b15760405162461bcd60e51b815260040161088690612307565b6001600160a01b0382166118d75760405162461bcd60e51b81526004016108869061234c565b61191481604051806060016040528060268152602001612479602691396001600160a01b03861660009081526020819052604090205491906117fd565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119439082610f05565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611083565b3060009081526020819052604081205490506000601c54601b54601954601a546119be91906122ae565b6119c891906122ae565b6119d291906122ae565b905060008215806119e1575081155b156119eb57505050565b600a546119f99060146122c6565b831115611a1157600a54611a0e9060146122c6565b92505b6000600283601a5486611a2491906122c6565b611a2e91906122e5565b611a3891906122e5565b90506000611a468583611d1f565b905047611a5282611d61565b6000611a5e4783611d1f565b90506000611a7b876115ef60195485611c5e90919063ffffffff16565b90506000611a98886115ef601b5486611c5e90919063ffffffff16565b90506000611ab5896115ef601c5487611c5e90919063ffffffff16565b905060008183611ac5868861238f565b611acf919061238f565b611ad9919061238f565b6000601a8190556019819055601b819055601c8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114611b90576040519150601f19603f3d011682016040523d82523d6000602084013e611b95565b606091505b50909950508715801590611ba95750600081115b15611bfc57611bb88882611f30565b601a54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c49576040519150601f19603f3d011682016040523d82523d6000602084013e611c4e565b606091505b5050505050505050505050505050565b600082611c6d575060006107ed565b6000611c7983856122c6565b905082611c8685836122e5565b14610f645760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610886565b6000610f6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061201f565b6000610f6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117fd565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d9657611d966123a6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e0f57600080fd5b505afa158015611e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4791906123bc565b81600181518110611e5a57611e5a6123a6565b60200260200101906001600160a01b031690816001600160a01b031681525050611ea5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f6b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611efa9085906000908690309042906004016123d9565b600060405180830381600087803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b505050505050565b611f5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f6b565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611fdf57600080fd5b505af1158015611ff3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612018919061244a565b5050505050565b600081836120405760405162461bcd60e51b8152600401610886919061204d565b50600061182e84866122e5565b600060208083528351808285015260005b8181101561207a5785810183015185820160400152820161205e565b8181111561208c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120b757600080fd5b50565b600080604083850312156120cd57600080fd5b82356120d8816120a2565b946020939093013593505050565b6000602082840312156120f857600080fd5b8135610f64816120a2565b60008060006060848603121561211857600080fd5b8335612123816120a2565b92506020840135612133816120a2565b929592945050506040919091013590565b6000806000806080858703121561215a57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114610e0957600080fd5b6000806040838503121561219957600080fd5b82356121a4816120a2565b91506121b260208401612176565b90509250929050565b6000602082840312156121cd57600080fd5b610f6482612176565b6000602082840312156121e857600080fd5b5035919050565b6000806040838503121561220257600080fd5b823561220d816120a2565b9150602083013561221d816120a2565b809150509250929050565b600181811c9082168061223c57607f821691505b6020821081141561225d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c1576122c1612298565b500190565b60008160001904831182151516156122e0576122e0612298565b500290565b60008261230257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156123a1576123a1612298565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123ce57600080fd5b8151610f64816120a2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124295784516001600160a01b031683529383019391830191600101612404565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561245f57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122044be78f672fa7d2392cc168cfeb2f8c647d01d8ad219ac7dcc0aa8651d121e9364736f6c63430008090033

Deployed Bytecode Sourcemap

28953:14891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7447:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9620:169;;;;;;;;;;-1:-1:-1;9620:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;9620:169:0;1072:187:1;30546:64:0;;;;;;;;;;-1:-1:-1;30546:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29032:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29032:51:0;1516:230:1;8569:108:0;;;;;;;;;;-1:-1:-1;8657:12:0;;8569:108;;;1897:25:1;;;1885:2;1870:18;8569:108:0;1751:177:1;10272:355:0;;;;;;;;;;-1:-1:-1;10272:355:0;;;;;:::i;:::-;;:::i;34856:475::-;;;;;;;;;;-1:-1:-1;34856:475:0;;;;;:::i;:::-;;:::i;:::-;;8411:92;;;;;;;;;;-1:-1:-1;8411:92:0;;8494:1;2926:36:1;;2914:2;2899:18;8411:92:0;2784:184:1;11037:218:0;;;;;;;;;;-1:-1:-1;11037:218:0;;;;;:::i;:::-;;:::i;29090:38::-;;;;;;;;;;;;;;;29399:33;;;;;;;;;;-1:-1:-1;29399:33:0;;;;;;;;37094:125;;;;;;;;;;-1:-1:-1;37094:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37183:28:0;37159:4;37183:28;;;:19;:28;;;;;;;;;37094:125;29981:28;;;;;;;;;;;;;;;;29479:31;;;;;;;;;;-1:-1:-1;29479:31:0;;;;;;;;;;;8741:127;;;;;;;;;;-1:-1:-1;8741:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8842:18:0;8815:7;8842:18;;;;;;;;;;;;8741:127;21948:148;;;;;;;;;;;;;:::i;34704:144::-;;;;;;;;;;-1:-1:-1;34704:144:0;;;;;:::i;:::-;;:::i;34089:148::-;;;;;;;;;;;;;:::i;21304:79::-;;;;;;;;;;-1:-1:-1;21369:6:0;;-1:-1:-1;;;;;21369:6:0;21304:79;;35923:101;;;;;;;;;;-1:-1:-1;35923:101:0;;;;;:::i;:::-;;:::i;7667:104::-;;;;;;;;;;;;;:::i;30617:59::-;;;;;;;;;;-1:-1:-1;30617:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36224:245;;;;;;;;;;-1:-1:-1;36224:245:0;;;;;:::i;:::-;;:::i;11759:269::-;;;;;;;;;;-1:-1:-1;11759:269:0;;;;;:::i;:::-;;:::i;9082:175::-;;;;;;;;;;-1:-1:-1;9082:175:0;;;;;:::i;:::-;;:::i;36676:208::-;;;;;;;;;;-1:-1:-1;36676:208:0;;;;;:::i;:::-;;:::i;30837:58::-;;;;;;;;;;-1:-1:-1;30837:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29439:33;;;;;;;;;;-1:-1:-1;29439:33:0;;;;;;;;;;;36033:182;;;;;;;;;;-1:-1:-1;36033:182:0;;;;;:::i;:::-;;:::i;29283:35::-;;;;;;;;;;;;;;;;34314:381;;;;;;;;;;-1:-1:-1;34314:381:0;;;;;:::i;:::-;;:::i;29793:27::-;;;;;;;;;;;;;;;;9321:151;;;;;;;;;;-1:-1:-1;9321:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9437:18:0;;;9410:7;9437:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9321:151;29325:33;;;;;;;;;;;;;;;;35339:487;;;;;;;;;;-1:-1:-1;35339:487:0;;;;;:::i;:::-;;:::i;36893:189::-;;;;;;;;;;-1:-1:-1;36893:189:0;;;;;:::i;:::-;;:::i;29365:24::-;;;;;;;;;;;;;;;;7447:100;7501:13;7534:5;7527:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7447:100;:::o;9620:169::-;9703:4;9720:39;218:10;9743:7;9752:6;9720:8;:39::i;:::-;-1:-1:-1;9777:4:0;9620:169;;;;;:::o;10272:355::-;10412:4;10429:36;10439:6;10447:9;10458:6;10429:9;:36::i;:::-;10476:121;10485:6;218:10;10507:89;10545:6;10507:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10507:19:0;;;;;;:11;:19;;;;;;;;218:10;10507:33;;;;;;;;;;:37;:89::i;:::-;10476:8;:121::i;:::-;-1:-1:-1;10615:4:0;10272:355;;;;;:::o;34856:475::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;;;;;;;;;35041:17:::1;:35:::0;;;35087:10:::1;:21:::0;;;35119:15:::1;:31:::0;;;35161:15:::1;:31:::0;;;35179:13;35137;35218:30:::1;35100:8:::0;35061:15;35218:30:::1;:::i;:::-;:48;;;;:::i;:::-;:66;;;;:::i;:::-;35203:12;:81:::0;;;35319:3:::1;-1:-1:-1::0;35303:19:0::1;35295:28;;;::::0;::::1;;34856:475:::0;;;;:::o;11037:218::-;218:10;11125:4;11174:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11174:34:0;;;;;;;;;;11125:4;;11142:83;;11165:7;;11174:50;;11213:10;11174:38;:50::i;21948:148::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;22039:6:::1;::::0;22018:40:::1;::::0;22055:1:::1;::::0;-1:-1:-1;;;;;22039:6:0::1;::::0;22018:40:::1;::::0;22055:1;;22018:40:::1;22069:6;:19:::0;;-1:-1:-1;;;;;;22069:19:0::1;::::0;;21948:148::o;34704:144::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34794:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;34794:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34704:144::o;34089:148::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;34144:13:::1;:20:::0;;-1:-1:-1;;34175:18:0;;;;;34217:12:::1;34204:10;:25:::0;34089:148::o;35923:101::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;35995:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35995:21:0;;::::1;::::0;;;::::1;::::0;;35923:101::o;7667:104::-;7723:13;7756:7;7749:14;;;;;:::i;36224:245::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;36331:13:::1;-1:-1:-1::0;;;;;36323:21:0::1;:4;-1:-1:-1::0;;;;;36323:21:0::1;;;36315:91;;;::::0;-1:-1:-1;;;36315:91:0;;5642:2:1;36315:91:0::1;::::0;::::1;5624:21:1::0;5681:2;5661:18;;;5654:30;5720:34;5700:18;;;5693:62;5791:27;5771:18;;;5764:55;5836:19;;36315:91:0::1;5440:421:1::0;36315:91:0::1;36420:41;36449:4;36455:5;36420:28;:41::i;:::-;36224:245:::0;;:::o;11759:269::-;11852:4;11869:129;218:10;11892:7;11901:96;11940:15;11901:96;;;;;;;;;;;;;;;;;218:10;11901:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11901:34:0;;;;;;;;;;;;:38;:96::i;9082:175::-;9168:4;9185:42;218:10;9209:9;9220:6;9185:9;:42::i;36676:208::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;36813:15:::1;::::0;36770:59:::1;::::0;-1:-1:-1;;;;;36813:15:0;;::::1;::::0;36770:59;::::1;::::0;::::1;::::0;36813:15:::1;::::0;36770:59:::1;36840:15;:36:::0;;-1:-1:-1;;;;;;36840:36:0::1;-1:-1:-1::0;;;;;36840:36:0;;;::::1;::::0;;;::::1;::::0;;36676:208::o;36033:182::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36118:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36118:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36173:34;;1212:41:1;;;36173:34:0::1;::::0;1185:18:1;36173:34:0::1;;;;;;;36033:182:::0;;:::o;34314:381::-;21517:6;;34395:4;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;34452:4:::1;34432:13;8657:12:::0;;;8569:108;34432:13:::1;:17;::::0;34448:1:::1;34432:17;:::i;:::-;:24;;;;:::i;:::-;34419:9;:37;;34411:101;;;::::0;-1:-1:-1;;;34411:101:0;;6463:2:1;34411:101:0::1;::::0;::::1;6445:21:1::0;6502:2;6482:18;;;6475:30;6541:34;6521:18;;;6514:62;-1:-1:-1;;;6592:18:1;;;6585:49;6651:19;;34411:101:0::1;6261:415:1::0;34411:101:0::1;34565:4;34544:13;8657:12:::0;;;8569:108;34544:13:::1;:18;::::0;34560:2:::1;34544:18;:::i;:::-;:25;;;;:::i;:::-;34531:9;:38;;34523:101;;;::::0;-1:-1:-1;;;34523:101:0;;6883:2:1;34523:101:0::1;::::0;::::1;6865:21:1::0;6922:2;6902:18;;;6895:30;6961:34;6941:18;;;6934:62;-1:-1:-1;;;7012:18:1;;;7005:48;7070:19;;34523:101:0::1;6681:414:1::0;34523:101:0::1;-1:-1:-1::0;34635:18:0::1;:30:::0;;;34683:4:::1;21587:1;34314:381:::0;;;:::o;35339:487::-;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;35525:18:::1;:36:::0;;;35572:11:::1;:22:::0;;;35605:16:::1;:32:::0;;;35648:16:::1;:32:::0;;;35667:13;35624;35707:33:::1;35586:8:::0;35546:15;35707:33:::1;:::i;:::-;:52;;;;:::i;:::-;:71;;;;:::i;:::-;35691:13;:87:::0;;;35814:3:::1;-1:-1:-1::0;35797:20:0::1;35789:29;;;::::0;::::1;36893:189:::0;21517:6;;-1:-1:-1;;;;;21517:6:0;218:10;21517:22;21509:67;;;;-1:-1:-1;;;21509:67:0;;;;;;;:::i;:::-;37016:17:::1;::::0;36980:54:::1;::::0;-1:-1:-1;;;;;37016:17:0;;::::1;::::0;36980:54;::::1;::::0;::::1;::::0;37016:17:::1;::::0;36980:54:::1;37045:17;:29:::0;;-1:-1:-1;;;;;;37045:29:0::1;-1:-1:-1::0;;;;;37045:29:0;;;::::1;::::0;;;::::1;::::0;;36893:189::o;16336:182::-;16394:7;;16426:5;16430:1;16426;:5;:::i;:::-;16414:17;;16455:1;16450;:6;;16442:46;;;;-1:-1:-1;;;16442:46:0;;7302:2:1;16442:46:0;;;7284:21:1;7341:2;7321:18;;;7314:30;7380:29;7360:18;;;7353:57;7427:18;;16442:46:0;7100:351:1;16442:46:0;16509:1;16336:182;-1:-1:-1;;;16336:182:0:o;14955:381::-;-1:-1:-1;;;;;15091:19:0;;15083:68;;;;-1:-1:-1;;;15083:68:0;;7658:2:1;15083:68:0;;;7640:21:1;7697:2;7677:18;;;7670:30;7736:34;7716:18;;;7709:62;-1:-1:-1;;;7787:18:1;;;7780:34;7831:19;;15083:68:0;7456:400:1;15083:68:0;-1:-1:-1;;;;;15170:21:0;;15162:68;;;;-1:-1:-1;;;15162:68:0;;8063:2:1;15162:68:0;;;8045:21:1;8102:2;8082:18;;;8075:30;8141:34;8121:18;;;8114:62;-1:-1:-1;;;8192:18:1;;;8185:32;8234:19;;15162:68:0;7861:398:1;15162:68:0;-1:-1:-1;;;;;15244:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15296:32;;1897:25:1;;;15296:32:0;;1870:18:1;15296:32:0;;;;;;;;14955:381;;;:::o;37228:3631::-;-1:-1:-1;;;;;37360:18:0;;37352:68;;;;-1:-1:-1;;;37352:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37439:16:0;;37431:64;;;;-1:-1:-1;;;37431:64:0;;;;;;;:::i;:::-;37510:11;37507:92;;37538:28;37554:4;37560:2;37564:1;37538:15;:28::i;:::-;37228:3631;;;:::o;37507:92::-;37615:14;;;;37612:1236;;;21369:6;;-1:-1:-1;;;;;37667:15:0;;;21369:6;;37667:15;;;;:49;;-1:-1:-1;21369:6:0;;-1:-1:-1;;;;;37703:13:0;;;21369:6;;37703:13;;37667:49;:86;;;;-1:-1:-1;;;;;;37737:16:0;;;;37667:86;:128;;;;-1:-1:-1;;;;;;37774:21:0;;37788:6;37774:21;;37667:128;:158;;;;-1:-1:-1;37817:8:0;;-1:-1:-1;;;37817:8:0;;;;37816:9;37667:158;37645:1192;;;37863:13;;;;;;;37859:148;;-1:-1:-1;;;;;37908:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37937:23:0;;;;;;:19;:23;;;;;;;;37908:52;37900:87;;;;-1:-1:-1;;;37900:87:0;;9276:2:1;37900:87:0;;;9258:21:1;9315:2;9295:18;;;9288:30;-1:-1:-1;;;9334:18:1;;;9327:52;9396:18;;37900:87:0;9074:346:1;37900:87:0;-1:-1:-1;;;;;38063:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;38099:35:0;;;;;;:31;:35;;;;;;;;38098:36;38063:71;38059:763;;;38181:20;;38171:6;:30;;38163:96;;;;-1:-1:-1;;;38163:96:0;;9627:2:1;38163:96:0;;;9609:21:1;9666:2;9646:18;;;9639:30;9705:34;9685:18;;;9678:62;-1:-1:-1;;;9756:18:1;;;9749:51;9817:19;;38163:96:0;9425:417:1;38163:96:0;38320:9;;-1:-1:-1;;;;;8842:18:0;;8815:7;8842:18;;;;;;;;;;;38294:22;;:6;:22;:::i;:::-;:35;;38286:67;;;;-1:-1:-1;;;38286:67:0;;10049:2:1;38286:67:0;;;10031:21:1;10088:2;10068:18;;;10061:30;-1:-1:-1;;;10107:18:1;;;10100:49;10166:18;;38286:67:0;9847:343:1;38286:67:0;38059:763;;;-1:-1:-1;;;;;38432:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;38466:37:0;;;;;;:31;:37;;;;;;;;38465:38;38432:71;38428:394;;;38550:20;;38540:6;:30;;38532:97;;;;-1:-1:-1;;;38532:97:0;;10397:2:1;38532:97:0;;;10379:21:1;10436:2;10416:18;;;10409:30;10475:34;10455:18;;;10448:62;-1:-1:-1;;;10526:18:1;;;10519:52;10588:19;;38532:97:0;10195:418:1;38428:394:0;-1:-1:-1;;;;;38676:35:0;;;;;;:31;:35;;;;;;;;38672:150;;38769:9;;-1:-1:-1;;;;;8842:18:0;;8815:7;8842:18;;;;;;;;;;;38743:22;;:6;:22;:::i;:::-;:35;;38735:67;;;;-1:-1:-1;;;38735:67:0;;10049:2:1;38735:67:0;;;10031:21:1;10088:2;10068:18;;;10061:30;-1:-1:-1;;;10107:18:1;;;10100:49;10166:18;;38735:67:0;9847:343:1;38735:67:0;38910:4;38861:28;8842:18;;;;;;;;;;;38969;;38945:42;;;;;;;39019:35;;-1:-1:-1;39043:11:0;;;;;;;39019:35;:61;;;;-1:-1:-1;39072:8:0;;-1:-1:-1;;;39072:8:0;;;;39071:9;39019:61;:110;;;;-1:-1:-1;;;;;;39098:31:0;;;;;;:25;:31;;;;;;;;39097:32;39019:110;:153;;;;-1:-1:-1;;;;;;39147:25:0;;;;;;:19;:25;;;;;;;;39146:26;39019:153;:194;;;;-1:-1:-1;;;;;;39190:23:0;;;;;;:19;:23;;;;;;;;39189:24;39019:194;39001:328;;;39240:8;:15;;-1:-1:-1;;;;39240:15:0;-1:-1:-1;;;39240:15:0;;;39273:10;:8;:10::i;:::-;39301:8;:16;;-1:-1:-1;;;;39301:16:0;;;39001:328;39358:8;;-1:-1:-1;;;;;39468:25:0;;39342:12;39468:25;;;:19;:25;;;;;;39358:8;-1:-1:-1;;;39358:8:0;;;;;39357:9;;39468:25;;:52;;-1:-1:-1;;;;;;39497:23:0;;;;;;:19;:23;;;;;;;;39468:52;39465:99;;;-1:-1:-1;39547:5:0;39465:99;39577:12;39681:7;39678:1127;;;-1:-1:-1;;;;;39732:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;39781:1;39765:13;;:17;39732:50;39728:924;;;39809:34;39839:3;39809:25;39820:13;;39809:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;39802:41;;39910:13;;39891:16;;39884:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;39862:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;39994:13:0;;39973:18;;39966:25;;:4;:25;:::i;:::-;:41;;;;:::i;:::-;39942:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;40064:13:0;;40050:11;;40043:18;;:4;:18;:::i;:::-;:34;;;;:::i;:::-;40026:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40144:13:0;;40125:16;;40118:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;40096:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;39728:924:0;;-1:-1:-1;39728:924:0;;-1:-1:-1;;;;;40218:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40268:1;40253:12;;:16;40218:51;40215:437;;;40297:33;40326:3;40297:24;40308:12;;40297:6;:10;;:24;;;;:::i;:33::-;40290:40;;40396:12;;40378:15;;40371:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40349:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40478:12:0;;40458:17;;40451:24;;:4;:24;:::i;:::-;:39;;;;:::i;:::-;40427:20;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40546:12:0;;40533:10;;40526:17;;:4;:17;:::i;:::-;:32;;;;:::i;:::-;40509:13;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40624:12:0;;40606:15;;40599:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;40577:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40215:437:0;40672:8;;40669:93;;40704:42;40720:4;40734;40741;40704:15;:42::i;:::-;40779:14;40789:4;40779:14;;:::i;:::-;;;39678:1127;40818:33;40834:4;40840:2;40844:6;40818:15;:33::i;:::-;37341:3518;;;;37228:3631;;;:::o;17242:193::-;17328:7;17364:12;17356:6;;;;17348:29;;;;-1:-1:-1;;;17348:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17388:9:0;17400:5;17404:1;17400;:5;:::i;:::-;17388:17;17242:193;-1:-1:-1;;;;;17242:193:0:o;36478:189::-;-1:-1:-1;;;;;36561:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36561:39:0;;;;;;;;;;36619:40;;36561:39;;:31;36619:40;;;36478:189;;:::o;12519:575::-;-1:-1:-1;;;;;12659:20:0;;12651:70;;;;-1:-1:-1;;;12651:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12740:23:0;;12732:71;;;;-1:-1:-1;;;12732:71:0;;;;;;;:::i;:::-;12898;12920:6;12898:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12898:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12878:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13003:20;;;;;;;:32;;13028:6;13003:24;:32::i;:::-;-1:-1:-1;;;;;12980:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13051:35;1897:25:1;;;12980:20:0;;13051:35;;;;;;1870:18:1;13051:35:0;1751:177:1;42003:1838:0;42086:4;42042:23;8842:18;;;;;;;;;;;42042:50;;42103:25;42196:13;;42173:20;;42152:18;;42131;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;:78;;;;:::i;:::-;42103:106;-1:-1:-1;42220:12:0;42249:20;;;:46;;-1:-1:-1;42273:22:0;;42249:46;42246:60;;;42298:7;;;42003:1838::o;42246:60::-;42340:18;;:23;;42361:2;42340:23;:::i;:::-;42322:15;:41;42319:111;;;42395:18;;:23;;42416:2;42395:23;:::i;:::-;42377:41;;42319:111;42492:23;42577:1;42557:17;42536:18;;42518:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42492:86;-1:-1:-1;42589:26:0;42618:36;:15;42492:86;42618:19;:36::i;:::-;42589:65;-1:-1:-1;42696:21:0;42731:36;42589:65;42731:16;:36::i;:::-;42782:18;42803:44;:21;42829:17;42803:25;:44::i;:::-;42782:65;;42861:23;42887:57;42926:17;42887:34;42902:18;;42887:10;:14;;:34;;;;:::i;:57::-;42861:83;;42955:25;42983:59;43024:17;42983:36;42998:20;;42983:10;:14;;:36;;;;:::i;:59::-;42955:87;;43053:18;43074:52;43108:17;43074:29;43089:13;;43074:10;:14;;:29;;;;:::i;:52::-;43053:73;-1:-1:-1;43137:23:0;43053:73;43194:17;43163:28;43176:15;43163:10;:28;:::i;:::-;:48;;;;:::i;:::-;:61;;;;:::i;:::-;43262:1;43241:18;:22;;;43274:18;:22;;;43307:20;:24;;;43342:13;:17;;;43394;;43386:61;;43137:87;;-1:-1:-1;;;;;;43394:17:0;;43425;;43386:61;43262:1;43386:61;43425:17;43394;43386:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43479:10:0;;43471:47;;43373:74;;-1:-1:-1;;;;;;43479:10:0;;43503;;43471:47;;;;43503:10;43479;43471:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43458:60:0;;-1:-1:-1;;43537:19:0;;;;;:42;;;43578:1;43560:15;:19;43537:42;43534:210;;;43595:46;43608:15;43625;43595:12;:46::i;:::-;43713:18;;43661:71;;;11160:25:1;;;11216:2;11201:18;;11194:34;;;11244:18;;;11237:34;;;;43661:71:0;;;;;;11148:2:1;43661:71:0;;;43534:210;43778:15;;43770:63;;-1:-1:-1;;;;;43778:15:0;;;;43807:21;;43770:63;;;;43807:21;43778:15;43770:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;42003:1838:0:o;17695:473::-;17753:7;17998:6;17994:47;;-1:-1:-1;18028:1:0;18021:8;;17994:47;18054:9;18066:5;18070:1;18066;:5;:::i;:::-;18054:17;-1:-1:-1;18099:1:0;18090:5;18094:1;18054:17;18090:5;:::i;:::-;:10;18082:56;;;;-1:-1:-1;;;18082:56:0;;11484:2:1;18082:56:0;;;11466:21:1;11523:2;11503:18;;;11496:30;11562:34;11542:18;;;11535:62;-1:-1:-1;;;11613:18:1;;;11606:31;11654:19;;18082:56:0;11282:397:1;18645:132:0;18703:7;18730:39;18734:1;18737;18730:39;;;;;;;;;;;;;;;;;:3;:39::i;16802:136::-;16860:7;16887:43;16891:1;16894;16887:43;;;;;;;;;;;;;;;;;:3;:43::i;40868:597::-;41021:16;;;41035:1;41021:16;;;;;;;;40997:21;;41021:16;;;;;;;;;;-1:-1:-1;41021:16:0;40997:40;;41066:4;41048;41053:1;41048:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41048:23:0;;;-1:-1:-1;;;;;41048:23:0;;;;;41092:15;-1:-1:-1;;;;;41092:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41082:4;41087:1;41082:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41082:32:0;;;-1:-1:-1;;;;;41082:32:0;;;;;41128:62;41145:4;41160:15;41178:11;41128:8;:62::i;:::-;41230:224;;-1:-1:-1;;;41230:224:0;;-1:-1:-1;;;;;41230:15:0;:66;;;;:224;;41311:11;;41337:1;;41381:4;;41408;;41428:15;;41230:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40923:542;40868:597;:::o;41474:520::-;41622:62;41639:4;41654:15;41672:11;41622:8;:62::i;:::-;41728:258;;-1:-1:-1;;;41728:258:0;;41800:4;41728:258;;;13530:34:1;;;13580:18;;;13573:34;;;41846:1:0;13623:18:1;;;13616:34;;;13666:18;;;13659:34;13709:19;;;13702:44;41960:15:0;13762:19:1;;;13755:35;41728:15:0;-1:-1:-1;;;;;41728:31:0;;;;41767:9;;13464:19:1;;41728:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41474:520;;:::o;19274:279::-;19360:7;19395:12;19388:5;19380:28;;;;-1:-1:-1;;;19380:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19419:9:0;19431:5;19435:1;19431;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2394:385::-;2480:6;2488;2496;2504;2557:3;2545:9;2536:7;2532:23;2528:33;2525:53;;;2574:1;2571;2564:12;2525:53;-1:-1:-1;;2597:23:1;;;2667:2;2652:18;;2639:32;;-1:-1:-1;2718:2:1;2703:18;;2690:32;;2769:2;2754:18;2741:32;;-1:-1:-1;2394:385:1;-1:-1:-1;2394:385:1:o;3181:160::-;3246:20;;3302:13;;3295:21;3285:32;;3275:60;;3331:1;3328;3321:12;3346:315;3411:6;3419;3472:2;3460:9;3451:7;3447:23;3443:32;3440:52;;;3488:1;3485;3478:12;3440:52;3527:9;3514:23;3546:31;3571:5;3546:31;:::i;:::-;3596:5;-1:-1:-1;3620:35:1;3651:2;3636:18;;3620:35;:::i;:::-;3610:45;;3346:315;;;;;:::o;3666:180::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3814:26;3830:9;3814:26;:::i;3851:180::-;3910:6;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;-1:-1:-1;4002:23:1;;3851:180;-1:-1:-1;3851:180:1:o;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:128;5347:3;5378:1;5374:6;5371:1;5368:13;5365:39;;;5384:18;;:::i;:::-;-1:-1:-1;5420:9:1;;5307:128::o;5866:168::-;5906:7;5972:1;5968;5964:6;5960:14;5957:1;5954:21;5949:1;5942:9;5935:17;5931:45;5928:71;;;5979:18;;:::i;:::-;-1:-1:-1;6019:9:1;;5866:168::o;6039:217::-;6079:1;6105;6095:132;;6149:10;6144:3;6140:20;6137:1;6130:31;6184:4;6181:1;6174:15;6212:4;6209:1;6202:15;6095:132;-1:-1:-1;6241:9:1;;6039:217::o;8264:401::-;8466:2;8448:21;;;8505:2;8485:18;;;8478:30;8544:34;8539:2;8524:18;;8517:62;-1:-1:-1;;;8610:2:1;8595:18;;8588:35;8655:3;8640:19;;8264:401::o;8670:399::-;8872:2;8854:21;;;8911:2;8891:18;;;8884:30;8950:34;8945:2;8930:18;;8923:62;-1:-1:-1;;;9016:2:1;9001:18;;8994:33;9059:3;9044:19;;8670:399::o;10618:125::-;10658:4;10686:1;10683;10680:8;10677:34;;;10691:18;;:::i;:::-;-1:-1:-1;10728:9:1;;10618:125::o;11816:127::-;11877:10;11872:3;11868:20;11865:1;11858:31;11908:4;11905:1;11898:15;11932:4;11929:1;11922:15;11948:251;12018:6;12071:2;12059:9;12050:7;12046:23;12042:32;12039:52;;;12087:1;12084;12077:12;12039:52;12119:9;12113:16;12138:31;12163:5;12138:31;:::i;12204:980::-;12466:4;12514:3;12503:9;12499:19;12545:6;12534:9;12527:25;12571:2;12609:6;12604:2;12593:9;12589:18;12582:34;12652:3;12647:2;12636:9;12632:18;12625:31;12676:6;12711;12705:13;12742:6;12734;12727:22;12780:3;12769:9;12765:19;12758:26;;12819:2;12811:6;12807:15;12793:29;;12840:1;12850:195;12864:6;12861:1;12858:13;12850:195;;;12929:13;;-1:-1:-1;;;;;12925:39:1;12913:52;;13020:15;;;;12985:12;;;;12961:1;12879:9;12850:195;;;-1:-1:-1;;;;;;;13101:32:1;;;;13096:2;13081:18;;13074:60;-1:-1:-1;;;13165:3:1;13150:19;13143:35;13062:3;12204:980;-1:-1:-1;;;12204:980:1:o;13801:306::-;13889:6;13897;13905;13958:2;13946:9;13937:7;13933:23;13929:32;13926:52;;;13974:1;13971;13964:12;13926:52;14003:9;13997:16;13987:26;;14053:2;14042:9;14038:18;14032:25;14022:35;;14097:2;14086:9;14082:18;14076:25;14066:35;;13801:306;;;;;:::o

Swarm Source

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