ETH Price: $3,512.43 (+4.19%)
Gas: 4 Gwei

Token

Bonsai3 (SEED)
 

Overview

Max Total Supply

1,000,000,000 SEED

Holders

2,388 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH (-3.23%)

Onchain Market Cap

$10,300,999.65

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,933,067.754903879927144105 SEED

Value
$50,815.53 ( ~14.4673 Eth) [0.4933%]
0x70b72bb6b9295d19c2e5ed20b4a95fe14cf97fcc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bonsai3 is building the WordPress of Web3, delivering a self-service toolkit that helps teams deploy projects faster, cheaper, and more securely. Our user-friendly platform suits pre, mid, and post-launch projects at every scale.

Market

Volume (24H):$65,236.04
Market Capitalization:$0.00
Circulating Supply:0.00 SEED
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Seed

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 8 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 9 of 9 : Seed.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

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

contract Seed is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public routerCA = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) public blocked;
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    uint256 private launchBlock;

    // first 4 blocks after enabling trading, charge 10x tax
    uint256 private deadBlocks = 4;

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

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;
    uint256 public buyBuybackFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellBuybackFee;

    uint256 public feeFactor;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;

    address treasuryWallet =
        address(0x880C21f00A3e89B897473DB1019886633189Cf5f);
    address buyBackWallet = address(0xDE12beb9C9Fa3439354CD148A4c4d77C757Ab7d8);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event BoughtEarly(address indexed sniper);

    constructor() ERC20("Bonsai3", "SEED") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerCA);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // liquidity deployer wallet
        _isExcludedFromFees[0x3719ef5ec3cf824D7b1CB2B1cF0e492dd2D9C6Ec] = true;

        uint256 _totalSupply = 1_000_000_000 * 1 ether;

        buyTreasuryFee = 30; // 3.0%;
        buyBuybackFee = 10; // 1.0%;

        sellTreasuryFee = 30; // 3.0%;
        sellBuybackFee = 10; // 1.0%;

        buyTotalFees = buyTreasuryFee + buyBuybackFee;
        sellTotalFees = sellTreasuryFee + sellBuybackFee;

        feeFactor = 10;

        maxTransactionAmount = _totalSupply / 200; // 0.5% max txn
        swapTokensAtAmount = _totalSupply / 20000; // 0.005% swap wallet
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    fallback() external payable {}

    function updateMaxTxnAmount(uint256 newNumInEth) external onlyOwner {
        require(
            newNumInEth >= (totalSupply() / 10000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.01%"
        );
        maxTransactionAmount = newNumInEth * (10 ** 18);
    }

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Token launched");
        tradingActive = true;
        launchBlock = block.number;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(!blocked[from], "Sniper blocked");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                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."
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 treasuryFees = 0;
        uint256 buybackFees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * (sellTotalFees)) / feeFactor / 100;
                treasuryFees += (fees * sellTreasuryFee) / sellTotalFees;
                buybackFees += (fees * sellBuybackFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / feeFactor / 100;
                treasuryFees += (fees * buyTreasuryFee) / buyTotalFees;
                buybackFees += (fees * buyBuybackFee) / buyTotalFees;
            }

            if (block.number <= launchBlock + deadBlocks) {
                treasuryFees = treasuryFees * 10;
                buybackFees = buybackFees * 10;
                fees = fees * 10;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForBuyBack = (ethBalance *
            (buyBuybackFee + sellBuybackFee)) / (buyTotalFees + sellTotalFees);

        uint256 ethForTreasury = ethBalance - ethForBuyBack;

        (success, ) = address(treasuryWallet).call{value: ethForTreasury}("");
        (success, ) = address(buyBackWallet).call{value: ethForBuyBack}("");
    }

    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 updateBuyTax(
        uint256 _treasuryTax, // 10 = 1%
        uint256 _buybackTax
    ) external onlyOwner {
        buyTreasuryFee = _treasuryTax;
        buyBuybackFee = _buybackTax;
        buyTotalFees = buyTreasuryFee + buyBuybackFee;
        require(buyTotalFees <= 10 * feeFactor); // max 10%
    }

    function updateSellTax(
        uint256 _treasuryTax, // 10 = 1%
        uint256 _buybackTax
    ) external onlyOwner {
        sellTreasuryFee = _treasuryTax;
        sellBuybackFee = _buybackTax;
        sellTotalFees = sellTreasuryFee + sellBuybackFee;
        require(sellTotalFees <= 10 * feeFactor); // max 10%
    }

    function multiBlock(
        address[] calldata blockees,
        bool shouldBlock
    ) external onlyOwner {
        for (uint256 i = 0; i < blockees.length; i++) {
            address blockee = blockees[i];
            if (
                blockee != address(this) &&
                blockee != routerCA &&
                blockee != address(uniswapV2Pair)
            ) blocked[blockee] = shouldBlock;
        }
    }

    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"","type":"address"}],"name":"blocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"blockees","type":"address[]"},{"internalType":"bool","name":"shouldBlock","type":"bool"}],"name":"multiBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerCA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryTax","type":"uint256"},{"internalType":"uint256","name":"_buybackTax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumInEth","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryTax","type":"uint256"},{"internalType":"uint256","name":"_buybackTax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860006101000a81548160ff0219169083151502179055506001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506004600c5573880c21f00a3e89b897473db1019886633189cf5f601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073de12beb9c9fa3439354cd148a4c4d77c757ab7d8601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200018157600080fd5b506040518060400160405280600781526020017f426f6e73616933000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53454544000000000000000000000000000000000000000000000000000000008152508160039081620001ff919062000c04565b50806004908162000211919062000c04565b50505062000234620002286200057e60201b60201c565b6200058660201b60201c565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506200026e8160016200064c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000314919062000d55565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200037c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a2919062000d55565b6040518363ffffffff1660e01b8152600401620003c192919062000d98565b6020604051808303816000875af1158015620003e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000407919062000d55565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200044f60a05160016200064c60201b60201c565b6200046460a0516001620006b760201b60201c565b6001600d6000733719ef5ec3cf824d7b1cb2b1cf0e492dd2d9c6ec73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006b033b2e3c9fd0803ce80000009050601e601081905550600a601181905550601e601381905550600a60148190555060115460105462000513919062000df4565b600f819055506014546013546200052b919062000df4565b601281905550600a60158190555060c88162000548919062000e5e565b601681905550614e20816200055e919062000e5e565b6017819055506200057633826200075860201b60201c565b505062000fb9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200065c620008c560201b60201c565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c19062000ef7565b60405180910390fd5b620007de600083836200095660201b60201c565b8060026000828254620007f2919062000df4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008a5919062000f2a565b60405180910390a3620008c1600083836200095b60201b60201c565b5050565b620008d56200057e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008fb6200096060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000954576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200094b9062000f97565b60405180910390fd5b565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a0c57607f821691505b60208210810362000a225762000a21620009c4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a4d565b62000a98868362000a4d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ae562000adf62000ad98462000ab0565b62000aba565b62000ab0565b9050919050565b6000819050919050565b62000b018362000ac4565b62000b1962000b108262000aec565b84845462000a5a565b825550505050565b600090565b62000b3062000b21565b62000b3d81848462000af6565b505050565b5b8181101562000b655762000b5960008262000b26565b60018101905062000b43565b5050565b601f82111562000bb45762000b7e8162000a28565b62000b898462000a3d565b8101602085101562000b99578190505b62000bb162000ba88562000a3d565b83018262000b42565b50505b505050565b600082821c905092915050565b600062000bd96000198460080262000bb9565b1980831691505092915050565b600062000bf4838362000bc6565b9150826002028217905092915050565b62000c0f826200098a565b67ffffffffffffffff81111562000c2b5762000c2a62000995565b5b62000c378254620009f3565b62000c4482828562000b69565b600060209050601f83116001811462000c7c576000841562000c67578287015190505b62000c73858262000be6565b86555062000ce3565b601f19841662000c8c8662000a28565b60005b8281101562000cb65784890151825560018201915060208501945060208101905062000c8f565b8683101562000cd6578489015162000cd2601f89168262000bc6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d1d8262000cf0565b9050919050565b62000d2f8162000d10565b811462000d3b57600080fd5b50565b60008151905062000d4f8162000d24565b92915050565b60006020828403121562000d6e5762000d6d62000ceb565b5b600062000d7e8482850162000d3e565b91505092915050565b62000d928162000d10565b82525050565b600060408201905062000daf600083018562000d87565b62000dbe602083018462000d87565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e018262000ab0565b915062000e0e8362000ab0565b925082820190508082111562000e295762000e2862000dc5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e6b8262000ab0565b915062000e788362000ab0565b92508262000e8b5762000e8a62000e2f565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000edf601f8362000e96565b915062000eec8262000ea7565b602082019050919050565b6000602082019050818103600083015262000f128162000ed0565b9050919050565b62000f248162000ab0565b82525050565b600060208201905062000f41600083018462000f19565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f7f60208362000e96565b915062000f8c8262000f47565b602082019050919050565b6000602082019050818103600083015262000fb28162000f70565b9050919050565b60805160a05161390d6200100260003960008181610bbd01528181610e91015261109a015260008181610a8b0152818161259401528181612675015261269c015261390d6000f3fe60806040526004361061024a5760003560e01c806371a5152211610139578063b38d5ef4116100b6578063d85ba0631161007a578063d85ba06314610890578063dd62ed3e146108bb578063e2f45605146108f8578063e596219514610923578063f2fde38b14610960578063f91d27c11461098957610251565b8063b38d5ef4146107ab578063b62496f5146107d4578063b79c188614610811578063bbc0c7421461083a578063c8c8ebe41461086557610251565b806395d89b41116100fd57806395d89b41146106b45780639a7a23d6146106df578063a457c2d714610708578063a9059cbb14610745578063ae303d071461078257610251565b806371a51522146105f3578063751039fc1461061e5780637571336a146106495780638a8c523c146106725780638da5cb5b1461068957610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051e5780636b2fb124146105495780636ddd17131461057457806370a082311461059f578063715018a6146105dc57610251565b806349bd5a5e146104475780634a62bb6514610472578063534c09061461049d578063540ba552146104c85780635c068a8c146104f357610251565b8063203e727e1161020e578063203e727e1461034e57806323b872dd1461037757806327c8f835146103b4578063313ce567146103df578063395093511461040a57610251565b806306fdde0314610253578063095ea7b31461027e57806310d5de53146102bb5780631694505e146102f857806318160ddd1461032357610251565b3661025157005b005b34801561025f57600080fd5b506102686109b4565b60405161027591906127c2565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a09190612882565b610a46565b6040516102b291906128dd565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906128f8565b610a69565b6040516102ef91906128dd565b60405180910390f35b34801561030457600080fd5b5061030d610a89565b60405161031a9190612984565b60405180910390f35b34801561032f57600080fd5b50610338610aad565b60405161034591906129ae565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906129c9565b610ab7565b005b34801561038357600080fd5b5061039e600480360381019061039991906129f6565b610b46565b6040516103ab91906128dd565b60405180910390f35b3480156103c057600080fd5b506103c9610b75565b6040516103d69190612a58565b60405180910390f35b3480156103eb57600080fd5b506103f4610b7b565b6040516104019190612a8f565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612882565b610b84565b60405161043e91906128dd565b60405180910390f35b34801561045357600080fd5b5061045c610bbb565b6040516104699190612a58565b60405180910390f35b34801561047e57600080fd5b50610487610bdf565b60405161049491906128dd565b60405180910390f35b3480156104a957600080fd5b506104b2610bf2565b6040516104bf9190612a58565b60405180910390f35b3480156104d457600080fd5b506104dd610c18565b6040516104ea91906129ae565b60405180910390f35b3480156104ff57600080fd5b50610508610c1e565b60405161051591906129ae565b60405180910390f35b34801561052a57600080fd5b50610533610c24565b60405161054091906129ae565b60405180910390f35b34801561055557600080fd5b5061055e610c2a565b60405161056b91906129ae565b60405180910390f35b34801561058057600080fd5b50610589610c30565b60405161059691906128dd565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906128f8565b610c43565b6040516105d391906129ae565b60405180910390f35b3480156105e857600080fd5b506105f1610c8b565b005b3480156105ff57600080fd5b50610608610c9f565b60405161061591906129ae565b60405180910390f35b34801561062a57600080fd5b50610633610ca5565b60405161064091906128dd565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612ad6565b610cd1565b005b34801561067e57600080fd5b50610687610d34565b005b34801561069557600080fd5b5061069e610dcb565b6040516106ab9190612a58565b60405180910390f35b3480156106c057600080fd5b506106c9610df5565b6040516106d691906127c2565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612ad6565b610e87565b005b34801561071457600080fd5b5061072f600480360381019061072a9190612882565b610f2b565b60405161073c91906128dd565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612882565b610fa2565b60405161077991906128dd565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612b7b565b610fc5565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190612bdb565b611160565b005b3480156107e057600080fd5b506107fb60048036038101906107f691906128f8565b6111ad565b60405161080891906128dd565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190612bdb565b6111cd565b005b34801561084657600080fd5b5061084f61121a565b60405161085c91906128dd565b60405180910390f35b34801561087157600080fd5b5061087a61122d565b60405161088791906129ae565b60405180910390f35b34801561089c57600080fd5b506108a5611233565b6040516108b291906129ae565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190612c1b565b611239565b6040516108ef91906129ae565b60405180910390f35b34801561090457600080fd5b5061090d6112c0565b60405161091a91906129ae565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906128f8565b6112c6565b60405161095791906128dd565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906128f8565b6112e6565b005b34801561099557600080fd5b5061099e611369565b6040516109ab91906129ae565b60405180910390f35b6060600380546109c390612c8a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90612c8a565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b600080610a5161136f565b9050610a5e818585611377565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610abf611540565b670de0b6b3a7640000612710610ad3610aad565b610add9190612d19565b610ae79190612d19565b811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090612dbc565b60405180910390fd5b670de0b6b3a764000081610b3d9190612ddc565b60168190555050565b600080610b5161136f565b9050610b5e8582856115be565b610b6985858561164a565b60019150509392505050565b61dead81565b60006012905090565b600080610b8f61136f565b9050610bb0818585610ba18589611239565b610bab9190612e1e565b611377565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60105481565b60125481565b60135481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c93611540565b610c9d6000611f4e565b565b60145481565b6000610caf611540565b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610cd9611540565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d3c611540565b600a60019054906101000a900460ff1615610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612e9e565b60405180910390fd5b6001600a60016101000a81548160ff02191690831515021790555043600b819055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e0490612c8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3090612c8a565b8015610e7d5780601f10610e5257610100808354040283529160200191610e7d565b820191906000526020600020905b815481529060010190602001808311610e6057829003601f168201915b5050505050905090565b610e8f611540565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612f30565b60405180910390fd5b610f278282612014565b5050565b600080610f3661136f565b90506000610f448286611239565b905083811015610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612fc2565b60405180910390fd5b610f968286868403611377565b60019250505092915050565b600080610fad61136f565b9050610fba81858561164a565b600191505092915050565b610fcd611540565b60005b8383905081101561115a576000848483818110610ff057610fef612fe2565b5b905060200201602081019061100591906128f8565b90503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156110915750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156110e957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156111465782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50808061115290613011565b915050610fd0565b50505050565b611168611540565b81601081905550806011819055506011546010546111869190612e1e565b600f81905550601554600a61119b9190612ddc565b600f5411156111a957600080fd5b5050565b60076020528060005260406000206000915054906101000a900460ff1681565b6111d5611540565b81601381905550806014819055506014546013546111f39190612e1e565b601281905550601554600a6112089190612ddc565b601254111561121657600080fd5b5050565b600a60019054906101000a900460ff1681565b60165481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60175481565b60096020528060005260406000206000915054906101000a900460ff1681565b6112ee611540565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906130cb565b60405180910390fd5b61136681611f4e565b50565b60155481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061315d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906131ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161153391906129ae565b60405180910390a3505050565b61154861136f565b73ffffffffffffffffffffffffffffffffffffffff16611566610dcb565b73ffffffffffffffffffffffffffffffffffffffff16146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b39061325b565b60405180910390fd5b565b60006115ca8484611239565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116445781811015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d906132c7565b60405180910390fd5b6116438484848403611377565b5b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613333565b60405180910390fd5b600081036116f0576116eb838360006120b5565b611f49565b600a60009054906101000a900460ff1615611acb5761170d610dcb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561177b575061174b610dcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117ee575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611aca57600a60019054906101000a900460ff166118e857600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118a85750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de9061339f565b60405180910390fd5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561198b5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119da576016548111156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613431565b60405180910390fd5b611ac9565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611a7d5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ac857601654811115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe906134c3565b60405180910390fd5b5b5b5b5b6000611ad630610c43565b905060006017548210159050808015611afb5750600a60029054906101000a900460ff165b8015611b145750600860009054906101000a900460ff16155b8015611b6a5750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bc05750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c165750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c5a576001600860006101000a81548160ff021916908315150217905550611c3e61232b565b6000600860006101000a81548160ff0219169083151502179055505b600060019050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d015750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d0b57600090505b60008060008315611f3757600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d7157506000601254115b15611df457606460155460125489611d899190612ddc565b611d939190612d19565b611d9d9190612d19565b925060125460135484611db09190612ddc565b611dba9190612d19565b82611dc59190612e1e565b915060125460145484611dd89190612ddc565b611de29190612d19565b81611ded9190612e1e565b9050611ecf565b600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e4f57506000600f54115b15611ece576064601554600f5489611e679190612ddc565b611e719190612d19565b611e7b9190612d19565b9250600f5460105484611e8e9190612ddc565b611e989190612d19565b82611ea39190612e1e565b9150600f5460115484611eb69190612ddc565b611ec09190612d19565b81611ecb9190612e1e565b90505b5b600c54600b54611edf9190612e1e565b4311611f1357600a82611ef29190612ddc565b9150600a81611f019190612ddc565b9050600a83611f109190612ddc565b92505b6000831115611f2857611f278930856120b5565b5b8287611f3491906134e3565b96505b611f428989896120b5565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a9061361b565b60405180910390fd5b61219e8383836124eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906136ad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161231291906129ae565b60405180910390a36123258484846124f0565b50505050565b600061233630610c43565b905060008082036123485750506124e9565b60146017546123579190612ddc565b82111561237057601460175461236d9190612ddc565b91505b612379826124f5565b60004790506000601254600f546123909190612e1e565b6014546011546123a09190612e1e565b836123ab9190612ddc565b6123b59190612d19565b9050600081836123c591906134e3565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161240d906136fe565b60006040518083038185875af1925050503d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b505080945050601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161249b906136fe565b60006040518083038185875af1925050503d80600081146124d8576040519150601f19603f3d011682016040523d82523d6000602084013e6124dd565b606091505b50508094505050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561251257612511613713565b5b6040519080825280602002602001820160405280156125405781602001602082028036833780820191505090505b509050308160008151811061255857612557612fe2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126219190613757565b8160018151811061263557612634612fe2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061269a307f000000000000000000000000000000000000000000000000000000000000000084611377565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126fc95949392919061387d565b600060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276c578082015181840152602081019050612751565b60008484015250505050565b6000601f19601f8301169050919050565b600061279482612732565b61279e818561273d565b93506127ae81856020860161274e565b6127b781612778565b840191505092915050565b600060208201905081810360008301526127dc8184612789565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612819826127ee565b9050919050565b6128298161280e565b811461283457600080fd5b50565b60008135905061284681612820565b92915050565b6000819050919050565b61285f8161284c565b811461286a57600080fd5b50565b60008135905061287c81612856565b92915050565b60008060408385031215612899576128986127e4565b5b60006128a785828601612837565b92505060206128b88582860161286d565b9150509250929050565b60008115159050919050565b6128d7816128c2565b82525050565b60006020820190506128f260008301846128ce565b92915050565b60006020828403121561290e5761290d6127e4565b5b600061291c84828501612837565b91505092915050565b6000819050919050565b600061294a612945612940846127ee565b612925565b6127ee565b9050919050565b600061295c8261292f565b9050919050565b600061296e82612951565b9050919050565b61297e81612963565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a88161284c565b82525050565b60006020820190506129c3600083018461299f565b92915050565b6000602082840312156129df576129de6127e4565b5b60006129ed8482850161286d565b91505092915050565b600080600060608486031215612a0f57612a0e6127e4565b5b6000612a1d86828701612837565b9350506020612a2e86828701612837565b9250506040612a3f8682870161286d565b9150509250925092565b612a528161280e565b82525050565b6000602082019050612a6d6000830184612a49565b92915050565b600060ff82169050919050565b612a8981612a73565b82525050565b6000602082019050612aa46000830184612a80565b92915050565b612ab3816128c2565b8114612abe57600080fd5b50565b600081359050612ad081612aaa565b92915050565b60008060408385031215612aed57612aec6127e4565b5b6000612afb85828601612837565b9250506020612b0c85828601612ac1565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b3b57612b3a612b16565b5b8235905067ffffffffffffffff811115612b5857612b57612b1b565b5b602083019150836020820283011115612b7457612b73612b20565b5b9250929050565b600080600060408486031215612b9457612b936127e4565b5b600084013567ffffffffffffffff811115612bb257612bb16127e9565b5b612bbe86828701612b25565b93509350506020612bd186828701612ac1565b9150509250925092565b60008060408385031215612bf257612bf16127e4565b5b6000612c008582860161286d565b9250506020612c118582860161286d565b9150509250929050565b60008060408385031215612c3257612c316127e4565b5b6000612c4085828601612837565b9250506020612c5185828601612837565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca257607f821691505b602082108103612cb557612cb4612c5b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d248261284c565b9150612d2f8361284c565b925082612d3f57612d3e612cbb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e30312500000000000000000000000000000000602082015250565b6000612da660308361273d565b9150612db182612d4a565b604082019050919050565b60006020820190508181036000830152612dd581612d99565b9050919050565b6000612de78261284c565b9150612df28361284c565b9250828202612e008161284c565b91508282048414831517612e1757612e16612cea565b5b5092915050565b6000612e298261284c565b9150612e348361284c565b9250828201905080821115612e4c57612e4b612cea565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000612e88600e8361273d565b9150612e9382612e52565b602082019050919050565b60006020820190508181036000830152612eb781612e7b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000612f1a60398361273d565b9150612f2582612ebe565b604082019050919050565b60006020820190508181036000830152612f4981612f0d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fac60258361273d565b9150612fb782612f50565b604082019050919050565b60006020820190508181036000830152612fdb81612f9f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061301c8261284c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361304e5761304d612cea565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b560268361273d565b91506130c082613059565b604082019050919050565b600060208201905081810360008301526130e4816130a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061314760248361273d565b9150613152826130eb565b604082019050919050565b600060208201905081810360008301526131768161313a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131d960228361273d565b91506131e48261317d565b604082019050919050565b60006020820190508181036000830152613208816131cc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061324560208361273d565b91506132508261320f565b602082019050919050565b6000602082019050818103600083015261327481613238565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006132b1601d8361273d565b91506132bc8261327b565b602082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f536e6970657220626c6f636b6564000000000000000000000000000000000000600082015250565b600061331d600e8361273d565b9150613328826132e7565b602082019050919050565b6000602082019050818103600083015261334c81613310565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061338960168361273d565b915061339482613353565b602082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061341b60358361273d565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006134ad60368361273d565b91506134b882613451565b604082019050919050565b600060208201905081810360008301526134dc816134a0565b9050919050565b60006134ee8261284c565b91506134f98361284c565b925082820390508181111561351157613510612cea565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061357360258361273d565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061360560238361273d565b9150613610826135a9565b604082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061369760268361273d565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b600081905092915050565b50565b60006136e86000836136cd565b91506136f3826136d8565b600082019050919050565b6000613709826136db565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061375181612820565b92915050565b60006020828403121561376d5761376c6127e4565b5b600061377b84828501613742565b91505092915050565b6000819050919050565b60006137a96137a461379f84613784565b612925565b61284c565b9050919050565b6137b98161378e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f48161280e565b82525050565b600061380683836137eb565b60208301905092915050565b6000602082019050919050565b600061382a826137bf565b61383481856137ca565b935061383f836137db565b8060005b8381101561387057815161385788826137fa565b975061386283613812565b925050600181019050613843565b5085935050505092915050565b600060a082019050613892600083018861299f565b61389f60208301876137b0565b81810360408301526138b1818661381f565b90506138c06060830185612a49565b6138cd608083018461299f565b969550505050505056fea2646970667358221220342b0364870d34e1802f5973e63e809bb3ea418e8e097e06a095176ab8eacaeb64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806371a5152211610139578063b38d5ef4116100b6578063d85ba0631161007a578063d85ba06314610890578063dd62ed3e146108bb578063e2f45605146108f8578063e596219514610923578063f2fde38b14610960578063f91d27c11461098957610251565b8063b38d5ef4146107ab578063b62496f5146107d4578063b79c188614610811578063bbc0c7421461083a578063c8c8ebe41461086557610251565b806395d89b41116100fd57806395d89b41146106b45780639a7a23d6146106df578063a457c2d714610708578063a9059cbb14610745578063ae303d071461078257610251565b806371a51522146105f3578063751039fc1461061e5780637571336a146106495780638a8c523c146106725780638da5cb5b1461068957610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051e5780636b2fb124146105495780636ddd17131461057457806370a082311461059f578063715018a6146105dc57610251565b806349bd5a5e146104475780634a62bb6514610472578063534c09061461049d578063540ba552146104c85780635c068a8c146104f357610251565b8063203e727e1161020e578063203e727e1461034e57806323b872dd1461037757806327c8f835146103b4578063313ce567146103df578063395093511461040a57610251565b806306fdde0314610253578063095ea7b31461027e57806310d5de53146102bb5780631694505e146102f857806318160ddd1461032357610251565b3661025157005b005b34801561025f57600080fd5b506102686109b4565b60405161027591906127c2565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a09190612882565b610a46565b6040516102b291906128dd565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906128f8565b610a69565b6040516102ef91906128dd565b60405180910390f35b34801561030457600080fd5b5061030d610a89565b60405161031a9190612984565b60405180910390f35b34801561032f57600080fd5b50610338610aad565b60405161034591906129ae565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906129c9565b610ab7565b005b34801561038357600080fd5b5061039e600480360381019061039991906129f6565b610b46565b6040516103ab91906128dd565b60405180910390f35b3480156103c057600080fd5b506103c9610b75565b6040516103d69190612a58565b60405180910390f35b3480156103eb57600080fd5b506103f4610b7b565b6040516104019190612a8f565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612882565b610b84565b60405161043e91906128dd565b60405180910390f35b34801561045357600080fd5b5061045c610bbb565b6040516104699190612a58565b60405180910390f35b34801561047e57600080fd5b50610487610bdf565b60405161049491906128dd565b60405180910390f35b3480156104a957600080fd5b506104b2610bf2565b6040516104bf9190612a58565b60405180910390f35b3480156104d457600080fd5b506104dd610c18565b6040516104ea91906129ae565b60405180910390f35b3480156104ff57600080fd5b50610508610c1e565b60405161051591906129ae565b60405180910390f35b34801561052a57600080fd5b50610533610c24565b60405161054091906129ae565b60405180910390f35b34801561055557600080fd5b5061055e610c2a565b60405161056b91906129ae565b60405180910390f35b34801561058057600080fd5b50610589610c30565b60405161059691906128dd565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906128f8565b610c43565b6040516105d391906129ae565b60405180910390f35b3480156105e857600080fd5b506105f1610c8b565b005b3480156105ff57600080fd5b50610608610c9f565b60405161061591906129ae565b60405180910390f35b34801561062a57600080fd5b50610633610ca5565b60405161064091906128dd565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612ad6565b610cd1565b005b34801561067e57600080fd5b50610687610d34565b005b34801561069557600080fd5b5061069e610dcb565b6040516106ab9190612a58565b60405180910390f35b3480156106c057600080fd5b506106c9610df5565b6040516106d691906127c2565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612ad6565b610e87565b005b34801561071457600080fd5b5061072f600480360381019061072a9190612882565b610f2b565b60405161073c91906128dd565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612882565b610fa2565b60405161077991906128dd565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612b7b565b610fc5565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190612bdb565b611160565b005b3480156107e057600080fd5b506107fb60048036038101906107f691906128f8565b6111ad565b60405161080891906128dd565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190612bdb565b6111cd565b005b34801561084657600080fd5b5061084f61121a565b60405161085c91906128dd565b60405180910390f35b34801561087157600080fd5b5061087a61122d565b60405161088791906129ae565b60405180910390f35b34801561089c57600080fd5b506108a5611233565b6040516108b291906129ae565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190612c1b565b611239565b6040516108ef91906129ae565b60405180910390f35b34801561090457600080fd5b5061090d6112c0565b60405161091a91906129ae565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906128f8565b6112c6565b60405161095791906128dd565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906128f8565b6112e6565b005b34801561099557600080fd5b5061099e611369565b6040516109ab91906129ae565b60405180910390f35b6060600380546109c390612c8a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90612c8a565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b600080610a5161136f565b9050610a5e818585611377565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610abf611540565b670de0b6b3a7640000612710610ad3610aad565b610add9190612d19565b610ae79190612d19565b811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090612dbc565b60405180910390fd5b670de0b6b3a764000081610b3d9190612ddc565b60168190555050565b600080610b5161136f565b9050610b5e8582856115be565b610b6985858561164a565b60019150509392505050565b61dead81565b60006012905090565b600080610b8f61136f565b9050610bb0818585610ba18589611239565b610bab9190612e1e565b611377565b600191505092915050565b7f00000000000000000000000095d9e85a31ed4cfba8421488d295a25bc76b473f81565b600a60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60105481565b60125481565b60135481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c93611540565b610c9d6000611f4e565b565b60145481565b6000610caf611540565b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610cd9611540565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d3c611540565b600a60019054906101000a900460ff1615610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612e9e565b60405180910390fd5b6001600a60016101000a81548160ff02191690831515021790555043600b819055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e0490612c8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3090612c8a565b8015610e7d5780601f10610e5257610100808354040283529160200191610e7d565b820191906000526020600020905b815481529060010190602001808311610e6057829003601f168201915b5050505050905090565b610e8f611540565b7f00000000000000000000000095d9e85a31ed4cfba8421488d295a25bc76b473f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612f30565b60405180910390fd5b610f278282612014565b5050565b600080610f3661136f565b90506000610f448286611239565b905083811015610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612fc2565b60405180910390fd5b610f968286868403611377565b60019250505092915050565b600080610fad61136f565b9050610fba81858561164a565b600191505092915050565b610fcd611540565b60005b8383905081101561115a576000848483818110610ff057610fef612fe2565b5b905060200201602081019061100591906128f8565b90503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156110915750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156110e957507f00000000000000000000000095d9e85a31ed4cfba8421488d295a25bc76b473f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156111465782600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50808061115290613011565b915050610fd0565b50505050565b611168611540565b81601081905550806011819055506011546010546111869190612e1e565b600f81905550601554600a61119b9190612ddc565b600f5411156111a957600080fd5b5050565b60076020528060005260406000206000915054906101000a900460ff1681565b6111d5611540565b81601381905550806014819055506014546013546111f39190612e1e565b601281905550601554600a6112089190612ddc565b601254111561121657600080fd5b5050565b600a60019054906101000a900460ff1681565b60165481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60175481565b60096020528060005260406000206000915054906101000a900460ff1681565b6112ee611540565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906130cb565b60405180910390fd5b61136681611f4e565b50565b60155481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061315d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906131ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161153391906129ae565b60405180910390a3505050565b61154861136f565b73ffffffffffffffffffffffffffffffffffffffff16611566610dcb565b73ffffffffffffffffffffffffffffffffffffffff16146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b39061325b565b60405180910390fd5b565b60006115ca8484611239565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116445781811015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d906132c7565b60405180910390fd5b6116438484848403611377565b5b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613333565b60405180910390fd5b600081036116f0576116eb838360006120b5565b611f49565b600a60009054906101000a900460ff1615611acb5761170d610dcb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561177b575061174b610dcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117ee575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611aca57600a60019054906101000a900460ff166118e857600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118a85750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de9061339f565b60405180910390fd5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561198b5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119da576016548111156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613431565b60405180910390fd5b611ac9565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611a7d5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ac857601654811115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe906134c3565b60405180910390fd5b5b5b5b5b6000611ad630610c43565b905060006017548210159050808015611afb5750600a60029054906101000a900460ff165b8015611b145750600860009054906101000a900460ff16155b8015611b6a5750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bc05750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c165750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c5a576001600860006101000a81548160ff021916908315150217905550611c3e61232b565b6000600860006101000a81548160ff0219169083151502179055505b600060019050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d015750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d0b57600090505b60008060008315611f3757600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d7157506000601254115b15611df457606460155460125489611d899190612ddc565b611d939190612d19565b611d9d9190612d19565b925060125460135484611db09190612ddc565b611dba9190612d19565b82611dc59190612e1e565b915060125460145484611dd89190612ddc565b611de29190612d19565b81611ded9190612e1e565b9050611ecf565b600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e4f57506000600f54115b15611ece576064601554600f5489611e679190612ddc565b611e719190612d19565b611e7b9190612d19565b9250600f5460105484611e8e9190612ddc565b611e989190612d19565b82611ea39190612e1e565b9150600f5460115484611eb69190612ddc565b611ec09190612d19565b81611ecb9190612e1e565b90505b5b600c54600b54611edf9190612e1e565b4311611f1357600a82611ef29190612ddc565b9150600a81611f019190612ddc565b9050600a83611f109190612ddc565b92505b6000831115611f2857611f278930856120b5565b5b8287611f3491906134e3565b96505b611f428989896120b5565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a9061361b565b60405180910390fd5b61219e8383836124eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906136ad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161231291906129ae565b60405180910390a36123258484846124f0565b50505050565b600061233630610c43565b905060008082036123485750506124e9565b60146017546123579190612ddc565b82111561237057601460175461236d9190612ddc565b91505b612379826124f5565b60004790506000601254600f546123909190612e1e565b6014546011546123a09190612e1e565b836123ab9190612ddc565b6123b59190612d19565b9050600081836123c591906134e3565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161240d906136fe565b60006040518083038185875af1925050503d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b505080945050601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161249b906136fe565b60006040518083038185875af1925050503d80600081146124d8576040519150601f19603f3d011682016040523d82523d6000602084013e6124dd565b606091505b50508094505050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561251257612511613713565b5b6040519080825280602002602001820160405280156125405781602001602082028036833780820191505090505b509050308160008151811061255857612557612fe2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126219190613757565b8160018151811061263557612634612fe2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061269a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611377565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126fc95949392919061387d565b600060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276c578082015181840152602081019050612751565b60008484015250505050565b6000601f19601f8301169050919050565b600061279482612732565b61279e818561273d565b93506127ae81856020860161274e565b6127b781612778565b840191505092915050565b600060208201905081810360008301526127dc8184612789565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612819826127ee565b9050919050565b6128298161280e565b811461283457600080fd5b50565b60008135905061284681612820565b92915050565b6000819050919050565b61285f8161284c565b811461286a57600080fd5b50565b60008135905061287c81612856565b92915050565b60008060408385031215612899576128986127e4565b5b60006128a785828601612837565b92505060206128b88582860161286d565b9150509250929050565b60008115159050919050565b6128d7816128c2565b82525050565b60006020820190506128f260008301846128ce565b92915050565b60006020828403121561290e5761290d6127e4565b5b600061291c84828501612837565b91505092915050565b6000819050919050565b600061294a612945612940846127ee565b612925565b6127ee565b9050919050565b600061295c8261292f565b9050919050565b600061296e82612951565b9050919050565b61297e81612963565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a88161284c565b82525050565b60006020820190506129c3600083018461299f565b92915050565b6000602082840312156129df576129de6127e4565b5b60006129ed8482850161286d565b91505092915050565b600080600060608486031215612a0f57612a0e6127e4565b5b6000612a1d86828701612837565b9350506020612a2e86828701612837565b9250506040612a3f8682870161286d565b9150509250925092565b612a528161280e565b82525050565b6000602082019050612a6d6000830184612a49565b92915050565b600060ff82169050919050565b612a8981612a73565b82525050565b6000602082019050612aa46000830184612a80565b92915050565b612ab3816128c2565b8114612abe57600080fd5b50565b600081359050612ad081612aaa565b92915050565b60008060408385031215612aed57612aec6127e4565b5b6000612afb85828601612837565b9250506020612b0c85828601612ac1565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b3b57612b3a612b16565b5b8235905067ffffffffffffffff811115612b5857612b57612b1b565b5b602083019150836020820283011115612b7457612b73612b20565b5b9250929050565b600080600060408486031215612b9457612b936127e4565b5b600084013567ffffffffffffffff811115612bb257612bb16127e9565b5b612bbe86828701612b25565b93509350506020612bd186828701612ac1565b9150509250925092565b60008060408385031215612bf257612bf16127e4565b5b6000612c008582860161286d565b9250506020612c118582860161286d565b9150509250929050565b60008060408385031215612c3257612c316127e4565b5b6000612c4085828601612837565b9250506020612c5185828601612837565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca257607f821691505b602082108103612cb557612cb4612c5b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d248261284c565b9150612d2f8361284c565b925082612d3f57612d3e612cbb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e30312500000000000000000000000000000000602082015250565b6000612da660308361273d565b9150612db182612d4a565b604082019050919050565b60006020820190508181036000830152612dd581612d99565b9050919050565b6000612de78261284c565b9150612df28361284c565b9250828202612e008161284c565b91508282048414831517612e1757612e16612cea565b5b5092915050565b6000612e298261284c565b9150612e348361284c565b9250828201905080821115612e4c57612e4b612cea565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000612e88600e8361273d565b9150612e9382612e52565b602082019050919050565b60006020820190508181036000830152612eb781612e7b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000612f1a60398361273d565b9150612f2582612ebe565b604082019050919050565b60006020820190508181036000830152612f4981612f0d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fac60258361273d565b9150612fb782612f50565b604082019050919050565b60006020820190508181036000830152612fdb81612f9f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061301c8261284c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361304e5761304d612cea565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b560268361273d565b91506130c082613059565b604082019050919050565b600060208201905081810360008301526130e4816130a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061314760248361273d565b9150613152826130eb565b604082019050919050565b600060208201905081810360008301526131768161313a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131d960228361273d565b91506131e48261317d565b604082019050919050565b60006020820190508181036000830152613208816131cc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061324560208361273d565b91506132508261320f565b602082019050919050565b6000602082019050818103600083015261327481613238565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006132b1601d8361273d565b91506132bc8261327b565b602082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f536e6970657220626c6f636b6564000000000000000000000000000000000000600082015250565b600061331d600e8361273d565b9150613328826132e7565b602082019050919050565b6000602082019050818103600083015261334c81613310565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061338960168361273d565b915061339482613353565b602082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061341b60358361273d565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006134ad60368361273d565b91506134b882613451565b604082019050919050565b600060208201905081810360008301526134dc816134a0565b9050919050565b60006134ee8261284c565b91506134f98361284c565b925082820390508181111561351157613510612cea565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061357360258361273d565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061360560238361273d565b9150613610826135a9565b604082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061369760268361273d565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b600081905092915050565b50565b60006136e86000836136cd565b91506136f3826136d8565b600082019050919050565b6000613709826136db565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061375181612820565b92915050565b60006020828403121561376d5761376c6127e4565b5b600061377b84828501613742565b91505092915050565b6000819050919050565b60006137a96137a461379f84613784565b612925565b61284c565b9050919050565b6137b98161378e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f48161280e565b82525050565b600061380683836137eb565b60208301905092915050565b6000602082019050919050565b600061382a826137bf565b61383481856137ca565b935061383f836137db565b8060005b8381101561387057815161385788826137fa565b975061386283613812565b925050600181019050613843565b5085935050505092915050565b600060a082019050613892600083018861299f565b61389f60208301876137b0565b81810360408301526138b1818661381f565b90506138c06060830185612a49565b6138cd608083018461299f565b969550505050505056fea2646970667358221220342b0364870d34e1802f5973e63e809bb3ea418e8e097e06a095176ab8eacaeb64736f6c63430008130033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.