ETH Price: $2,911.21 (-7.21%)
 

Overview

Max Total Supply

100,000,000 GDP

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
139,872.661366018074828403 GDP

Value
$0.00
0xb1ec047bbfe247235839906be8bd8516108d9325
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:
GreenDildoPepe

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

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


pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

    /**
     * @dev Returns the substraction 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;
        }
    }
}

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract GreenDildoPepe is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    bool private swapping;
    
    uint256 public genesis_block;

    address public deployerAddress;
    address public lpLocker;

    address private devWallet;
    address private marketingWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyMarketingfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellMarketingfee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
        event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Green Dildo Pepe", "GDP") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buydevfee = 20;
        uint256 _buyMarketingfee = 0;
        uint256 _buyLiquidityFee = 0;

        uint256 _selldevfee = 30;
        uint256 _sellMarketingfee = 0;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 20 / 1000; // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buydevfee = _buydevfee;
        buyMarketingfee = _buyMarketingfee;

        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellMarketingfee = _sellMarketingfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet
        marketingWallet = address(0x723B2E35Eb145C653cb57f210a53b744278bEF22);
        deployerAddress = address(msg.sender); 
        lpLocker = address(msg.sender); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(deployerAddress, true); // Deployer Address
        excludeFromFees(lpLocker, true); // LP Locker

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(deployerAddress, true); // Deployer Address
        excludeFromMaxTransaction(lpLocker, true); // LP Locker

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devfee,
        uint256 _marketingfee,
        
        uint256 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyMarketingfee = _marketingfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee + buyMarketingfee;
        require(buyTotalFees <= 30, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _marketingfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellMarketingfee = _marketingfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee + _marketingfee;
        require(sellTotalFees <= 50, "Must keep fees at 10% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

        function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
    


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        uint256 tokensForMarketing = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * selldevfee) / sellTotalFees;
                tokensForMarketing = (fees * selldevfee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buydevfee) / buyTotalFees;
                tokensForMarketing = (fees * buydevfee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

function swapTokensForETH(uint256 tokenAmount) private {
    // generate the uniswap pair path of token -> weth
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = ETH;

    _approve(address(this), address(uniswapV2Router), tokenAmount);

    // make the swap
    uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
        tokenAmount,
        0, // accept any amount of WETH
        path,
        devWallet,
        block.timestamp
    );

    // Send ETH to the marketingWallet
    payable(marketingWallet).transfer(address(this).balance);
}


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForETH(contractBalance);
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280601081526020017f477265656e2044696c646f2050657065000000000000000000000000000000008152506040518060400160405280600381526020017f4744500000000000000000000000000000000000000000000000000000000000815250816003908162000135919062000dc8565b50806004908162000147919062000dc8565b5050506200016a6200015e620006b060201b60201c565b620006b860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200077e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f19565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000f5c565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000f19565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200077e60201b60201c565b6000601490506000806000601e905060008060006a52b7d2dcc80cd2e400000090506103e86014826200035c919062000fb8565b62000368919062001032565b600c819055506103e860148262000380919062000fb8565b6200038c919062001032565b600e81905550612710600582620003a4919062000fb8565b620003b0919062001032565b600d81905550866011819055508560128190555084601381905550601354601154620003dd91906200106a565b6010819055508360158190555082601681905550816017819055506017546015546200040a91906200106a565b60148190555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073723b2e35eb145c653cb57f210a53b744278bef22600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054a6200053c6200086860201b60201c565b60016200089260201b60201c565b6200055d3060016200089260201b60201c565b6200057261dead60016200089260201b60201c565b620005a7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089260201b60201c565b620005dc600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089260201b60201c565b620005fe620005f06200086860201b60201c565b60016200077e60201b60201c565b620006113060016200077e60201b60201c565b6200062661dead60016200077e60201b60201c565b6200065b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077e60201b60201c565b62000690600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077e60201b60201c565b620006a23382620009cc60201b60201c565b505050505050505062001202565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200078e620006b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b46200086860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008049062001106565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a2620006b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c86200086860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009189062001106565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c0919062001145565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3590620011b2565b60405180910390fd5b62000a526000838362000b4460201b60201c565b806002600082825462000a6691906200106a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000abd91906200106a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b249190620011e5565b60405180910390a362000b406000838362000b4960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bd057607f821691505b60208210810362000be65762000be562000b88565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c11565b62000c5c868362000c11565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ca962000ca362000c9d8462000c74565b62000c7e565b62000c74565b9050919050565b6000819050919050565b62000cc58362000c88565b62000cdd62000cd48262000cb0565b84845462000c1e565b825550505050565b600090565b62000cf462000ce5565b62000d0181848462000cba565b505050565b5b8181101562000d295762000d1d60008262000cea565b60018101905062000d07565b5050565b601f82111562000d785762000d428162000bec565b62000d4d8462000c01565b8101602085101562000d5d578190505b62000d7562000d6c8562000c01565b83018262000d06565b50505b505050565b600082821c905092915050565b600062000d9d6000198460080262000d7d565b1980831691505092915050565b600062000db8838362000d8a565b9150826002028217905092915050565b62000dd38262000b4e565b67ffffffffffffffff81111562000def5762000dee62000b59565b5b62000dfb825462000bb7565b62000e0882828562000d2d565b600060209050601f83116001811462000e40576000841562000e2b578287015190505b62000e37858262000daa565b86555062000ea7565b601f19841662000e508662000bec565b60005b8281101562000e7a5784890151825560018201915060208501945060208101905062000e53565b8683101562000e9a578489015162000e96601f89168262000d8a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee18262000eb4565b9050919050565b62000ef38162000ed4565b811462000eff57600080fd5b50565b60008151905062000f138162000ee8565b92915050565b60006020828403121562000f325762000f3162000eaf565b5b600062000f428482850162000f02565b91505092915050565b62000f568162000ed4565b82525050565b600060408201905062000f73600083018562000f4b565b62000f82602083018462000f4b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fc58262000c74565b915062000fd28362000c74565b925082820262000fe28162000c74565b9150828204841483151762000ffc5762000ffb62000f89565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200103f8262000c74565b91506200104c8362000c74565b9250826200105f576200105e62001003565b5b828204905092915050565b6000620010778262000c74565b9150620010848362000c74565b92508282019050808211156200109f576200109e62000f89565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010ee602083620010a5565b9150620010fb82620010b6565b602082019050919050565b600060208201905081810360008301526200112181620010df565b9050919050565b60008115159050919050565b6200113f8162001128565b82525050565b60006020820190506200115c600083018462001134565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200119a601f83620010a5565b9150620011a78262001162565b602082019050919050565b60006020820190508181036000830152620011cd816200118b565b9050919050565b620011df8162000c74565b82525050565b6000602082019050620011fc6000830184620011d4565b92915050565b60805160a051613f756200125960003960008181610f61015281816122160152818161245f0152818161266b01528181612753015261285a015260008181610bc901528181612d860152612dad0152613f756000f3fe60806040526004361061028c5760003560e01c8063751039fc1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b8063924de9b711610113578063924de9b7146107a157806395d89b41146107ca578063a9059cbb146107f5578063aacebbe314610832578063bbc0c7421461085b578063c02466681461088657610293565b8063751039fc146106b75780637571336a146106e25780638095d5641461070b5780638322fff2146107345780638a8c523c1461075f5780638da5cb5b1461077657610293565b8063313ce567116101fe5780634fbee193116101b75780634fbee193146105a557806365c1bef8146105e25780636a486a8e1461060d5780636ddd17131461063857806370a0823114610663578063715018a6146106a057610293565b8063313ce567146104a35780634853e7d9146104ce578063489ae78d146104f957806348c492d61461052457806349bd5a5e1461054f5780634a62bb651461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b919061316f565b60405180910390f35b34801561053057600080fd5b50610539610f59565b604051610546919061316f565b60405180910390f35b34801561055b57600080fd5b50610564610f5f565b6040516105719190612f0f565b60405180910390f35b34801561058657600080fd5b5061058f610f83565b60405161059c919061309e565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906130b9565b610f96565b6040516105d9919061309e565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061316f565b60405180910390f35b34801561064457600080fd5b5061064d610ff8565b60405161065a919061309e565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906130b9565b61100b565b604051610697919061316f565b60405180910390f35b3480156106ac57600080fd5b506106b5611053565b005b3480156106c357600080fd5b506106cc6110db565b6040516106d9919061309e565b60405180910390f35b3480156106ee57600080fd5b506107096004803603810190610704919061326d565b61117b565b005b34801561071757600080fd5b50610732600480360381019061072d91906132ad565b611252565b005b34801561074057600080fd5b50610749611351565b6040516107569190612f0f565b60405180910390f35b34801561076b57600080fd5b50610774611377565b005b34801561078257600080fd5b5061078b61142b565b6040516107989190612f0f565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613300565b611455565b005b3480156107d657600080fd5b506107df6114ee565b6040516107ec9190612fba565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613043565b611580565b604051610829919061309e565b60405180910390f35b34801561083e57600080fd5b50610859600480360381019061085491906130b9565b61159e565b005b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d5761142b565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60125481565b60115481565b60165481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105b611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661107961142b565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613419565b60405180910390fd5b6110d960006128a7565b565b60006110e5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661110361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b611183611d3b565b73ffffffffffffffffffffffffffffffffffffffff166111a161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661127861142b565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f6919061362e565b611300919061362e565b601081905550601e601054111561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61137f611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661139d61142b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661147b61142b565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546114fd9061339c565b80601f01602080910402602001604051908101604052809291908181526020018280546115299061339c565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b600061159461158d611d3b565b8484611f0c565b6001905092915050565b6115a6611d3b565b73ffffffffffffffffffffffffffffffffffffffff166115c461142b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661171361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661183861142b565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661193561142b565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d5761202061142b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e61142b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f8361100b565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd8361100b565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b60006124183061100b565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f00000000000000000000000000000000000000000000000000000000000000008561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf73061100b565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f000000000000000000000000000000000000000000000000000000000000000084611d43565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea2646970667358221220f837c0ddc0812fe4c2cb1096f2836b6c1bdd0713950ec3ae9c33da5a6c64fda264736f6c63430008120033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063751039fc1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b8063924de9b711610113578063924de9b7146107a157806395d89b41146107ca578063a9059cbb146107f5578063aacebbe314610832578063bbc0c7421461085b578063c02466681461088657610293565b8063751039fc146106b75780637571336a146106e25780638095d5641461070b5780638322fff2146107345780638a8c523c1461075f5780638da5cb5b1461077657610293565b8063313ce567116101fe5780634fbee193116101b75780634fbee193146105a557806365c1bef8146105e25780636a486a8e1461060d5780636ddd17131461063857806370a0823114610663578063715018a6146106a057610293565b8063313ce567146104a35780634853e7d9146104ce578063489ae78d146104f957806348c492d61461052457806349bd5a5e1461054f5780634a62bb651461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b919061316f565b60405180910390f35b34801561053057600080fd5b50610539610f59565b604051610546919061316f565b60405180910390f35b34801561055b57600080fd5b50610564610f5f565b6040516105719190612f0f565b60405180910390f35b34801561058657600080fd5b5061058f610f83565b60405161059c919061309e565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906130b9565b610f96565b6040516105d9919061309e565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061316f565b60405180910390f35b34801561064457600080fd5b5061064d610ff8565b60405161065a919061309e565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906130b9565b61100b565b604051610697919061316f565b60405180910390f35b3480156106ac57600080fd5b506106b5611053565b005b3480156106c357600080fd5b506106cc6110db565b6040516106d9919061309e565b60405180910390f35b3480156106ee57600080fd5b506107096004803603810190610704919061326d565b61117b565b005b34801561071757600080fd5b50610732600480360381019061072d91906132ad565b611252565b005b34801561074057600080fd5b50610749611351565b6040516107569190612f0f565b60405180910390f35b34801561076b57600080fd5b50610774611377565b005b34801561078257600080fd5b5061078b61142b565b6040516107989190612f0f565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613300565b611455565b005b3480156107d657600080fd5b506107df6114ee565b6040516107ec9190612fba565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613043565b611580565b604051610829919061309e565b60405180910390f35b34801561083e57600080fd5b50610859600480360381019061085491906130b9565b61159e565b005b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d5761142b565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60125481565b60115481565b60165481565b7f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe881565b600f60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105b611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661107961142b565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613419565b60405180910390fd5b6110d960006128a7565b565b60006110e5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661110361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b611183611d3b565b73ffffffffffffffffffffffffffffffffffffffff166111a161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661127861142b565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f6919061362e565b611300919061362e565b601081905550601e601054111561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61137f611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661139d61142b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661147b61142b565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546114fd9061339c565b80601f01602080910402602001604051908101604052809291908181526020018280546115299061339c565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b600061159461158d611d3b565b8484611f0c565b6001905092915050565b6115a6611d3b565b73ffffffffffffffffffffffffffffffffffffffff166115c461142b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661171361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661183861142b565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661193561142b565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d5761202061142b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e61142b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f8361100b565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd8361100b565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b60006124183061100b565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe873ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f000000000000000000000000e0435f8f25e32da37b6d29ae2cf20d647e236fe88561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf73061100b565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d43565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea2646970667358221220f837c0ddc0812fe4c2cb1096f2836b6c1bdd0713950ec3ae9c33da5a6c64fda264736f6c63430008120033

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.