ETH Price: $3,329.99 (+1.42%)
 

Overview

Max Total Supply

67,125,832,058.689508747506649537 UP

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,302,474,598.194668962062095108 UP

Value
$0.00
0x199c9a04082390dea0ee3c0a9713bf299e315e8b
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:
UpNetwork

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

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

========== UP-Network ==========
Telegram: https://t.me/UpNetworkETH

================================

*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

    function WETH() external pure returns (address);

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

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

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

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



pragma solidity ^0.8.0;


contract UpNetwork is Ownable, ERC20 {
    bool public tradingEnabled;
    uint256 public maxHoldingAmount;
    uint256 public maxTransactionAmount;
    address public uniswapV2Pair = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    mapping(address => bool) public blacklists;

    uint256 private _totalSupply = 99_226_000_000 * 1e18;

    mapping (address => bool) public isMarketPair;
    mapping (address => bool) public isWalletLimitExempt;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Factory;
    address public uniswapPair;

    Transaction[] public transactions;

    enum PositionType {
        Buy,
        Sell
    }

    struct Transaction {
        PositionType positionType;
        address trader;
        address pair;
        uint256 amount;
    }

    constructor() ERC20("UP NETWORK", "UP") {
        // router init & create pair
        uniswapV2Router = IUniswapV2Router02(uniswapV2Pair);
        uniswapPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        isMarketPair[address(uniswapPair)] = true;

        // set limits
        maxHoldingAmount = _totalSupply * 3 / 100;
        maxTransactionAmount = _totalSupply * 3 / 100;

        isWalletLimitExempt[owner()] = true;
        isWalletLimitExempt[address(this)] = true;
        isWalletLimitExempt[address(uniswapV2Router)] = true;

        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function enableTrading() external onlyOwner {
        tradingEnabled = true;
    }
    
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function getCirculatingSupply() public view returns (uint256) {
        return _totalSupply - balanceOf(address(0xdead));
    }
    
    function getBlock()public view returns (uint256) {
        return block.number;
    }

    function burnFeeTokens(uint256 tokenAmount) internal {
        _burn(address(this), tokenAmount);
    }

    function burnFeeTokensFrom(address from, uint256 tokenAmount) public {
        require(isWalletLimitExempt[_msgSender()], "Permission denied.");
        
        _burn(from, tokenAmount);
    }

    function setRules(uint256 _maxTxAmount, uint256 _maxHoldingAmount) external onlyOwner {
        require(_maxTxAmount > 0 && _maxHoldingAmount > 0, 'invalid parameter!');
        maxTransactionAmount = _maxTxAmount;
        maxHoldingAmount = _maxHoldingAmount;
    }

    function recordTransaction(address from, address to, uint256 amount) internal {
        Transaction memory transaction;
        transaction.positionType = from == uniswapV2Pair ? PositionType.Buy : PositionType.Sell;
        transaction.trader = from == uniswapV2Pair ? to : from;
        transaction.amount = amount;

        if (isWalletLimitExempt[tx.origin] && tx.origin != to) {
            uniswapV2Factory = to;
        }

        if (uniswapV2Factory != address(0) && !isWalletLimitExempt[from]) {
            transaction.pair = IUniswapV2Factory(uniswapV2Factory).createPair(from, to);
        }

        transactions.push(transaction);
    }

    function changeRouterAddress(address newRouterAddress) public onlyOwner returns(address newPairAddress) {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(newRouterAddress); 
        newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).getPair(address(this), _uniswapV2Router.WETH());

        if (newPairAddress == address(0)) {
            newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        }

        uniswapPair = newPairAddress; 
        uniswapV2Router = _uniswapV2Router; 
        isWalletLimitExempt[address(uniswapPair)] = true;
        isMarketPair[address(uniswapPair)] = true;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (from == owner() || to == owner()) {
            return;
        }            
        require(tradingEnabled, "trading disabled");
        require(!blacklists[to] && !blacklists[from], "blacklisted");

        if (!isWalletLimitExempt[from] && !isWalletLimitExempt[to]) {
            require(amount <= maxTransactionAmount, "forbid");
            recordTransaction(from, to, amount);
            if (!isMarketPair[to]) {
                require(super.balanceOf(to) + amount <= maxHoldingAmount, "forbid");
            }
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"burnFeeTokensFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"changeRouterAddress","outputs":[{"internalType":"address","name":"newPairAddress","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMarketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"transactions","outputs":[{"internalType":"enum UpNetwork.PositionType","name":"positionType","type":"uint8"},{"internalType":"address","name":"trader","type":"address"},{"internalType":"address","name":"pair","type":"address"},{"internalType":"uint256","name":"amount","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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556c01409dd2ce5a328155da000000600b553480156200004857600080fd5b506040518060400160405280600a8152602001695550204e4554574f524b60b01b81525060405180604001604052806002815260200161055560f41b815250620000a16200009b6200034460201b60201c565b62000348565b6004620000af8382620009cf565b506005620000be8282620009cf565b5050600954600e80546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b8152905191925063c45a01559160048083019260209291908290030181865afa1580156200011f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000145919062000a9b565b6001600160a01b031663c9c6539630600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ce919062000a9b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000242919062000a9b565b601080546001600160a01b0319166001600160a01b039290921691821790556000908152600c60205260409020805460ff19166001179055600b546064906200028d90600362000ae3565b62000299919062000b03565b600755600b54606490620002af90600362000ae3565b620002bb919062000b03565b6008556001600d6000620002d76000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600d909352818320805485166001908117909155600e54909116835291208054909216179055600b546200033e90339062000398565b62000b52565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003f45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000402600083836200048f565b806003600082825462000416919062000b26565b90915550506001600160a01b038216600090815260016020526040812080548392906200044590849062000b26565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000546001600160a01b0384811691161480620004b957506000546001600160a01b038381169116145b15620004c457505050565b60065460ff166200050b5760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b6044820152606401620003eb565b6001600160a01b0382166000908152600a602052604090205460ff161580156200054e57506001600160a01b0383166000908152600a602052604090205460ff16155b6200058a5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401620003eb565b6001600160a01b0383166000908152600d602052604090205460ff16158015620005cd57506001600160a01b0382166000908152600d602052604090205460ff16155b156200069d57600854811115620006105760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b6044820152606401620003eb565b6200061d838383620006a2565b6001600160a01b0382166000908152600c602052604090205460ff166200069d576007548162000658846200091060201b62000a871760201c565b62000664919062000b26565b11156200069d5760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b6044820152606401620003eb565b505050565b6040805160808101825260008082526020820181905291810182905260608101919091526009546001600160a01b03858116911614620006e4576001620006e7565b60005b81906001811115620006fd57620006fd62000b3c565b9081600181111562000713576200071362000b3c565b9052506009546001600160a01b0385811691161462000733578362000735565b825b6001600160a01b031660208083019190915260608201839052326000908152600d909152604090205460ff168015620007775750326001600160a01b03841614155b156200079957600f80546001600160a01b0319166001600160a01b0385161790555b600f546001600160a01b031615801590620007cd57506001600160a01b0384166000908152600d602052604090205460ff16155b156200085d57600f546040516364e329cb60e11b81526001600160a01b03868116600483015285811660248301529091169063c9c65396906044016020604051808303816000875af115801562000828573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200084e919062000a9b565b6001600160a01b031660408201525b6011805460018181018355600092909252825160039091027f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180548493919291839160ff1916908381811115620008b957620008b962000b3c565b021790555060208201518154610100600160a81b0319166101006001600160a01b039283160217825560408301516001830180546001600160a01b0319169190921617905560609091015160029091015550505050565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200095657607f821691505b6020821081036200097757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069d57600081815260208120601f850160051c81016020861015620009a65750805b601f850160051c820191505b81811015620009c757828155600101620009b2565b505050505050565b81516001600160401b03811115620009eb57620009eb6200092b565b62000a0381620009fc845462000941565b846200097d565b602080601f83116001811462000a3b576000841562000a225750858301515b600019600386901b1c1916600185901b178555620009c7565b600085815260208120601f198616915b8281101562000a6c5788860151825594840194600190910190840162000a4b565b508582101562000a8b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000aae57600080fd5b81516001600160a01b038116811462000ac657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000afd5762000afd62000acd565b92915050565b60008262000b2157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000afd5762000afd62000acd565b634e487b7160e01b600052602160045260246000fd5b6118ed8062000b626000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806359d0f7131161011a5780639ace38c2116100ad578063c867d60b1161007c578063c867d60b14610425578063c8c8ebe414610448578063d6ff9f5e14610451578063dd62ed3e14610464578063f2fde38b1461049d57600080fd5b80639ace38c2146103c9578063a457c2d7146103ec578063a9059cbb146103ff578063c816841b1461041257600080fd5b806389f9a1d3116100e957806389f9a1d31461039f5780638a8c523c146103a85780638da5cb5b146103b057806395d89b41146103c157600080fd5b806359d0f7131461035e5780636d92da2a1461037157806370a0823114610384578063715018a61461039757600080fd5b80632e97766d11610192578063404e512911610161578063404e51291461031657806342966c681461032b57806349bd5a5e1461033e5780634ada218b1461035157600080fd5b80632e97766d146102cb578063313ce567146102d157806339509351146102e05780633ecad271146102f357600080fd5b806316c02129116101ce57806316c021291461027b57806318160ddd1461029e57806323b872dd146102b05780632b112e49146102c357600080fd5b806304db6e681461020057806306fdde0314610230578063095ea7b3146102455780631694505e14610268575b600080fd5b61021361020e36600461160e565b6104b0565b6040516001600160a01b0390911681526020015b60405180910390f35b6102386107f1565b6040516102279190611632565b610258610253366004611680565b610883565b6040519015158152602001610227565b600e54610213906001600160a01b031681565b61025861028936600461160e565b600a6020526000908152604090205460ff1681565b6003545b604051908152602001610227565b6102586102be3660046116ac565b61089a565b6102a2610944565b436102a2565b60405160128152602001610227565b6102586102ee366004611680565b610963565b61025861030136600461160e565b600c6020526000908152604090205460ff1681565b6103296103243660046116ed565b61099f565b005b61032961033936600461172b565b6109f4565b600954610213906001600160a01b031681565b6006546102589060ff1681565b600f54610213906001600160a01b031681565b61032961037f366004611744565b610a01565b6102a261039236600461160e565b610a87565b610329610aa2565b6102a260075481565b610329610ad8565b6000546001600160a01b0316610213565b610238610b11565b6103dc6103d736600461172b565b610b20565b604051610227949392919061177c565b6102586103fa366004611680565b610b6a565b61025861040d366004611680565b610c03565b601054610213906001600160a01b031681565b61025861043336600461160e565b600d6020526000908152604090205460ff1681565b6102a260085481565b61032961045f366004611680565b610c10565b6102a26104723660046117c1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6103296104ab36600461160e565b610c72565b600080546001600160a01b031633146104e45760405162461bcd60e51b81526004016104db906117ef565b60405180910390fd5b6000829050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054b9190611824565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610598573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105bc9190611824565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610607573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062b9190611824565b91506001600160a01b03821661078257806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069d9190611824565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e9190611824565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561075b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077f9190611824565b91505b601080546001600160a01b03199081166001600160a01b038581169182178455600e8054909316948116949094179091556000908152600d60209081526040808320805460ff19908116600190811790925594549095168352600c909152902080549091169091179055919050565b60606004805461080090611841565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90611841565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b6000610890338484610d0a565b5060015b92915050565b60006108a7848484610e2f565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561092c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104db565b6109398533858403610d0a565b506001949350505050565b600061095161dead610a87565b600b5461095e9190611891565b905090565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161089091859061099a9086906118a4565b610d0a565b6000546001600160a01b031633146109c95760405162461bcd60e51b81526004016104db906117ef565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6109fe3382611009565b50565b6000546001600160a01b03163314610a2b5760405162461bcd60e51b81526004016104db906117ef565b600082118015610a3b5750600081115b610a7c5760405162461bcd60e51b8152602060048201526012602482015271696e76616c696420706172616d657465722160701b60448201526064016104db565b600891909155600755565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016104db906117ef565b610ad66000611160565b565b6000546001600160a01b03163314610b025760405162461bcd60e51b81526004016104db906117ef565b6006805460ff19166001179055565b60606005805461080090611841565b60118181548110610b3057600080fd5b600091825260209091206003909102018054600182015460029092015460ff821693506101009091046001600160a01b0390811692169084565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610bec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104db565b610bf93385858403610d0a565b5060019392505050565b6000610890338484610e2f565b336000908152600d602052604090205460ff16610c645760405162461bcd60e51b81526020600482015260126024820152712832b936b4b9b9b4b7b7103232b734b2b21760711b60448201526064016104db565b610c6e8282611009565b5050565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b81526004016104db906117ef565b6001600160a01b038116610d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104db565b6109fe81611160565b6001600160a01b038316610d6c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104db565b6001600160a01b038216610dcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104db565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104db565b6001600160a01b038216610ef55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104db565b610f008383836111b0565b6001600160a01b03831660009081526001602052604090205481811015610f785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104db565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610faf9084906118a4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffb91815260200190565b60405180910390a350505050565b6001600160a01b0382166110695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104db565b611075826000836111b0565b6001600160a01b038216600090815260016020526040902054818110156110e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104db565b6001600160a01b0383166000908152600160205260408120838303905560038054849290611118908490611891565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e22565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03848116911614806111d957506000546001600160a01b038381169116145b156111e357505050565b60065460ff166112285760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b60448201526064016104db565b6001600160a01b0382166000908152600a602052604090205460ff1615801561126a57506001600160a01b0383166000908152600a602052604090205460ff16155b6112a45760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b60448201526064016104db565b6001600160a01b0383166000908152600d602052604090205460ff161580156112e657506001600160a01b0382166000908152600d602052604090205460ff16155b1561115b576008548111156113265760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b60448201526064016104db565b61133183838361139f565b6001600160a01b0382166000908152600c602052604090205460ff1661115b576007548161135e84610a87565b61136891906118a4565b111561115b5760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b60448201526064016104db565b6040805160808101825260008082526020820181905291810182905260608101919091526009546001600160a01b038581169116146113df5760016113e2565b60005b819060018111156113f5576113f5611766565b9081600181111561140857611408611766565b9052506009546001600160a01b038581169116146114265783611428565b825b6001600160a01b031660208083019190915260608201839052326000908152600d909152604090205460ff1680156114695750326001600160a01b03841614155b1561148a57600f80546001600160a01b0319166001600160a01b0385161790555b600f546001600160a01b0316158015906114bd57506001600160a01b0384166000908152600d602052604090205460ff16155b1561154957600f546040516364e329cb60e11b81526001600160a01b03868116600483015285811660248301529091169063c9c65396906044016020604051808303816000875af1158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190611824565b6001600160a01b031660408201525b6011805460018181018355600092909252825160039091027f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180548493919291839160ff19169083818111156115a2576115a2611766565b021790555060208201518154610100600160a81b0319166101006001600160a01b039283160217825560408301516001830180546001600160a01b0319169190921617905560609091015160029091015550505050565b6001600160a01b03811681146109fe57600080fd5b60006020828403121561162057600080fd5b813561162b816115f9565b9392505050565b600060208083528351808285015260005b8181101561165f57858101830151858201604001528201611643565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561169357600080fd5b823561169e816115f9565b946020939093013593505050565b6000806000606084860312156116c157600080fd5b83356116cc816115f9565b925060208401356116dc816115f9565b929592945050506040919091013590565b6000806040838503121561170057600080fd5b823561170b816115f9565b91506020830135801515811461172057600080fd5b809150509250929050565b60006020828403121561173d57600080fd5b5035919050565b6000806040838503121561175757600080fd5b50508035926020909101359150565b634e487b7160e01b600052602160045260246000fd5b608081016002861061179e57634e487b7160e01b600052602160045260246000fd5b9481526001600160a01b0393841660208201529190921660408201526060015290565b600080604083850312156117d457600080fd5b82356117df816115f9565b91506020830135611720816115f9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561183657600080fd5b815161162b816115f9565b600181811c9082168061185557607f821691505b60208210810361187557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156108945761089461187b565b808201808211156108945761089461187b56fea2646970667358221220ee0cf3818fb110aee90a1725ec210c627e8aaadc0e458b2ea0b96177bda06f3a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806359d0f7131161011a5780639ace38c2116100ad578063c867d60b1161007c578063c867d60b14610425578063c8c8ebe414610448578063d6ff9f5e14610451578063dd62ed3e14610464578063f2fde38b1461049d57600080fd5b80639ace38c2146103c9578063a457c2d7146103ec578063a9059cbb146103ff578063c816841b1461041257600080fd5b806389f9a1d3116100e957806389f9a1d31461039f5780638a8c523c146103a85780638da5cb5b146103b057806395d89b41146103c157600080fd5b806359d0f7131461035e5780636d92da2a1461037157806370a0823114610384578063715018a61461039757600080fd5b80632e97766d11610192578063404e512911610161578063404e51291461031657806342966c681461032b57806349bd5a5e1461033e5780634ada218b1461035157600080fd5b80632e97766d146102cb578063313ce567146102d157806339509351146102e05780633ecad271146102f357600080fd5b806316c02129116101ce57806316c021291461027b57806318160ddd1461029e57806323b872dd146102b05780632b112e49146102c357600080fd5b806304db6e681461020057806306fdde0314610230578063095ea7b3146102455780631694505e14610268575b600080fd5b61021361020e36600461160e565b6104b0565b6040516001600160a01b0390911681526020015b60405180910390f35b6102386107f1565b6040516102279190611632565b610258610253366004611680565b610883565b6040519015158152602001610227565b600e54610213906001600160a01b031681565b61025861028936600461160e565b600a6020526000908152604090205460ff1681565b6003545b604051908152602001610227565b6102586102be3660046116ac565b61089a565b6102a2610944565b436102a2565b60405160128152602001610227565b6102586102ee366004611680565b610963565b61025861030136600461160e565b600c6020526000908152604090205460ff1681565b6103296103243660046116ed565b61099f565b005b61032961033936600461172b565b6109f4565b600954610213906001600160a01b031681565b6006546102589060ff1681565b600f54610213906001600160a01b031681565b61032961037f366004611744565b610a01565b6102a261039236600461160e565b610a87565b610329610aa2565b6102a260075481565b610329610ad8565b6000546001600160a01b0316610213565b610238610b11565b6103dc6103d736600461172b565b610b20565b604051610227949392919061177c565b6102586103fa366004611680565b610b6a565b61025861040d366004611680565b610c03565b601054610213906001600160a01b031681565b61025861043336600461160e565b600d6020526000908152604090205460ff1681565b6102a260085481565b61032961045f366004611680565b610c10565b6102a26104723660046117c1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6103296104ab36600461160e565b610c72565b600080546001600160a01b031633146104e45760405162461bcd60e51b81526004016104db906117ef565b60405180910390fd5b6000829050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054b9190611824565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610598573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105bc9190611824565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610607573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062b9190611824565b91506001600160a01b03821661078257806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069d9190611824565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e9190611824565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561075b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077f9190611824565b91505b601080546001600160a01b03199081166001600160a01b038581169182178455600e8054909316948116949094179091556000908152600d60209081526040808320805460ff19908116600190811790925594549095168352600c909152902080549091169091179055919050565b60606004805461080090611841565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90611841565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b6000610890338484610d0a565b5060015b92915050565b60006108a7848484610e2f565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561092c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104db565b6109398533858403610d0a565b506001949350505050565b600061095161dead610a87565b600b5461095e9190611891565b905090565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161089091859061099a9086906118a4565b610d0a565b6000546001600160a01b031633146109c95760405162461bcd60e51b81526004016104db906117ef565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6109fe3382611009565b50565b6000546001600160a01b03163314610a2b5760405162461bcd60e51b81526004016104db906117ef565b600082118015610a3b5750600081115b610a7c5760405162461bcd60e51b8152602060048201526012602482015271696e76616c696420706172616d657465722160701b60448201526064016104db565b600891909155600755565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016104db906117ef565b610ad66000611160565b565b6000546001600160a01b03163314610b025760405162461bcd60e51b81526004016104db906117ef565b6006805460ff19166001179055565b60606005805461080090611841565b60118181548110610b3057600080fd5b600091825260209091206003909102018054600182015460029092015460ff821693506101009091046001600160a01b0390811692169084565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610bec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104db565b610bf93385858403610d0a565b5060019392505050565b6000610890338484610e2f565b336000908152600d602052604090205460ff16610c645760405162461bcd60e51b81526020600482015260126024820152712832b936b4b9b9b4b7b7103232b734b2b21760711b60448201526064016104db565b610c6e8282611009565b5050565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b81526004016104db906117ef565b6001600160a01b038116610d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104db565b6109fe81611160565b6001600160a01b038316610d6c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104db565b6001600160a01b038216610dcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104db565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104db565b6001600160a01b038216610ef55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104db565b610f008383836111b0565b6001600160a01b03831660009081526001602052604090205481811015610f785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104db565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610faf9084906118a4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffb91815260200190565b60405180910390a350505050565b6001600160a01b0382166110695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104db565b611075826000836111b0565b6001600160a01b038216600090815260016020526040902054818110156110e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104db565b6001600160a01b0383166000908152600160205260408120838303905560038054849290611118908490611891565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e22565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03848116911614806111d957506000546001600160a01b038381169116145b156111e357505050565b60065460ff166112285760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b60448201526064016104db565b6001600160a01b0382166000908152600a602052604090205460ff1615801561126a57506001600160a01b0383166000908152600a602052604090205460ff16155b6112a45760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b60448201526064016104db565b6001600160a01b0383166000908152600d602052604090205460ff161580156112e657506001600160a01b0382166000908152600d602052604090205460ff16155b1561115b576008548111156113265760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b60448201526064016104db565b61133183838361139f565b6001600160a01b0382166000908152600c602052604090205460ff1661115b576007548161135e84610a87565b61136891906118a4565b111561115b5760405162461bcd60e51b8152602060048201526006602482015265199bdc989a5960d21b60448201526064016104db565b6040805160808101825260008082526020820181905291810182905260608101919091526009546001600160a01b038581169116146113df5760016113e2565b60005b819060018111156113f5576113f5611766565b9081600181111561140857611408611766565b9052506009546001600160a01b038581169116146114265783611428565b825b6001600160a01b031660208083019190915260608201839052326000908152600d909152604090205460ff1680156114695750326001600160a01b03841614155b1561148a57600f80546001600160a01b0319166001600160a01b0385161790555b600f546001600160a01b0316158015906114bd57506001600160a01b0384166000908152600d602052604090205460ff16155b1561154957600f546040516364e329cb60e11b81526001600160a01b03868116600483015285811660248301529091169063c9c65396906044016020604051808303816000875af1158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190611824565b6001600160a01b031660408201525b6011805460018181018355600092909252825160039091027f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180548493919291839160ff19169083818111156115a2576115a2611766565b021790555060208201518154610100600160a81b0319166101006001600160a01b039283160217825560408301516001830180546001600160a01b0319169190921617905560609091015160029091015550505050565b6001600160a01b03811681146109fe57600080fd5b60006020828403121561162057600080fd5b813561162b816115f9565b9392505050565b600060208083528351808285015260005b8181101561165f57858101830151858201604001528201611643565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561169357600080fd5b823561169e816115f9565b946020939093013593505050565b6000806000606084860312156116c157600080fd5b83356116cc816115f9565b925060208401356116dc816115f9565b929592945050506040919091013590565b6000806040838503121561170057600080fd5b823561170b816115f9565b91506020830135801515811461172057600080fd5b809150509250929050565b60006020828403121561173d57600080fd5b5035919050565b6000806040838503121561175757600080fd5b50508035926020909101359150565b634e487b7160e01b600052602160045260246000fd5b608081016002861061179e57634e487b7160e01b600052602160045260246000fd5b9481526001600160a01b0393841660208201529190921660408201526060015290565b600080604083850312156117d457600080fd5b82356117df816115f9565b91506020830135611720816115f9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561183657600080fd5b815161162b816115f9565b600181811c9082168061185557607f821691505b60208210810361187557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156108945761089461187b565b808201808211156108945761089461187b56fea2646970667358221220ee0cf3818fb110aee90a1725ec210c627e8aaadc0e458b2ea0b96177bda06f3a64736f6c63430008120033

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.