ETH Price: $3,410.02 (-1.53%)
Gas: 8 Gwei

Token

Based Bezos ($BEZOS)
 

Overview

Max Total Supply

69,000,000 $BEZOS

Holders

128

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.338311216678029682 $BEZOS

Value
$0.00
0xf9cf10dfad6ec1d52a6c01c9ec7c2a629e0f89d4
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:
BasedBezos

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : BasedBezos.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IUniswapV2Factory {
   function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router {
   function factory() external pure returns (address);
   function WETH() external pure returns (address);
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

contract BasedBezos is ERC20, Ownable {

	uint256[] public marketingFee;
	uint256[] public shareList;
	address[] public marketingWallet;
	
	uint256 public maxTokenPerWallet;
	uint256 public maxTokenPerTxn;
	uint256 public swapTokensAtAmount;
	
	IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;
	
	bool private swapping;
    bool public swapAndLiquifyEnabled;
	
	mapping (address => bool) public isExcludedFromFee;
	mapping (address => bool) public isExcludedFromMaxTokenPerWallet;
	mapping (address => bool) public isAutomatedMarketMakerPairs;
	
	event MaxTokenPerWalletUpdated(uint256 amount);
	event MaxTokenPerTxnUpdated(uint256 amount);
	event SwapTokensAmountUpdated(uint256 amount);
	event AutomatedMarketMakerPairUpdated(address pair, bool value);
	event SwapAndLiquifyStatusUpdated(bool status);
	event MarketingFeeUpdated(uint256 buy, uint256 sell, uint256 p2p);
	event MarketingWalletUpdated(address walletOne, address walletTwo, address walletThree);
	event WalletShareUpdated(uint256 walletOneShare, uint256 walletTwoShare, uint256 walletThreeShare);
	
	constructor(address owner) ERC20("Based Bezos", "$BEZOS") {
	
	   uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
       uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
	   
	   marketingFee.push(1000);
	   marketingFee.push(2000);
	   marketingFee.push(0);
	   
	   shareList.push(3333);
	   shareList.push(3333);
	   shareList.push(3333);
	   
	   marketingWallet.push(0x0A7B3C8e4Ac2bdDC2941f6A6c105a9BA2BFbfAd8);
	   marketingWallet.push(0x77c7bA1124994Fb02E4bd874F17289A24C8f29a7);
	   marketingWallet.push(0x7e924F7475FED8dC45D11446F61B9f9A274676a7);
	   
	   isExcludedFromFee[owner] = true;
       isExcludedFromFee[address(this)] = true;
	   
	   isExcludedFromMaxTokenPerWallet[owner] = true;
       isExcludedFromMaxTokenPerWallet[address(this)] = true;
	   isExcludedFromMaxTokenPerWallet[address(uniswapV2Pair)] = true;
	   
	   isAutomatedMarketMakerPairs[address(uniswapV2Pair)] = true;   
	   
	   maxTokenPerWallet = 2760000 * (10**18);
	   maxTokenPerTxn = 2760000 * (10**18);
	   swapTokensAtAmount = 13800 * (10**18);
	   
	   swapAndLiquifyEnabled = true;
	   _mint(owner, 69000000 * (10**18));
	   _transferOwnership(owner);
    }
	
	receive() external payable {}
	
	function excludeFromFee(address account, bool status) external onlyOwner {
	   require(isExcludedFromFee[account] != status, "Account is already the value of 'status'");
	   isExcludedFromFee[account] = status;
	}
	
	function excludeFromMaxTokenPerWallet(address account, bool status) external onlyOwner {
	   require(isExcludedFromMaxTokenPerWallet[account] != status, "Account is already the value of 'status'");
	   isExcludedFromMaxTokenPerWallet[account] = status;
	}
	
	function setMarketingWallet(address walletOne, address walletTwo, address walletThree) external onlyOwner{
	   require(walletOne != address(0), "Zero address");
	   require(walletTwo != address(0), "Zero address");
	   require(walletThree != address(0), "Zero address");
	   
	   marketingWallet[0] = walletOne;
	   marketingWallet[1] = walletTwo;
	   marketingWallet[2] = walletThree;
	   emit MarketingWalletUpdated(walletOne, walletTwo, walletThree);
    }
	
	function updateWalletShare(uint256 walletOneShare, uint256 walletTwoShare, uint256 walletThreeShare) external onlyOwner {
		require(walletOneShare + walletTwoShare + walletThreeShare == 9999, "Incorrect values");
		
		shareList[0] = walletOneShare;
		shareList[1] = walletTwoShare;
		shareList[2] = walletThreeShare;
		emit WalletShareUpdated(walletOneShare, walletTwoShare, walletTwoShare);
	}
	
	function setMaxTokenPerWallet(uint256 amount) external onlyOwner {
		require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 500 * (10**18), "Minimum `500` token per wallet required");
		
		maxTokenPerWallet = amount;
		emit MaxTokenPerWalletUpdated(amount);
	}
	
	function setMaxTokenPerTxn(uint256 amount) external onlyOwner {
		require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 500 * (10**18), "Minimum `500` token per txn required");
		
		maxTokenPerTxn = amount;
		emit MaxTokenPerTxnUpdated(amount);
	}
	
	function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
  	    require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 100 * (10**18), "Minimum `100` token per swap required");
		
		swapTokensAtAmount = amount;
		emit SwapTokensAmountUpdated(amount);
  	}
	
	function setMarketingFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner {
	    require(buy  <= 2000 , "Max fee limit reached for 'BUY'");
		require(sell <= 2000 , "Max fee limit reached for 'SELL'");
		require(p2p  <= 2000 , "Max fee limit reached for 'P2P'");
		
		marketingFee[0] = buy;
		marketingFee[1] = sell;
		marketingFee[2] = p2p;
		
		emit MarketingFeeUpdated(buy, sell, p2p);
	}
	
	function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != address(0), "Zero address");
		require(isAutomatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        require(pair != address(uniswapV2Pair), "The pair cannot be removed from automatedMarketMakerPairs");
		
		isExcludedFromMaxTokenPerWallet[address(pair)] = value;
		isAutomatedMarketMakerPairs[address(pair)] = value;
		emit AutomatedMarketMakerPairUpdated(pair, value);
    }
	
	function setSwapAndLiquifyEnabled(bool status) external onlyOwner {
		require(swapAndLiquifyEnabled != status, "`swapAndLiquifyEnabled` is already the value of 'status'");
		
		swapAndLiquifyEnabled = status;
		emit SwapAndLiquifyStatusUpdated(status);
    }
	
	function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20){      
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
		
		if(sender != owner() && recipient != owner()) 
		{
		    require(amount <= maxTokenPerTxn, "Transfer amount exceeds the `maxTokenPerTxn`.");   
		}
		
		uint256 contractTokenBalance = balanceOf(address(this));
		bool canSwap = contractTokenBalance >= swapTokensAtAmount;
		
		if (canSwap && !swapping && isAutomatedMarketMakerPairs[recipient] && swapAndLiquifyEnabled) 
		{
			swapping = true;
			swapTokensForETH(swapTokensAtAmount);
			uint256 ethBalance = address(this).balance;
			
			for (uint256 i = 0; i < marketingWallet.length; i++) 
			{
			   uint256 payableETH = ethBalance * shareList[i] / 10000;
			   if(payableETH > 0 )
			   {
			       payable(marketingWallet[i]).transfer(payableETH);
			   }
			}
			swapping = false;
        }
		
		if(isExcludedFromFee[sender] || isExcludedFromFee[recipient]) 
		{
            super._transfer(sender, recipient, amount);
        }
		else 
		{
		    uint256 allFee = collectFee(amount, isAutomatedMarketMakerPairs[recipient], !isAutomatedMarketMakerPairs[sender] && !isAutomatedMarketMakerPairs[recipient]);
			if(!isExcludedFromMaxTokenPerWallet[recipient])
		    {
		       require((balanceOf(recipient) + amount - allFee) <= maxTokenPerWallet, "Transfer amount exceeds the `maxTokenPerWallet`.");   
		    }
			if(allFee > 0) 
			{
			   super._transfer(sender, address(this), allFee);
			}
			super._transfer(sender, recipient, amount - allFee);
        }
    }
	
	function collectFee(uint256 amount, bool sell, bool p2p) private view returns (uint256) {
        uint256 newMarketingFee = amount * (p2p ? marketingFee[2] : sell ? marketingFee[1] : marketingFee[0]) / 10000;
        return  newMarketingFee;
    }
	
	function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
		
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
	
	function migrateETH(address payable recipient) external onlyOwner {
	   require(recipient != address(0), "Zero address");
       recipient.transfer(address(this).balance);
    }
	
	function migrateToken(address token, address recipient, uint256 amount) external onlyOwner {
       require(recipient != address(0), "Zero address");
	   IERC20(token).transfer(recipient, amount);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 6 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"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":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"AutomatedMarketMakerPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"MarketingFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"walletOne","type":"address"},{"indexed":false,"internalType":"address","name":"walletTwo","type":"address"},{"indexed":false,"internalType":"address","name":"walletThree","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTokenPerTxnUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTokenPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SwapAndLiquifyStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"walletOneShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"walletTwoShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"walletThreeShare","type":"uint256"}],"name":"WalletShareUpdated","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":"status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxTokenPerWallet","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":"isAutomatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxTokenPerWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"migrateETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"migrateToken","outputs":[],"stateMutability":"nonpayable","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":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletOne","type":"address"},{"internalType":"address","name":"walletTwo","type":"address"},{"internalType":"address","name":"walletThree","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"shareList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"walletOneShare","type":"uint256"},{"internalType":"uint256","name":"walletTwoShare","type":"uint256"},{"internalType":"uint256","name":"walletThreeShare","type":"uint256"}],"name":"updateWalletShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162002b7638038062002b76833981016040819052620000349162000681565b604080518082018252600b81526a42617365642042657a6f7360a81b6020808301918252835180850190945260068452652442455a4f5360d01b9084015281519192916200008591600391620005db565b5080516200009b906004906020840190620005db565b505050620000b8620000b26200049d60201b60201c565b620004a1565b600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556040805163c45a015560e01b815290516001600160a01b03929092169163c45a015591600480820192602092909190829003018186803b1580156200012457600080fd5b505afa15801562000139573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015f919062000681565b6001600160a01b031663c9c6539630600c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bd57600080fd5b505afa158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f8919062000681565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024157600080fd5b505af115801562000256573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027c919062000681565b600d80546001600160a01b039283166001600160a01b031991821617825560068054600181810183556103e87ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f92830155825480820184556107d0908301558254808201909355600092909101829055600780548083018255610d057fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68891820181905582548085018455820181905582548085019093559101556008805480830182557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee390810180548616730a7b3c8e4ac2bddc2941f6a6c105a9ba2bfbfad8179055815480840183558101805486167377c7ba1124994fb02e4bd874f17289a24c8f29a71790558154808401909255018054909316737e924f7475fed8dc45d11446f61b9f9a274676a717909255848416808252600e60209081526040808420805460ff199081168717909155308086528286208054831688179055938552600f835281852080548216871790559284528084208054841686179055855487168452808420805484168617905585549096168352601090529390208054909316179091556a024873e6597d482d0000006009819055600a556902ec1978c47766a00000600b55805460ff60a81b1916600160a81b1790556200048b816a3913517ebd3c0c65000000620004f3565b6200049681620004a1565b5062000713565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200054e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005629190620006b1565b90915550506001600160a01b0382166000908152602081905260408120805483929062000591908490620006b1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005e990620006d6565b90600052602060002090601f0160209004810192826200060d576000855562000658565b82601f106200062857805160ff191683800117855562000658565b8280016001018555821562000658579182015b82811115620006585782518255916020019190600101906200063b565b50620006669291506200066a565b5090565b5b808211156200066657600081556001016200066b565b60006020828403121562000693578081fd5b81516001600160a01b0381168114620006aa578182fd5b9392505050565b60008219821115620006d157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620006eb57607f821691505b602082108114156200070d57634e487b7160e01b600052602260045260246000fd5b50919050565b61245380620007236000396000f3fe6080604052600436106102295760003560e01c806382fb711911610123578063afa4f3b2116100ab578063d40297271161006f578063d4029727146106a0578063dd62ed3e146106c0578063df8408fe146106e0578063e2f4560514610700578063f2fde38b1461071657610230565b8063afa4f3b2146105f0578063b5f5758b14610610578063bd82394314610640578063c49b9a8014610660578063cbc2162c1461068057610230565b806395d89b41116100f257806395d89b411461055b5780639a7a23d614610570578063a457c2d714610590578063a9059cbb146105b0578063a918299c146105d057610230565b806382fb7119146104dd5780638da5cb5b146104fd57806393bfa2821461051b57806394417b781461053b57610230565b8063313ce567116101b15780635342acb4116101755780635342acb41461042c57806370a082311461045c578063715018a61461049257806374da7cd8146104a75780637a8baf52146104c757610230565b8063313ce5671461039957806339509351146103b557806349bd5a5e146103d55780634a74bb02146103f5578063510622d51461041657610230565b806318160ddd116101f857806318160ddd146102ea57806323b872dd14610309578063255fe84714610329578063269a0c3814610359578063305426691461037957610230565b806301d7532d1461023557806306fdde0314610257578063095ea7b3146102825780631694505e146102b257610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025561025036600461204d565b610736565b005b34801561026357600080fd5b5061026c6107b1565b6040516102799190612120565b60405180910390f35b34801561028e57600080fd5b506102a261029d36600461207a565b610843565b6040519015158152602001610279565b3480156102be57600080fd5b50600c546102d2906001600160a01b031681565b6040516001600160a01b039091168152602001610279565b3480156102f657600080fd5b506002545b604051908152602001610279565b34801561031557600080fd5b506102a261032436600461200d565b61085b565b34801561033557600080fd5b506102a2610344366004611f4c565b60106020526000908152604090205460ff1681565b34801561036557600080fd5b506102556103743660046120dd565b61087f565b34801561038557600080fd5b506102556103943660046120f5565b61094a565b3480156103a557600080fd5b5060405160128152602001610279565b3480156103c157600080fd5b506102a26103d036600461207a565b610a84565b3480156103e157600080fd5b50600d546102d2906001600160a01b031681565b34801561040157600080fd5b50600d546102a290600160a81b900460ff1681565b34801561042257600080fd5b506102fb600a5481565b34801561043857600080fd5b506102a2610447366004611f4c565b600e6020526000908152604090205460ff1681565b34801561046857600080fd5b506102fb610477366004611f4c565b6001600160a01b031660009081526020819052604090205490565b34801561049e57600080fd5b50610255610aa6565b3480156104b357600080fd5b506102556104c2366004611f4c565b610aba565b3480156104d357600080fd5b506102fb60095481565b3480156104e957600080fd5b506102fb6104f83660046120dd565b610b21565b34801561050957600080fd5b506005546001600160a01b03166102d2565b34801561052757600080fd5b5061025561053636600461200d565b610b42565b34801561054757600080fd5b50610255610556366004611fc3565b610bf8565b34801561056757600080fd5b5061026c610da4565b34801561057c57600080fd5b5061025561058b36600461204d565b610db3565b34801561059c57600080fd5b506102a26105ab36600461207a565b610f72565b3480156105bc57600080fd5b506102a26105cb36600461207a565b610fed565b3480156105dc57600080fd5b506102556105eb3660046120f5565b610ffb565b3480156105fc57600080fd5b5061025561060b3660046120dd565b6111ca565b34801561061c57600080fd5b506102a261062b366004611f4c565b600f6020526000908152604090205460ff1681565b34801561064c57600080fd5b5061025561065b3660046120dd565b611290565b34801561066c57600080fd5b5061025561067b3660046120a5565b611358565b34801561068c57600080fd5b506102d261069b3660046120dd565b611434565b3480156106ac57600080fd5b506102fb6106bb3660046120dd565b61145e565b3480156106cc57600080fd5b506102fb6106db366004611f8b565b61146e565b3480156106ec57600080fd5b506102556106fb36600461204d565b611499565b34801561070c57600080fd5b506102fb600b5481565b34801561072257600080fd5b50610255610731366004611f4c565b61150b565b61073e611584565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156107865760405162461bcd60e51b815260040161077d906121dc565b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6060600380546107c09061238e565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec9061238e565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b6000336108518185856115de565b5060019392505050565b600033610869858285611702565b610874858585611776565b506001949350505050565b610887611584565b6002548111156108a95760405162461bcd60e51b815260040161077d90612269565b681b1ae4d6e2ef50000081101561090e5760405162461bcd60e51b8152602060048201526024808201527f4d696e696d756d20603530306020746f6b656e207065722074786e20726571756044820152631a5c995960e21b606482015260840161077d565b600a8190556040518181527f527ab0eebb47e7dea63f4b09bdd24f10ccdee802d7f9f1d227b4dba1cb1e90e5906020015b60405180910390a150565b610952611584565b8061095d8385612320565b6109679190612320565b61270f146109aa5760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75657360801b604482015260640161077d565b8260076000815481106109cd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508160076001815481106109fe57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806007600281548110610a2f57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018390527f9a0ba2e5325a4f0774aca7039ef72bc9528e43850027b570b9654b2ec916ce21906060015b60405180910390a1505050565b600033610851818585610a97838361146e565b610aa19190612320565b6115de565b610aae611584565b610ab86000611b69565b565b610ac2611584565b6001600160a01b038116610ae85760405162461bcd60e51b815260040161077d906121b6565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610b1d573d6000803e3d6000fd5b5050565b60068181548110610b3157600080fd5b600091825260209091200154905081565b610b4a611584565b6001600160a01b038216610b705760405162461bcd60e51b815260040161077d906121b6565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610bba57600080fd5b505af1158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf291906120c1565b50505050565b610c00611584565b6001600160a01b038316610c265760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b038216610c4c5760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b038116610c725760405162461bcd60e51b815260040161077d906121b6565b826008600081548110610c9557634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816008600181548110610ce657634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806008600281548110610d3757634e487b7160e01b600052603260045260246000fd5b60009182526020918290200180546001600160a01b0319166001600160a01b0393841617905560408051868416815285841692810192909252918316918101919091527f3e4063b1ae444e50e3b2e93c525499b90e21a0eb7578548a1df82e323582dea290606001610a77565b6060600480546107c09061238e565b610dbb611584565b6001600160a01b038216610de15760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b03821660009081526010602052604090205460ff1615158115151415610e765760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161077d565b600d546001600160a01b0383811691161415610efa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161077d565b6001600160a01b0382166000818152600f60209081526040808320805486151560ff1991821681179092556010845293829020805490941681179093558051938452908301919091527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60003381610f80828661146e565b905083811015610fe05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161077d565b61087482868684036115de565b600033610851818585611776565b611003611584565b6107d08311156110555760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f7220274255592700604482015260640161077d565b6107d08211156110a75760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753454c4c27604482015260640161077d565b6107d08111156110f95760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f7220275032502700604482015260640161077d565b82600660008154811061111c57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081600660018154811061114d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080600660028154811061117e57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001610a77565b6111d2611584565b6002548111156111f45760405162461bcd60e51b815260040161077d90612269565b68056bc75e2d6310000081101561125b5760405162461bcd60e51b815260206004820152602560248201527f4d696e696d756d20603130306020746f6b656e207065722073776170207265716044820152641d5a5c995960da1b606482015260840161077d565b600b8190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b18609060200161093f565b611298611584565b6002548111156112ba5760405162461bcd60e51b815260040161077d90612269565b681b1ae4d6e2ef5000008110156113235760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603530306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b606482015260840161077d565b60098190556040518181527f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f49060200161093f565b611360611584565b600d5460ff600160a81b90910416151581151514156113e75760405162461bcd60e51b815260206004820152603860248201527f6073776170416e644c697175696679456e61626c65646020697320616c72656160448201527f6479207468652076616c7565206f662027737461747573270000000000000000606482015260840161077d565b600d8054821515600160a81b0260ff60a81b199091161790556040517f083ec94fdbe7b9156108be7401c9808cd45be92d8bcba03f203523515831146c9061093f90831515815260200190565b6008818154811061144457600080fd5b6000918252602090912001546001600160a01b0316905081565b60078181548110610b3157600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114a1611584565b6001600160a01b0382166000908152600e602052604090205460ff16151581151514156114e05760405162461bcd60e51b815260040161077d906121dc565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b611513611584565b6001600160a01b0381166115785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b61158181611b69565b50565b6005546001600160a01b03163314610ab85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161077d565b6001600160a01b0383166116405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161077d565b6001600160a01b0382166116a15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161077d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061170e848461146e565b90506000198114610bf257818110156117695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161077d565b610bf284848484036115de565b6001600160a01b03831661179c5760405162461bcd60e51b815260040161077d90612224565b6001600160a01b0382166117c25760405162461bcd60e51b815260040161077d90612173565b6005546001600160a01b038481169116148015906117ee57506005546001600160a01b03838116911614155b1561185b57600a5481111561185b5760405162461bcd60e51b815260206004820152602d60248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526c2a37b5b2b72832b92a3c37301760991b606482015260840161077d565b30600090815260208190526040902054600b54811080159081906118895750600d54600160a01b900460ff16155b80156118ad57506001600160a01b03841660009081526010602052604090205460ff165b80156118c25750600d54600160a81b900460ff165b156119c857600d805460ff60a01b1916600160a01b179055600b546118e690611bbb565b4760005b6008548110156119b85760006127106007838154811061191a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154846119309190612358565b61193a9190612338565b905080156119a5576008828154811061196357634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156119a3573d6000803e3d6000fd5b505b50806119b0816123c9565b9150506118ea565b5050600d805460ff60a01b191690555b6001600160a01b0385166000908152600e602052604090205460ff1680611a0757506001600160a01b0384166000908152600e602052604090205460ff165b15611a1c57611a17858585611d38565b611b62565b6001600160a01b038085166000908152601060205260408082205492881682528120549091611a7991869160ff9081169116158015611a7457506001600160a01b03881660009081526010602052604090205460ff16155b611e8c565b6001600160a01b0386166000908152600f602052604090205490915060ff16611b3b576009548185611ac0886001600160a01b031660009081526020819052604090205490565b611aca9190612320565b611ad49190612377565b1115611b3b5760405162461bcd60e51b815260206004820152603060248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526f2a37b5b2b72832b92bb0b63632ba301760811b606482015260840161077d565b8015611b4c57611b4c863083611d38565b611b608686611b5b8488612377565b611d38565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bfe57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c5257600080fd5b505afa158015611c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8a9190611f6f565b81600181518110611cab57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600c54611cd191309116846115de565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d0a9085906000908690309042906004016122b0565b600060405180830381600087803b158015611d2457600080fd5b505af1158015611b60573d6000803e3d6000fd5b6001600160a01b038316611d5e5760405162461bcd60e51b815260040161077d90612224565b6001600160a01b038216611d845760405162461bcd60e51b815260040161077d90612173565b6001600160a01b03831660009081526020819052604090205481811015611dfc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161077d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e33908490612320565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e7f91815260200190565b60405180910390a3610bf2565b60008061271083611f015784611ece576006600081548110611ebe57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611efc565b6006600181548110611ef057634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611f2f565b6006600281548110611f2357634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611f399087612358565b611f439190612338565b95945050505050565b600060208284031215611f5d578081fd5b8135611f68816123fa565b9392505050565b600060208284031215611f80578081fd5b8151611f68816123fa565b60008060408385031215611f9d578081fd5b8235611fa8816123fa565b91506020830135611fb8816123fa565b809150509250929050565b600080600060608486031215611fd7578081fd5b8335611fe2816123fa565b92506020840135611ff2816123fa565b91506040840135612002816123fa565b809150509250925092565b600080600060608486031215612021578283fd5b833561202c816123fa565b9250602084013561203c816123fa565b929592945050506040919091013590565b6000806040838503121561205f578182fd5b823561206a816123fa565b91506020830135611fb88161240f565b6000806040838503121561208c578182fd5b8235612097816123fa565b946020939093013593505050565b6000602082840312156120b6578081fd5b8135611f688161240f565b6000602082840312156120d2578081fd5b8151611f688161240f565b6000602082840312156120ee578081fd5b5035919050565b600080600060608486031215612109578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b8181101561214c57858101830151858201604001528201612130565b8181111561215d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156122ff5784516001600160a01b0316835293830193918301916001016122da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612333576123336123e4565b500190565b60008261235357634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612372576123726123e4565b500290565b600082821015612389576123896123e4565b500390565b6002810460018216806123a257607f821691505b602082108114156123c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123dd576123dd6123e4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461158157600080fd5b801515811461158157600080fdfea26469706673582212204c002db3a2c1f628854f7c30bc4c3d29c43d7e6395779f1317a90b17c01631eb64736f6c63430008020033000000000000000000000000352c6ddc1b2aa74cfde4798fbacc2eef5306dc65

Deployed Bytecode

0x6080604052600436106102295760003560e01c806382fb711911610123578063afa4f3b2116100ab578063d40297271161006f578063d4029727146106a0578063dd62ed3e146106c0578063df8408fe146106e0578063e2f4560514610700578063f2fde38b1461071657610230565b8063afa4f3b2146105f0578063b5f5758b14610610578063bd82394314610640578063c49b9a8014610660578063cbc2162c1461068057610230565b806395d89b41116100f257806395d89b411461055b5780639a7a23d614610570578063a457c2d714610590578063a9059cbb146105b0578063a918299c146105d057610230565b806382fb7119146104dd5780638da5cb5b146104fd57806393bfa2821461051b57806394417b781461053b57610230565b8063313ce567116101b15780635342acb4116101755780635342acb41461042c57806370a082311461045c578063715018a61461049257806374da7cd8146104a75780637a8baf52146104c757610230565b8063313ce5671461039957806339509351146103b557806349bd5a5e146103d55780634a74bb02146103f5578063510622d51461041657610230565b806318160ddd116101f857806318160ddd146102ea57806323b872dd14610309578063255fe84714610329578063269a0c3814610359578063305426691461037957610230565b806301d7532d1461023557806306fdde0314610257578063095ea7b3146102825780631694505e146102b257610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025561025036600461204d565b610736565b005b34801561026357600080fd5b5061026c6107b1565b6040516102799190612120565b60405180910390f35b34801561028e57600080fd5b506102a261029d36600461207a565b610843565b6040519015158152602001610279565b3480156102be57600080fd5b50600c546102d2906001600160a01b031681565b6040516001600160a01b039091168152602001610279565b3480156102f657600080fd5b506002545b604051908152602001610279565b34801561031557600080fd5b506102a261032436600461200d565b61085b565b34801561033557600080fd5b506102a2610344366004611f4c565b60106020526000908152604090205460ff1681565b34801561036557600080fd5b506102556103743660046120dd565b61087f565b34801561038557600080fd5b506102556103943660046120f5565b61094a565b3480156103a557600080fd5b5060405160128152602001610279565b3480156103c157600080fd5b506102a26103d036600461207a565b610a84565b3480156103e157600080fd5b50600d546102d2906001600160a01b031681565b34801561040157600080fd5b50600d546102a290600160a81b900460ff1681565b34801561042257600080fd5b506102fb600a5481565b34801561043857600080fd5b506102a2610447366004611f4c565b600e6020526000908152604090205460ff1681565b34801561046857600080fd5b506102fb610477366004611f4c565b6001600160a01b031660009081526020819052604090205490565b34801561049e57600080fd5b50610255610aa6565b3480156104b357600080fd5b506102556104c2366004611f4c565b610aba565b3480156104d357600080fd5b506102fb60095481565b3480156104e957600080fd5b506102fb6104f83660046120dd565b610b21565b34801561050957600080fd5b506005546001600160a01b03166102d2565b34801561052757600080fd5b5061025561053636600461200d565b610b42565b34801561054757600080fd5b50610255610556366004611fc3565b610bf8565b34801561056757600080fd5b5061026c610da4565b34801561057c57600080fd5b5061025561058b36600461204d565b610db3565b34801561059c57600080fd5b506102a26105ab36600461207a565b610f72565b3480156105bc57600080fd5b506102a26105cb36600461207a565b610fed565b3480156105dc57600080fd5b506102556105eb3660046120f5565b610ffb565b3480156105fc57600080fd5b5061025561060b3660046120dd565b6111ca565b34801561061c57600080fd5b506102a261062b366004611f4c565b600f6020526000908152604090205460ff1681565b34801561064c57600080fd5b5061025561065b3660046120dd565b611290565b34801561066c57600080fd5b5061025561067b3660046120a5565b611358565b34801561068c57600080fd5b506102d261069b3660046120dd565b611434565b3480156106ac57600080fd5b506102fb6106bb3660046120dd565b61145e565b3480156106cc57600080fd5b506102fb6106db366004611f8b565b61146e565b3480156106ec57600080fd5b506102556106fb36600461204d565b611499565b34801561070c57600080fd5b506102fb600b5481565b34801561072257600080fd5b50610255610731366004611f4c565b61150b565b61073e611584565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156107865760405162461bcd60e51b815260040161077d906121dc565b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6060600380546107c09061238e565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec9061238e565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b6000336108518185856115de565b5060019392505050565b600033610869858285611702565b610874858585611776565b506001949350505050565b610887611584565b6002548111156108a95760405162461bcd60e51b815260040161077d90612269565b681b1ae4d6e2ef50000081101561090e5760405162461bcd60e51b8152602060048201526024808201527f4d696e696d756d20603530306020746f6b656e207065722074786e20726571756044820152631a5c995960e21b606482015260840161077d565b600a8190556040518181527f527ab0eebb47e7dea63f4b09bdd24f10ccdee802d7f9f1d227b4dba1cb1e90e5906020015b60405180910390a150565b610952611584565b8061095d8385612320565b6109679190612320565b61270f146109aa5760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75657360801b604482015260640161077d565b8260076000815481106109cd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508160076001815481106109fe57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806007600281548110610a2f57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018390527f9a0ba2e5325a4f0774aca7039ef72bc9528e43850027b570b9654b2ec916ce21906060015b60405180910390a1505050565b600033610851818585610a97838361146e565b610aa19190612320565b6115de565b610aae611584565b610ab86000611b69565b565b610ac2611584565b6001600160a01b038116610ae85760405162461bcd60e51b815260040161077d906121b6565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610b1d573d6000803e3d6000fd5b5050565b60068181548110610b3157600080fd5b600091825260209091200154905081565b610b4a611584565b6001600160a01b038216610b705760405162461bcd60e51b815260040161077d906121b6565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610bba57600080fd5b505af1158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf291906120c1565b50505050565b610c00611584565b6001600160a01b038316610c265760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b038216610c4c5760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b038116610c725760405162461bcd60e51b815260040161077d906121b6565b826008600081548110610c9557634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816008600181548110610ce657634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806008600281548110610d3757634e487b7160e01b600052603260045260246000fd5b60009182526020918290200180546001600160a01b0319166001600160a01b0393841617905560408051868416815285841692810192909252918316918101919091527f3e4063b1ae444e50e3b2e93c525499b90e21a0eb7578548a1df82e323582dea290606001610a77565b6060600480546107c09061238e565b610dbb611584565b6001600160a01b038216610de15760405162461bcd60e51b815260040161077d906121b6565b6001600160a01b03821660009081526010602052604090205460ff1615158115151415610e765760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161077d565b600d546001600160a01b0383811691161415610efa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161077d565b6001600160a01b0382166000818152600f60209081526040808320805486151560ff1991821681179092556010845293829020805490941681179093558051938452908301919091527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60003381610f80828661146e565b905083811015610fe05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161077d565b61087482868684036115de565b600033610851818585611776565b611003611584565b6107d08311156110555760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f7220274255592700604482015260640161077d565b6107d08211156110a75760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753454c4c27604482015260640161077d565b6107d08111156110f95760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f7220275032502700604482015260640161077d565b82600660008154811061111c57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081600660018154811061114d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080600660028154811061117e57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001610a77565b6111d2611584565b6002548111156111f45760405162461bcd60e51b815260040161077d90612269565b68056bc75e2d6310000081101561125b5760405162461bcd60e51b815260206004820152602560248201527f4d696e696d756d20603130306020746f6b656e207065722073776170207265716044820152641d5a5c995960da1b606482015260840161077d565b600b8190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b18609060200161093f565b611298611584565b6002548111156112ba5760405162461bcd60e51b815260040161077d90612269565b681b1ae4d6e2ef5000008110156113235760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603530306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b606482015260840161077d565b60098190556040518181527f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f49060200161093f565b611360611584565b600d5460ff600160a81b90910416151581151514156113e75760405162461bcd60e51b815260206004820152603860248201527f6073776170416e644c697175696679456e61626c65646020697320616c72656160448201527f6479207468652076616c7565206f662027737461747573270000000000000000606482015260840161077d565b600d8054821515600160a81b0260ff60a81b199091161790556040517f083ec94fdbe7b9156108be7401c9808cd45be92d8bcba03f203523515831146c9061093f90831515815260200190565b6008818154811061144457600080fd5b6000918252602090912001546001600160a01b0316905081565b60078181548110610b3157600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114a1611584565b6001600160a01b0382166000908152600e602052604090205460ff16151581151514156114e05760405162461bcd60e51b815260040161077d906121dc565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b611513611584565b6001600160a01b0381166115785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b61158181611b69565b50565b6005546001600160a01b03163314610ab85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161077d565b6001600160a01b0383166116405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161077d565b6001600160a01b0382166116a15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161077d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061170e848461146e565b90506000198114610bf257818110156117695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161077d565b610bf284848484036115de565b6001600160a01b03831661179c5760405162461bcd60e51b815260040161077d90612224565b6001600160a01b0382166117c25760405162461bcd60e51b815260040161077d90612173565b6005546001600160a01b038481169116148015906117ee57506005546001600160a01b03838116911614155b1561185b57600a5481111561185b5760405162461bcd60e51b815260206004820152602d60248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526c2a37b5b2b72832b92a3c37301760991b606482015260840161077d565b30600090815260208190526040902054600b54811080159081906118895750600d54600160a01b900460ff16155b80156118ad57506001600160a01b03841660009081526010602052604090205460ff165b80156118c25750600d54600160a81b900460ff165b156119c857600d805460ff60a01b1916600160a01b179055600b546118e690611bbb565b4760005b6008548110156119b85760006127106007838154811061191a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154846119309190612358565b61193a9190612338565b905080156119a5576008828154811061196357634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156119a3573d6000803e3d6000fd5b505b50806119b0816123c9565b9150506118ea565b5050600d805460ff60a01b191690555b6001600160a01b0385166000908152600e602052604090205460ff1680611a0757506001600160a01b0384166000908152600e602052604090205460ff165b15611a1c57611a17858585611d38565b611b62565b6001600160a01b038085166000908152601060205260408082205492881682528120549091611a7991869160ff9081169116158015611a7457506001600160a01b03881660009081526010602052604090205460ff16155b611e8c565b6001600160a01b0386166000908152600f602052604090205490915060ff16611b3b576009548185611ac0886001600160a01b031660009081526020819052604090205490565b611aca9190612320565b611ad49190612377565b1115611b3b5760405162461bcd60e51b815260206004820152603060248201527f5472616e7366657220616d6f756e7420657863656564732074686520606d617860448201526f2a37b5b2b72832b92bb0b63632ba301760811b606482015260840161077d565b8015611b4c57611b4c863083611d38565b611b608686611b5b8488612377565b611d38565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bfe57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c5257600080fd5b505afa158015611c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8a9190611f6f565b81600181518110611cab57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600c54611cd191309116846115de565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d0a9085906000908690309042906004016122b0565b600060405180830381600087803b158015611d2457600080fd5b505af1158015611b60573d6000803e3d6000fd5b6001600160a01b038316611d5e5760405162461bcd60e51b815260040161077d90612224565b6001600160a01b038216611d845760405162461bcd60e51b815260040161077d90612173565b6001600160a01b03831660009081526020819052604090205481811015611dfc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161077d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e33908490612320565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e7f91815260200190565b60405180910390a3610bf2565b60008061271083611f015784611ece576006600081548110611ebe57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611efc565b6006600181548110611ef057634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611f2f565b6006600281548110611f2357634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611f399087612358565b611f439190612338565b95945050505050565b600060208284031215611f5d578081fd5b8135611f68816123fa565b9392505050565b600060208284031215611f80578081fd5b8151611f68816123fa565b60008060408385031215611f9d578081fd5b8235611fa8816123fa565b91506020830135611fb8816123fa565b809150509250929050565b600080600060608486031215611fd7578081fd5b8335611fe2816123fa565b92506020840135611ff2816123fa565b91506040840135612002816123fa565b809150509250925092565b600080600060608486031215612021578283fd5b833561202c816123fa565b9250602084013561203c816123fa565b929592945050506040919091013590565b6000806040838503121561205f578182fd5b823561206a816123fa565b91506020830135611fb88161240f565b6000806040838503121561208c578182fd5b8235612097816123fa565b946020939093013593505050565b6000602082840312156120b6578081fd5b8135611f688161240f565b6000602082840312156120d2578081fd5b8151611f688161240f565b6000602082840312156120ee578081fd5b5035919050565b600080600060608486031215612109578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b8181101561214c57858101830151858201604001528201612130565b8181111561215d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156122ff5784516001600160a01b0316835293830193918301916001016122da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612333576123336123e4565b500190565b60008261235357634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612372576123726123e4565b500290565b600082821015612389576123896123e4565b500390565b6002810460018216806123a257607f821691505b602082108114156123c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123dd576123dd6123e4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461158157600080fd5b801515811461158157600080fdfea26469706673582212204c002db3a2c1f628854f7c30bc4c3d29c43d7e6395779f1317a90b17c01631eb64736f6c63430008020033

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

000000000000000000000000352c6ddc1b2aa74cfde4798fbacc2eef5306dc65

-----Decoded View---------------
Arg [0] : owner (address): 0x352c6ddc1B2Aa74CFdE4798fBAcc2eEF5306dc65

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000352c6ddc1b2aa74cfde4798fbacc2eef5306dc65


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.