ETH Price: $2,001.79 (+0.18%)

Token

POU (POU)
 

Overview

Max Total Supply

100,000,000,000 POU

Holders

40

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
POU

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT

// https://pou-coin.com/
// https://twitter.com/POU_ERC20
// https://t.me/POUOfficialPortal


pragma solidity ^0.8.12;

import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

library Address{
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

contract POU is Ownable, ERC20 {
    using Address for address payable;
    using SafeMath for uint256;

    address constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant ZERO = 0x0000000000000000000000000000000000000000;
    uint256 constant NO_TAX = 0;
    uint256 constant TAX_SWITCH_ONE = 50;
    uint256 constant TAX_SWITCH_TWO = 100;
    uint256 constant TAX_SWITCH_THREE = 150;

    
    IUniswapV2Router02 public router;
    address public router_addr = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public pair;

    bool private swapping = false;
    bool private swapEnabled = false;
    bool public tradingEnabled = false;

    uint256 public supply = 100_000_000_000 * 10 ** 18;
    uint256 private swapTokensAtAmount = supply * 5 / 1000;
    uint256 public maxTxAmount = supply * 30 / 1000;
    uint256 public maxWalletAmount = supply * 30 / 1000;

    uint256 public totalBuyTax = 0;
    uint256 public totalSellTax = 0;
    uint256 private transactionCount = 0;
    bool public enableUpdateTax = true;
    bool public limitEnabled = true;

    address private devWallet;
    
    mapping (address => bool) private _excludedFromFees;
    
    modifier inSwap() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }
        
    constructor() ERC20("POU", "POU") {
        _mint(msg.sender, supply);

        devWallet = msg.sender;

        IUniswapV2Router02 _router = IUniswapV2Router02(router_addr);
        _approve(address(this), address(_router), supply);
        address _pair = IUniswapV2Factory(_router.factory())
            .createPair(address(this), _router.WETH());

        router = _router;
        pair = _pair;
        
        totalBuyTax = 20;
        totalSellTax = 20;
        
        _excludedFromFees[address(this)] = true;
        _excludedFromFees[devWallet] = true;
        _excludedFromFees[router_addr] = true;
        _excludedFromFees[DEAD] = true;
        _excludedFromFees[ZERO] = true;
    }
    
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");

        if(!_excludedFromFees[sender] && !_excludedFromFees[recipient] && !swapping){
            require(tradingEnabled, "Trading not active yet");
            if (limitEnabled) {
                require(amount <= maxTxAmount, "You are exceeding maxTxAmount");
                if(recipient != pair){ 
                    require(balanceOf(recipient) + amount <= maxWalletAmount, "You are exceeding maxWalletAmount");
                }
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= swapTokensAtAmount || (contractTokenBalance < swapTokensAtAmount && transactionCount >= TAX_SWITCH_THREE);

            if (canSwap && swapEnabled && !swapping && sender != pair && contractTokenBalance > 0) {
                uint256 amountToSwap = swapTokensAtAmount;
                if (contractTokenBalance >= swapTokensAtAmount * 20) {
                    amountToSwap = swapTokensAtAmount * 20;
                }
                if (contractTokenBalance < swapTokensAtAmount) {
                    amountToSwap = contractTokenBalance;
                }
                swapForFees(amountToSwap);
            }
        }

        uint256 fee = 0;
        if (!swapping && !_excludedFromFees[sender] && !_excludedFromFees[recipient] && enableUpdateTax) {
            if(recipient == pair) {
                fee = amount * totalSellTax / 100;
            }
            else if (sender == pair) {
                fee = amount * totalBuyTax / 100;
            }
        }

        super._transfer(sender, recipient, amount - fee);
        if(fee > 0) {
            updateTaxes();
            super._transfer(sender, address(this) ,fee);
        }

    }

    function swapForFees(uint256 amount) private inSwap {
        swapTokensForETH(amount);
        uint256 contractETHBalance = address(this).balance;
        if (contractETHBalance > 0) {
            uint256 reward = address(this).balance;
            payable(devWallet).sendValue(reward);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function startTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already active");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function updateTaxes() internal {
        transactionCount += 1;
        if (transactionCount == TAX_SWITCH_ONE) {
            totalBuyTax = 10;
            totalSellTax = 10;
        } else if (transactionCount == TAX_SWITCH_TWO) {
            totalBuyTax = 5;
            totalSellTax = 5;
        } else if (transactionCount >= TAX_SWITCH_THREE) {
            totalBuyTax = NO_TAX;
            totalSellTax = NO_TAX;
            enableUpdateTax = false;
        }
    }

    function setTaxToZero() external onlyOwner {
        totalBuyTax = NO_TAX;
        totalSellTax = NO_TAX;
        enableUpdateTax = false;
    }

    function setSettingsSwap(bool swap) external onlyOwner {
        swapEnabled = swap;
    }

    receive() external payable {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

API
[{"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":[],"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":"enableUpdateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router_addr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"swap","type":"bool"}],"name":"setSettingsSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTaxToZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"},{"stateMutability":"payable","type":"receive"}]

6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600860146101000a81548160ff0219169083151502179055505f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff0219169083151502179055506c01431e0fae6d7217caa00000006009556103e86005600954620000cb919062000acf565b620000d7919062000b46565b600a556103e8601e600954620000ee919062000acf565b620000fa919062000b46565b600b556103e8601e60095462000111919062000acf565b6200011d919062000b46565b600c555f600d555f600e555f600f55600160105f6101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200016d575f80fd5b506040518060400160405280600381526020017f504f5500000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f504f550000000000000000000000000000000000000000000000000000000000815250620001fa620001ee6200069660201b60201c565b6200069d60201b60201c565b81600490816200020b919062000dd8565b5080600590816200021d919062000dd8565b50505062000234336009546200075e60201b60201c565b33601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620002af3082600954620008c460201b60201c565b5f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000320919062000f21565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000386573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003ac919062000f21565b6040518363ffffffff1660e01b8152600401620003cb92919062000f62565b6020604051808303815f875af1158015620003e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200040e919062000f21565b90508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014600d819055506014600e81905550600160115f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505062001199565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c69062000feb565b60405180910390fd5b620007e25f838362000a8f60201b60201c565b8060035f828254620007f591906200100b565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008a5919062001056565b60405180910390a3620008c05f838362000a9460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092c90620010e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099d9062001179565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a82919062001056565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000adb8262000a99565b915062000ae88362000a99565b925082820262000af88162000a99565b9150828204841483151762000b125762000b1162000aa2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000b528262000a99565b915062000b5f8362000a99565b92508262000b725762000b7162000b19565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bf957607f821691505b60208210810362000c0f5762000c0e62000bb4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c36565b62000c7f868362000c36565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000cc062000cba62000cb48462000a99565b62000c97565b62000a99565b9050919050565b5f819050919050565b62000cdb8362000ca0565b62000cf362000cea8262000cc7565b84845462000c42565b825550505050565b5f90565b62000d0962000cfb565b62000d1681848462000cd0565b505050565b5b8181101562000d3d5762000d315f8262000cff565b60018101905062000d1c565b5050565b601f82111562000d8c5762000d568162000c15565b62000d618462000c27565b8101602085101562000d71578190505b62000d8962000d808562000c27565b83018262000d1b565b50505b505050565b5f82821c905092915050565b5f62000dae5f198460080262000d91565b1980831691505092915050565b5f62000dc8838362000d9d565b9150826002028217905092915050565b62000de38262000b7d565b67ffffffffffffffff81111562000dff5762000dfe62000b87565b5b62000e0b825462000be1565b62000e1882828562000d41565b5f60209050601f83116001811462000e4e575f841562000e39578287015190505b62000e45858262000dbb565b86555062000eb4565b601f19841662000e5e8662000c15565b5f5b8281101562000e875784890151825560018201915060208501945060208101905062000e60565b8683101562000ea7578489015162000ea3601f89168262000d9d565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000eeb8262000ec0565b9050919050565b62000efd8162000edf565b811462000f08575f80fd5b50565b5f8151905062000f1b8162000ef2565b92915050565b5f6020828403121562000f395762000f3862000ebc565b5b5f62000f488482850162000f0b565b91505092915050565b62000f5c8162000edf565b82525050565b5f60408201905062000f775f83018562000f51565b62000f86602083018462000f51565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000fd3601f8362000f8d565b915062000fe08262000f9d565b602082019050919050565b5f6020820190508181035f830152620010048162000fc5565b9050919050565b5f620010178262000a99565b9150620010248362000a99565b92508282019050808211156200103f576200103e62000aa2565b5b92915050565b620010508162000a99565b82525050565b5f6020820190506200106b5f83018462001045565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f620010cd60248362000f8d565b9150620010da8262001071565b604082019050919050565b5f6020820190508181035f830152620010fe81620010bf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200116160228362000f8d565b91506200116e8262001105565b604082019050919050565b5f6020820190508181035f830152620011928162001153565b9050919050565b612b7d80620011a75f395ff3fe6080604052600436106101ba575f3560e01c806370a08231116100eb578063a8aa1b3111610089578063aa4bde2811610063578063aa4bde28146105e3578063dd62ed3e1461060d578063f2fde38b14610649578063f887ea4014610671576101c1565b8063a8aa1b3114610553578063a9059cbb1461057d578063a96e221f146105b9576101c1565b80638c0b5e22116100c55780638c0b5e22146104995780638da5cb5b146104c357806395d89b41146104ed578063a457c2d714610517576101c1565b806370a0823114610431578063715018a61461046d5780638859f03d14610483576101c1565b8063293230b81161015857806346469afb1161013257806346469afb146103895780634ada218b146103b35780634f00beaf146103dd5780636d800a3c14610407576101c1565b8063293230b81461030d578063313ce56714610323578063395093511461034d576101c1565b806318160ddd1161019457806318160ddd146102555780631baaa30a1461027f5780631bff7898146102a757806323b872dd146102d1576101c1565b8063047fc9aa146101c557806306fdde03146101ef578063095ea7b314610219576101c1565b366101c157005b5f80fd5b3480156101d0575f80fd5b506101d961069b565b6040516101e69190611c01565b60405180910390f35b3480156101fa575f80fd5b506102036106a1565b6040516102109190611ca4565b60405180910390f35b348015610224575f80fd5b5061023f600480360381019061023a9190611d4c565b610731565b60405161024c9190611da4565b60405180910390f35b348015610260575f80fd5b50610269610753565b6040516102769190611c01565b60405180910390f35b34801561028a575f80fd5b506102a560048036038101906102a09190611de7565b61075c565b005b3480156102b2575f80fd5b506102bb610781565b6040516102c89190611c01565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190611e12565b610787565b6040516103049190611da4565b60405180910390f35b348015610318575f80fd5b506103216107b5565b005b34801561032e575f80fd5b50610337610845565b6040516103449190611e7d565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190611d4c565b61084d565b6040516103809190611da4565b60405180910390f35b348015610394575f80fd5b5061039d610883565b6040516103aa9190611c01565b60405180910390f35b3480156103be575f80fd5b506103c7610889565b6040516103d49190611da4565b60405180910390f35b3480156103e8575f80fd5b506103f161089c565b6040516103fe9190611da4565b60405180910390f35b348015610412575f80fd5b5061041b6108ae565b6040516104289190611da4565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190611e96565b6108c1565b6040516104649190611c01565b60405180910390f35b348015610478575f80fd5b50610481610907565b005b34801561048e575f80fd5b5061049761091a565b005b3480156104a4575f80fd5b506104ad61094b565b6040516104ba9190611c01565b60405180910390f35b3480156104ce575f80fd5b506104d7610951565b6040516104e49190611ed0565b60405180910390f35b3480156104f8575f80fd5b50610501610978565b60405161050e9190611ca4565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190611d4c565b610a08565b60405161054a9190611da4565b60405180910390f35b34801561055e575f80fd5b50610567610a7d565b6040516105749190611ed0565b60405180910390f35b348015610588575f80fd5b506105a3600480360381019061059e9190611d4c565b610aa2565b6040516105b09190611da4565b60405180910390f35b3480156105c4575f80fd5b506105cd610ac4565b6040516105da9190611ed0565b60405180910390f35b3480156105ee575f80fd5b506105f7610ae9565b6040516106049190611c01565b60405180910390f35b348015610618575f80fd5b50610633600480360381019061062e9190611ee9565b610aef565b6040516106409190611c01565b60405180910390f35b348015610654575f80fd5b5061066f600480360381019061066a9190611e96565b610b71565b005b34801561067c575f80fd5b50610685610bf3565b6040516106929190611f82565b60405180910390f35b60095481565b6060600480546106b090611fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611fc8565b80156107275780601f106106fe57610100808354040283529160200191610727565b820191905f5260205f20905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b5f8061073b610c18565b9050610748818585610c1f565b600191505092915050565b5f600354905090565b610764610de2565b80600860156101000a81548160ff02191690831515021790555050565b600e5481565b5f80610791610c18565b905061079e858285610e60565b6107a9858585610eeb565b60019150509392505050565b6107bd610de2565b600860169054906101000a900460ff161561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490612042565b60405180910390fd5b6001600860166101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550565b5f6012905090565b5f80610857610c18565b90506108788185856108698589610aef565b610873919061208d565b610c1f565b600191505092915050565b600d5481565b600860169054906101000a900460ff1681565b60105f9054906101000a900460ff1681565b601060019054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61090f610de2565b6109185f611448565b565b610922610de2565b5f600d819055505f600e819055505f60105f6101000a81548160ff021916908315150217905550565b600b5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098790611fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390611fc8565b80156109fe5780601f106109d5576101008083540402835291602001916109fe565b820191905f5260205f20905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b5f80610a12610c18565b90505f610a1f8286610aef565b905083811015610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612130565b60405180910390fd5b610a718286868403610c1f565b60019250505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610aac610c18565b9050610ab9818585610eeb565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b79610de2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde906121be565b60405180910390fd5b610bf081611448565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061224c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906122da565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dd59190611c01565b60405180910390a3505050565b610dea610c18565b73ffffffffffffffffffffffffffffffffffffffff16610e08610951565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612342565b60405180910390fd5b565b5f610e6b8484610aef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee55781811015610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906123aa565b60405180910390fd5b610ee48484848403610c1f565b5b50505050565b5f8111610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490612438565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610fcb575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610fe45750600860149054906101000a900460ff16155b1561125457600860169054906101000a900460ff16611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906124a0565b60405180910390fd5b601060019054906101000a900460ff161561114057600b54811115611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990612508565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461113f57600c54816110f3846108c1565b6110fd919061208d565b111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590612596565b60405180910390fd5b5b5b5f61114a306108c1565b90505f600a548210158061116e5750600a548210801561116d57506096600f5410155b5b90508080156111895750600860159054906101000a900460ff165b80156111a25750600860149054906101000a900460ff16155b80156111fb575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561120657505f82115b15611251575f600a5490506014600a5461122091906125b4565b8310611238576014600a5461123591906125b4565b90505b600a54831015611246578290505b61124f81611509565b505b50505b5f600860149054906101000a900460ff161580156112b9575060115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561130c575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611323575060105f9054906101000a900460ff165b156114105760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576064600e548361138c91906125b4565b6113969190612622565b905061140f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361140e576064600d548361140191906125b4565b61140b9190612622565b90505b5b5b611426848483856114219190612652565b6115bd565b5f8111156114425761143661182c565b6114418430836115bd565b5b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860149054906101000a900460ff166115ba576001600860146101000a81548160ff021916908315150217905550611541816118b9565b5f4790505f81111561159e575f47905061159c81601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aef90919063ffffffff16565b505b505f600860146101000a81548160ff0219169083151502179055505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906126f5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090612783565b60405180910390fd5b6116a4838383611bdf565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90612811565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118139190611c01565b60405180910390a3611826848484611be4565b50505050565b6001600f5f82825461183e919061208d565b925050819055506032600f540361186457600a600d81905550600a600e819055506118b7565b6064600f5403611883576005600d819055506005600e819055506118b6565b6096600f54106118b5575f600d819055505f600e819055505f60105f6101000a81548160ff0219169083151502179055505b5b5b565b5f600267ffffffffffffffff8111156118d5576118d461282f565b5b6040519080825280602002602001820160405280156119035781602001602082028036833780820191505090505b50905030815f8151811061191a5761191961285c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e2919061289d565b816001815181106119f6576119f561285c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a5c3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c1f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611abe9594939291906129b8565b5f604051808303815f87803b158015611ad5575f80fd5b505af1158015611ae7573d5f803e3d5ffd5b505050505050565b80471015611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990612a5a565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611b5790612aa5565b5f6040518083038185875af1925050503d805f8114611b91576040519150601f19603f3d011682016040523d82523d5f602084013e611b96565b606091505b5050905080611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190612b29565b60405180910390fd5b505050565b505050565b505050565b5f819050919050565b611bfb81611be9565b82525050565b5f602082019050611c145f830184611bf2565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c51578082015181840152602081019050611c36565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c7682611c1a565b611c808185611c24565b9350611c90818560208601611c34565b611c9981611c5c565b840191505092915050565b5f6020820190508181035f830152611cbc8184611c6c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cf182611cc8565b9050919050565b611d0181611ce7565b8114611d0b575f80fd5b50565b5f81359050611d1c81611cf8565b92915050565b611d2b81611be9565b8114611d35575f80fd5b50565b5f81359050611d4681611d22565b92915050565b5f8060408385031215611d6257611d61611cc4565b5b5f611d6f85828601611d0e565b9250506020611d8085828601611d38565b9150509250929050565b5f8115159050919050565b611d9e81611d8a565b82525050565b5f602082019050611db75f830184611d95565b92915050565b611dc681611d8a565b8114611dd0575f80fd5b50565b5f81359050611de181611dbd565b92915050565b5f60208284031215611dfc57611dfb611cc4565b5b5f611e0984828501611dd3565b91505092915050565b5f805f60608486031215611e2957611e28611cc4565b5b5f611e3686828701611d0e565b9350506020611e4786828701611d0e565b9250506040611e5886828701611d38565b9150509250925092565b5f60ff82169050919050565b611e7781611e62565b82525050565b5f602082019050611e905f830184611e6e565b92915050565b5f60208284031215611eab57611eaa611cc4565b5b5f611eb884828501611d0e565b91505092915050565b611eca81611ce7565b82525050565b5f602082019050611ee35f830184611ec1565b92915050565b5f8060408385031215611eff57611efe611cc4565b5b5f611f0c85828601611d0e565b9250506020611f1d85828601611d0e565b9150509250929050565b5f819050919050565b5f611f4a611f45611f4084611cc8565b611f27565b611cc8565b9050919050565b5f611f5b82611f30565b9050919050565b5f611f6c82611f51565b9050919050565b611f7c81611f62565b82525050565b5f602082019050611f955f830184611f73565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fdf57607f821691505b602082108103611ff257611ff1611f9b565b5b50919050565b7f54726164696e6720616c726561647920616374697665000000000000000000005f82015250565b5f61202c601683611c24565b915061203782611ff8565b602082019050919050565b5f6020820190508181035f83015261205981612020565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61209782611be9565b91506120a283611be9565b92508282019050808211156120ba576120b9612060565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61211a602583611c24565b9150612125826120c0565b604082019050919050565b5f6020820190508181035f8301526121478161210e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121a8602683611c24565b91506121b38261214e565b604082019050919050565b5f6020820190508181035f8301526121d58161219c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612236602483611c24565b9150612241826121dc565b604082019050919050565b5f6020820190508181035f8301526122638161222a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122c4602283611c24565b91506122cf8261226a565b604082019050919050565b5f6020820190508181035f8301526122f1816122b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61232c602083611c24565b9150612337826122f8565b602082019050919050565b5f6020820190508181035f83015261235981612320565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612394601d83611c24565b915061239f82612360565b602082019050919050565b5f6020820190508181035f8301526123c181612388565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612422602983611c24565b915061242d826123c8565b604082019050919050565b5f6020820190508181035f83015261244f81612416565b9050919050565b7f54726164696e67206e6f742061637469766520796574000000000000000000005f82015250565b5f61248a601683611c24565b915061249582612456565b602082019050919050565b5f6020820190508181035f8301526124b78161247e565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e740000005f82015250565b5f6124f2601d83611c24565b91506124fd826124be565b602082019050919050565b5f6020820190508181035f83015261251f816124e6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f612580602183611c24565b915061258b82612526565b604082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b5f6125be82611be9565b91506125c983611be9565b92508282026125d781611be9565b915082820484148315176125ee576125ed612060565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61262c82611be9565b915061263783611be9565b925082612647576126466125f5565b5b828204905092915050565b5f61265c82611be9565b915061266783611be9565b925082820390508181111561267f5761267e612060565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6126df602583611c24565b91506126ea82612685565b604082019050919050565b5f6020820190508181035f83015261270c816126d3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61276d602383611c24565b915061277882612713565b604082019050919050565b5f6020820190508181035f83015261279a81612761565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6127fb602683611c24565b9150612806826127a1565b604082019050919050565b5f6020820190508181035f830152612828816127ef565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061289781611cf8565b92915050565b5f602082840312156128b2576128b1611cc4565b5b5f6128bf84828501612889565b91505092915050565b5f819050919050565b5f6128eb6128e66128e1846128c8565b611f27565b611be9565b9050919050565b6128fb816128d1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61293381611ce7565b82525050565b5f612944838361292a565b60208301905092915050565b5f602082019050919050565b5f61296682612901565b612970818561290b565b935061297b8361291b565b805f5b838110156129ab5781516129928882612939565b975061299d83612950565b92505060018101905061297e565b5085935050505092915050565b5f60a0820190506129cb5f830188611bf2565b6129d860208301876128f2565b81810360408301526129ea818661295c565b90506129f96060830185611ec1565b612a066080830184611bf2565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f612a44601d83611c24565b9150612a4f82612a10565b602082019050919050565b5f6020820190508181035f830152612a7181612a38565b9050919050565b5f81905092915050565b50565b5f612a905f83612a78565b9150612a9b82612a82565b5f82019050919050565b5f612aaf82612a85565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f612b13603a83611c24565b9150612b1e82612ab9565b604082019050919050565b5f6020820190508181035f830152612b4081612b07565b905091905056fea2646970667358221220621206f8a0f38b1b2a0e8e853cfda86de5ef6a88bfdb12fb2cb49ae5dd0ef95e64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101ba575f3560e01c806370a08231116100eb578063a8aa1b3111610089578063aa4bde2811610063578063aa4bde28146105e3578063dd62ed3e1461060d578063f2fde38b14610649578063f887ea4014610671576101c1565b8063a8aa1b3114610553578063a9059cbb1461057d578063a96e221f146105b9576101c1565b80638c0b5e22116100c55780638c0b5e22146104995780638da5cb5b146104c357806395d89b41146104ed578063a457c2d714610517576101c1565b806370a0823114610431578063715018a61461046d5780638859f03d14610483576101c1565b8063293230b81161015857806346469afb1161013257806346469afb146103895780634ada218b146103b35780634f00beaf146103dd5780636d800a3c14610407576101c1565b8063293230b81461030d578063313ce56714610323578063395093511461034d576101c1565b806318160ddd1161019457806318160ddd146102555780631baaa30a1461027f5780631bff7898146102a757806323b872dd146102d1576101c1565b8063047fc9aa146101c557806306fdde03146101ef578063095ea7b314610219576101c1565b366101c157005b5f80fd5b3480156101d0575f80fd5b506101d961069b565b6040516101e69190611c01565b60405180910390f35b3480156101fa575f80fd5b506102036106a1565b6040516102109190611ca4565b60405180910390f35b348015610224575f80fd5b5061023f600480360381019061023a9190611d4c565b610731565b60405161024c9190611da4565b60405180910390f35b348015610260575f80fd5b50610269610753565b6040516102769190611c01565b60405180910390f35b34801561028a575f80fd5b506102a560048036038101906102a09190611de7565b61075c565b005b3480156102b2575f80fd5b506102bb610781565b6040516102c89190611c01565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190611e12565b610787565b6040516103049190611da4565b60405180910390f35b348015610318575f80fd5b506103216107b5565b005b34801561032e575f80fd5b50610337610845565b6040516103449190611e7d565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190611d4c565b61084d565b6040516103809190611da4565b60405180910390f35b348015610394575f80fd5b5061039d610883565b6040516103aa9190611c01565b60405180910390f35b3480156103be575f80fd5b506103c7610889565b6040516103d49190611da4565b60405180910390f35b3480156103e8575f80fd5b506103f161089c565b6040516103fe9190611da4565b60405180910390f35b348015610412575f80fd5b5061041b6108ae565b6040516104289190611da4565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190611e96565b6108c1565b6040516104649190611c01565b60405180910390f35b348015610478575f80fd5b50610481610907565b005b34801561048e575f80fd5b5061049761091a565b005b3480156104a4575f80fd5b506104ad61094b565b6040516104ba9190611c01565b60405180910390f35b3480156104ce575f80fd5b506104d7610951565b6040516104e49190611ed0565b60405180910390f35b3480156104f8575f80fd5b50610501610978565b60405161050e9190611ca4565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190611d4c565b610a08565b60405161054a9190611da4565b60405180910390f35b34801561055e575f80fd5b50610567610a7d565b6040516105749190611ed0565b60405180910390f35b348015610588575f80fd5b506105a3600480360381019061059e9190611d4c565b610aa2565b6040516105b09190611da4565b60405180910390f35b3480156105c4575f80fd5b506105cd610ac4565b6040516105da9190611ed0565b60405180910390f35b3480156105ee575f80fd5b506105f7610ae9565b6040516106049190611c01565b60405180910390f35b348015610618575f80fd5b50610633600480360381019061062e9190611ee9565b610aef565b6040516106409190611c01565b60405180910390f35b348015610654575f80fd5b5061066f600480360381019061066a9190611e96565b610b71565b005b34801561067c575f80fd5b50610685610bf3565b6040516106929190611f82565b60405180910390f35b60095481565b6060600480546106b090611fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611fc8565b80156107275780601f106106fe57610100808354040283529160200191610727565b820191905f5260205f20905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b5f8061073b610c18565b9050610748818585610c1f565b600191505092915050565b5f600354905090565b610764610de2565b80600860156101000a81548160ff02191690831515021790555050565b600e5481565b5f80610791610c18565b905061079e858285610e60565b6107a9858585610eeb565b60019150509392505050565b6107bd610de2565b600860169054906101000a900460ff161561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490612042565b60405180910390fd5b6001600860166101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550565b5f6012905090565b5f80610857610c18565b90506108788185856108698589610aef565b610873919061208d565b610c1f565b600191505092915050565b600d5481565b600860169054906101000a900460ff1681565b60105f9054906101000a900460ff1681565b601060019054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61090f610de2565b6109185f611448565b565b610922610de2565b5f600d819055505f600e819055505f60105f6101000a81548160ff021916908315150217905550565b600b5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098790611fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390611fc8565b80156109fe5780601f106109d5576101008083540402835291602001916109fe565b820191905f5260205f20905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b5f80610a12610c18565b90505f610a1f8286610aef565b905083811015610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612130565b60405180910390fd5b610a718286868403610c1f565b60019250505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610aac610c18565b9050610ab9818585610eeb565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b79610de2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde906121be565b60405180910390fd5b610bf081611448565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061224c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906122da565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dd59190611c01565b60405180910390a3505050565b610dea610c18565b73ffffffffffffffffffffffffffffffffffffffff16610e08610951565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612342565b60405180910390fd5b565b5f610e6b8484610aef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee55781811015610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906123aa565b60405180910390fd5b610ee48484848403610c1f565b5b50505050565b5f8111610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490612438565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610fcb575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610fe45750600860149054906101000a900460ff16155b1561125457600860169054906101000a900460ff16611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906124a0565b60405180910390fd5b601060019054906101000a900460ff161561114057600b54811115611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990612508565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461113f57600c54816110f3846108c1565b6110fd919061208d565b111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590612596565b60405180910390fd5b5b5b5f61114a306108c1565b90505f600a548210158061116e5750600a548210801561116d57506096600f5410155b5b90508080156111895750600860159054906101000a900460ff165b80156111a25750600860149054906101000a900460ff16155b80156111fb575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561120657505f82115b15611251575f600a5490506014600a5461122091906125b4565b8310611238576014600a5461123591906125b4565b90505b600a54831015611246578290505b61124f81611509565b505b50505b5f600860149054906101000a900460ff161580156112b9575060115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561130c575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611323575060105f9054906101000a900460ff165b156114105760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576064600e548361138c91906125b4565b6113969190612622565b905061140f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361140e576064600d548361140191906125b4565b61140b9190612622565b90505b5b5b611426848483856114219190612652565b6115bd565b5f8111156114425761143661182c565b6114418430836115bd565b5b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860149054906101000a900460ff166115ba576001600860146101000a81548160ff021916908315150217905550611541816118b9565b5f4790505f81111561159e575f47905061159c81601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aef90919063ffffffff16565b505b505f600860146101000a81548160ff0219169083151502179055505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906126f5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090612783565b60405180910390fd5b6116a4838383611bdf565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90612811565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118139190611c01565b60405180910390a3611826848484611be4565b50505050565b6001600f5f82825461183e919061208d565b925050819055506032600f540361186457600a600d81905550600a600e819055506118b7565b6064600f5403611883576005600d819055506005600e819055506118b6565b6096600f54106118b5575f600d819055505f600e819055505f60105f6101000a81548160ff0219169083151502179055505b5b5b565b5f600267ffffffffffffffff8111156118d5576118d461282f565b5b6040519080825280602002602001820160405280156119035781602001602082028036833780820191505090505b50905030815f8151811061191a5761191961285c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e2919061289d565b816001815181106119f6576119f561285c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a5c3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c1f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611abe9594939291906129b8565b5f604051808303815f87803b158015611ad5575f80fd5b505af1158015611ae7573d5f803e3d5ffd5b505050505050565b80471015611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990612a5a565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611b5790612aa5565b5f6040518083038185875af1925050503d805f8114611b91576040519150601f19603f3d011682016040523d82523d5f602084013e611b96565b606091505b5050905080611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190612b29565b60405180910390fd5b505050565b505050565b505050565b5f819050919050565b611bfb81611be9565b82525050565b5f602082019050611c145f830184611bf2565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c51578082015181840152602081019050611c36565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c7682611c1a565b611c808185611c24565b9350611c90818560208601611c34565b611c9981611c5c565b840191505092915050565b5f6020820190508181035f830152611cbc8184611c6c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cf182611cc8565b9050919050565b611d0181611ce7565b8114611d0b575f80fd5b50565b5f81359050611d1c81611cf8565b92915050565b611d2b81611be9565b8114611d35575f80fd5b50565b5f81359050611d4681611d22565b92915050565b5f8060408385031215611d6257611d61611cc4565b5b5f611d6f85828601611d0e565b9250506020611d8085828601611d38565b9150509250929050565b5f8115159050919050565b611d9e81611d8a565b82525050565b5f602082019050611db75f830184611d95565b92915050565b611dc681611d8a565b8114611dd0575f80fd5b50565b5f81359050611de181611dbd565b92915050565b5f60208284031215611dfc57611dfb611cc4565b5b5f611e0984828501611dd3565b91505092915050565b5f805f60608486031215611e2957611e28611cc4565b5b5f611e3686828701611d0e565b9350506020611e4786828701611d0e565b9250506040611e5886828701611d38565b9150509250925092565b5f60ff82169050919050565b611e7781611e62565b82525050565b5f602082019050611e905f830184611e6e565b92915050565b5f60208284031215611eab57611eaa611cc4565b5b5f611eb884828501611d0e565b91505092915050565b611eca81611ce7565b82525050565b5f602082019050611ee35f830184611ec1565b92915050565b5f8060408385031215611eff57611efe611cc4565b5b5f611f0c85828601611d0e565b9250506020611f1d85828601611d0e565b9150509250929050565b5f819050919050565b5f611f4a611f45611f4084611cc8565b611f27565b611cc8565b9050919050565b5f611f5b82611f30565b9050919050565b5f611f6c82611f51565b9050919050565b611f7c81611f62565b82525050565b5f602082019050611f955f830184611f73565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fdf57607f821691505b602082108103611ff257611ff1611f9b565b5b50919050565b7f54726164696e6720616c726561647920616374697665000000000000000000005f82015250565b5f61202c601683611c24565b915061203782611ff8565b602082019050919050565b5f6020820190508181035f83015261205981612020565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61209782611be9565b91506120a283611be9565b92508282019050808211156120ba576120b9612060565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61211a602583611c24565b9150612125826120c0565b604082019050919050565b5f6020820190508181035f8301526121478161210e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121a8602683611c24565b91506121b38261214e565b604082019050919050565b5f6020820190508181035f8301526121d58161219c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612236602483611c24565b9150612241826121dc565b604082019050919050565b5f6020820190508181035f8301526122638161222a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122c4602283611c24565b91506122cf8261226a565b604082019050919050565b5f6020820190508181035f8301526122f1816122b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61232c602083611c24565b9150612337826122f8565b602082019050919050565b5f6020820190508181035f83015261235981612320565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612394601d83611c24565b915061239f82612360565b602082019050919050565b5f6020820190508181035f8301526123c181612388565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612422602983611c24565b915061242d826123c8565b604082019050919050565b5f6020820190508181035f83015261244f81612416565b9050919050565b7f54726164696e67206e6f742061637469766520796574000000000000000000005f82015250565b5f61248a601683611c24565b915061249582612456565b602082019050919050565b5f6020820190508181035f8301526124b78161247e565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e740000005f82015250565b5f6124f2601d83611c24565b91506124fd826124be565b602082019050919050565b5f6020820190508181035f83015261251f816124e6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f612580602183611c24565b915061258b82612526565b604082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b5f6125be82611be9565b91506125c983611be9565b92508282026125d781611be9565b915082820484148315176125ee576125ed612060565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61262c82611be9565b915061263783611be9565b925082612647576126466125f5565b5b828204905092915050565b5f61265c82611be9565b915061266783611be9565b925082820390508181111561267f5761267e612060565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6126df602583611c24565b91506126ea82612685565b604082019050919050565b5f6020820190508181035f83015261270c816126d3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61276d602383611c24565b915061277882612713565b604082019050919050565b5f6020820190508181035f83015261279a81612761565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6127fb602683611c24565b9150612806826127a1565b604082019050919050565b5f6020820190508181035f830152612828816127ef565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061289781611cf8565b92915050565b5f602082840312156128b2576128b1611cc4565b5b5f6128bf84828501612889565b91505092915050565b5f819050919050565b5f6128eb6128e66128e1846128c8565b611f27565b611be9565b9050919050565b6128fb816128d1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61293381611ce7565b82525050565b5f612944838361292a565b60208301905092915050565b5f602082019050919050565b5f61296682612901565b612970818561290b565b935061297b8361291b565b805f5b838110156129ab5781516129928882612939565b975061299d83612950565b92505060018101905061297e565b5085935050505092915050565b5f60a0820190506129cb5f830188611bf2565b6129d860208301876128f2565b81810360408301526129ea818661295c565b90506129f96060830185611ec1565b612a066080830184611bf2565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f612a44601d83611c24565b9150612a4f82612a10565b602082019050919050565b5f6020820190508181035f830152612a7181612a38565b9050919050565b5f81905092915050565b50565b5f612a905f83612a78565b9150612a9b82612a82565b5f82019050919050565b5f612aaf82612a85565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f612b13603a83611c24565b9150612b1e82612ab9565b604082019050919050565b5f6020820190508181035f830152612b4081612b07565b905091905056fea2646970667358221220621206f8a0f38b1b2a0e8e853cfda86de5ef6a88bfdb12fb2cb49ae5dd0ef95e64736f6c63430008140033

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.