ETH Price: $3,269.19 (-4.29%)
Gas: 7 Gwei

Token

Pankeki (KEKI)
 

Overview

Max Total Supply

10,000,000 KEKI

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xbytecode.eth
Balance
110,399.08 KEKI

Value
$0.00
0x5917B7523E0cdDa6B4E2c88Fe6e1C70138E91ac7
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:
Pankeki

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.17;

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

contract Pankeki is Context, ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private _uniswapV2Router;

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

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedMaxTransactionAmount;

    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled;

    uint256 private constant _totalSupply = 10_000_000 * (10**18);

    uint256 public maxBuyAmnt = _totalSupply.mul(12).div(1000);
    uint256 public maxSellAmnt = _totalSupply.mul(12).div(1000);
    uint256 public maxWalletAmnt = _totalSupply.mul(12).div(1000);

    uint256 public swapFee = 8;
    uint256 private _previousSwapFee = swapFee;

    uint256 private _tokensForSwapFee;
    uint256 private _swapTokensAtAmount = _totalSupply.mul(7).div(10000);

    address payable private swapFeeCollector;
    address private _uniswapV2Pair;
    address private DEAD = 0x000000000000000000000000000000000000dEaD;
    address private ZERO = 0x0000000000000000000000000000000000000000;
    
    constructor () ERC20("Pankeki", "KEKI") {
        _uniswapV2Router = IUniswapV2Router02(0xEfF92A263d31888d860bD50809A8D171709b7b1c);
        _approve(address(this), address(_uniswapV2Router), _totalSupply);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);

        swapFeeCollector = payable(_msgSender());

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[DEAD] = true;

        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[DEAD] = true;

        _mint(owner(), _totalSupply);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != ZERO, "KEKI: transfer from the zero address");
        require(to != ZERO, "KEKI: transfer to the zero address");
        require(amount > 0, "KEKI: Transfer amount must be greater than zero");

        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            if(!tradingOpen) require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "KEKI: Trading is not allowed yet.");

            if (from == _uniswapV2Pair && to != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxBuyAmnt, "KEKI: Transfer amount exceeds the maxBuyAmnt.");
                require(balanceOf(to) + amount <= maxWalletAmnt, "KEKI: Exceeds maximum wallet token amount.");
            }
            
            if (to == _uniswapV2Pair && from != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxSellAmnt, "KEKI: Transfer amount exceeds the maxSellAmnt.");
                
                shouldSwap = true;
            }
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) takeFee = false;

        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap;

        if (canSwap && swapEnabled && !_swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function _swapBack(uint256 contractBalance) internal {
        if (contractBalance == 0 || _tokensForSwapFee == 0) return;

        if (contractBalance > _swapTokensAtAmount * 5) contractBalance = _swapTokensAtAmount * 5;

        _swapTokensForETH(contractBalance); 
        
        _tokensForSwapFee = 0;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            swapFeeCollector,
            block.timestamp
        );
    }

    function _removeSwapFee() internal {
        if (swapFee == 0) return;
        _previousSwapFee = swapFee;
        swapFee = 0;
    }
    
    function _restoreSwapFee() internal {
        swapFee = _previousSwapFee;
    }
        
    function _tokenTransfer(address from, address to, uint256 amount, bool takeFee) internal {
        if (!takeFee) _removeSwapFee();
        else amount = _takeSwapFees(from, amount);

        super._transfer(from, to, amount);
        
        if (!takeFee) _restoreSwapFee();
    }

    function _takeSwapFees(address from, uint256 amount) internal returns (uint256) {
        if (swapFee > 0) {
            uint256 fees = amount.mul(swapFee).div(100);
            _tokensForSwapFee += fees * swapFee / swapFee;

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

            amount -= fees;
        }

        return amount;
    }
    
    function openTrading() public onlyOwner {
        require(!tradingOpen,"KEKI: Trading is already open");
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        swapEnabled = true;
        tradingOpen = true;
    }

    function setBuyAmnt(uint256 _maxBuyAmnt) public onlyOwner {
        require(_maxBuyAmnt >= (totalSupply().mul(1).div(1000)), "KEKI: Max buy amount cannot be lower than 0.1% total supply.");
        maxBuyAmnt = _maxBuyAmnt;
    }

    function setSellAmnt(uint256 _maxSellAmnt) public onlyOwner {
        require(_maxSellAmnt >= (totalSupply().mul(1).div(1000)), "KEKI: Max sell amount cannot be lower than 0.1% total supply.");
        maxSellAmnt = _maxSellAmnt;
    }
    
    function setWalletAmnt(uint256 _maxWalletAmnt) public onlyOwner {
        require(_maxWalletAmnt >= (totalSupply().mul(1).div(100)), "KEKI: Max wallet amount cannot be lower than 1% total supply.");
        maxWalletAmnt = _maxWalletAmnt;
    }
    
    function setSwapTokensAtAmount(uint256 _swapAmountAmnt) public onlyOwner {
        require(_swapAmountAmnt >= (totalSupply().mul(1).div(100000)), "KEKI: Swap amount cannot be lower than 0.001% total supply.");
        require(_swapAmountAmnt <= (totalSupply().mul(5).div(1000)), "KEKI: Swap amount cannot be higher than 0.5% total supply.");
        _swapTokensAtAmount = _swapAmountAmnt;
    }

    function setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function setSwapFeeCollector(address swapFeeCollectorAddy) public onlyOwner {
        require(swapFeeCollectorAddy != ZERO, "KEKI: swapFeeCollector address cannot be 0");
        swapFeeCollector = payable(swapFeeCollectorAddy);
        _isExcludedFromFees[swapFeeCollectorAddy] = true;
        _isExcludedMaxTransactionAmount[swapFeeCollectorAddy] = true;
    }

    function setExcludedFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedFromFees[accounts[i]] = isEx;
    }
    
    function setExcludeFromMaxTransaction(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedMaxTransactionAmount[accounts[i]] = isEx;
    }

    function rescueETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function rescueTokens(address tokenAddy) public onlyOwner {
        require(IERC20(tokenAddy).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tokenAddy).balanceOf(address(this));
        IERC20(tokenAddy).transfer(msg.sender, amount);
    }

    receive() external payable {}
    fallback() external payable {}

}

File 2 of 10 : IUniswapV2Router02.sol
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;
}

File 3 of 10 : IUniswapV2Factory.sol
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;
}

File 4 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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;
        }
    }
}

File 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 7 of 10 : IUniswapV2Router01.sol
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);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddy","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmnt","type":"uint256"}],"name":"setBuyAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmnt","type":"uint256"}],"name":"setSellAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swapFeeCollectorAddy","type":"address"}],"name":"setSwapFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapAmountAmnt","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmnt","type":"uint256"}],"name":"setWalletAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

6080604052620000456103e862000031600c6a084595161401484a000000620008be60201b62001b2b1790919060201c565b620008d660201b62001b411790919060201c565b600b55620000896103e862000075600c6a084595161401484a000000620008be60201b62001b2b1790919060201c565b620008d660201b62001b411790919060201c565b600c55620000cd6103e8620000b9600c6a084595161401484a000000620008be60201b62001b2b1790919060201c565b620008d660201b62001b411790919060201c565b600d556008600e55600e54600f556200011c6127106200010860076a084595161401484a000000620008be60201b62001b2b1790919060201c565b620008d660201b62001b411790919060201c565b60115561dead601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001b157600080fd5b506040518060400160405280600781526020017f50616e6b656b69000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b454b490000000000000000000000000000000000000000000000000000000081525081600390816200022f919062000fb3565b50806004908162000241919062000fb3565b5050506200026462000258620008ee60201b60201c565b620008f660201b60201c565b73eff92a263d31888d860bd50809a8d171709b7b1c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002f930600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a084595161401484a000000620009bc60201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000367573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038d919062001104565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000417573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043d919062001104565b6040518363ffffffff1660e01b81526004016200045c92919062001147565b6020604051808303816000875af11580156200047c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a2919062001104565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200058392919062001185565b6020604051808303816000875af1158015620005a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c99190620011ef565b50620005da620008ee60201b60201c565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860006200063062000b8d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200076962000b8d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620008b8620008a062000b8d60201b60201c565b6a084595161401484a00000062000bb760201b60201c565b6200150d565b60008183620008ce919062001250565b905092915050565b60008183620008e69190620012ca565b905092915050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a259062001389565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a979062001421565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b80919062001443565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2090620014b0565b60405180910390fd5b62000c3d6000838362000d2f60201b60201c565b806002600082825462000c519190620014d2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ca89190620014d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d0f919062001443565b60405180910390a362000d2b6000838362000d3460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dbb57607f821691505b60208210810362000dd15762000dd062000d73565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e3b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000dfc565b62000e47868362000dfc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e9462000e8e62000e888462000e5f565b62000e69565b62000e5f565b9050919050565b6000819050919050565b62000eb08362000e73565b62000ec862000ebf8262000e9b565b84845462000e09565b825550505050565b600090565b62000edf62000ed0565b62000eec81848462000ea5565b505050565b5b8181101562000f145762000f0860008262000ed5565b60018101905062000ef2565b5050565b601f82111562000f635762000f2d8162000dd7565b62000f388462000dec565b8101602085101562000f48578190505b62000f6062000f578562000dec565b83018262000ef1565b50505b505050565b600082821c905092915050565b600062000f886000198460080262000f68565b1980831691505092915050565b600062000fa3838362000f75565b9150826002028217905092915050565b62000fbe8262000d39565b67ffffffffffffffff81111562000fda5762000fd962000d44565b5b62000fe6825462000da2565b62000ff382828562000f18565b600060209050601f8311600181146200102b576000841562001016578287015190505b62001022858262000f95565b86555062001092565b601f1984166200103b8662000dd7565b60005b8281101562001065578489015182556001820191506020850194506020810190506200103e565b8683101562001085578489015162001081601f89168262000f75565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010cc826200109f565b9050919050565b620010de81620010bf565b8114620010ea57600080fd5b50565b600081519050620010fe81620010d3565b92915050565b6000602082840312156200111d576200111c6200109a565b5b60006200112d84828501620010ed565b91505092915050565b6200114181620010bf565b82525050565b60006040820190506200115e600083018562001136565b6200116d602083018462001136565b9392505050565b6200117f8162000e5f565b82525050565b60006040820190506200119c600083018562001136565b620011ab602083018462001174565b9392505050565b60008115159050919050565b620011c981620011b2565b8114620011d557600080fd5b50565b600081519050620011e981620011be565b92915050565b6000602082840312156200120857620012076200109a565b5b60006200121884828501620011d8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200125d8262000e5f565b91506200126a8362000e5f565b92508282026200127a8162000e5f565b9150828204841483151762001294576200129362001221565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012d78262000e5f565b9150620012e48362000e5f565b925082620012f757620012f66200129b565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200137160248362001302565b91506200137e8262001313565b604082019050919050565b60006020820190508181036000830152620013a48162001362565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200140960228362001302565b91506200141682620013ab565b604082019050919050565b600060208201905081810360008301526200143c81620013fa565b9050919050565b60006020820190506200145a600083018462001174565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001498601f8362001302565b9150620014a58262001460565b602082019050919050565b60006020820190508181036000830152620014cb8162001489565b9050919050565b6000620014df8262000e5f565b9150620014ec8362000e5f565b925082820190508082111562001507576200150662001221565b5b92915050565b614598806200151d6000396000f3fe6080604052600436106101db5760003560e01c806387f99ec611610102578063a9059cbb11610095578063e01af92c11610064578063e01af92c146106a1578063f2fde38b146106ca578063f5a6682f146106f3578063ffb54a991461071c576101e2565b8063a9059cbb146105e7578063afa4f3b214610624578063c9567bf91461064d578063dd62ed3e14610664576101e2565b806395d89b41116100d157806395d89b411461052b5780639c61a17714610556578063a457c2d71461057f578063a9059942146105bc576101e2565b806387f99ec6146104835780638b56caa6146104ac5780638da5cb5b146104d5578063959fa33514610500576101e2565b8063313ce5671161017a5780636ddd1713116101495780636ddd1713146103db57806370a0823114610406578063715018a6146104435780637fdaa34d1461045a576101e2565b8063313ce5671461031d57806338cb060614610348578063395093511461037357806354cf2aeb146103b0576101e2565b8063105222f9116101b6578063105222f91461027557806318160ddd1461029e57806320800a00146102c957806323b872dd146102e0576101e2565b8062ae3bf8146101e457806306fdde031461020d578063095ea7b314610238576101e2565b366101e257005b005b3480156101f057600080fd5b5061020b60048036038101906102069190612dcc565b610747565b005b34801561021957600080fd5b50610222610980565b60405161022f9190612e89565b60405180910390f35b34801561024457600080fd5b5061025f600480360381019061025a9190612ee1565b610a12565b60405161026c9190612f3c565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906130cb565b610a35565b005b3480156102aa57600080fd5b506102b3610b46565b6040516102c09190613136565b60405180910390f35b3480156102d557600080fd5b506102de610b50565b005b3480156102ec57600080fd5b5061030760048036038101906103029190613151565b610c3d565b6040516103149190612f3c565b60405180910390f35b34801561032957600080fd5b50610332610c6c565b60405161033f91906131c0565b60405180910390f35b34801561035457600080fd5b5061035d610c75565b60405161036a9190613136565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612ee1565b610c7b565b6040516103a79190612f3c565b60405180910390f35b3480156103bc57600080fd5b506103c5610d25565b6040516103d29190613136565b60405180910390f35b3480156103e757600080fd5b506103f0610d2b565b6040516103fd9190612f3c565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612dcc565b610d3e565b60405161043a9190613136565b60405180910390f35b34801561044f57600080fd5b50610458610d86565b005b34801561046657600080fd5b50610481600480360381019061047c91906131db565b610e0e565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190612dcc565b610f05565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906131db565b611105565b005b3480156104e157600080fd5b506104ea6111fb565b6040516104f79190613217565b60405180910390f35b34801561050c57600080fd5b50610515611225565b6040516105229190613136565b60405180910390f35b34801561053757600080fd5b5061054061122b565b60405161054d9190612e89565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906131db565b6112bd565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612ee1565b6113b4565b6040516105b39190612f3c565b60405180910390f35b3480156105c857600080fd5b506105d161149e565b6040516105de9190613136565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612ee1565b6114a4565b60405161061b9190612f3c565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131db565b6114c7565b005b34801561065957600080fd5b50610662611630565b005b34801561067057600080fd5b5061068b60048036038101906106869190613232565b6117f0565b6040516106989190613136565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613272565b611877565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612dcc565b611910565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906130cb565b611a07565b005b34801561072857600080fd5b50610731611b18565b60405161073e9190612f3c565b60405180910390f35b61074f611b57565b73ffffffffffffffffffffffffffffffffffffffff1661076d6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba906132eb565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107fe9190613217565b602060405180830381865afa15801561081b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083f9190613320565b1161087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613399565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108ba9190613217565b602060405180830381865afa1580156108d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fb9190613320565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109389291906133b9565b6020604051808303816000875af1158015610957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097b91906133f7565b505050565b60606003805461098f90613453565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90613453565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b600080610a1d611b57565b9050610a2a818585611b5f565b600191505092915050565b610a3d611b57565b73ffffffffffffffffffffffffffffffffffffffff16610a5b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906132eb565b60405180910390fd5b60005b8251811015610b41578160086000858481518110610ad557610ad4613484565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b39906134e2565b915050610ab4565b505050565b6000600254905090565b610b58611b57565b73ffffffffffffffffffffffffffffffffffffffff16610b766111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906132eb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bf29061355b565b60006040518083038185875af1925050503d8060008114610c2f576040519150601f19603f3d011682016040523d82523d6000602084013e610c34565b606091505b50508091505050565b600080610c48611b57565b9050610c55858285611d28565b610c60858585611db4565b60019150509392505050565b60006012905090565b600b5481565b600080610c86611b57565b9050610d1a818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d159190613570565b611b5f565b600191505092915050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d8e611b57565b73ffffffffffffffffffffffffffffffffffffffff16610dac6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906132eb565b60405180910390fd5b610e0c6000612653565b565b610e16611b57565b73ffffffffffffffffffffffffffffffffffffffff16610e346111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906132eb565b60405180910390fd5b610eb96103e8610eab6001610e9d610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b811015610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613616565b60405180910390fd5b80600b8190555050565b610f0d611b57565b73ffffffffffffffffffffffffffffffffffffffff16610f2b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f78906132eb565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611008906136a8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61110d611b57565b73ffffffffffffffffffffffffffffffffffffffff1661112b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906132eb565b60405180910390fd5b6111af60646111a16001611193610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061373a565b60405180910390fd5b80600d8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461123a90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613453565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6112c5611b57565b73ffffffffffffffffffffffffffffffffffffffff166112e36111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906132eb565b60405180910390fd5b6113686103e861135a600161134c610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906137cc565b60405180910390fd5b80600c8190555050565b6000806113bf611b57565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061385e565b60405180910390fd5b6114928286868403611b5f565b60019250505092915050565b600c5481565b6000806114af611b57565b90506114bc818585611db4565b600191505092915050565b6114cf611b57565b73ffffffffffffffffffffffffffffffffffffffff166114ed6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906132eb565b60405180910390fd5b611573620186a06115656001611557610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac906138f0565b60405180910390fd5b6115e46103e86115d660056115c8610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b811115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613982565b60405180910390fd5b8060118190555050565b611638611b57565b73ffffffffffffffffffffffffffffffffffffffff166116566111fb565b73ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906132eb565b60405180910390fd5b600a60009054906101000a900460ff16156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906139ee565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061174530610d3e565b6000806117506111fb565b426040518863ffffffff1660e01b815260040161177296959493929190613a53565b60606040518083038185885af1158015611790573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117b59190613ab4565b5050506001600a60026101000a81548160ff0219169083151502179055506001600a60006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187f611b57565b73ffffffffffffffffffffffffffffffffffffffff1661189d6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906132eb565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b611918611b57565b73ffffffffffffffffffffffffffffffffffffffff166119366111fb565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906132eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613b79565b60405180910390fd5b611a0481612653565b50565b611a0f611b57565b73ffffffffffffffffffffffffffffffffffffffff16611a2d6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a906132eb565b60405180910390fd5b60005b8251811015611b13578160096000858481518110611aa757611aa6613484565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b0b906134e2565b915050611a86565b505050565b600a60009054906101000a900460ff1681565b60008183611b399190613b99565b905092915050565b60008183611b4f9190613c0a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590613cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613d3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d1b9190613136565b60405180910390a3505050565b6000611d3484846117f0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dae5781811015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613dab565b60405180910390fd5b611dad8484848403611b5f565b5b50505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90613e3d565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90613ecf565b60405180910390fd5b60008111611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613f61565b60405180910390fd5b6000600190506000611f276111fb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611f955750611f656111fb565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611fef5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156120495750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156120625750600a60019054906101000a900460ff16155b1561245157600a60009054906101000a900460ff1661215c57600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061211c5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290613ff3565b60405180910390fd5b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156122075750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561225d5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230057600b548311156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614085565b60405180910390fd5b600d54836122b486610d3e565b6122be9190613570565b11156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f690614117565b60405180910390fd5b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156123ab5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156124015750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561245057600c5483111561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906141a9565b60405180910390fd5b600190505b5b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124f25750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124fc57600091505b600061250730610d3e565b90506000601154821180156125195750825b90508080156125345750600a60029054906101000a900460ff165b801561254d5750600a60019054906101000a900460ff16155b80156125a35750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125f95750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561263e576001600a60016101000a81548160ff02191690831515021790555061262282612719565b6000600a60016101000a81548160ff0219169083151502179055505b61264a8787878761276b565b50505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081148061272a57506000601054145b61276857600560115461273d9190613b99565b8111156127565760056011546127539190613b99565b90505b61275f816127a9565b60006010819055505b50565b8061277d57612778612a0e565b61278a565b6127878483612a2d565b91505b612795848484612ac6565b806127a3576127a2612d45565b5b50505050565b6000600267ffffffffffffffff8111156127c6576127c5612f5c565b5b6040519080825280602002602001820160405280156127f45781602001602082028036833780820191505090505b509050308160008151811061280c5761280b613484565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d791906141de565b816001815181106128eb576128ea613484565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061295230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b5f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016129d895949392919061431e565b600060405180830381600087803b1580156129f257600080fd5b505af1158015612a06573d6000803e3d6000fd5b505050505050565b6000600e540315612a2b57600e54600f819055506000600e819055505b565b600080600e541115612abd576000612a636064612a55600e5486611b2b90919063ffffffff16565b611b4190919063ffffffff16565b9050600e54600e5482612a769190613b99565b612a809190613c0a565b60106000828254612a919190613570565b925050819055506000811115612aad57612aac843083612ac6565b5b8083612ab99190614378565b9250505b81905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c9061441e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9b906144b0565b60405180910390fd5b612baf838383612d50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614542565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cc89190613570565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d2c9190613136565b60405180910390a3612d3f848484612d55565b50505050565b600f54600e81905550565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9982612d6e565b9050919050565b612da981612d8e565b8114612db457600080fd5b50565b600081359050612dc681612da0565b92915050565b600060208284031215612de257612de1612d64565b5b6000612df084828501612db7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e33578082015181840152602081019050612e18565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e5b82612df9565b612e658185612e04565b9350612e75818560208601612e15565b612e7e81612e3f565b840191505092915050565b60006020820190508181036000830152612ea38184612e50565b905092915050565b6000819050919050565b612ebe81612eab565b8114612ec957600080fd5b50565b600081359050612edb81612eb5565b92915050565b60008060408385031215612ef857612ef7612d64565b5b6000612f0685828601612db7565b9250506020612f1785828601612ecc565b9150509250929050565b60008115159050919050565b612f3681612f21565b82525050565b6000602082019050612f516000830184612f2d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9482612e3f565b810181811067ffffffffffffffff82111715612fb357612fb2612f5c565b5b80604052505050565b6000612fc6612d5a565b9050612fd28282612f8b565b919050565b600067ffffffffffffffff821115612ff257612ff1612f5c565b5b602082029050602081019050919050565b600080fd5b600061301b61301684612fd7565b612fbc565b9050808382526020820190506020840283018581111561303e5761303d613003565b5b835b8181101561306757806130538882612db7565b845260208401935050602081019050613040565b5050509392505050565b600082601f83011261308657613085612f57565b5b8135613096848260208601613008565b91505092915050565b6130a881612f21565b81146130b357600080fd5b50565b6000813590506130c58161309f565b92915050565b600080604083850312156130e2576130e1612d64565b5b600083013567ffffffffffffffff811115613100576130ff612d69565b5b61310c85828601613071565b925050602061311d858286016130b6565b9150509250929050565b61313081612eab565b82525050565b600060208201905061314b6000830184613127565b92915050565b60008060006060848603121561316a57613169612d64565b5b600061317886828701612db7565b935050602061318986828701612db7565b925050604061319a86828701612ecc565b9150509250925092565b600060ff82169050919050565b6131ba816131a4565b82525050565b60006020820190506131d560008301846131b1565b92915050565b6000602082840312156131f1576131f0612d64565b5b60006131ff84828501612ecc565b91505092915050565b61321181612d8e565b82525050565b600060208201905061322c6000830184613208565b92915050565b6000806040838503121561324957613248612d64565b5b600061325785828601612db7565b925050602061326885828601612db7565b9150509250929050565b60006020828403121561328857613287612d64565b5b6000613296848285016130b6565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d5602083612e04565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60008151905061331a81612eb5565b92915050565b60006020828403121561333657613335612d64565b5b60006133448482850161330b565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b6000613383600983612e04565b915061338e8261334d565b602082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b60006040820190506133ce6000830185613208565b6133db6020830184613127565b9392505050565b6000815190506133f18161309f565b92915050565b60006020828403121561340d5761340c612d64565b5b600061341b848285016133e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b60208210810361347e5761347d613424565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ed82612eab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361351f5761351e6134b3565b5b600182019050919050565b600081905092915050565b50565b600061354560008361352a565b915061355082613535565b600082019050919050565b600061356682613538565b9150819050919050565b600061357b82612eab565b915061358683612eab565b925082820190508082111561359e5761359d6134b3565b5b92915050565b7f4b454b493a204d61782062757920616d6f756e742063616e6e6f74206265206c60008201527f6f776572207468616e20302e312520746f74616c20737570706c792e00000000602082015250565b6000613600603c83612e04565b915061360b826135a4565b604082019050919050565b6000602082019050818103600083015261362f816135f3565b9050919050565b7f4b454b493a2073776170466565436f6c6c6563746f722061646472657373206360008201527f616e6e6f74206265203000000000000000000000000000000000000000000000602082015250565b6000613692602a83612e04565b915061369d82613636565b604082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4b454b493a204d61782077616c6c657420616d6f756e742063616e6e6f74206260008201527f65206c6f776572207468616e20312520746f74616c20737570706c792e000000602082015250565b6000613724603d83612e04565b915061372f826136c8565b604082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4b454b493a204d61782073656c6c20616d6f756e742063616e6e6f742062652060008201527f6c6f776572207468616e20302e312520746f74616c20737570706c792e000000602082015250565b60006137b6603d83612e04565b91506137c18261375a565b604082019050919050565b600060208201905081810360008301526137e5816137a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613848602583612e04565b9150613853826137ec565b604082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f4b454b493a205377617020616d6f756e742063616e6e6f74206265206c6f776560008201527f72207468616e20302e3030312520746f74616c20737570706c792e0000000000602082015250565b60006138da603b83612e04565b91506138e58261387e565b604082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f4b454b493a205377617020616d6f756e742063616e6e6f74206265206869676860008201527f6572207468616e20302e352520746f74616c20737570706c792e000000000000602082015250565b600061396c603a83612e04565b915061397782613910565b604082019050919050565b6000602082019050818103600083015261399b8161395f565b9050919050565b7f4b454b493a2054726164696e6720697320616c7265616479206f70656e000000600082015250565b60006139d8601d83612e04565b91506139e3826139a2565b602082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b6000819050919050565b6000819050919050565b6000613a3d613a38613a3384613a0e565b613a18565b612eab565b9050919050565b613a4d81613a22565b82525050565b600060c082019050613a686000830189613208565b613a756020830188613127565b613a826040830187613a44565b613a8f6060830186613a44565b613a9c6080830185613208565b613aa960a0830184613127565b979650505050505050565b600080600060608486031215613acd57613acc612d64565b5b6000613adb8682870161330b565b9350506020613aec8682870161330b565b9250506040613afd8682870161330b565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b63602683612e04565b9150613b6e82613b07565b604082019050919050565b60006020820190508181036000830152613b9281613b56565b9050919050565b6000613ba482612eab565b9150613baf83612eab565b9250828202613bbd81612eab565b91508282048414831517613bd457613bd36134b3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c1582612eab565b9150613c2083612eab565b925082613c3057613c2f613bdb565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c97602483612e04565b9150613ca282613c3b565b604082019050919050565b60006020820190508181036000830152613cc681613c8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d29602283612e04565b9150613d3482613ccd565b604082019050919050565b60006020820190508181036000830152613d5881613d1c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d95601d83612e04565b9150613da082613d5f565b602082019050919050565b60006020820190508181036000830152613dc481613d88565b9050919050565b7f4b454b493a207472616e736665722066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e27602483612e04565b9150613e3282613dcb565b604082019050919050565b60006020820190508181036000830152613e5681613e1a565b9050919050565b7f4b454b493a207472616e7366657220746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb9602283612e04565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206d75737420626520677260008201527f6561746572207468616e207a65726f0000000000000000000000000000000000602082015250565b6000613f4b602f83612e04565b9150613f5682613eef565b604082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4b454b493a2054726164696e67206973206e6f7420616c6c6f7765642079657460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fdd602183612e04565b9150613fe882613f81565b604082019050919050565b6000602082019050818103600083015261400c81613fd0565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206578636565647320746860008201527f65206d6178427579416d6e742e00000000000000000000000000000000000000602082015250565b600061406f602d83612e04565b915061407a82614013565b604082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f4b454b493a2045786365656473206d6178696d756d2077616c6c657420746f6b60008201527f656e20616d6f756e742e00000000000000000000000000000000000000000000602082015250565b6000614101602a83612e04565b915061410c826140a5565b604082019050919050565b60006020820190508181036000830152614130816140f4565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206578636565647320746860008201527f65206d617853656c6c416d6e742e000000000000000000000000000000000000602082015250565b6000614193602e83612e04565b915061419e82614137565b604082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b6000815190506141d881612da0565b92915050565b6000602082840312156141f4576141f3612d64565b5b6000614202848285016141c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424081612d8e565b82525050565b60006142528383614237565b60208301905092915050565b6000602082019050919050565b60006142768261420b565b6142808185614216565b935061428b83614227565b8060005b838110156142bc5781516142a38882614246565b97506142ae8361425e565b92505060018101905061428f565b5085935050505092915050565b60006142e46142df6142da84612d6e565b613a18565b612d6e565b9050919050565b60006142f6826142c9565b9050919050565b6000614308826142eb565b9050919050565b614318816142fd565b82525050565b600060a0820190506143336000830188613127565b6143406020830187613a44565b8181036040830152614352818661426b565b9050614361606083018561430f565b61436e6080830184613127565b9695505050505050565b600061438382612eab565b915061438e83612eab565b92508282039050818111156143a6576143a56134b3565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614408602583612e04565b9150614413826143ac565b604082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061449a602383612e04565b91506144a58261443e565b604082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061452c602683612e04565b9150614537826144d0565b604082019050919050565b6000602082019050818103600083015261455b8161451f565b905091905056fea2646970667358221220262e8d6f75f781a246c91c9739877cf9fbccdf49957efb25332ad8a428b70fca64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101db5760003560e01c806387f99ec611610102578063a9059cbb11610095578063e01af92c11610064578063e01af92c146106a1578063f2fde38b146106ca578063f5a6682f146106f3578063ffb54a991461071c576101e2565b8063a9059cbb146105e7578063afa4f3b214610624578063c9567bf91461064d578063dd62ed3e14610664576101e2565b806395d89b41116100d157806395d89b411461052b5780639c61a17714610556578063a457c2d71461057f578063a9059942146105bc576101e2565b806387f99ec6146104835780638b56caa6146104ac5780638da5cb5b146104d5578063959fa33514610500576101e2565b8063313ce5671161017a5780636ddd1713116101495780636ddd1713146103db57806370a0823114610406578063715018a6146104435780637fdaa34d1461045a576101e2565b8063313ce5671461031d57806338cb060614610348578063395093511461037357806354cf2aeb146103b0576101e2565b8063105222f9116101b6578063105222f91461027557806318160ddd1461029e57806320800a00146102c957806323b872dd146102e0576101e2565b8062ae3bf8146101e457806306fdde031461020d578063095ea7b314610238576101e2565b366101e257005b005b3480156101f057600080fd5b5061020b60048036038101906102069190612dcc565b610747565b005b34801561021957600080fd5b50610222610980565b60405161022f9190612e89565b60405180910390f35b34801561024457600080fd5b5061025f600480360381019061025a9190612ee1565b610a12565b60405161026c9190612f3c565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906130cb565b610a35565b005b3480156102aa57600080fd5b506102b3610b46565b6040516102c09190613136565b60405180910390f35b3480156102d557600080fd5b506102de610b50565b005b3480156102ec57600080fd5b5061030760048036038101906103029190613151565b610c3d565b6040516103149190612f3c565b60405180910390f35b34801561032957600080fd5b50610332610c6c565b60405161033f91906131c0565b60405180910390f35b34801561035457600080fd5b5061035d610c75565b60405161036a9190613136565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612ee1565b610c7b565b6040516103a79190612f3c565b60405180910390f35b3480156103bc57600080fd5b506103c5610d25565b6040516103d29190613136565b60405180910390f35b3480156103e757600080fd5b506103f0610d2b565b6040516103fd9190612f3c565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612dcc565b610d3e565b60405161043a9190613136565b60405180910390f35b34801561044f57600080fd5b50610458610d86565b005b34801561046657600080fd5b50610481600480360381019061047c91906131db565b610e0e565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190612dcc565b610f05565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906131db565b611105565b005b3480156104e157600080fd5b506104ea6111fb565b6040516104f79190613217565b60405180910390f35b34801561050c57600080fd5b50610515611225565b6040516105229190613136565b60405180910390f35b34801561053757600080fd5b5061054061122b565b60405161054d9190612e89565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906131db565b6112bd565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612ee1565b6113b4565b6040516105b39190612f3c565b60405180910390f35b3480156105c857600080fd5b506105d161149e565b6040516105de9190613136565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612ee1565b6114a4565b60405161061b9190612f3c565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131db565b6114c7565b005b34801561065957600080fd5b50610662611630565b005b34801561067057600080fd5b5061068b60048036038101906106869190613232565b6117f0565b6040516106989190613136565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613272565b611877565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612dcc565b611910565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906130cb565b611a07565b005b34801561072857600080fd5b50610731611b18565b60405161073e9190612f3c565b60405180910390f35b61074f611b57565b73ffffffffffffffffffffffffffffffffffffffff1661076d6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba906132eb565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107fe9190613217565b602060405180830381865afa15801561081b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083f9190613320565b1161087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613399565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108ba9190613217565b602060405180830381865afa1580156108d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fb9190613320565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109389291906133b9565b6020604051808303816000875af1158015610957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097b91906133f7565b505050565b60606003805461098f90613453565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90613453565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b600080610a1d611b57565b9050610a2a818585611b5f565b600191505092915050565b610a3d611b57565b73ffffffffffffffffffffffffffffffffffffffff16610a5b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906132eb565b60405180910390fd5b60005b8251811015610b41578160086000858481518110610ad557610ad4613484565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b39906134e2565b915050610ab4565b505050565b6000600254905090565b610b58611b57565b73ffffffffffffffffffffffffffffffffffffffff16610b766111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906132eb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bf29061355b565b60006040518083038185875af1925050503d8060008114610c2f576040519150601f19603f3d011682016040523d82523d6000602084013e610c34565b606091505b50508091505050565b600080610c48611b57565b9050610c55858285611d28565b610c60858585611db4565b60019150509392505050565b60006012905090565b600b5481565b600080610c86611b57565b9050610d1a818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d159190613570565b611b5f565b600191505092915050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d8e611b57565b73ffffffffffffffffffffffffffffffffffffffff16610dac6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906132eb565b60405180910390fd5b610e0c6000612653565b565b610e16611b57565b73ffffffffffffffffffffffffffffffffffffffff16610e346111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906132eb565b60405180910390fd5b610eb96103e8610eab6001610e9d610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b811015610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613616565b60405180910390fd5b80600b8190555050565b610f0d611b57565b73ffffffffffffffffffffffffffffffffffffffff16610f2b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f78906132eb565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611008906136a8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61110d611b57565b73ffffffffffffffffffffffffffffffffffffffff1661112b6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906132eb565b60405180910390fd5b6111af60646111a16001611193610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061373a565b60405180910390fd5b80600d8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461123a90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613453565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6112c5611b57565b73ffffffffffffffffffffffffffffffffffffffff166112e36111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906132eb565b60405180910390fd5b6113686103e861135a600161134c610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906137cc565b60405180910390fd5b80600c8190555050565b6000806113bf611b57565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061385e565b60405180910390fd5b6114928286868403611b5f565b60019250505092915050565b600c5481565b6000806114af611b57565b90506114bc818585611db4565b600191505092915050565b6114cf611b57565b73ffffffffffffffffffffffffffffffffffffffff166114ed6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906132eb565b60405180910390fd5b611573620186a06115656001611557610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b8110156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac906138f0565b60405180910390fd5b6115e46103e86115d660056115c8610b46565b611b2b90919063ffffffff16565b611b4190919063ffffffff16565b811115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613982565b60405180910390fd5b8060118190555050565b611638611b57565b73ffffffffffffffffffffffffffffffffffffffff166116566111fb565b73ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906132eb565b60405180910390fd5b600a60009054906101000a900460ff16156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906139ee565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061174530610d3e565b6000806117506111fb565b426040518863ffffffff1660e01b815260040161177296959493929190613a53565b60606040518083038185885af1158015611790573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117b59190613ab4565b5050506001600a60026101000a81548160ff0219169083151502179055506001600a60006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187f611b57565b73ffffffffffffffffffffffffffffffffffffffff1661189d6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906132eb565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b611918611b57565b73ffffffffffffffffffffffffffffffffffffffff166119366111fb565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906132eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613b79565b60405180910390fd5b611a0481612653565b50565b611a0f611b57565b73ffffffffffffffffffffffffffffffffffffffff16611a2d6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a906132eb565b60405180910390fd5b60005b8251811015611b13578160096000858481518110611aa757611aa6613484565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b0b906134e2565b915050611a86565b505050565b600a60009054906101000a900460ff1681565b60008183611b399190613b99565b905092915050565b60008183611b4f9190613c0a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590613cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613d3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d1b9190613136565b60405180910390a3505050565b6000611d3484846117f0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dae5781811015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613dab565b60405180910390fd5b611dad8484848403611b5f565b5b50505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90613e3d565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90613ecf565b60405180910390fd5b60008111611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613f61565b60405180910390fd5b6000600190506000611f276111fb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611f955750611f656111fb565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611fef5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156120495750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156120625750600a60019054906101000a900460ff16155b1561245157600a60009054906101000a900460ff1661215c57600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061211c5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290613ff3565b60405180910390fd5b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156122075750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561225d5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230057600b548311156122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614085565b60405180910390fd5b600d54836122b486610d3e565b6122be9190613570565b11156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f690614117565b60405180910390fd5b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156123ab5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156124015750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561245057600c5483111561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906141a9565b60405180910390fd5b600190505b5b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124f25750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124fc57600091505b600061250730610d3e565b90506000601154821180156125195750825b90508080156125345750600a60029054906101000a900460ff165b801561254d5750600a60019054906101000a900460ff16155b80156125a35750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125f95750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561263e576001600a60016101000a81548160ff02191690831515021790555061262282612719565b6000600a60016101000a81548160ff0219169083151502179055505b61264a8787878761276b565b50505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081148061272a57506000601054145b61276857600560115461273d9190613b99565b8111156127565760056011546127539190613b99565b90505b61275f816127a9565b60006010819055505b50565b8061277d57612778612a0e565b61278a565b6127878483612a2d565b91505b612795848484612ac6565b806127a3576127a2612d45565b5b50505050565b6000600267ffffffffffffffff8111156127c6576127c5612f5c565b5b6040519080825280602002602001820160405280156127f45781602001602082028036833780820191505090505b509050308160008151811061280c5761280b613484565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d791906141de565b816001815181106128eb576128ea613484565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061295230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b5f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016129d895949392919061431e565b600060405180830381600087803b1580156129f257600080fd5b505af1158015612a06573d6000803e3d6000fd5b505050505050565b6000600e540315612a2b57600e54600f819055506000600e819055505b565b600080600e541115612abd576000612a636064612a55600e5486611b2b90919063ffffffff16565b611b4190919063ffffffff16565b9050600e54600e5482612a769190613b99565b612a809190613c0a565b60106000828254612a919190613570565b925050819055506000811115612aad57612aac843083612ac6565b5b8083612ab99190614378565b9250505b81905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c9061441e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9b906144b0565b60405180910390fd5b612baf838383612d50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614542565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cc89190613570565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d2c9190613136565b60405180910390a3612d3f848484612d55565b50505050565b600f54600e81905550565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9982612d6e565b9050919050565b612da981612d8e565b8114612db457600080fd5b50565b600081359050612dc681612da0565b92915050565b600060208284031215612de257612de1612d64565b5b6000612df084828501612db7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e33578082015181840152602081019050612e18565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e5b82612df9565b612e658185612e04565b9350612e75818560208601612e15565b612e7e81612e3f565b840191505092915050565b60006020820190508181036000830152612ea38184612e50565b905092915050565b6000819050919050565b612ebe81612eab565b8114612ec957600080fd5b50565b600081359050612edb81612eb5565b92915050565b60008060408385031215612ef857612ef7612d64565b5b6000612f0685828601612db7565b9250506020612f1785828601612ecc565b9150509250929050565b60008115159050919050565b612f3681612f21565b82525050565b6000602082019050612f516000830184612f2d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9482612e3f565b810181811067ffffffffffffffff82111715612fb357612fb2612f5c565b5b80604052505050565b6000612fc6612d5a565b9050612fd28282612f8b565b919050565b600067ffffffffffffffff821115612ff257612ff1612f5c565b5b602082029050602081019050919050565b600080fd5b600061301b61301684612fd7565b612fbc565b9050808382526020820190506020840283018581111561303e5761303d613003565b5b835b8181101561306757806130538882612db7565b845260208401935050602081019050613040565b5050509392505050565b600082601f83011261308657613085612f57565b5b8135613096848260208601613008565b91505092915050565b6130a881612f21565b81146130b357600080fd5b50565b6000813590506130c58161309f565b92915050565b600080604083850312156130e2576130e1612d64565b5b600083013567ffffffffffffffff811115613100576130ff612d69565b5b61310c85828601613071565b925050602061311d858286016130b6565b9150509250929050565b61313081612eab565b82525050565b600060208201905061314b6000830184613127565b92915050565b60008060006060848603121561316a57613169612d64565b5b600061317886828701612db7565b935050602061318986828701612db7565b925050604061319a86828701612ecc565b9150509250925092565b600060ff82169050919050565b6131ba816131a4565b82525050565b60006020820190506131d560008301846131b1565b92915050565b6000602082840312156131f1576131f0612d64565b5b60006131ff84828501612ecc565b91505092915050565b61321181612d8e565b82525050565b600060208201905061322c6000830184613208565b92915050565b6000806040838503121561324957613248612d64565b5b600061325785828601612db7565b925050602061326885828601612db7565b9150509250929050565b60006020828403121561328857613287612d64565b5b6000613296848285016130b6565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d5602083612e04565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60008151905061331a81612eb5565b92915050565b60006020828403121561333657613335612d64565b5b60006133448482850161330b565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b6000613383600983612e04565b915061338e8261334d565b602082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b60006040820190506133ce6000830185613208565b6133db6020830184613127565b9392505050565b6000815190506133f18161309f565b92915050565b60006020828403121561340d5761340c612d64565b5b600061341b848285016133e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b60208210810361347e5761347d613424565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ed82612eab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361351f5761351e6134b3565b5b600182019050919050565b600081905092915050565b50565b600061354560008361352a565b915061355082613535565b600082019050919050565b600061356682613538565b9150819050919050565b600061357b82612eab565b915061358683612eab565b925082820190508082111561359e5761359d6134b3565b5b92915050565b7f4b454b493a204d61782062757920616d6f756e742063616e6e6f74206265206c60008201527f6f776572207468616e20302e312520746f74616c20737570706c792e00000000602082015250565b6000613600603c83612e04565b915061360b826135a4565b604082019050919050565b6000602082019050818103600083015261362f816135f3565b9050919050565b7f4b454b493a2073776170466565436f6c6c6563746f722061646472657373206360008201527f616e6e6f74206265203000000000000000000000000000000000000000000000602082015250565b6000613692602a83612e04565b915061369d82613636565b604082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4b454b493a204d61782077616c6c657420616d6f756e742063616e6e6f74206260008201527f65206c6f776572207468616e20312520746f74616c20737570706c792e000000602082015250565b6000613724603d83612e04565b915061372f826136c8565b604082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4b454b493a204d61782073656c6c20616d6f756e742063616e6e6f742062652060008201527f6c6f776572207468616e20302e312520746f74616c20737570706c792e000000602082015250565b60006137b6603d83612e04565b91506137c18261375a565b604082019050919050565b600060208201905081810360008301526137e5816137a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613848602583612e04565b9150613853826137ec565b604082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f4b454b493a205377617020616d6f756e742063616e6e6f74206265206c6f776560008201527f72207468616e20302e3030312520746f74616c20737570706c792e0000000000602082015250565b60006138da603b83612e04565b91506138e58261387e565b604082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f4b454b493a205377617020616d6f756e742063616e6e6f74206265206869676860008201527f6572207468616e20302e352520746f74616c20737570706c792e000000000000602082015250565b600061396c603a83612e04565b915061397782613910565b604082019050919050565b6000602082019050818103600083015261399b8161395f565b9050919050565b7f4b454b493a2054726164696e6720697320616c7265616479206f70656e000000600082015250565b60006139d8601d83612e04565b91506139e3826139a2565b602082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b6000819050919050565b6000819050919050565b6000613a3d613a38613a3384613a0e565b613a18565b612eab565b9050919050565b613a4d81613a22565b82525050565b600060c082019050613a686000830189613208565b613a756020830188613127565b613a826040830187613a44565b613a8f6060830186613a44565b613a9c6080830185613208565b613aa960a0830184613127565b979650505050505050565b600080600060608486031215613acd57613acc612d64565b5b6000613adb8682870161330b565b9350506020613aec8682870161330b565b9250506040613afd8682870161330b565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b63602683612e04565b9150613b6e82613b07565b604082019050919050565b60006020820190508181036000830152613b9281613b56565b9050919050565b6000613ba482612eab565b9150613baf83612eab565b9250828202613bbd81612eab565b91508282048414831517613bd457613bd36134b3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c1582612eab565b9150613c2083612eab565b925082613c3057613c2f613bdb565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c97602483612e04565b9150613ca282613c3b565b604082019050919050565b60006020820190508181036000830152613cc681613c8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d29602283612e04565b9150613d3482613ccd565b604082019050919050565b60006020820190508181036000830152613d5881613d1c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d95601d83612e04565b9150613da082613d5f565b602082019050919050565b60006020820190508181036000830152613dc481613d88565b9050919050565b7f4b454b493a207472616e736665722066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e27602483612e04565b9150613e3282613dcb565b604082019050919050565b60006020820190508181036000830152613e5681613e1a565b9050919050565b7f4b454b493a207472616e7366657220746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb9602283612e04565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206d75737420626520677260008201527f6561746572207468616e207a65726f0000000000000000000000000000000000602082015250565b6000613f4b602f83612e04565b9150613f5682613eef565b604082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4b454b493a2054726164696e67206973206e6f7420616c6c6f7765642079657460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fdd602183612e04565b9150613fe882613f81565b604082019050919050565b6000602082019050818103600083015261400c81613fd0565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206578636565647320746860008201527f65206d6178427579416d6e742e00000000000000000000000000000000000000602082015250565b600061406f602d83612e04565b915061407a82614013565b604082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f4b454b493a2045786365656473206d6178696d756d2077616c6c657420746f6b60008201527f656e20616d6f756e742e00000000000000000000000000000000000000000000602082015250565b6000614101602a83612e04565b915061410c826140a5565b604082019050919050565b60006020820190508181036000830152614130816140f4565b9050919050565b7f4b454b493a205472616e7366657220616d6f756e74206578636565647320746860008201527f65206d617853656c6c416d6e742e000000000000000000000000000000000000602082015250565b6000614193602e83612e04565b915061419e82614137565b604082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b6000815190506141d881612da0565b92915050565b6000602082840312156141f4576141f3612d64565b5b6000614202848285016141c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424081612d8e565b82525050565b60006142528383614237565b60208301905092915050565b6000602082019050919050565b60006142768261420b565b6142808185614216565b935061428b83614227565b8060005b838110156142bc5781516142a38882614246565b97506142ae8361425e565b92505060018101905061428f565b5085935050505092915050565b60006142e46142df6142da84612d6e565b613a18565b612d6e565b9050919050565b60006142f6826142c9565b9050919050565b6000614308826142eb565b9050919050565b614318816142fd565b82525050565b600060a0820190506143336000830188613127565b6143406020830187613a44565b8181036040830152614352818661426b565b9050614361606083018561430f565b61436e6080830184613127565b9695505050505050565b600061438382612eab565b915061438e83612eab565b92508282039050818111156143a6576143a56134b3565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614408602583612e04565b9150614413826143ac565b604082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061449a602383612e04565b91506144a58261443e565b604082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061452c602683612e04565b9150614537826144d0565b604082019050919050565b6000602082019050818103600083015261455b8161451f565b905091905056fea2646970667358221220262e8d6f75f781a246c91c9739877cf9fbccdf49957efb25332ad8a428b70fca64736f6c63430008110033

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.