ETH Price: $3,481.31 (-1.01%)
Gas: 5 Gwei

Token

We Are Conscious (CON)
 

Overview

Max Total Supply

1,000,000 CON

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,514.298687778406996148 CON

Value
$0.00
0x8a2da8add129e281c4121b8c7dd1c79172850de7
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:
WeAreConscious

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 21fx with bl.sol
/**
TG: https://t.me/Consciousportal
WEB: https://consciouserc.com/
TWITTER:https://twitter.com/we_conscious
MEDIUM: https://medium.com/@WeAreConscious
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.12;
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 => bool) public bots;
    mapping (address => uint256) public _buyMap;
    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 Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );

    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address private marketingWallet;
    address private devWallet;
    address private devWallel;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    constructor() ERC20("We Are Conscious", "CON") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 6;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 8;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 1_000_000 * 1e18;

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

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xe438A9Ae0547e67A70cfCEAE7Af87E0DF7190C25); // set as marketing wallet
        devWallet = address(0xe438A9Ae0547e67A70cfCEAE7Af87E0DF7190C25); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _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;

    }

    // 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() * 1) / 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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 13, "Must keep fees at 13% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 13, "Must keep fees at 13% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    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 (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
                require(!bots[from] && !bots[to], "Your account is blacklisted!");

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function blockBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"}]

60c06040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601081526020017f57652041726520436f6e7363696f7573000000000000000000000000000000008152506040518060400160405280600381526020017f434f4e00000000000000000000000000000000000000000000000000000000008152508160059080519060200190620000cc92919062000aab565b508060069080519060200190620000e592919062000aab565b50505062000108620000fc6200056b60201b60201c565b6200057360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001348160016200063960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da919062000bc5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000bc5565b6040518363ffffffff1660e01b81526004016200028792919062000c08565b6020604051808303816000875af1158015620002a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cd919062000bc5565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031560a05160016200063960201b60201c565b6200032a60a05160016200072360201b60201c565b60006006905060008060006008905060008060049050600069d3c21bcecceda1000000905069043c33c1937564800000600b8190555069043c33c1937564800000600d8190555061271060058262000383919062000c6e565b6200038f919062000cfe565b600c81905550866010819055508560118190555084601281905550601254601154601054620003bf919062000d36565b620003cb919062000d36565b600f81905550836014819055508260158190555081601681905550601654601554601454620003fb919062000d36565b62000407919062000d36565b60138190555073e438a9ae0547e67a70cfceae7af87e0df7190c25600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e438a9ae0547e67a70cfceae7af87e0df7190c25600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d9620004cb620007c460201b60201c565b6001620007ee60201b60201c565b620004ec306001620007ee60201b60201c565b6200050161dead6001620007ee60201b60201c565b6200052362000515620007c460201b60201c565b60016200063960201b60201c565b620005363060016200063960201b60201c565b6200054b61dead60016200063960201b60201c565b6200055d33826200092860201b60201c565b505050505050505062000f55565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006496200056b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200066f620007c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bf9062000df4565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007fe6200056b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000824620007c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008749062000df4565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200091c919062000e33565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009929062000ea0565b60405180910390fd5b620009af6000838362000aa160201b60201c565b8060046000828254620009c3919062000d36565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a1a919062000d36565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a81919062000ed3565b60405180910390a362000a9d6000838362000aa660201b60201c565b5050565b505050565b505050565b82805462000ab99062000f1f565b90600052602060002090601f01602090048101928262000add576000855562000b29565b82601f1062000af857805160ff191683800117855562000b29565b8280016001018555821562000b29579182015b8281111562000b2857825182559160200191906001019062000b0b565b5b50905062000b38919062000b3c565b5090565b5b8082111562000b5757600081600090555060010162000b3d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b8d8262000b60565b9050919050565b62000b9f8162000b80565b811462000bab57600080fd5b50565b60008151905062000bbf8162000b94565b92915050565b60006020828403121562000bde5762000bdd62000b5b565b5b600062000bee8482850162000bae565b91505092915050565b62000c028162000b80565b82525050565b600060408201905062000c1f600083018562000bf7565b62000c2e602083018462000bf7565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c7b8262000c35565b915062000c888362000c35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cc45762000cc362000c3f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d0b8262000c35565b915062000d188362000c35565b92508262000d2b5762000d2a62000ccf565b5b828204905092915050565b600062000d438262000c35565b915062000d508362000c35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d885762000d8762000c3f565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ddc60208362000d93565b915062000de98262000da4565b602082019050919050565b6000602082019050818103600083015262000e0f8162000dcd565b9050919050565b60008115159050919050565b62000e2d8162000e16565b82525050565b600060208201905062000e4a600083018462000e22565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e88601f8362000d93565b915062000e958262000e50565b602082019050919050565b6000602082019050818103600083015262000ebb8162000e79565b9050919050565b62000ecd8162000c35565b82525050565b600060208201905062000eea600083018462000ec2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f3857607f821691505b6020821081141562000f4f5762000f4e62000ef0565b5b50919050565b60805160a0516150aa62000fa56000396000818161128c0152611945015260008181610e54015281816137e1015281816138c2015281816138e90152818161398501526139ac01526150aa6000f3fe6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610bc8578063f2fde38b14610bf3578063f637434214610c1c578063f8b45b0514610c4757610309565b8063d85ba06314610b35578063dd62ed3e14610b60578063e2f4560514610b9d57610309565b8063bfd7928414610a15578063c024666814610a52578063c17b5b8c14610a7b578063c18bc19514610aa4578063c8c8ebe414610acd578063d257b34f14610af857610309565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610947578063aacebbe314610984578063b62496f5146109ad578063bbc0c742146109ea57610309565b80639fccce32146108b4578063a0d82dc5146108df578063a457c2d71461090a57610309565b80638da5cb5b146107b657806392136913146107e1578063924de9b71461080c57806395d89b41146108355780639a7a23d6146108605780639c3b4fdc1461088957610309565b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a041461070e5780637f2feddc146107395780638095d564146107765780638a8c523c1461079f57610309565b806370a0823114610691578063715018a6146106ce5780637571336a146106e557610309565b8063395093511461056d57806349bd5a5e146105aa5780634fbee193146105d55780636a486a8e146106125780636b9990531461063d5780636ddd17131461066657610309565b80631816467f116102bc578063203e727e11610296578063203e727e146104b157806323b872dd146104da57806327c8f83514610517578063313ce5671461054257610309565b80631816467f146104325780631a8145bb1461045b5780631f3fed8f1461048657610309565b8062b8cf2a1461030e57806306fdde0314610337578063095ea7b31461036257806310d5de531461039f5780631694505e146103dc57806318160ddd1461040757610309565b3661030957005b600080fd5b34801561031a57600080fd5b5061033560048036038101906103309190613c26565b610c72565b005b34801561034357600080fd5b5061034c610d82565b6040516103599190613cf7565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613d4f565b610e14565b6040516103969190613daa565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190613dc5565b610e32565b6040516103d39190613daa565b60405180910390f35b3480156103e857600080fd5b506103f1610e52565b6040516103fe9190613e51565b60405180910390f35b34801561041357600080fd5b5061041c610e76565b6040516104299190613e7b565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613dc5565b610e80565b005b34801561046757600080fd5b50610470610fbc565b60405161047d9190613e7b565b60405180910390f35b34801561049257600080fd5b5061049b610fc2565b6040516104a89190613e7b565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613e96565b610fc8565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613ec3565b6110d7565b60405161050e9190613daa565b60405180910390f35b34801561052357600080fd5b5061052c6111cf565b6040516105399190613f25565b60405180910390f35b34801561054e57600080fd5b506105576111d5565b6040516105649190613f5c565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613d4f565b6111de565b6040516105a19190613daa565b60405180910390f35b3480156105b657600080fd5b506105bf61128a565b6040516105cc9190613f25565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613dc5565b6112ae565b6040516106099190613daa565b60405180910390f35b34801561061e57600080fd5b50610627611304565b6040516106349190613e7b565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613dc5565b61130a565b005b34801561067257600080fd5b5061067b6113e1565b6040516106889190613daa565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613dc5565b6113f4565b6040516106c59190613e7b565b60405180910390f35b3480156106da57600080fd5b506106e361143c565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613fa3565b6114c4565b005b34801561071a57600080fd5b5061072361159b565b6040516107309190613e7b565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613dc5565b6115a1565b60405161076d9190613e7b565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613fe3565b6115b9565b005b3480156107ab57600080fd5b506107b46116b8565b005b3480156107c257600080fd5b506107cb61176c565b6040516107d89190613f25565b60405180910390f35b3480156107ed57600080fd5b506107f6611796565b6040516108039190613e7b565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190614036565b61179c565b005b34801561084157600080fd5b5061084a611835565b6040516108579190613cf7565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613fa3565b6118c7565b005b34801561089557600080fd5b5061089e6119e0565b6040516108ab9190613e7b565b60405180910390f35b3480156108c057600080fd5b506108c96119e6565b6040516108d69190613e7b565b60405180910390f35b3480156108eb57600080fd5b506108f46119ec565b6040516109019190613e7b565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613d4f565b6119f2565b60405161093e9190613daa565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613d4f565b611add565b60405161097b9190613daa565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613dc5565b611afb565b005b3480156109b957600080fd5b506109d460048036038101906109cf9190613dc5565b611c37565b6040516109e19190613daa565b60405180910390f35b3480156109f657600080fd5b506109ff611c57565b604051610a0c9190613daa565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a379190613dc5565b611c6a565b604051610a499190613daa565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190613fa3565b611c8a565b005b348015610a8757600080fd5b50610aa26004803603810190610a9d9190613fe3565b611daf565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190613e96565b611eae565b005b348015610ad957600080fd5b50610ae2611fbd565b604051610aef9190613e7b565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613e96565b611fc3565b604051610b2c9190613daa565b60405180910390f35b348015610b4157600080fd5b50610b4a612118565b604051610b579190613e7b565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b829190614063565b61211e565b604051610b949190613e7b565b60405180910390f35b348015610ba957600080fd5b50610bb26121a5565b604051610bbf9190613e7b565b60405180910390f35b348015610bd457600080fd5b50610bdd6121ab565b604051610bea9190613e7b565b60405180910390f35b348015610bff57600080fd5b50610c1a6004803603810190610c159190613dc5565b6121b1565b005b348015610c2857600080fd5b50610c316122a9565b604051610c3e9190613e7b565b60405180910390f35b348015610c5357600080fd5b50610c5c6122af565b604051610c699190613e7b565b60405180910390f35b610c7a6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610c9861176c565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906140ef565b60405180910390fd5b60005b8151811015610d7e576001806000848481518110610d1257610d1161410f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d769061416d565b915050610cf1565b5050565b606060058054610d91906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbd906141e5565b8015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b6000610e28610e216122b5565b84846122bd565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600454905090565b610e886122b5565b73ffffffffffffffffffffffffffffffffffffffff16610ea661176c565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906140ef565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b60175481565b610fd06122b5565b73ffffffffffffffffffffffffffffffffffffffff16610fee61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b906140ef565b60405180910390fd5b670de0b6b3a76400006103e8600161105a610e76565b6110649190614217565b61106e91906142a0565b61107891906142a0565b8110156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614343565b60405180910390fd5b670de0b6b3a7640000816110ce9190614217565b600b8190555050565b60006110e4848484612488565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061112f6122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906143d5565b60405180910390fd5b6111c3856111bb6122b5565b8584036122bd565b60019150509392505050565b61dead81565b60006012905090565b60006112806111eb6122b5565b8484600360006111f96122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b91906143f5565b6122bd565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b6113126122b5565b73ffffffffffffffffffffffffffffffffffffffff1661133061176c565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906140ef565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114446122b5565b73ffffffffffffffffffffffffffffffffffffffff1661146261176c565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906140ef565b60405180910390fd5b6114c26000613027565b565b6114cc6122b5565b73ffffffffffffffffffffffffffffffffffffffff166114ea61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906140ef565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b60026020528060005260406000206000915090505481565b6115c16122b5565b73ffffffffffffffffffffffffffffffffffffffff166115df61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140ef565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461165d91906143f5565b61166791906143f5565b600f81905550600d600f5411156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90614497565b60405180910390fd5b505050565b6116c06122b5565b73ffffffffffffffffffffffffffffffffffffffff166116de61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906140ef565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6117a46122b5565b73ffffffffffffffffffffffffffffffffffffffff166117c261176c565b73ffffffffffffffffffffffffffffffffffffffff1614611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906140ef565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b606060068054611844906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611870906141e5565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b6118cf6122b5565b73ffffffffffffffffffffffffffffffffffffffff166118ed61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a906140ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990614529565b60405180910390fd5b6119dc82826130ed565b5050565b60125481565b60195481565b60165481565b60008060036000611a016122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906145bb565b60405180910390fd5b611ad2611ac96122b5565b858584036122bd565b600191505092915050565b6000611af1611aea6122b5565b8484612488565b6001905092915050565b611b036122b5565b73ffffffffffffffffffffffffffffffffffffffff16611b2161176c565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906140ef565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b611c926122b5565b73ffffffffffffffffffffffffffffffffffffffff16611cb061176c565b73ffffffffffffffffffffffffffffffffffffffff1614611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906140ef565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611da39190613daa565b60405180910390a25050565b611db76122b5565b73ffffffffffffffffffffffffffffffffffffffff16611dd561176c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22906140ef565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611e5391906143f5565b611e5d91906143f5565b601381905550600d6013541115611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614497565b60405180910390fd5b505050565b611eb66122b5565b73ffffffffffffffffffffffffffffffffffffffff16611ed461176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140ef565b60405180910390fd5b670de0b6b3a76400006103e86005611f40610e76565b611f4a9190614217565b611f5491906142a0565b611f5e91906142a0565b811015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f979061464d565b60405180910390fd5b670de0b6b3a764000081611fb49190614217565b600d8190555050565b600b5481565b6000611fcd6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611feb61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140ef565b60405180910390fd5b620186a0600161204f610e76565b6120599190614217565b61206391906142a0565b8210156120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906146df565b60405180910390fd5b6103e860056120b2610e76565b6120bc9190614217565b6120c691906142a0565b821115612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614771565b60405180910390fd5b81600c8190555060019050919050565b600f5481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60115481565b6121b96122b5565b73ffffffffffffffffffffffffffffffffffffffff166121d761176c565b73ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612224906140ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614803565b60405180910390fd5b6122a681613027565b50565b60155481565b600d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490614895565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614927565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161247b9190613e7b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906149b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614a4b565b60405180910390fd5b60008114156125825761257d8383600061318e565b613022565b61258a61176c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125f857506125c861176c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126315750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561266b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126845750600760149054906101000a900460ff16155b15612b4a57600e60009054906101000a900460ff1661277e57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061273e5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614ab7565b60405180910390fd5b5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128225750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614b23565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129045750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129ab57600b5481111561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590614bb5565b60405180910390fd5b600d5461295a836113f4565b8261296591906143f5565b11156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614c21565b60405180910390fd5b612b49565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a4e5750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9d57600b54811115612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614cb3565b60405180910390fd5b612b48565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b4757600d54612afa836113f4565b82612b0591906143f5565b1115612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d90614c21565b60405180910390fd5b5b5b5b5b6000612b55306113f4565b90506000600c548210159050808015612b7a5750600e60019054906101000a900460ff165b8015612b935750600760149054906101000a900460ff16155b8015612be95750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c3f5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c955750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cd9576001600760146101000a81548160ff021916908315150217905550612cbd61340f565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d8f5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d9957600090505b6000811561301257601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dfc57506000601354115b15612ec957612e296064612e1b601354886136f690919063ffffffff16565b61370c90919063ffffffff16565b905060135460155482612e3c9190614217565b612e4691906142a0565b60186000828254612e5791906143f5565b9250508190555060135460165482612e6f9190614217565b612e7991906142a0565b60196000828254612e8a91906143f5565b9250508190555060135460145482612ea29190614217565b612eac91906142a0565b60176000828254612ebd91906143f5565b92505081905550612fee565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2457506000600f54115b15612fed57612f516064612f43600f54886136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600f5460115482612f649190614217565b612f6e91906142a0565b60186000828254612f7f91906143f5565b92505081905550600f5460125482612f979190614217565b612fa191906142a0565b60196000828254612fb291906143f5565b92505081905550600f5460105482612fca9190614217565b612fd491906142a0565b60176000828254612fe591906143f5565b925050819055505b5b60008111156130035761300287308361318e565b5b808561300f9190614cd3565b94505b61301d87878761318e565b505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f5906149b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326590614a4b565b60405180910390fd5b613279838383613722565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614d79565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339291906143f5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f69190613e7b565b60405180910390a3613409848484613727565b50505050565b600061341a306113f4565b9050600060195460175460185461343191906143f5565b61343b91906143f5565b905060008083148061344d5750600082145b1561345a575050506136f4565b6014600c546134699190614217565b831115613482576014600c5461347f9190614217565b92505b6000600283601854866134959190614217565b61349f91906142a0565b6134a991906142a0565b905060006134c0828661372c90919063ffffffff16565b905060004790506134d082613742565b60006134e5824761372c90919063ffffffff16565b9050600061351087613502601754856136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600061353b8861352d601954866136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600081838561354c9190614cd3565b6135569190614cd3565b9050600060188190555060006017819055506000601981905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135b690614dca565b60006040518083038185875af1925050503d80600081146135f3576040519150601f19603f3d011682016040523d82523d6000602084013e6135f8565b606091505b50508098505060008711801561360e5750600081115b1561365b5761361d878261397f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161365293929190614ddf565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136a190614dca565b60006040518083038185875af1925050503d80600081146136de576040519150601f19603f3d011682016040523d82523d6000602084013e6136e3565b606091505b505080985050505050505050505050505b565b600081836137049190614217565b905092915050565b6000818361371a91906142a0565b905092915050565b505050565b505050565b6000818361373a9190614cd3565b905092915050565b6000600267ffffffffffffffff81111561375f5761375e613a85565b5b60405190808252806020026020018201604052801561378d5781602001602082028036833780820191505090505b50905030816000815181106137a5576137a461410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561384a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386e9190614e2b565b816001815181106138825761388161410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138e7307f0000000000000000000000000000000000000000000000000000000000000000846122bd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613949959493929190614f51565b600060405180830381600087803b15801561396357600080fd5b505af1158015613977573d6000803e3d6000fd5b505050505050565b6139aa307f0000000000000000000000000000000000000000000000000000000000000000846122bd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613a1196959493929190614fab565b60606040518083038185885af1158015613a2f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a549190615021565b5050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613abd82613a74565b810181811067ffffffffffffffff82111715613adc57613adb613a85565b5b80604052505050565b6000613aef613a5b565b9050613afb8282613ab4565b919050565b600067ffffffffffffffff821115613b1b57613b1a613a85565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5c82613b31565b9050919050565b613b6c81613b51565b8114613b7757600080fd5b50565b600081359050613b8981613b63565b92915050565b6000613ba2613b9d84613b00565b613ae5565b90508083825260208201905060208402830185811115613bc557613bc4613b2c565b5b835b81811015613bee5780613bda8882613b7a565b845260208401935050602081019050613bc7565b5050509392505050565b600082601f830112613c0d57613c0c613a6f565b5b8135613c1d848260208601613b8f565b91505092915050565b600060208284031215613c3c57613c3b613a65565b5b600082013567ffffffffffffffff811115613c5a57613c59613a6a565b5b613c6684828501613bf8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ca9578082015181840152602081019050613c8e565b83811115613cb8576000848401525b50505050565b6000613cc982613c6f565b613cd38185613c7a565b9350613ce3818560208601613c8b565b613cec81613a74565b840191505092915050565b60006020820190508181036000830152613d118184613cbe565b905092915050565b6000819050919050565b613d2c81613d19565b8114613d3757600080fd5b50565b600081359050613d4981613d23565b92915050565b60008060408385031215613d6657613d65613a65565b5b6000613d7485828601613b7a565b9250506020613d8585828601613d3a565b9150509250929050565b60008115159050919050565b613da481613d8f565b82525050565b6000602082019050613dbf6000830184613d9b565b92915050565b600060208284031215613ddb57613dda613a65565b5b6000613de984828501613b7a565b91505092915050565b6000819050919050565b6000613e17613e12613e0d84613b31565b613df2565b613b31565b9050919050565b6000613e2982613dfc565b9050919050565b6000613e3b82613e1e565b9050919050565b613e4b81613e30565b82525050565b6000602082019050613e666000830184613e42565b92915050565b613e7581613d19565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b600060208284031215613eac57613eab613a65565b5b6000613eba84828501613d3a565b91505092915050565b600080600060608486031215613edc57613edb613a65565b5b6000613eea86828701613b7a565b9350506020613efb86828701613b7a565b9250506040613f0c86828701613d3a565b9150509250925092565b613f1f81613b51565b82525050565b6000602082019050613f3a6000830184613f16565b92915050565b600060ff82169050919050565b613f5681613f40565b82525050565b6000602082019050613f716000830184613f4d565b92915050565b613f8081613d8f565b8114613f8b57600080fd5b50565b600081359050613f9d81613f77565b92915050565b60008060408385031215613fba57613fb9613a65565b5b6000613fc885828601613b7a565b9250506020613fd985828601613f8e565b9150509250929050565b600080600060608486031215613ffc57613ffb613a65565b5b600061400a86828701613d3a565b935050602061401b86828701613d3a565b925050604061402c86828701613d3a565b9150509250925092565b60006020828403121561404c5761404b613a65565b5b600061405a84828501613f8e565b91505092915050565b6000806040838503121561407a57614079613a65565b5b600061408885828601613b7a565b925050602061409985828601613b7a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140d9602083613c7a565b91506140e4826140a3565b602082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417882613d19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ab576141aa61413e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141fd57607f821691505b60208210811415614211576142106141b6565b5b50919050565b600061422282613d19565b915061422d83613d19565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142665761426561413e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142ab82613d19565b91506142b683613d19565b9250826142c6576142c5614271565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061432d602f83613c7a565b9150614338826142d1565b604082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143bf602883613c7a565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b600061440082613d19565b915061440b83613d19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144405761443f61413e565b5b828201905092915050565b7f4d757374206b656570206665657320617420313325206f72206c657373000000600082015250565b6000614481601d83613c7a565b915061448c8261444b565b602082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614513603983613c7a565b915061451e826144b7565b604082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145a5602583613c7a565b91506145b082614549565b604082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614637602483613c7a565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006146c9603583613c7a565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061475b603483613c7a565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147ed602683613c7a565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061487f602483613c7a565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614911602283613c7a565b915061491c826148b5565b604082019050919050565b6000602082019050818103600083015261494081614904565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149a3602583613c7a565b91506149ae82614947565b604082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a35602383613c7a565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614aa1601683613c7a565b9150614aac82614a6b565b602082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f596f7572206163636f756e7420697320626c61636b6c69737465642100000000600082015250565b6000614b0d601c83613c7a565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b9f603583613c7a565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c0b601383613c7a565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c9d603683613c7a565b9150614ca882614c41565b604082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b6000614cde82613d19565b9150614ce983613d19565b925082821015614cfc57614cfb61413e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d63602683613c7a565b9150614d6e82614d07565b604082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b600081905092915050565b50565b6000614db4600083614d99565b9150614dbf82614da4565b600082019050919050565b6000614dd582614da7565b9150819050919050565b6000606082019050614df46000830186613e6c565b614e016020830185613e6c565b614e0e6040830184613e6c565b949350505050565b600081519050614e2581613b63565b92915050565b600060208284031215614e4157614e40613a65565b5b6000614e4f84828501614e16565b91505092915050565b6000819050919050565b6000614e7d614e78614e7384614e58565b613df2565b613d19565b9050919050565b614e8d81614e62565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ec881613b51565b82525050565b6000614eda8383614ebf565b60208301905092915050565b6000602082019050919050565b6000614efe82614e93565b614f088185614e9e565b9350614f1383614eaf565b8060005b83811015614f44578151614f2b8882614ece565b9750614f3683614ee6565b925050600181019050614f17565b5085935050505092915050565b600060a082019050614f666000830188613e6c565b614f736020830187614e84565b8181036040830152614f858186614ef3565b9050614f946060830185613f16565b614fa16080830184613e6c565b9695505050505050565b600060c082019050614fc06000830189613f16565b614fcd6020830188613e6c565b614fda6040830187614e84565b614fe76060830186614e84565b614ff46080830185613f16565b61500160a0830184613e6c565b979650505050505050565b60008151905061501b81613d23565b92915050565b60008060006060848603121561503a57615039613a65565b5b60006150488682870161500c565b93505060206150598682870161500c565b925050604061506a8682870161500c565b915050925092509256fea26469706673582212202e2a4c3a28e29d067612d8e3746d9495b23203df4f6373a345bbfa9dd989a55564736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610bc8578063f2fde38b14610bf3578063f637434214610c1c578063f8b45b0514610c4757610309565b8063d85ba06314610b35578063dd62ed3e14610b60578063e2f4560514610b9d57610309565b8063bfd7928414610a15578063c024666814610a52578063c17b5b8c14610a7b578063c18bc19514610aa4578063c8c8ebe414610acd578063d257b34f14610af857610309565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610947578063aacebbe314610984578063b62496f5146109ad578063bbc0c742146109ea57610309565b80639fccce32146108b4578063a0d82dc5146108df578063a457c2d71461090a57610309565b80638da5cb5b146107b657806392136913146107e1578063924de9b71461080c57806395d89b41146108355780639a7a23d6146108605780639c3b4fdc1461088957610309565b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a041461070e5780637f2feddc146107395780638095d564146107765780638a8c523c1461079f57610309565b806370a0823114610691578063715018a6146106ce5780637571336a146106e557610309565b8063395093511461056d57806349bd5a5e146105aa5780634fbee193146105d55780636a486a8e146106125780636b9990531461063d5780636ddd17131461066657610309565b80631816467f116102bc578063203e727e11610296578063203e727e146104b157806323b872dd146104da57806327c8f83514610517578063313ce5671461054257610309565b80631816467f146104325780631a8145bb1461045b5780631f3fed8f1461048657610309565b8062b8cf2a1461030e57806306fdde0314610337578063095ea7b31461036257806310d5de531461039f5780631694505e146103dc57806318160ddd1461040757610309565b3661030957005b600080fd5b34801561031a57600080fd5b5061033560048036038101906103309190613c26565b610c72565b005b34801561034357600080fd5b5061034c610d82565b6040516103599190613cf7565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613d4f565b610e14565b6040516103969190613daa565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190613dc5565b610e32565b6040516103d39190613daa565b60405180910390f35b3480156103e857600080fd5b506103f1610e52565b6040516103fe9190613e51565b60405180910390f35b34801561041357600080fd5b5061041c610e76565b6040516104299190613e7b565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613dc5565b610e80565b005b34801561046757600080fd5b50610470610fbc565b60405161047d9190613e7b565b60405180910390f35b34801561049257600080fd5b5061049b610fc2565b6040516104a89190613e7b565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613e96565b610fc8565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613ec3565b6110d7565b60405161050e9190613daa565b60405180910390f35b34801561052357600080fd5b5061052c6111cf565b6040516105399190613f25565b60405180910390f35b34801561054e57600080fd5b506105576111d5565b6040516105649190613f5c565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613d4f565b6111de565b6040516105a19190613daa565b60405180910390f35b3480156105b657600080fd5b506105bf61128a565b6040516105cc9190613f25565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613dc5565b6112ae565b6040516106099190613daa565b60405180910390f35b34801561061e57600080fd5b50610627611304565b6040516106349190613e7b565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613dc5565b61130a565b005b34801561067257600080fd5b5061067b6113e1565b6040516106889190613daa565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613dc5565b6113f4565b6040516106c59190613e7b565b60405180910390f35b3480156106da57600080fd5b506106e361143c565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613fa3565b6114c4565b005b34801561071a57600080fd5b5061072361159b565b6040516107309190613e7b565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613dc5565b6115a1565b60405161076d9190613e7b565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613fe3565b6115b9565b005b3480156107ab57600080fd5b506107b46116b8565b005b3480156107c257600080fd5b506107cb61176c565b6040516107d89190613f25565b60405180910390f35b3480156107ed57600080fd5b506107f6611796565b6040516108039190613e7b565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190614036565b61179c565b005b34801561084157600080fd5b5061084a611835565b6040516108579190613cf7565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613fa3565b6118c7565b005b34801561089557600080fd5b5061089e6119e0565b6040516108ab9190613e7b565b60405180910390f35b3480156108c057600080fd5b506108c96119e6565b6040516108d69190613e7b565b60405180910390f35b3480156108eb57600080fd5b506108f46119ec565b6040516109019190613e7b565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613d4f565b6119f2565b60405161093e9190613daa565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613d4f565b611add565b60405161097b9190613daa565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613dc5565b611afb565b005b3480156109b957600080fd5b506109d460048036038101906109cf9190613dc5565b611c37565b6040516109e19190613daa565b60405180910390f35b3480156109f657600080fd5b506109ff611c57565b604051610a0c9190613daa565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a379190613dc5565b611c6a565b604051610a499190613daa565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190613fa3565b611c8a565b005b348015610a8757600080fd5b50610aa26004803603810190610a9d9190613fe3565b611daf565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190613e96565b611eae565b005b348015610ad957600080fd5b50610ae2611fbd565b604051610aef9190613e7b565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613e96565b611fc3565b604051610b2c9190613daa565b60405180910390f35b348015610b4157600080fd5b50610b4a612118565b604051610b579190613e7b565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b829190614063565b61211e565b604051610b949190613e7b565b60405180910390f35b348015610ba957600080fd5b50610bb26121a5565b604051610bbf9190613e7b565b60405180910390f35b348015610bd457600080fd5b50610bdd6121ab565b604051610bea9190613e7b565b60405180910390f35b348015610bff57600080fd5b50610c1a6004803603810190610c159190613dc5565b6121b1565b005b348015610c2857600080fd5b50610c316122a9565b604051610c3e9190613e7b565b60405180910390f35b348015610c5357600080fd5b50610c5c6122af565b604051610c699190613e7b565b60405180910390f35b610c7a6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610c9861176c565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906140ef565b60405180910390fd5b60005b8151811015610d7e576001806000848481518110610d1257610d1161410f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d769061416d565b915050610cf1565b5050565b606060058054610d91906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbd906141e5565b8015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b6000610e28610e216122b5565b84846122bd565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600454905090565b610e886122b5565b73ffffffffffffffffffffffffffffffffffffffff16610ea661176c565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906140ef565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b60175481565b610fd06122b5565b73ffffffffffffffffffffffffffffffffffffffff16610fee61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b906140ef565b60405180910390fd5b670de0b6b3a76400006103e8600161105a610e76565b6110649190614217565b61106e91906142a0565b61107891906142a0565b8110156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614343565b60405180910390fd5b670de0b6b3a7640000816110ce9190614217565b600b8190555050565b60006110e4848484612488565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061112f6122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906143d5565b60405180910390fd5b6111c3856111bb6122b5565b8584036122bd565b60019150509392505050565b61dead81565b60006012905090565b60006112806111eb6122b5565b8484600360006111f96122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b91906143f5565b6122bd565b6001905092915050565b7f000000000000000000000000a5b04ae95388928e5a2947c3ef8190888bfc9db281565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b6113126122b5565b73ffffffffffffffffffffffffffffffffffffffff1661133061176c565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906140ef565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114446122b5565b73ffffffffffffffffffffffffffffffffffffffff1661146261176c565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906140ef565b60405180910390fd5b6114c26000613027565b565b6114cc6122b5565b73ffffffffffffffffffffffffffffffffffffffff166114ea61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906140ef565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b60026020528060005260406000206000915090505481565b6115c16122b5565b73ffffffffffffffffffffffffffffffffffffffff166115df61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140ef565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461165d91906143f5565b61166791906143f5565b600f81905550600d600f5411156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90614497565b60405180910390fd5b505050565b6116c06122b5565b73ffffffffffffffffffffffffffffffffffffffff166116de61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906140ef565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6117a46122b5565b73ffffffffffffffffffffffffffffffffffffffff166117c261176c565b73ffffffffffffffffffffffffffffffffffffffff1614611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906140ef565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b606060068054611844906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611870906141e5565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b6118cf6122b5565b73ffffffffffffffffffffffffffffffffffffffff166118ed61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a906140ef565b60405180910390fd5b7f000000000000000000000000a5b04ae95388928e5a2947c3ef8190888bfc9db273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990614529565b60405180910390fd5b6119dc82826130ed565b5050565b60125481565b60195481565b60165481565b60008060036000611a016122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906145bb565b60405180910390fd5b611ad2611ac96122b5565b858584036122bd565b600191505092915050565b6000611af1611aea6122b5565b8484612488565b6001905092915050565b611b036122b5565b73ffffffffffffffffffffffffffffffffffffffff16611b2161176c565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906140ef565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b611c926122b5565b73ffffffffffffffffffffffffffffffffffffffff16611cb061176c565b73ffffffffffffffffffffffffffffffffffffffff1614611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906140ef565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611da39190613daa565b60405180910390a25050565b611db76122b5565b73ffffffffffffffffffffffffffffffffffffffff16611dd561176c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22906140ef565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611e5391906143f5565b611e5d91906143f5565b601381905550600d6013541115611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614497565b60405180910390fd5b505050565b611eb66122b5565b73ffffffffffffffffffffffffffffffffffffffff16611ed461176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140ef565b60405180910390fd5b670de0b6b3a76400006103e86005611f40610e76565b611f4a9190614217565b611f5491906142a0565b611f5e91906142a0565b811015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f979061464d565b60405180910390fd5b670de0b6b3a764000081611fb49190614217565b600d8190555050565b600b5481565b6000611fcd6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611feb61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140ef565b60405180910390fd5b620186a0600161204f610e76565b6120599190614217565b61206391906142a0565b8210156120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906146df565b60405180910390fd5b6103e860056120b2610e76565b6120bc9190614217565b6120c691906142a0565b821115612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614771565b60405180910390fd5b81600c8190555060019050919050565b600f5481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60115481565b6121b96122b5565b73ffffffffffffffffffffffffffffffffffffffff166121d761176c565b73ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612224906140ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614803565b60405180910390fd5b6122a681613027565b50565b60155481565b600d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490614895565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614927565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161247b9190613e7b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906149b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614a4b565b60405180910390fd5b60008114156125825761257d8383600061318e565b613022565b61258a61176c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125f857506125c861176c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126315750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561266b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126845750600760149054906101000a900460ff16155b15612b4a57600e60009054906101000a900460ff1661277e57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061273e5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614ab7565b60405180910390fd5b5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128225750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614b23565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129045750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129ab57600b5481111561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590614bb5565b60405180910390fd5b600d5461295a836113f4565b8261296591906143f5565b11156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614c21565b60405180910390fd5b612b49565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a4e5750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9d57600b54811115612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614cb3565b60405180910390fd5b612b48565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b4757600d54612afa836113f4565b82612b0591906143f5565b1115612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d90614c21565b60405180910390fd5b5b5b5b5b6000612b55306113f4565b90506000600c548210159050808015612b7a5750600e60019054906101000a900460ff165b8015612b935750600760149054906101000a900460ff16155b8015612be95750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c3f5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c955750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cd9576001600760146101000a81548160ff021916908315150217905550612cbd61340f565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d8f5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d9957600090505b6000811561301257601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dfc57506000601354115b15612ec957612e296064612e1b601354886136f690919063ffffffff16565b61370c90919063ffffffff16565b905060135460155482612e3c9190614217565b612e4691906142a0565b60186000828254612e5791906143f5565b9250508190555060135460165482612e6f9190614217565b612e7991906142a0565b60196000828254612e8a91906143f5565b9250508190555060135460145482612ea29190614217565b612eac91906142a0565b60176000828254612ebd91906143f5565b92505081905550612fee565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2457506000600f54115b15612fed57612f516064612f43600f54886136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600f5460115482612f649190614217565b612f6e91906142a0565b60186000828254612f7f91906143f5565b92505081905550600f5460125482612f979190614217565b612fa191906142a0565b60196000828254612fb291906143f5565b92505081905550600f5460105482612fca9190614217565b612fd491906142a0565b60176000828254612fe591906143f5565b925050819055505b5b60008111156130035761300287308361318e565b5b808561300f9190614cd3565b94505b61301d87878761318e565b505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f5906149b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326590614a4b565b60405180910390fd5b613279838383613722565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614d79565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339291906143f5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f69190613e7b565b60405180910390a3613409848484613727565b50505050565b600061341a306113f4565b9050600060195460175460185461343191906143f5565b61343b91906143f5565b905060008083148061344d5750600082145b1561345a575050506136f4565b6014600c546134699190614217565b831115613482576014600c5461347f9190614217565b92505b6000600283601854866134959190614217565b61349f91906142a0565b6134a991906142a0565b905060006134c0828661372c90919063ffffffff16565b905060004790506134d082613742565b60006134e5824761372c90919063ffffffff16565b9050600061351087613502601754856136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600061353b8861352d601954866136f690919063ffffffff16565b61370c90919063ffffffff16565b9050600081838561354c9190614cd3565b6135569190614cd3565b9050600060188190555060006017819055506000601981905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135b690614dca565b60006040518083038185875af1925050503d80600081146135f3576040519150601f19603f3d011682016040523d82523d6000602084013e6135f8565b606091505b50508098505060008711801561360e5750600081115b1561365b5761361d878261397f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161365293929190614ddf565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136a190614dca565b60006040518083038185875af1925050503d80600081146136de576040519150601f19603f3d011682016040523d82523d6000602084013e6136e3565b606091505b505080985050505050505050505050505b565b600081836137049190614217565b905092915050565b6000818361371a91906142a0565b905092915050565b505050565b505050565b6000818361373a9190614cd3565b905092915050565b6000600267ffffffffffffffff81111561375f5761375e613a85565b5b60405190808252806020026020018201604052801561378d5781602001602082028036833780820191505090505b50905030816000815181106137a5576137a461410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561384a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386e9190614e2b565b816001815181106138825761388161410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138e7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122bd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613949959493929190614f51565b600060405180830381600087803b15801561396357600080fd5b505af1158015613977573d6000803e3d6000fd5b505050505050565b6139aa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122bd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613a1196959493929190614fab565b60606040518083038185885af1158015613a2f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a549190615021565b5050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613abd82613a74565b810181811067ffffffffffffffff82111715613adc57613adb613a85565b5b80604052505050565b6000613aef613a5b565b9050613afb8282613ab4565b919050565b600067ffffffffffffffff821115613b1b57613b1a613a85565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5c82613b31565b9050919050565b613b6c81613b51565b8114613b7757600080fd5b50565b600081359050613b8981613b63565b92915050565b6000613ba2613b9d84613b00565b613ae5565b90508083825260208201905060208402830185811115613bc557613bc4613b2c565b5b835b81811015613bee5780613bda8882613b7a565b845260208401935050602081019050613bc7565b5050509392505050565b600082601f830112613c0d57613c0c613a6f565b5b8135613c1d848260208601613b8f565b91505092915050565b600060208284031215613c3c57613c3b613a65565b5b600082013567ffffffffffffffff811115613c5a57613c59613a6a565b5b613c6684828501613bf8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ca9578082015181840152602081019050613c8e565b83811115613cb8576000848401525b50505050565b6000613cc982613c6f565b613cd38185613c7a565b9350613ce3818560208601613c8b565b613cec81613a74565b840191505092915050565b60006020820190508181036000830152613d118184613cbe565b905092915050565b6000819050919050565b613d2c81613d19565b8114613d3757600080fd5b50565b600081359050613d4981613d23565b92915050565b60008060408385031215613d6657613d65613a65565b5b6000613d7485828601613b7a565b9250506020613d8585828601613d3a565b9150509250929050565b60008115159050919050565b613da481613d8f565b82525050565b6000602082019050613dbf6000830184613d9b565b92915050565b600060208284031215613ddb57613dda613a65565b5b6000613de984828501613b7a565b91505092915050565b6000819050919050565b6000613e17613e12613e0d84613b31565b613df2565b613b31565b9050919050565b6000613e2982613dfc565b9050919050565b6000613e3b82613e1e565b9050919050565b613e4b81613e30565b82525050565b6000602082019050613e666000830184613e42565b92915050565b613e7581613d19565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b600060208284031215613eac57613eab613a65565b5b6000613eba84828501613d3a565b91505092915050565b600080600060608486031215613edc57613edb613a65565b5b6000613eea86828701613b7a565b9350506020613efb86828701613b7a565b9250506040613f0c86828701613d3a565b9150509250925092565b613f1f81613b51565b82525050565b6000602082019050613f3a6000830184613f16565b92915050565b600060ff82169050919050565b613f5681613f40565b82525050565b6000602082019050613f716000830184613f4d565b92915050565b613f8081613d8f565b8114613f8b57600080fd5b50565b600081359050613f9d81613f77565b92915050565b60008060408385031215613fba57613fb9613a65565b5b6000613fc885828601613b7a565b9250506020613fd985828601613f8e565b9150509250929050565b600080600060608486031215613ffc57613ffb613a65565b5b600061400a86828701613d3a565b935050602061401b86828701613d3a565b925050604061402c86828701613d3a565b9150509250925092565b60006020828403121561404c5761404b613a65565b5b600061405a84828501613f8e565b91505092915050565b6000806040838503121561407a57614079613a65565b5b600061408885828601613b7a565b925050602061409985828601613b7a565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140d9602083613c7a565b91506140e4826140a3565b602082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417882613d19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ab576141aa61413e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141fd57607f821691505b60208210811415614211576142106141b6565b5b50919050565b600061422282613d19565b915061422d83613d19565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142665761426561413e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142ab82613d19565b91506142b683613d19565b9250826142c6576142c5614271565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061432d602f83613c7a565b9150614338826142d1565b604082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143bf602883613c7a565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b600061440082613d19565b915061440b83613d19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144405761443f61413e565b5b828201905092915050565b7f4d757374206b656570206665657320617420313325206f72206c657373000000600082015250565b6000614481601d83613c7a565b915061448c8261444b565b602082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614513603983613c7a565b915061451e826144b7565b604082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145a5602583613c7a565b91506145b082614549565b604082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614637602483613c7a565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006146c9603583613c7a565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061475b603483613c7a565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147ed602683613c7a565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061487f602483613c7a565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614911602283613c7a565b915061491c826148b5565b604082019050919050565b6000602082019050818103600083015261494081614904565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149a3602583613c7a565b91506149ae82614947565b604082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a35602383613c7a565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614aa1601683613c7a565b9150614aac82614a6b565b602082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f596f7572206163636f756e7420697320626c61636b6c69737465642100000000600082015250565b6000614b0d601c83613c7a565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b9f603583613c7a565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c0b601383613c7a565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c9d603683613c7a565b9150614ca882614c41565b604082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b6000614cde82613d19565b9150614ce983613d19565b925082821015614cfc57614cfb61413e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d63602683613c7a565b9150614d6e82614d07565b604082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b600081905092915050565b50565b6000614db4600083614d99565b9150614dbf82614da4565b600082019050919050565b6000614dd582614da7565b9150819050919050565b6000606082019050614df46000830186613e6c565b614e016020830185613e6c565b614e0e6040830184613e6c565b949350505050565b600081519050614e2581613b63565b92915050565b600060208284031215614e4157614e40613a65565b5b6000614e4f84828501614e16565b91505092915050565b6000819050919050565b6000614e7d614e78614e7384614e58565b613df2565b613d19565b9050919050565b614e8d81614e62565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ec881613b51565b82525050565b6000614eda8383614ebf565b60208301905092915050565b6000602082019050919050565b6000614efe82614e93565b614f088185614e9e565b9350614f1383614eaf565b8060005b83811015614f44578151614f2b8882614ece565b9750614f3683614ee6565b925050600181019050614f17565b5085935050505092915050565b600060a082019050614f666000830188613e6c565b614f736020830187614e84565b8181036040830152614f858186614ef3565b9050614f946060830185613f16565b614fa16080830184613e6c565b9695505050505050565b600060c082019050614fc06000830189613f16565b614fcd6020830188613e6c565b614fda6040830187614e84565b614fe76060830186614e84565b614ff46080830185613f16565b61500160a0830184613e6c565b979650505050505050565b60008151905061501b81613d23565b92915050565b60008060006060848603121561503a57615039613a65565b5b60006150488682870161500c565b93505060206150598682870161500c565b925050604061506a8682870161500c565b915050925092509256fea26469706673582212202e2a4c3a28e29d067612d8e3746d9495b23203df4f6373a345bbfa9dd989a55564736f6c634300080c0033

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.