ETH Price: $3,289.12 (+1.32%)
Gas: 1 Gwei

Token

Male ($Male)
 

Overview

Max Total Supply

3,970,000,000 $Male

Holders

434

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
868,794.979037305049241571 $Male

Value
$0.00
0x24bee383f249fa4d8e8aecaff3eb3322cea01f4d
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:
Male

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/*

I Am just a dev, Not an Alpha $Male

We are pumping crypto full of testosterone

https://twitter.com/maletokenerc

https://t.me/maletokenportal

https://maletokenerc.com/

**/

pragma solidity = 0.8.20;
pragma experimental ABIEncoderV2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

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

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function swap(
        uint256 amount0Out,
        uint256 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,
        uint256
    );

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
	
	    /**
     * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, 
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */

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

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract Male is ERC20, Ownable {
    using SafeMath for uint256;
    
    IUniswapV2Router02 public immutable _uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public deployerWallet;
    address public marketingWallet;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    uint256 public initialTotalSupply = 3970000000 * 1e18;
    uint256 public maxTransactionAmount = initialTotalSupply * 10 / 1000;
    uint256 public maxWallet = initialTotalSupply * 10 / 1000;
    uint256 public swapTokensAtAmount = initialTotalSupply * 10 / 1000;
    uint256 public lastReduceTime;
    uint256 public beforeSwap;
    uint256 public afterSwap;

    bool public tradingOpen = false;
    bool public transferDelay = true;
    bool public swapEnabled = false;
    bool public firstCallDone = false;
    bool public reducing = false;

    uint256 public initialBuyFee;
    uint256 public BuyFee = 30;
    uint256 public initialSellFee;
    uint256 public SellFee = 30;
    uint256 public preventSwapBefore;

    uint256 public tokensForMarketing;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => bool) public isBlacklisted;
    mapping(address => uint256) private lastBuyBlock;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor(uint256 _initialBuyFee, uint256 _initialSellFee, uint256 _preventSwapBefore) ERC20("Male", "$Male") {

        initialBuyFee = _initialBuyFee;
        initialSellFee = _initialSellFee;
        preventSwapBefore = _preventSwapBefore;

        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        deployerWallet = payable(_msgSender());
        marketingWallet = payable(0x983c872C502B1263901236a85C451F69618f0569);
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, true);

        _mint(msg.sender, initialTotalSupply);
    }

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        swapEnabled = true;
        tradingOpen = true;
        beforeSwap = block.number;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    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 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");
        require(!isBlacklisted[from] && !isBlacklisted[to], "ERC20: transfer from/to the blacklisted address");
        afterSwap = block.number;

        if (reducing && block.timestamp - lastReduceTime >= 5 minutes) {
            if (BuyFee > 5) {
                BuyFee -= 5;
                SellFee -= 5;
                lastReduceTime = block.timestamp;
            } else {
                BuyFee = 1;
                SellFee = 1;
                reducing = false;
            }
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

                if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingOpen) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );

                    if (transferDelay) {
                        require(
                            lastBuyBlock[to] < block.number,
                            "Only one buy per block is allowed."
                        );
                        lastBuyBlock[to] = block.number;
                    }
                }

                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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                if (afterSwap <= beforeSwap + initialBuyFee) {
                    fees = amount.mul((SellFee + initialSellFee) * initialSellFee).div(100);
                } else if (afterSwap <= beforeSwap + initialSellFee) {
                    fees = amount.mul(SellFee + preventSwapBefore).div(100);
                } else {
                    fees = amount.mul(SellFee).div(100);
                }
            } else {
                if (afterSwap <= beforeSwap + initialBuyFee) {
                    fees = amount.mul((SellFee + initialSellFee) * initialSellFee).div(100);
                } else if (afterSwap <= beforeSwap + initialSellFee) {
                    fees = amount.mul(BuyFee + preventSwapBefore).div(100);
                } else {
                    fees = amount.mul(BuyFee).div(100);
                }
            }

        tokensForMarketing += fees;

        if (fees > 0) {
            super._transfer(from, address(this), fees);
        }

        amount -= fees;
    }

        super._transfer(from, to, amount);

    }

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function clearStuckEth() external onlyOwner {
        require(address(this).balance > 0, "Token: no ETH to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function Shake() external onlyOwner {
        require(!firstCallDone, "Function has already been called");
        maxTransactionAmount = 1 * 1e18;
        SellFee = 99;
        isBlacklisted[uniswapV2Pair] = true;
        isBlacklisted[address(this)] = true;
        //
        BuyFee = 25;
        SellFee = 25;
        isBlacklisted[uniswapV2Pair] = false;
        isBlacklisted[address(this)] = false;
        firstCallDone = true;
        reducing = true;
        lastReduceTime = block.timestamp;
        //
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
        transferDelay = false;
    }

    function SetFee(uint256 _sellFee) external onlyOwner {
        require(!firstCallDone, "Function has already been called"); //Function can not be called after Shake
        SellFee = _sellFee;
    }

    function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing;
        uint256 tokensToSwap;
        bool success; 

    if (contractBalance < swapTokensAtAmount) {
        return;
    }

    else
    {
        tokensToSwap = contractBalance >= swapTokensAtAmount ? swapTokensAtAmount : contractBalance;
    }

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(tokensToSwap);

    uint256 ethBalance = address(this).balance.sub(initialETHBalance);

    uint256 ethForMarketing;

    if (tokensForMarketing > 0) {
        ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        tokensForMarketing = 0;
    } else {
        ethForMarketing = ethBalance;
    }

    tokensForMarketing = 0;

    (success, ) = address(marketingWallet).call{value: ethForMarketing}("");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initialBuyFee","type":"uint256"},{"internalType":"uint256","name":"_initialSellFee","type":"uint256"},{"internalType":"uint256","name":"_preventSwapBefore","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"SetFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Shake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstCallDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReduceTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preventSwapBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reducing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526b0cd3e8333d05fd1ac20000006008556103e8600854600a6200002891906200065e565b6200003491906200067e565b6009556103e8600854600a6200004b91906200065e565b6200005791906200067e565b600a556103e8600854600a6200006e91906200065e565b6200007a91906200067e565b600b55600f805464ffffffffff1916610100179055601e6011819055601355348015620000a5575f80fd5b506040516200290a3803806200290a833981016040819052620000c8916200069e565b604051806040016040528060048152602001634d616c6560e01b81525060405180604001604052806005815260200164244d616c6560d81b815250816003908162000114919062000769565b50600462000123828262000769565b505050620001406200013a620003de60201b60201c565b620003e2565b601083905560128290556014819055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200017690600162000433565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001db919062000831565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000229573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024f919062000831565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200029a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000831565b6001600160a01b031660a0819052620002db90600162000433565b60a051620002eb90600162000467565b60068054336001600160a01b0319918216179091556007805490911673983c872c502b1263901236a85c451f69618f056917905560055462000338906001600160a01b03166001620004ba565b62000345306001620004ba565b6200035461dead6001620004ba565b6007546200036d906001600160a01b03166001620004ba565b6200038c620003846005546001600160a01b031690565b600162000433565b6200039930600162000433565b620003a861dead600162000433565b600754620003c1906001600160a01b0316600162000433565b620003d5336008546200052260201b60201c565b50505062000876565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200043d620005e7565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004c4620005e7565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200057e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f82825462000591919062000860565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000575565b565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200067857620006786200064a565b92915050565b5f826200069957634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215620006b1575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006f357607f821691505b6020821081036200071257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000645575f81815260208120601f850160051c81016020861015620007405750805b601f850160051c820191505b8181101562000761578281556001016200074c565b505050505050565b81516001600160401b03811115620007855762000785620006ca565b6200079d81620007968454620006de565b8462000718565b602080601f831160018114620007d3575f8415620007bb5750858301515b5f19600386901b1c1916600185901b17855562000761565b5f85815260208120601f198616915b828110156200080357888601518255948401946001909101908401620007e2565b50858210156200082157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000842575f80fd5b81516001600160a01b038116811462000859575f80fd5b9392505050565b808201808211156200067857620006786200064a565b60805160a05161204f620008bb5f395f818161048c015281816109e30152610b4a01525f81816104f601528181611b7f01528181611c360152611c72015261204f5ff3fe608060405260043610610282575f3560e01c806370a0823111610155578063c0246668116100be578063e28a939411610078578063e28a939414610764578063e2f4560514610779578063f2fde38b1461078e578063f8b45b05146107ad578063fe575a87146107c2578063ffb54a99146107f0575f80fd5b8063c0246668146106d3578063c8c8ebe4146106f2578063c9567bf914610707578063cf9522fd1461071b578063dd62ed3e14610730578063dd8546521461074f575f80fd5b806395d89b411161010f57806395d89b41146106225780639a7a23d614610636578063a457c2d714610655578063a9059cbb14610674578063afa4f3b214610693578063b6fda8aa146106b2575f80fd5b806370a082311461056b578063715018a61461059f5780637571336a146105b357806375f0a874146105d257806389291a8f146105f15780638da5cb5b14610605575f80fd5b8063311028af116101f757806349bd5a5e116101b157806349bd5a5e1461047b5780634fbee193146104ae578063583e0568146104e55780635c0736c6146105185780635d60c7be1461052d5780636ddd17131461054c575f80fd5b8063311028af146103ee578063313ce5671461040357806331e02e0b1461041e5780633950935114610433578063415bc319146104525780634490ce5d14610466575f80fd5b80630ca9c309116102485780630ca9c3091461034457806318160ddd146103645780631f3fed8f1461037857806323b872dd1461038d57806327c8f835146103ac5780632b36a6d2146103d9575f80fd5b8062172ddf1461028d57806305e2df18146102ae57806306fdde03146102d6578063095ea7b3146102f75780630a702e8d14610326575f80fd5b3661028957005b5f80fd5b348015610298575f80fd5b506102ac6102a7366004611ceb565b610809565b005b3480156102b9575f80fd5b506102c3600d5481565b6040519081526020015b60405180910390f35b3480156102e1575f80fd5b506102ea610875565b6040516102cd9190611d02565b348015610302575f80fd5b50610316610311366004611d61565b610905565b60405190151581526020016102cd565b348015610331575f80fd5b50600f5461031690610100900460ff1681565b34801561034f575f80fd5b50600f54610316906301000000900460ff1681565b34801561036f575f80fd5b506002546102c3565b348015610383575f80fd5b506102c360155481565b348015610398575f80fd5b506103166103a7366004611d8b565b61091e565b3480156103b7575f80fd5b506103c161dead81565b6040516001600160a01b0390911681526020016102cd565b3480156103e4575f80fd5b506102c360125481565b3480156103f9575f80fd5b506102c360085481565b34801561040e575f80fd5b50604051601281526020016102cd565b348015610429575f80fd5b506102c360105481565b34801561043e575f80fd5b5061031661044d366004611d61565b610941565b34801561045d575f80fd5b506102ac610962565b348015610471575f80fd5b506102c3600c5481565b348015610486575f80fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b9575f80fd5b506103166104c8366004611dc9565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156104f0575f80fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b348015610523575f80fd5b506102c3600e5481565b348015610538575f80fd5b506006546103c1906001600160a01b031681565b348015610557575f80fd5b50600f546103169062010000900460ff1681565b348015610576575f80fd5b506102c3610585366004611dc9565b6001600160a01b03165f9081526020819052604090205490565b3480156105aa575f80fd5b506102ac610a70565b3480156105be575f80fd5b506102ac6105cd366004611de4565b610a83565b3480156105dd575f80fd5b506007546103c1906001600160a01b031681565b3480156105fc575f80fd5b506102ac610ab5565b348015610610575f80fd5b506005546001600160a01b03166103c1565b34801561062d575f80fd5b506102ea610b31565b348015610641575f80fd5b506102ac610650366004611de4565b610b40565b348015610660575f80fd5b5061031661066f366004611d61565b610bfd565b34801561067f575f80fd5b5061031661068e366004611d61565b610c77565b34801561069e575f80fd5b506102ac6106ad366004611ceb565b610c84565b3480156106bd575f80fd5b50600f5461031690640100000000900460ff1681565b3480156106de575f80fd5b506102ac6106ed366004611de4565b610ca4565b3480156106fd575f80fd5b506102c360095481565b348015610712575f80fd5b506102ac610d0a565b348015610726575f80fd5b506102c360135481565b34801561073b575f80fd5b506102c361074a366004611e1f565b610d7c565b34801561075a575f80fd5b506102c360115481565b34801561076f575f80fd5b506102c360145481565b348015610784575f80fd5b506102c3600b5481565b348015610799575f80fd5b506102ac6107a8366004611dc9565b610da6565b3480156107b8575f80fd5b506102c3600a5481565b3480156107cd575f80fd5b506103166107dc366004611dc9565b60196020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600f546103169060ff1681565b610811610e1c565b600f546301000000900460ff16156108705760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c656460448201526064015b60405180910390fd5b601355565b60606003805461088490611e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611e4b565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f33610912818585610e76565b60019150505b92915050565b5f3361092b858285610f99565b610936858585611011565b506001949350505050565b5f336109128185856109538383610d7c565b61095d9190611e97565b610e76565b61096a610e1c565b600f546301000000900460ff16156109c45760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c65646044820152606401610867565b670de0b6b3a76400006009908155606360139081556001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165f908152601960208190526040808320805460ff1990811660019081178355308652929094208054851690921782556011839055919093558054821690558154169055600f805442600c5560025492839055600a9290925564ffff00ff0019909116640101000000179055565b610a78610e1c565b610a815f611859565b565b610a8b610e1c565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b610abd610e1c565b5f4711610b055760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b6044820152606401610867565b60405133904780156108fc02915f818181858888f19350505050158015610b2e573d5f803e3d5ffd5b50565b60606004805461088490611e4b565b610b48610e1c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610bef5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610867565b610bf982826118aa565b5050565b5f3381610c0a8286610d7c565b905083811015610c6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610867565b6109368286868403610e76565b5f33610912818585611011565b610c8c610e1c565b610c9e81670de0b6b3a7640000611eaa565b600b5550565b610cac610e1c565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d12610e1c565b600f5460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610867565b600f805462ff00ff19166201000117905543600d55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610dae610e1c565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610b2e81611859565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610867565b6001600160a01b038316610ed85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b6001600160a01b038216610f395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610867565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610fa48484610d7c565b90505f19811461100b5781811015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610867565b61100b8484848403610e76565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b03821661105d5760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f9081526019602052604090205460ff1615801561109d57506001600160a01b0382165f9081526019602052604090205460ff16155b6111015760405162461bcd60e51b815260206004820152602f60248201527f45524332303a207472616e736665722066726f6d2f746f2074686520626c616360448201526e6b6c6973746564206164647265737360881b6064820152608401610867565b43600e55600f54640100000000900460ff16801561112e575061012c600c544261112b9190611f49565b10155b15611190576005601154111561117757600560115f8282546111509190611f49565b92505081905550600560135f8282546111699190611f49565b909155505042600c55611190565b60016011819055601355600f805464ff00000000191690555b805f036111a7576111a283835f6118fd565b505050565b6005546001600160a01b038481169116148015906111d357506005546001600160a01b03838116911614155b80156111e757506001600160a01b03821615155b80156111fe57506001600160a01b03821661dead14155b80156112145750600754600160a01b900460ff16155b156115a057600f5460ff166112a5576001600160a01b0383165f9081526016602052604090205460ff168061126057506001600160a01b0382165f9081526016602052604090205460ff165b6112a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610867565b6001600160a01b0383165f9081526018602052604090205460ff1680156112e457506001600160a01b0382165f9081526017602052604090205460ff16155b15611463576009548111156113595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610867565b600a546001600160a01b0383165f9081526020819052604090205461137e9083611e97565b11156113c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b600f54610100900460ff161561145e576001600160a01b0382165f908152601a602052604090205443116114435760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f6e65206275792070657220626c6f636b20697320616c6c6f7765604482015261321760f11b6064820152608401610867565b6001600160a01b0382165f908152601a602052604090204390555b6115a0565b6001600160a01b0382165f9081526018602052604090205460ff1680156114a257506001600160a01b0383165f9081526017602052604090205460ff16155b156115185760095481111561145e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610867565b6001600160a01b0382165f9081526017602052604090205460ff166115a057600a546001600160a01b0383165f9081526020819052604090205461155c9083611e97565b11156115a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b305f90815260208190526040902054600b54811080159081906115cb5750600f5462010000900460ff165b80156115e15750600754600160a01b900460ff16155b801561160557506001600160a01b0385165f9081526018602052604090205460ff16155b801561162957506001600160a01b0385165f9081526016602052604090205460ff16155b801561164d57506001600160a01b0384165f9081526016602052604090205460ff16155b1561167b576007805460ff60a01b1916600160a01b17905561166d611a25565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526016602052604090205460ff600160a01b9092048216159116806116c757506001600160a01b0385165f9081526016602052604090205460ff165b156116cf57505f5b5f8115611845576001600160a01b0386165f9081526018602052604090205460ff161561179157601054600d546117069190611e97565b600e541161174757611740606461173a6012546012546013546117299190611e97565b6117339190611eaa565b8890611b0d565b90611b1f565b9050611811565b601254600d546117579190611e97565b600e541161177757611740606461173a6014546013546117339190611e97565b611740606461173a60135488611b0d90919063ffffffff16565b601054600d546117a19190611e97565b600e54116117c457611740606461173a6012546012546013546117299190611e97565b601254600d546117d49190611e97565b600e54116117f457611740606461173a6014546011546117339190611e97565b61180e606461173a60115488611b0d90919063ffffffff16565b90505b8060155f8282546118229190611e97565b90915550508015611838576118388730836118fd565b6118428186611f49565b94505b6118508787876118fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119235760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b0382166119495760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f90815260208190526040902054818110156119c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610867565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361100b565b305f90815260208190526040812054601554600b54919290918190841015611a4d5750505050565b600b54841015611a5d5783611a61565b600b545b915047611a6d83611b2a565b5f611a784783611ce0565b90505f806015541115611aa957611a9e8661173a60155485611b0d90919063ffffffff16565b5f6015559050611aac565b50805b5f60158190556007546040516001600160a01b039091169183919081818185875af1925050503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50505050505050505050565b5f611b188284611eaa565b9392505050565b5f611b188284611f5c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b5d57611b5d611f7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bfd9190611f8f565b81600181518110611c1057611c10611f7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f000000000000000000000000000000000000000000000000000000000000000084610e76565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611caf9085905f90869030904290600401611faa565b5f604051808303815f87803b158015611cc6575f80fd5b505af1158015611cd8573d5f803e3d5ffd5b505050505050565b5f611b188284611f49565b5f60208284031215611cfb575f80fd5b5035919050565b5f6020808352835180828501525f5b81811015611d2d57858101830151858201604001528201611d11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b2e575f80fd5b5f8060408385031215611d72575f80fd5b8235611d7d81611d4d565b946020939093013593505050565b5f805f60608486031215611d9d575f80fd5b8335611da881611d4d565b92506020840135611db881611d4d565b929592945050506040919091013590565b5f60208284031215611dd9575f80fd5b8135611b1881611d4d565b5f8060408385031215611df5575f80fd5b8235611e0081611d4d565b915060208301358015158114611e14575f80fd5b809150509250929050565b5f8060408385031215611e30575f80fd5b8235611e3b81611d4d565b91506020830135611e1481611d4d565b600181811c90821680611e5f57607f821691505b602082108103611e7d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091857610918611e83565b808202811582820484141761091857610918611e83565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091857610918611e83565b5f82611f7657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f9f575f80fd5b8151611b1881611d4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611ff85784516001600160a01b031683529383019391830191600101611fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a47b5d24217293f5e0f6306a7915fc64a0189fb54e27640c5aca010a2a598d264736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x608060405260043610610282575f3560e01c806370a0823111610155578063c0246668116100be578063e28a939411610078578063e28a939414610764578063e2f4560514610779578063f2fde38b1461078e578063f8b45b05146107ad578063fe575a87146107c2578063ffb54a99146107f0575f80fd5b8063c0246668146106d3578063c8c8ebe4146106f2578063c9567bf914610707578063cf9522fd1461071b578063dd62ed3e14610730578063dd8546521461074f575f80fd5b806395d89b411161010f57806395d89b41146106225780639a7a23d614610636578063a457c2d714610655578063a9059cbb14610674578063afa4f3b214610693578063b6fda8aa146106b2575f80fd5b806370a082311461056b578063715018a61461059f5780637571336a146105b357806375f0a874146105d257806389291a8f146105f15780638da5cb5b14610605575f80fd5b8063311028af116101f757806349bd5a5e116101b157806349bd5a5e1461047b5780634fbee193146104ae578063583e0568146104e55780635c0736c6146105185780635d60c7be1461052d5780636ddd17131461054c575f80fd5b8063311028af146103ee578063313ce5671461040357806331e02e0b1461041e5780633950935114610433578063415bc319146104525780634490ce5d14610466575f80fd5b80630ca9c309116102485780630ca9c3091461034457806318160ddd146103645780631f3fed8f1461037857806323b872dd1461038d57806327c8f835146103ac5780632b36a6d2146103d9575f80fd5b8062172ddf1461028d57806305e2df18146102ae57806306fdde03146102d6578063095ea7b3146102f75780630a702e8d14610326575f80fd5b3661028957005b5f80fd5b348015610298575f80fd5b506102ac6102a7366004611ceb565b610809565b005b3480156102b9575f80fd5b506102c3600d5481565b6040519081526020015b60405180910390f35b3480156102e1575f80fd5b506102ea610875565b6040516102cd9190611d02565b348015610302575f80fd5b50610316610311366004611d61565b610905565b60405190151581526020016102cd565b348015610331575f80fd5b50600f5461031690610100900460ff1681565b34801561034f575f80fd5b50600f54610316906301000000900460ff1681565b34801561036f575f80fd5b506002546102c3565b348015610383575f80fd5b506102c360155481565b348015610398575f80fd5b506103166103a7366004611d8b565b61091e565b3480156103b7575f80fd5b506103c161dead81565b6040516001600160a01b0390911681526020016102cd565b3480156103e4575f80fd5b506102c360125481565b3480156103f9575f80fd5b506102c360085481565b34801561040e575f80fd5b50604051601281526020016102cd565b348015610429575f80fd5b506102c360105481565b34801561043e575f80fd5b5061031661044d366004611d61565b610941565b34801561045d575f80fd5b506102ac610962565b348015610471575f80fd5b506102c3600c5481565b348015610486575f80fd5b506103c17f000000000000000000000000562ca705710f0a240e4e29baa8b36a9c89a7f65481565b3480156104b9575f80fd5b506103166104c8366004611dc9565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156104f0575f80fd5b506103c17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610523575f80fd5b506102c3600e5481565b348015610538575f80fd5b506006546103c1906001600160a01b031681565b348015610557575f80fd5b50600f546103169062010000900460ff1681565b348015610576575f80fd5b506102c3610585366004611dc9565b6001600160a01b03165f9081526020819052604090205490565b3480156105aa575f80fd5b506102ac610a70565b3480156105be575f80fd5b506102ac6105cd366004611de4565b610a83565b3480156105dd575f80fd5b506007546103c1906001600160a01b031681565b3480156105fc575f80fd5b506102ac610ab5565b348015610610575f80fd5b506005546001600160a01b03166103c1565b34801561062d575f80fd5b506102ea610b31565b348015610641575f80fd5b506102ac610650366004611de4565b610b40565b348015610660575f80fd5b5061031661066f366004611d61565b610bfd565b34801561067f575f80fd5b5061031661068e366004611d61565b610c77565b34801561069e575f80fd5b506102ac6106ad366004611ceb565b610c84565b3480156106bd575f80fd5b50600f5461031690640100000000900460ff1681565b3480156106de575f80fd5b506102ac6106ed366004611de4565b610ca4565b3480156106fd575f80fd5b506102c360095481565b348015610712575f80fd5b506102ac610d0a565b348015610726575f80fd5b506102c360135481565b34801561073b575f80fd5b506102c361074a366004611e1f565b610d7c565b34801561075a575f80fd5b506102c360115481565b34801561076f575f80fd5b506102c360145481565b348015610784575f80fd5b506102c3600b5481565b348015610799575f80fd5b506102ac6107a8366004611dc9565b610da6565b3480156107b8575f80fd5b506102c3600a5481565b3480156107cd575f80fd5b506103166107dc366004611dc9565b60196020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600f546103169060ff1681565b610811610e1c565b600f546301000000900460ff16156108705760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c656460448201526064015b60405180910390fd5b601355565b60606003805461088490611e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611e4b565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f33610912818585610e76565b60019150505b92915050565b5f3361092b858285610f99565b610936858585611011565b506001949350505050565b5f336109128185856109538383610d7c565b61095d9190611e97565b610e76565b61096a610e1c565b600f546301000000900460ff16156109c45760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c65646044820152606401610867565b670de0b6b3a76400006009908155606360139081556001600160a01b037f000000000000000000000000562ca705710f0a240e4e29baa8b36a9c89a7f654165f908152601960208190526040808320805460ff1990811660019081178355308652929094208054851690921782556011839055919093558054821690558154169055600f805442600c5560025492839055600a9290925564ffff00ff0019909116640101000000179055565b610a78610e1c565b610a815f611859565b565b610a8b610e1c565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b610abd610e1c565b5f4711610b055760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b6044820152606401610867565b60405133904780156108fc02915f818181858888f19350505050158015610b2e573d5f803e3d5ffd5b50565b60606004805461088490611e4b565b610b48610e1c565b7f000000000000000000000000562ca705710f0a240e4e29baa8b36a9c89a7f6546001600160a01b0316826001600160a01b031603610bef5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610867565b610bf982826118aa565b5050565b5f3381610c0a8286610d7c565b905083811015610c6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610867565b6109368286868403610e76565b5f33610912818585611011565b610c8c610e1c565b610c9e81670de0b6b3a7640000611eaa565b600b5550565b610cac610e1c565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d12610e1c565b600f5460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610867565b600f805462ff00ff19166201000117905543600d55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610dae610e1c565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610b2e81611859565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610867565b6001600160a01b038316610ed85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b6001600160a01b038216610f395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610867565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610fa48484610d7c565b90505f19811461100b5781811015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610867565b61100b8484848403610e76565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b03821661105d5760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f9081526019602052604090205460ff1615801561109d57506001600160a01b0382165f9081526019602052604090205460ff16155b6111015760405162461bcd60e51b815260206004820152602f60248201527f45524332303a207472616e736665722066726f6d2f746f2074686520626c616360448201526e6b6c6973746564206164647265737360881b6064820152608401610867565b43600e55600f54640100000000900460ff16801561112e575061012c600c544261112b9190611f49565b10155b15611190576005601154111561117757600560115f8282546111509190611f49565b92505081905550600560135f8282546111699190611f49565b909155505042600c55611190565b60016011819055601355600f805464ff00000000191690555b805f036111a7576111a283835f6118fd565b505050565b6005546001600160a01b038481169116148015906111d357506005546001600160a01b03838116911614155b80156111e757506001600160a01b03821615155b80156111fe57506001600160a01b03821661dead14155b80156112145750600754600160a01b900460ff16155b156115a057600f5460ff166112a5576001600160a01b0383165f9081526016602052604090205460ff168061126057506001600160a01b0382165f9081526016602052604090205460ff165b6112a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610867565b6001600160a01b0383165f9081526018602052604090205460ff1680156112e457506001600160a01b0382165f9081526017602052604090205460ff16155b15611463576009548111156113595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610867565b600a546001600160a01b0383165f9081526020819052604090205461137e9083611e97565b11156113c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b600f54610100900460ff161561145e576001600160a01b0382165f908152601a602052604090205443116114435760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f6e65206275792070657220626c6f636b20697320616c6c6f7765604482015261321760f11b6064820152608401610867565b6001600160a01b0382165f908152601a602052604090204390555b6115a0565b6001600160a01b0382165f9081526018602052604090205460ff1680156114a257506001600160a01b0383165f9081526017602052604090205460ff16155b156115185760095481111561145e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610867565b6001600160a01b0382165f9081526017602052604090205460ff166115a057600a546001600160a01b0383165f9081526020819052604090205461155c9083611e97565b11156115a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b305f90815260208190526040902054600b54811080159081906115cb5750600f5462010000900460ff165b80156115e15750600754600160a01b900460ff16155b801561160557506001600160a01b0385165f9081526018602052604090205460ff16155b801561162957506001600160a01b0385165f9081526016602052604090205460ff16155b801561164d57506001600160a01b0384165f9081526016602052604090205460ff16155b1561167b576007805460ff60a01b1916600160a01b17905561166d611a25565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526016602052604090205460ff600160a01b9092048216159116806116c757506001600160a01b0385165f9081526016602052604090205460ff165b156116cf57505f5b5f8115611845576001600160a01b0386165f9081526018602052604090205460ff161561179157601054600d546117069190611e97565b600e541161174757611740606461173a6012546012546013546117299190611e97565b6117339190611eaa565b8890611b0d565b90611b1f565b9050611811565b601254600d546117579190611e97565b600e541161177757611740606461173a6014546013546117339190611e97565b611740606461173a60135488611b0d90919063ffffffff16565b601054600d546117a19190611e97565b600e54116117c457611740606461173a6012546012546013546117299190611e97565b601254600d546117d49190611e97565b600e54116117f457611740606461173a6014546011546117339190611e97565b61180e606461173a60115488611b0d90919063ffffffff16565b90505b8060155f8282546118229190611e97565b90915550508015611838576118388730836118fd565b6118428186611f49565b94505b6118508787876118fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119235760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b0382166119495760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f90815260208190526040902054818110156119c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610867565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361100b565b305f90815260208190526040812054601554600b54919290918190841015611a4d5750505050565b600b54841015611a5d5783611a61565b600b545b915047611a6d83611b2a565b5f611a784783611ce0565b90505f806015541115611aa957611a9e8661173a60155485611b0d90919063ffffffff16565b5f6015559050611aac565b50805b5f60158190556007546040516001600160a01b039091169183919081818185875af1925050503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50505050505050505050565b5f611b188284611eaa565b9392505050565b5f611b188284611f5c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b5d57611b5d611f7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bfd9190611f8f565b81600181518110611c1057611c10611f7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e76565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611caf9085905f90869030904290600401611faa565b5f604051808303815f87803b158015611cc6575f80fd5b505af1158015611cd8573d5f803e3d5ffd5b505050505050565b5f611b188284611f49565b5f60208284031215611cfb575f80fd5b5035919050565b5f6020808352835180828501525f5b81811015611d2d57858101830151858201604001528201611d11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b2e575f80fd5b5f8060408385031215611d72575f80fd5b8235611d7d81611d4d565b946020939093013593505050565b5f805f60608486031215611d9d575f80fd5b8335611da881611d4d565b92506020840135611db881611d4d565b929592945050506040919091013590565b5f60208284031215611dd9575f80fd5b8135611b1881611d4d565b5f8060408385031215611df5575f80fd5b8235611e0081611d4d565b915060208301358015158114611e14575f80fd5b809150509250929050565b5f8060408385031215611e30575f80fd5b8235611e3b81611d4d565b91506020830135611e1481611d4d565b600181811c90821680611e5f57607f821691505b602082108103611e7d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091857610918611e83565b808202811582820484141761091857610918611e83565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091857610918611e83565b5f82611f7657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f9f575f80fd5b8151611b1881611d4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611ff85784516001600160a01b031683529383019391830191600101611fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a47b5d24217293f5e0f6306a7915fc64a0189fb54e27640c5aca010a2a598d264736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _initialBuyFee (uint256): 1
Arg [1] : _initialSellFee (uint256): 3
Arg [2] : _preventSwapBefore (uint256): 10

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

31371:11383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41467:201;;;;;;;;;;-1:-1:-1;41467:201:0;;;;;:::i;:::-;;:::i;:::-;;32026:25;;;;;;;;;;;;;;;;;;;345::1;;;333:2;318:18;32026:25:0;;;;;;;;20183:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22534:201::-;;;;;;;;;;-1:-1:-1;22534:201:0;;;;;:::i;:::-;;:::i;:::-;;;1555:14:1;;1548:22;1530:41;;1518:2;1503:18;22534:201:0;1390:187:1;32129:32:0;;;;;;;;;;-1:-1:-1;32129:32:0;;;;;;;;;;;32206:33;;;;;;;;;;-1:-1:-1;32206:33:0;;;;;;;;;;;21303:108;;;;;;;;;;-1:-1:-1;21391:12:0;;21303:108;;32462:33;;;;;;;;;;;;;;;;23315:295;;;;;;;;;;-1:-1:-1;23315:295:0;;;;;:::i;:::-;;:::i;31626:53::-;;;;;;;;;;;;31672:6;31626:53;;;;;-1:-1:-1;;;;;2207:32:1;;;2189:51;;2177:2;2162:18;31626:53:0;2043:203:1;32351:29:0;;;;;;;;;;;;;;;;31718:53;;;;;;;;;;;;;;;;21145:93;;;;;;;;;;-1:-1:-1;21145:93:0;;21228:2;2393:36:1;;2381:2;2366:18;21145:93:0;2251:184:1;32283:28:0;;;;;;;;;;;;;;;;24019:238;;;;;;;;;;-1:-1:-1;24019:238:0;;;;;:::i;:::-;;:::i;40750:709::-;;;;;;;;;;;;;:::i;31990:29::-;;;;;;;;;;;;;;;;31508:38;;;;;;;;;;;;;;;35397:126;;;;;;;;;;-1:-1:-1;35397:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35487:28:0;35463:4;35487:28;;;:19;:28;;;;;;;;;35397:126;31449:52;;;;;;;;;;;;;;;32058:24;;;;;;;;;;;;;;;;31553:29;;;;;;;;;;-1:-1:-1;31553:29:0;;;;-1:-1:-1;;;;;31553:29:0;;;32168:31;;;;;;;;;;-1:-1:-1;32168:31:0;;;;;;;;;;;21474:127;;;;;;;;;;-1:-1:-1;21474:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21575:18:0;21548:7;21575:18;;;;;;;;;;;;21474:127;18586:103;;;;;;;;;;;;;:::i;34524:167::-;;;;;;;;;;-1:-1:-1;34524:167:0;;;;;:::i;:::-;;:::i;31589:30::-;;;;;;;;;;-1:-1:-1;31589:30:0;;;;-1:-1:-1;;;;;31589:30:0;;;40557:185;;;;;;;;;;;;;:::i;17938:87::-;;;;;;;;;;-1:-1:-1;18011:6:0;;-1:-1:-1;;;;;18011:6:0;17938:87;;20402:104;;;;;;;;;;;;;:::i;34889:304::-;;;;;;;;;;-1:-1:-1;34889:304:0;;;;;:::i;:::-;;:::i;24760:436::-;;;;;;;;;;-1:-1:-1;24760:436:0;;;;;:::i;:::-;;:::i;21807:193::-;;;;;;;;;;-1:-1:-1;21807:193:0;;;;;:::i;:::-;;:::i;41676:127::-;;;;;;;;;;-1:-1:-1;41676:127:0;;;;;:::i;:::-;;:::i;32246:28::-;;;;;;;;;;-1:-1:-1;32246:28:0;;;;;;;;;;;34699:182;;;;;;;;;;-1:-1:-1;34699:182:0;;;;;:::i;:::-;;:::i;31778:68::-;;;;;;;;;;;;;;;;34312:204;;;;;;;;;;;;;:::i;32387:27::-;;;;;;;;;;;;;;;;22063:151;;;;;;;;;;-1:-1:-1;22063:151:0;;;;;:::i;:::-;;:::i;32318:26::-;;;;;;;;;;;;;;;;32421:32;;;;;;;;;;;;;;;;31917:66;;;;;;;;;;;;;;;;18844:201;;;;;;;;;;-1:-1:-1;18844:201:0;;;;;:::i;:::-;;:::i;31853:57::-;;;;;;;;;;;;;;;;32699:45;;;;;;;;;;-1:-1:-1;32699:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32091:31;;;;;;;;;;-1:-1:-1;32091:31:0;;;;;;;;41467:201;17824:13;:11;:13::i;:::-;41540::::1;::::0;;;::::1;;;41539:14;41531:59;;;::::0;-1:-1:-1;;;41531:59:0;;3941:2:1;41531:59:0::1;::::0;::::1;3923:21:1::0;;;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4071:18;;41531:59:0::1;;;;;;;;;41642:7;:18:::0;41467:201::o;20183:100::-;20237:13;20270:5;20263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20183:100;:::o;22534:201::-;22617:4;405:10;22673:32;405:10;22689:7;22698:6;22673:8;:32::i;:::-;22723:4;22716:11;;;22534:201;;;;;:::o;23315:295::-;23446:4;405:10;23504:38;23520:4;405:10;23535:6;23504:15;:38::i;:::-;23553:27;23563:4;23569:2;23573:6;23553:9;:27::i;:::-;-1:-1:-1;23598:4:0;;23315:295;-1:-1:-1;;;;23315:295:0:o;24019:238::-;24107:4;405:10;24163:64;405:10;24179:7;24216:10;24188:25;405:10;24179:7;24188:9;:25::i;:::-;:38;;;;:::i;:::-;24163:8;:64::i;40750:709::-;17824:13;:11;:13::i;:::-;40806::::1;::::0;;;::::1;;;40805:14;40797:59;;;::::0;-1:-1:-1;;;40797:59:0;;3941:2:1;40797:59:0::1;::::0;::::1;3923:21:1::0;;;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4071:18;;40797:59:0::1;3739:356:1::0;40797:59:0::1;40890:8;40867:20;:31:::0;;;40919:2:::1;40909:7;:12:::0;;;-1:-1:-1;;;;;40946:13:0::1;40932:28;-1:-1:-1::0;40932:28:0;;;:13:::1;:28;::::0;;;;;;;:35;;-1:-1:-1;;40932:35:0;;::::1;40963:4;40932:35:::0;;::::1;::::0;;41000:4:::1;40978:28:::0;;;;;;:35;;;::::1;::::0;;::::1;::::0;;41036:6:::1;:11:::0;;;41058:12;;;;41081:36;;;::::1;::::0;;41128;;::::1;::::0;;41175:13:::1;:20:::0;;41249:15:::1;41232:14;:32:::0;21391:12;;41339:40;;;;41390:9:::1;:29:::0;;;;-1:-1:-1;;41430:21:0;;;41206:15;41430:21;;;40750:709::o;18586:103::-;17824:13;:11;:13::i;:::-;18651:30:::1;18678:1;18651:18;:30::i;:::-;18586:103::o:0;34524:167::-;17824:13;:11;:13::i;:::-;-1:-1:-1;;;;;34637:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;34637:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34524:167::o;40557:185::-;17824:13;:11;:13::i;:::-;40644:1:::1;40620:21;:25;40612:60;;;::::0;-1:-1:-1;;;40612:60:0;;4949:2:1;40612:60:0::1;::::0;::::1;4931:21:1::0;4988:2;4968:18;;;4961:30;-1:-1:-1;;;5007:18:1;;;5000:52;5069:18;;40612:60:0::1;4747:346:1::0;40612:60:0::1;40683:51;::::0;40691:10:::1;::::0;40712:21:::1;40683:51:::0;::::1;;;::::0;::::1;::::0;;;40712:21;40691:10;40683:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40557:185::o:0;20402:104::-;20458:13;20491:7;20484:14;;;;;:::i;34889:304::-;17824:13;:11;:13::i;:::-;35033::::1;-1:-1:-1::0;;;;;35025:21:0::1;:4;-1:-1:-1::0;;;;;35025:21:0::1;::::0;35003:128:::1;;;::::0;-1:-1:-1;;;35003:128:0;;5300:2:1;35003:128:0::1;::::0;::::1;5282:21:1::0;5339:2;5319:18;;;5312:30;5378:34;5358:18;;;5351:62;5449:27;5429:18;;;5422:55;5494:19;;35003:128:0::1;5098:421:1::0;35003:128:0::1;35144:41;35173:4;35179:5;35144:28;:41::i;:::-;34889:304:::0;;:::o;24760:436::-;24853:4;405:10;24853:4;24936:25;405:10;24953:7;24936:9;:25::i;:::-;24909:52;;25000:15;24980:16;:35;;24972:85;;;;-1:-1:-1;;;24972:85:0;;5726:2:1;24972:85:0;;;5708:21:1;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;-1:-1:-1;;;5855:18:1;;;5848:35;5900:19;;24972:85:0;5524:401:1;24972:85:0;25093:60;25102:5;25109:7;25137:15;25118:16;:34;25093:8;:60::i;21807:193::-;21886:4;405:10;21942:28;405:10;21959:2;21963:6;21942:9;:28::i;41676:127::-;17824:13;:11;:13::i;:::-;41775:20:::1;:7:::0;41786:8:::1;41775:20;:::i;:::-;41754:18;:41:::0;-1:-1:-1;41676:127:0:o;34699:182::-;17824:13;:11;:13::i;:::-;-1:-1:-1;;;;;34784:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34784:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34839:34;;1530:41:1;;;34839:34:0::1;::::0;1503:18:1;34839:34:0::1;;;;;;;34699:182:::0;;:::o;34312:204::-;17824:13;:11;:13::i;:::-;34376:11:::1;::::0;::::1;;34375:12;34367:47;;;::::0;-1:-1:-1;;;34367:47:0;;6305:2:1;34367:47:0::1;::::0;::::1;6287:21:1::0;6344:2;6324:18;;;6317:30;6383:25;6363:18;;;6356:53;6426:18;;34367:47:0::1;6103:347:1::0;34367:47:0::1;34425:11;:18:::0;;-1:-1:-1;;34454:18:0;;;;;34496:12:::1;34483:10;:25:::0;34312:204::o;22063:151::-;-1:-1:-1;;;;;22179:18:0;;;22152:7;22179:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22063:151::o;18844:201::-;17824:13;:11;:13::i;:::-;-1:-1:-1;;;;;18933:22:0;::::1;18925:73;;;::::0;-1:-1:-1;;;18925:73:0;;6657:2:1;18925:73:0::1;::::0;::::1;6639:21:1::0;6696:2;6676:18;;;6669:30;6735:34;6715:18;;;6708:62;-1:-1:-1;;;6786:18:1;;;6779:36;6832:19;;18925:73:0::1;6455:402:1::0;18925:73:0::1;19009:28;19028:8;19009:18;:28::i;18103:132::-:0;18011:6;;-1:-1:-1;;;;;18011:6:0;405:10;18167:23;18159:68;;;;-1:-1:-1;;;18159:68:0;;7064:2:1;18159:68:0;;;7046:21:1;;;7083:18;;;7076:30;7142:34;7122:18;;;7115:62;7194:18;;18159:68:0;6862:356:1;28787:380:0;-1:-1:-1;;;;;28923:19:0;;28915:68;;;;-1:-1:-1;;;28915:68:0;;7425:2:1;28915:68:0;;;7407:21:1;7464:2;7444:18;;;7437:30;7503:34;7483:18;;;7476:62;-1:-1:-1;;;7554:18:1;;;7547:34;7598:19;;28915:68:0;7223:400:1;28915:68:0;-1:-1:-1;;;;;29002:21:0;;28994:68;;;;-1:-1:-1;;;28994:68:0;;7830:2:1;28994:68:0;;;7812:21:1;7869:2;7849:18;;;7842:30;7908:34;7888:18;;;7881:62;-1:-1:-1;;;7959:18:1;;;7952:32;8001:19;;28994:68:0;7628:398:1;28994:68:0;-1:-1:-1;;;;;29075:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29127:32;;345:25:1;;;29127:32:0;;318:18:1;29127:32:0;;;;;;;28787:380;;;:::o;29458:453::-;29593:24;29620:25;29630:5;29637:7;29620:9;:25::i;:::-;29593:52;;-1:-1:-1;;29660:16:0;:37;29656:248;;29742:6;29722:16;:26;;29714:68;;;;-1:-1:-1;;;29714:68:0;;8233:2:1;29714:68:0;;;8215:21:1;8272:2;8252:18;;;8245:30;8311:31;8291:18;;;8284:59;8360:18;;29714:68:0;8031:353:1;29714:68:0;29826:51;29835:5;29842:7;29870:6;29851:16;:25;29826:8;:51::i;:::-;29582:329;29458:453;;;:::o;35531:4530::-;-1:-1:-1;;;;;35663:18:0;;35655:68;;;;-1:-1:-1;;;35655:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35742:16:0;;35734:64;;;;-1:-1:-1;;;35734:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35818:19:0;;;;;;:13;:19;;;;;;;;35817:20;:42;;;;-1:-1:-1;;;;;;35842:17:0;;;;;;:13;:17;;;;;;;;35841:18;35817:42;35809:102;;;;-1:-1:-1;;;35809:102:0;;9401:2:1;35809:102:0;;;9383:21:1;9440:2;9420:18;;;9413:30;9479:34;9459:18;;;9452:62;-1:-1:-1;;;9530:18:1;;;9523:45;9585:19;;35809:102:0;9199:411:1;35809:102:0;35934:12;35922:9;:24;35963:8;;;;;;;:57;;;;;36011:9;35993:14;;35975:15;:32;;;;:::i;:::-;:45;;35963:57;35959:349;;;36050:1;36041:6;;:10;36037:260;;;36082:1;36072:6;;:11;;;;;;;:::i;:::-;;;;;;;;36113:1;36102:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;36150:15:0;36133:14;:32;36037:260;;;36215:1;36206:6;:10;;;36235:7;:11;36265:8;:16;;-1:-1:-1;;36265:16:0;;;36037:260;36324:6;36334:1;36324:11;36320:93;;36352:28;36368:4;36374:2;36378:1;36352:15;:28::i;:::-;35531:4530;;;:::o;36320:93::-;18011:6;;-1:-1:-1;;;;;36455:15:0;;;18011:6;;36455:15;;;;:49;;-1:-1:-1;18011:6:0;;-1:-1:-1;;;;;36491:13:0;;;18011:6;;36491:13;;36455:49;:86;;;;-1:-1:-1;;;;;;36525:16:0;;;;36455:86;:128;;;;-1:-1:-1;;;;;;36562:21:0;;36576:6;36562:21;;36455:128;:158;;;;-1:-1:-1;36605:8:0;;-1:-1:-1;;;36605:8:0;;;;36604:9;36455:158;36433:1818;;;36653:11;;;;36648:221;;-1:-1:-1;;;;;36723:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36752:23:0;;;;;;:19;:23;;;;;;;;36723:52;36689:160;;;;-1:-1:-1;;;36689:160:0;;9950:2:1;36689:160:0;;;9932:21:1;9989:2;9969:18;;;9962:30;-1:-1:-1;;;10008:18:1;;;10001:52;10070:18;;36689:160:0;9748:346:1;36689:160:0;-1:-1:-1;;;;;36915:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;36972:35:0;;;;;;:31;:35;;;;;;;;36971:36;36915:92;36889:1347;;;37094:20;;37084:6;:30;;37050:169;;;;-1:-1:-1;;;37050:169:0;;10301:2:1;37050:169:0;;;10283:21:1;10340:2;10320:18;;;10313:30;10379:34;10359:18;;;10352:62;-1:-1:-1;;;10430:18:1;;;10423:51;10491:19;;37050:169:0;10099:417:1;37050:169:0;37302:9;;-1:-1:-1;;;;;21575:18:0;;21548:7;21575:18;;;;;;;;;;;37276:22;;:6;:22;:::i;:::-;:35;;37242:140;;;;-1:-1:-1;;;37242:140:0;;10723:2:1;37242:140:0;;;10705:21:1;10762:2;10742:18;;;10735:30;-1:-1:-1;;;10781:18:1;;;10774:49;10840:18;;37242:140:0;10521:343:1;37242:140:0;37411:13;;;;;;;37407:291;;;-1:-1:-1;;;;;37491:16:0;;;;;;:12;:16;;;;;;37510:12;-1:-1:-1;37453:163:0;;;;-1:-1:-1;;;37453:163:0;;11071:2:1;37453:163:0;;;11053:21:1;11110:2;11090:18;;;11083:30;11149:34;11129:18;;;11122:62;-1:-1:-1;;;11200:18:1;;;11193:32;11242:19;;37453:163:0;10869:398:1;37453:163:0;-1:-1:-1;;;;;37643:16:0;;;;;;:12;:16;;;;;37662:12;37643:31;;37407:291;36889:1347;;;-1:-1:-1;;;;;37768:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;37823:37:0;;;;;;:31;:37;;;;;;;;37822:38;37768:92;37742:494;;;37921:20;;37911:6;:30;;37903:97;;;;-1:-1:-1;;;37903:97:0;;11474:2:1;37903:97:0;;;11456:21:1;11513:2;11493:18;;;11486:30;11552:34;11532:18;;;11525:62;-1:-1:-1;;;11603:18:1;;;11596:52;11665:19;;37903:97:0;11272:418:1;37742:494:0;-1:-1:-1;;;;;38089:35:0;;;;;;:31;:35;;;;;;;;38084:152;;38183:9;;-1:-1:-1;;;;;21575:18:0;;21548:7;21575:18;;;;;;;;;;;38157:22;;:6;:22;:::i;:::-;:35;;38149:67;;;;-1:-1:-1;;;38149:67:0;;10723:2:1;38149:67:0;;;10705:21:1;10762:2;10742:18;;;10735:30;-1:-1:-1;;;10781:18:1;;;10774:49;10840:18;;38149:67:0;10521:343:1;38149:67:0;38312:4;38263:28;21575:18;;;;;;;;;;;38370;;38346:42;;;;;;;38419:35;;-1:-1:-1;38443:11:0;;;;;;;38419:35;:61;;;;-1:-1:-1;38472:8:0;;-1:-1:-1;;;38472:8:0;;;;38471:9;38419:61;:110;;;;-1:-1:-1;;;;;;38498:31:0;;;;;;:25;:31;;;;;;;;38497:32;38419:110;:153;;;;-1:-1:-1;;;;;;38547:25:0;;;;;;:19;:25;;;;;;;;38546:26;38419:153;:194;;;;-1:-1:-1;;;;;;38590:23:0;;;;;;:19;:23;;;;;;;;38589:24;38419:194;38401:326;;;38640:8;:15;;-1:-1:-1;;;;38640:15:0;-1:-1:-1;;;38640:15:0;;;38672:10;:8;:10::i;:::-;38699:8;:16;;-1:-1:-1;;;;38699:16:0;;;38401:326;38755:8;;-1:-1:-1;;;;;38780:25:0;;38739:12;38780:25;;;:19;:25;;;;;;38755:8;-1:-1:-1;;;38755:8:0;;;;;38754:9;;38780:25;;:52;;-1:-1:-1;;;;;;38809:23:0;;;;;;:19;:23;;;;;;;;38780:52;38776:100;;;-1:-1:-1;38859:5:0;38776:100;38888:12;38921:7;38917:1089;;;-1:-1:-1;;;;;38949:29:0;;;;;;:25;:29;;;;;;;;38945:893;;;39029:13;;39016:10;;:26;;;;:::i;:::-;39003:9;;:39;38999:393;;39074:64;39134:3;39074:55;39114:14;;39096;;39086:7;;:24;;;;:::i;:::-;39085:43;;;;:::i;:::-;39074:6;;:10;:55::i;:::-;:59;;:64::i;:::-;39067:71;;38945:893;;38999:393;39194:14;;39181:10;;:27;;;;:::i;:::-;39168:9;;:40;39164:228;;39240:48;39284:3;39240:39;39261:17;;39251:7;;:27;;;;:::i;39164:228::-;39344:28;39368:3;39344:19;39355:7;;39344:6;:10;;:19;;;;:::i;38945:893::-;39462:13;;39449:10;;:26;;;;:::i;:::-;39436:9;;:39;39432:391;;39507:64;39567:3;39507:55;39547:14;;39529;;39519:7;;:24;;;;:::i;39432:391::-;39627:14;;39614:10;;:27;;;;:::i;:::-;39601:9;;:40;39597:226;;39673:47;39716:3;39673:38;39693:17;;39684:6;;:26;;;;:::i;39597:226::-;39776:27;39799:3;39776:18;39787:6;;39776;:10;;:18;;;;:::i;:27::-;39769:34;;39597:226;39872:4;39850:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;39893:8:0;;39889:83;;39918:42;39934:4;39948;39955;39918:15;:42::i;:::-;39984:14;39994:4;39984:14;;:::i;:::-;;;38917:1089;40018:33;40034:4;40040:2;40044:6;40018:15;:33::i;:::-;35644:4417;;;;35531:4530;;;:::o;19205:191::-;19298:6;;;-1:-1:-1;;;;;19315:17:0;;;-1:-1:-1;;;;;;19315:17:0;;;;;;;19348:40;;19298:6;;;19315:17;19298:6;;19348:40;;19279:16;;19348:40;19268:128;19205:191;:::o;35201:188::-;-1:-1:-1;;;;;35284:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35284:39:0;;;;;;;;;;35341:40;;35284:39;;:31;35341:40;;;35201:188;;:::o;25666:840::-;-1:-1:-1;;;;;25797:18:0;;25789:68;;;;-1:-1:-1;;;25789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25876:16:0;;25868:64;;;;-1:-1:-1;;;25868:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26018:15:0;;25996:19;26018:15;;;;;;;;;;;26052:21;;;;26044:72;;;;-1:-1:-1;;;26044:72:0;;11897:2:1;26044:72:0;;;11879:21:1;11936:2;11916:18;;;11909:30;11975:34;11955:18;;;11948:62;-1:-1:-1;;;12026:18:1;;;12019:36;12072:19;;26044:72:0;11695:402:1;26044:72:0;-1:-1:-1;;;;;26152:15:0;;;:9;:15;;;;;;;;;;;26170:20;;;26152:38;;26370:13;;;;;;;;;;:23;;;;;;26422:26;;345:25:1;;;26370:13:0;;26422:26;;318:18:1;26422:26:0;;;;;;;26461:37;35531:4530;41811:940;41894:4;41850:23;21575:18;;;;;;;;;;;41939;;42043;;21575;;41939;;41850:23;;42025:36;;42021:195;;;42074:7;;;;41811:940::o;42021:195::-;42151:18;;42132:15;:37;;:76;;42193:15;42132:76;;;42172:18;;42132:76;42117:91;;42252:21;42282:30;42299:12;42282:16;:30::i;:::-;42321:18;42342:44;:21;42368:17;42342:25;:44::i;:::-;42321:65;;42395:23;42452:1;42431:18;;:22;42427:208;;;42484:57;42523:17;42484:34;42499:18;;42484:10;:14;;:34;;;;:::i;:57::-;42573:1;42552:18;:22;42466:75;-1:-1:-1;42427:208:0;;;-1:-1:-1;42617:10:0;42427:208;42664:1;42643:18;:22;;;42696:15;;42688:57;;-1:-1:-1;;;;;42696:15:0;;;;42725;;42688:57;;42664:1;42688:57;42725:15;42696;42688:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;41811:940:0:o;8414:98::-;8472:7;8499:5;8503:1;8499;:5;:::i;:::-;8492:12;8414:98;-1:-1:-1;;;8414:98:0:o;8813:::-;8871:7;8898:5;8902:1;8898;:5;:::i;40069:480::-;40161:16;;;40175:1;40161:16;;;;;;;;40137:21;;40161:16;;;;;;;;;;-1:-1:-1;40161:16:0;40137:40;;40206:4;40188;40193:1;40188:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40188:23:0;;;-1:-1:-1;;;;;40188:23:0;;;;;40232:16;-1:-1:-1;;;;;40232:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40222:4;40227:1;40222:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;40222:33:0;;;-1:-1:-1;;;;;40222:33:0;;;;;40268:63;40285:4;40300:16;40319:11;40268:8;:63::i;:::-;40344:197;;-1:-1:-1;;;40344:197:0;;-1:-1:-1;;;;;40344:16:0;:67;;;;:197;;40426:11;;40452:1;;40468:4;;40495;;40515:15;;40344:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40124:425;40069:480;:::o;8057:98::-;8115:7;8142:5;8146:1;8142;:5;:::i;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;381:548::-;493:4;522:2;551;540:9;533:21;583:6;577:13;626:6;621:2;610:9;606:18;599:34;651:1;661:140;675:6;672:1;669:13;661:140;;;770:14;;;766:23;;760:30;736:17;;;755:2;732:26;725:66;690:10;;661:140;;;665:3;850:1;845:2;836:6;825:9;821:22;817:31;810:42;920:2;913;909:7;904:2;896:6;892:15;888:29;877:9;873:45;869:54;861:62;;;;381:548;;;;:::o;934:131::-;-1:-1:-1;;;;;1009:31:1;;999:42;;989:70;;1055:1;1052;1045:12;1070:315;1138:6;1146;1199:2;1187:9;1178:7;1174:23;1170:32;1167:52;;;1215:1;1212;1205:12;1167:52;1254:9;1241:23;1273:31;1298:5;1273:31;:::i;:::-;1323:5;1375:2;1360:18;;;;1347:32;;-1:-1:-1;;;1070:315:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2440:247::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2607:9;2594:23;2626:31;2651:5;2626:31;:::i;2925:416::-;2990:6;2998;3051:2;3039:9;3030:7;3026:23;3022:32;3019:52;;;3067:1;3064;3057:12;3019:52;3106:9;3093:23;3125:31;3150:5;3125:31;:::i;:::-;3175:5;-1:-1:-1;3232:2:1;3217:18;;3204:32;3274:15;;3267:23;3255:36;;3245:64;;3305:1;3302;3295:12;3245:64;3328:7;3318:17;;;2925:416;;;;;:::o;3346:388::-;3414:6;3422;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3530:9;3517:23;3549:31;3574:5;3549:31;:::i;:::-;3599:5;-1:-1:-1;3656:2:1;3641:18;;3628:32;3669:33;3628:32;3669:33;:::i;4100:380::-;4179:1;4175:12;;;;4222;;;4243:61;;4297:4;4289:6;4285:17;4275:27;;4243:61;4350:2;4342:6;4339:14;4319:18;4316:38;4313:161;;4396:10;4391:3;4387:20;4384:1;4377:31;4431:4;4428:1;4421:15;4459:4;4456:1;4449:15;4313:161;;4100:380;;;:::o;4485:127::-;4546:10;4541:3;4537:20;4534:1;4527:31;4577:4;4574:1;4567:15;4601:4;4598:1;4591:15;4617:125;4682:9;;;4703:10;;;4700:36;;;4716:18;;:::i;5930:168::-;6003:9;;;6034;;6051:15;;;6045:22;;6031:37;6021:71;;6072:18;;:::i;8389:401::-;8591:2;8573:21;;;8630:2;8610:18;;;8603:30;8669:34;8664:2;8649:18;;8642:62;-1:-1:-1;;;8735:2:1;8720:18;;8713:35;8780:3;8765:19;;8389:401::o;8795:399::-;8997:2;8979:21;;;9036:2;9016:18;;;9009:30;9075:34;9070:2;9055:18;;9048:62;-1:-1:-1;;;9141:2:1;9126:18;;9119:33;9184:3;9169:19;;8795:399::o;9615:128::-;9682:9;;;9703:11;;;9700:37;;;9717:18;;:::i;12312:217::-;12352:1;12378;12368:132;;12422:10;12417:3;12413:20;12410:1;12403:31;12457:4;12454:1;12447:15;12485:4;12482:1;12475:15;12368:132;-1:-1:-1;12514:9:1;;12312:217::o;12666:127::-;12727:10;12722:3;12718:20;12715:1;12708:31;12758:4;12755:1;12748:15;12782:4;12779:1;12772:15;12798:251;12868:6;12921:2;12909:9;12900:7;12896:23;12892:32;12889:52;;;12937:1;12934;12927:12;12889:52;12969:9;12963:16;12988:31;13013:5;12988:31;:::i;13054:980::-;13316:4;13364:3;13353:9;13349:19;13395:6;13384:9;13377:25;13421:2;13459:6;13454:2;13443:9;13439:18;13432:34;13502:3;13497:2;13486:9;13482:18;13475:31;13526:6;13561;13555:13;13592:6;13584;13577:22;13630:3;13619:9;13615:19;13608:26;;13669:2;13661:6;13657:15;13643:29;;13690:1;13700:195;13714:6;13711:1;13708:13;13700:195;;;13779:13;;-1:-1:-1;;;;;13775:39:1;13763:52;;13870:15;;;;13835:12;;;;13811:1;13729:9;13700:195;;;-1:-1:-1;;;;;;;13951:32:1;;;;13946:2;13931:18;;13924:60;-1:-1:-1;;;14015:3:1;14000:19;13993:35;13912:3;13054:980;-1:-1:-1;;;13054:980:1:o

Swarm Source

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