ETH Price: $3,521.24 (+5.25%)

Token

ERC20 ***
 

Overview

Max Total Supply

1,000,000 ERC20 ***

Holders

111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 ERC20 ***

Value
$0.00
0x486396e31e0be94f00171df5f04e18073de86bc9
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:
HASHIELDAI

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-11
*/

// SPDX-License-Identifier: MIT
/*
Control your access. Secure your passwords. Defend your data.

Website: https://hashieldai.com/
DApp: https://app.hashieldai.com/
X: https://x.com/HashieldAI
Telegram Portal: https://t.me/HashieldAI_Portal

*/


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.5.0;

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

pragma solidity >=0.6.2;

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

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

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

pragma solidity >=0.6.2;


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



pragma solidity 0.8.27;

contract HASHIELDAI is ERC20, ERC20Burnable, Ownable2Step {

    uint16 public swapThresholdRatio;

    uint256 private _taxwalletPending;

    address public taxwalletAddress;
    uint16[3] public taxwalletFees;

    mapping (address => bool) public isExcludedFromFees;

    uint16[3] public totalFees;
    bool private _swapping;

    string private constant _name = "HASHIELDAI";
    string private constant _symbol = "HSAI";

    IUniswapV2Router02 public routerV2;
    address public pairV2;
    mapping (address => bool) public AMMPairs;

    mapping (address => bool) public isExcludedFromLimits;

    uint256 public maxWalletAmount;

    uint256 public maxBuyAmount;

    event SwapThresholdUpdated(uint16 swapThresholdRatio);

    event taxwalletAddressUpdated(address taxwalletAddress);
    event taxwalletFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event taxwalletFeeSent(address recipient, uint256 amount);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event RouterV2Updated(address indexed routerV2);
    event AMMPairsUpdated(address indexed AMMPair, bool isPair);

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event MaxWalletAmountUpdated(uint256 maxWalletAmount);

    event MaxBuyAmountUpdated(uint256 maxBuyAmount);

    constructor() ERC20(_name, _symbol)
    {
        address supplyRecipient = 0x63Ad468f626dFAEE7bd31838122D902fb2a6F064;

        updateSwapThreshold(50);

        taxwalletAddressSetup(0x48c0B4Fb7f68FB74b99D873533b817eC0f5Eb01B);
        taxwalletFeesSetup(2000, 2000, 0);

        excludeFromFees(supplyRecipient, true);
        excludeFromFees(address(this), true);

        _excludeFromLimits(supplyRecipient, true);
        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0), true);

        updateMaxWalletAmount(20_000*10**18);

        updateMaxBuyAmount(20_000*10**18);

        _mint(supplyRecipient, 1_000_000*10**18);
        _transferOwnership(0x63Ad468f626dFAEE7bd31838122D902fb2a6F064);
    }


    receive() external payable {}

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

    function _swapTokensForCoin(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = routerV2.WETH();

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

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

    function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner {
        require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold");
        swapThresholdRatio = _swapThresholdRatio;

        emit SwapThresholdUpdated(_swapThresholdRatio);
    }

    function getSwapThresholdAmount() public view returns (uint256) {
        return balanceOf(pairV2) * swapThresholdRatio / 10000;
    }

    function getAllPending() public view returns (uint256) {
        return 0 + _taxwalletPending;
    }

    function taxwalletAddressSetup(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address");

        taxwalletAddress = _newAddress;
        excludeFromFees(_newAddress, true);
        _excludeFromLimits(_newAddress, true);

        emit taxwalletAddressUpdated(_newAddress);
    }

    function taxwalletFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - taxwalletFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - taxwalletFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - taxwalletFees[2] + _transferFee;
        require(totalFees[0] <= 5000 && totalFees[1] <= 5000 && totalFees[2] <= 5000, "TaxesDefaultRouter: Cannot exceed max total fee of 50%");

        taxwalletFees = [_buyFee, _sellFee, _transferFee];

        emit taxwalletFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function excludeFromFees(address account, bool isExcluded) public onlyOwner {
        isExcludedFromFees[account] = isExcluded;

        emit ExcludeFromFees(account, isExcluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            uint256 fees = 0;
            uint8 txType = 3;

            if (AMMPairs[from]) {
                if (totalFees[0] > 0) txType = 0;
            }
            else if (AMMPairs[to]) {
                if (totalFees[1] > 0) txType = 1;
            }
            else if (totalFees[2] > 0) txType = 2;

            if (txType < 3) {

                fees = amount * totalFees[txType] / 10000;
                amount -= fees;

                _taxwalletPending += fees * taxwalletFees[txType] / totalFees[txType];


            }

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

    uint256 swapThresholdAmount = getSwapThresholdAmount();
    bool canSwap = getAllPending() >= swapThresholdAmount && balanceOf(pairV2) > 0;

    if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) {
        _swapping = true;

    if (false || swapThresholdAmount > 0) {
        uint256 token2Swap = 0 + swapThresholdAmount;
        bool success = false;

        _swapTokensForCoin(token2Swap);
        uint256 coinsReceived = address(this).balance;

        uint256 taxwalletPortion = coinsReceived * swapThresholdAmount / token2Swap;
        if (taxwalletPortion > 0) {
            success = payable(taxwalletAddress).send(taxwalletPortion);
            if (success) {
                emit taxwalletFeeSent(taxwalletAddress, taxwalletPortion);
            }
        }
        _taxwalletPending -= swapThresholdAmount;

        }

            _swapping = false;
        }

        super._transfer(from, to, amount);

    }

    function updateRouterV2(address router) external onlyOwner {
        routerV2 = IUniswapV2Router02(router);
        pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());

        _excludeFromLimits(router, true);

        _setAMMPair(pairV2, true);

        emit RouterV2Updated(router);
    }

    function setAMMPair(address pair, bool isPair) external onlyOwner {
        require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list");

        _setAMMPair(pair, isPair);
    }

    function _setAMMPair(address pair, bool isPair) private {
        AMMPairs[pair] = isPair;

        if (isPair) {
            _excludeFromLimits(pair, true);

        }

        emit AMMPairsUpdated(pair, isPair);
    }

    function excludeFromLimits(address account, bool isExcluded) external onlyOwner {
        _excludeFromLimits(account, isExcluded);
    }

    function _excludeFromLimits(address account, bool isExcluded) internal {
        isExcludedFromLimits[account] = isExcluded;

        emit ExcludeFromLimits(account, isExcluded);
    }

    function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low");
        maxWalletAmount = _maxWalletAmount;

        emit MaxWalletAmountUpdated(_maxWalletAmount);
    }

    function _maxWalletSafeLimit() private view returns (uint256) {
        return totalSupply() / 1000;
    }

    function _maxTxSafeLimit() private view returns (uint256) {
        return totalSupply() * 5 / 10000;
    }

    function updateMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner {
        require(_maxBuyAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low");
        maxBuyAmount = _maxBuyAmount;

        emit MaxBuyAmountUpdated(_maxBuyAmount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY
            require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit");
        }

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

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (!isExcludedFromLimits[to]) {
            require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit");
        }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","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":false,"internalType":"address","name":"taxwalletAddress","type":"address"}],"name":"taxwalletAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"taxwalletFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"taxwalletFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxwalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"taxwalletAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxwalletFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"taxwalletFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"updateRouterV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f5ffd5b506040518060400160405280600a81526020017f4841534849454c444149000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4853414900000000000000000000000000000000000000000000000000000000815250816003908161008b9190611237565b50806004908161009b9190611237565b5050506100ba6100af6101e260201b60201c565b6101e960201b60201c565b5f7363ad468f626dfaee7bd31838122d902fb2a6f06490506100e2603261021f60201b60201c565b6101057348c0b4fb7f68fb74b99d873533b817ec0f5eb01b6102dc60201b60201c565b6101186107d0805f6103f460201b60201c565b61012981600161078060201b60201c565b61013a30600161078060201b60201c565b61014b81600161083460201b60201c565b61015c30600161083460201b60201c565b61016d5f600161083460201b60201c565b61018669043c33c19375648000006108da60201b60201c565b61019f69043c33c193756480000061097960201b60201c565b6101b98169d3c21bcecceda1000000610a1860201b60201c565b6101dc7363ad468f626dfaee7bd31838122d902fb2a6f0646101e960201b60201c565b50611a7a565b5f33905090565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561021c81610b7260201b60201c565b50565b61022d610c3560201b60201c565b5f8161ffff1611801561024657506101f48161ffff1611155b610285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027c906113ac565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720816040516102d191906113e6565b60405180910390a150565b6102ea610c3560201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034f90611495565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a981600161078060201b60201c565b6103ba81600161083460201b60201c565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac816040516103e991906114f2565b60405180910390a150565b610402610c3560201b60201c565b8260095f600381106104175761041661150b565b5b601091828204019190066002029054906101000a900461ffff16600b5f600381106104455761044461150b565b5b601091828204019190066002029054906101000a900461ffff166104699190611565565b610473919061159a565b600b5f600381106104875761048661150b565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106104c2576104c161150b565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106104f1576104f061150b565b5b601091828204019190066002029054906101000a900461ffff166105159190611565565b61051f919061159a565b600b6001600381106105345761053361150b565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555080600960026003811061056f5761056e61150b565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061059e5761059d61150b565b5b601091828204019190066002029054906101000a900461ffff166105c29190611565565b6105cc919061159a565b600b6002600381106105e1576105e061150b565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f6003811061061d5761061c61150b565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115801561067d5750611388600b60016003811061065c5761065b61150b565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156106bd5750611388600b60026003811061069c5761069b61150b565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f39061163f565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff16815250600990600361073f929190610f43565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df48383836040516107739392919061165d565b60405180910390a1505050565b61078e610c3560201b60201c565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161082891906116ac565b60405180910390a25050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516108ce91906116ac565b60405180910390a25050565b6108e8610c3560201b60201c565b6108f6610cbf60201b60201c565b811015610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f9061170f565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e0018160405161096e919061173c565b60405180910390a150565b610987610c3560201b60201c565b610995610ce060201b60201c565b8110156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061179f565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610a0d919061173c565b60405180910390a150565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90611807565b60405180910390fd5b610a975f8383610d0d60201b60201c565b8060025f828254610aa89190611825565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b55919061173c565b60405180910390a3610b6e5f8383610e0b60201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610c436101e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16610c67610ec360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906118a2565b60405180910390fd5b565b5f6103e8610cd1610eeb60201b60201c565b610cdb91906118ed565b905090565b5f6127106005610cf4610eeb60201b60201c565b610cfe919061191d565b610d0891906118ed565b905090565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610daa5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610df557601154811115610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb906119ce565b60405180910390fd5b5b610e06838383610ef460201b60201c565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610ead57601054610e6b83610ef960201b60201c565b1115610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390611a5c565b60405180910390fd5b5b610ebe838383610f3e60201b60201c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600254905090565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b505050565b826003600f01601090048101928215610fce579160200282015f5b83821115610f9e57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302610f5e565b8015610fcc5782816101000a81549061ffff0219169055600201602081600101049283019260010302610f9e565b505b509050610fdb9190610fdf565b5090565b5b80821115610ff6575f815f905550600101610fe0565b5090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061107557607f821691505b60208210810361108857611087611031565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826110af565b6110f486836110af565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61113861113361112e8461110c565b611115565b61110c565b9050919050565b5f819050919050565b6111518361111e565b61116561115d8261113f565b8484546110bb565b825550505050565b5f5f905090565b61117c61116d565b611187818484611148565b505050565b5b818110156111aa5761119f5f82611174565b60018101905061118d565b5050565b601f8211156111ef576111c08161108e565b6111c9846110a0565b810160208510156111d8578190505b6111ec6111e4856110a0565b83018261118c565b50505b505050565b5f82821c905092915050565b5f61120f5f19846008026111f4565b1980831691505092915050565b5f6112278383611200565b9150826002028217905092915050565b61124082610ffa565b67ffffffffffffffff81111561125957611258611004565b5b611263825461105e565b61126e8282856111ae565b5f60209050601f83116001811461129f575f841561128d578287015190505b611297858261121c565b8655506112fe565b601f1984166112ad8661108e565b5f5b828110156112d4578489015182556001820191506020850194506020810190506112af565b868310156112f157848901516112ed601f891682611200565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f611396604b83611306565b91506113a182611316565b606082019050919050565b5f6020820190508181035f8301526113c38161138a565b9050919050565b5f61ffff82169050919050565b6113e0816113ca565b82525050565b5f6020820190506113f95f8301846113d7565b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f61147f604683611306565b915061148a826113ff565b606082019050919050565b5f6020820190508181035f8301526114ac81611473565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114dc826114b3565b9050919050565b6114ec816114d2565b82525050565b5f6020820190506115055f8301846114e3565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61156f826113ca565b915061157a836113ca565b9250828203905061ffff81111561159457611593611538565b5b92915050565b5f6115a4826113ca565b91506115af836113ca565b9250828201905061ffff8111156115c9576115c8611538565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f611629603683611306565b9150611634826115cf565b604082019050919050565b5f6020820190508181035f8301526116568161161d565b9050919050565b5f6060820190506116705f8301866113d7565b61167d60208301856113d7565b61168a60408301846113d7565b949350505050565b5f8115159050919050565b6116a681611692565b82525050565b5f6020820190506116bf5f83018461169d565b92915050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f6116f9601883611306565b9150611704826116c5565b602082019050919050565b5f6020820190508181035f830152611726816116ed565b9050919050565b6117368161110c565b82525050565b5f60208201905061174f5f83018461172d565b92915050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f611789601483611306565b915061179482611755565b602082019050919050565b5f6020820190508181035f8301526117b68161177d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6117f1601f83611306565b91506117fc826117bd565b602082019050919050565b5f6020820190508181035f83015261181e816117e5565b9050919050565b5f61182f8261110c565b915061183a8361110c565b925082820190508082111561185257611851611538565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61188c602083611306565b915061189782611858565b602082019050919050565b5f6020820190508181035f8301526118b981611880565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6118f78261110c565b91506119028361110c565b925082611912576119116118c0565b5b828204905092915050565b5f6119278261110c565b91506119328361110c565b92508282026119408161110c565b9150828204841483151761195757611956611538565b5b5092915050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119b8602283611306565b91506119c38261195e565b604082019050919050565b5f6020820190508181035f8301526119e5816119ac565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f611a46602983611306565b9150611a51826119ec565b604082019050919050565b5f6020820190508181035f830152611a7381611a3a565b9050919050565b61425280611a875f395ff3fe60806040526004361061023e575f3560e01c806379ba50971161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e14610891578063e30c3978146108cd578063f112ba72146108f7578063f2fde38b14610921578063f7d3eca51461094957610245565b8063c0246668146107c5578063c0a904a2146107ed578063c18bc19514610815578063c1d4212d1461083d578063d94775261461086757610245565b806395d89b41116100f157806395d89b41146106d1578063a457c2d7146106fb578063a9059cbb14610737578063aa4bde2814610773578063afbfcbbc1461079d57610245565b806379ba50971461061557806379cc67901461062b57806388e765ff146106535780638da5cb5b1461067d5780638fffabed146106a757610245565b806342966c68116101bb5780635cce86cd1161017f5780635cce86cd1461050f57806370a082311461054b578063715018a61461058757806375c211e01461059d57806376856557146105d957610245565b806342966c681461042f5780634f011b83146104575780634fbee19314610481578063502f7446146104bd57806356417fef146104e757610245565b80632be32b61116102025780632be32b611461033d5780632d99d32e14610365578063313ce5671461038d57806339509351146103b7578063408ccbdf146103f357610245565b806306fdde0314610249578063095ea7b31461027357806318160ddd146102af5780631a0e718c146102d957806323b872dd1461030157610245565b3661024557005b5f5ffd5b348015610254575f5ffd5b5061025d610971565b60405161026a9190612f42565b60405180910390f35b34801561027e575f5ffd5b5061029960048036038101906102949190612ff3565b610a01565b6040516102a6919061304b565b60405180910390f35b3480156102ba575f5ffd5b506102c3610a23565b6040516102d09190613073565b60405180910390f35b3480156102e4575f5ffd5b506102ff60048036038101906102fa91906130c3565b610a2c565b005b34801561030c575f5ffd5b50610327600480360381019061032291906130ee565b610ae3565b604051610334919061304b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e919061313e565b610b11565b005b348015610370575f5ffd5b5061038b60048036038101906103869190613193565b610ba4565b005b348015610398575f5ffd5b506103a1610c49565b6040516103ae91906131ec565b60405180910390f35b3480156103c2575f5ffd5b506103dd60048036038101906103d89190612ff3565b610c51565b6040516103ea919061304b565b60405180910390f35b3480156103fe575f5ffd5b506104196004803603810190610414919061313e565b610c87565b6040516104269190613214565b60405180910390f35b34801561043a575f5ffd5b506104556004803603810190610450919061313e565b610cb4565b005b348015610462575f5ffd5b5061046b610cc8565b6040516104789190613214565b60405180910390f35b34801561048c575f5ffd5b506104a760048036038101906104a2919061322d565b610cdc565b6040516104b4919061304b565b60405180910390f35b3480156104c8575f5ffd5b506104d1610cf9565b6040516104de91906132b3565b60405180910390f35b3480156104f2575f5ffd5b5061050d6004803603810190610508919061322d565b610d1f565b005b34801561051a575f5ffd5b506105356004803603810190610530919061322d565b610e25565b604051610542919061304b565b60405180910390f35b348015610556575f5ffd5b50610571600480360381019061056c919061322d565b610e42565b60405161057e9190613073565b60405180910390f35b348015610592575f5ffd5b5061059b610e87565b005b3480156105a8575f5ffd5b506105c360048036038101906105be919061313e565b610e9a565b6040516105d09190613214565b60405180910390f35b3480156105e4575f5ffd5b506105ff60048036038101906105fa919061322d565b610ec7565b60405161060c919061304b565b60405180910390f35b348015610620575f5ffd5b50610629610ee4565b005b348015610636575f5ffd5b50610651600480360381019061064c9190612ff3565b610f70565b005b34801561065e575f5ffd5b50610667610f90565b6040516106749190613073565b60405180910390f35b348015610688575f5ffd5b50610691610f96565b60405161069e91906132db565b60405180910390f35b3480156106b2575f5ffd5b506106bb610fbe565b6040516106c891906132db565b60405180910390f35b3480156106dc575f5ffd5b506106e5610fe3565b6040516106f29190612f42565b60405180910390f35b348015610706575f5ffd5b50610721600480360381019061071c9190612ff3565b611073565b60405161072e919061304b565b60405180910390f35b348015610742575f5ffd5b5061075d60048036038101906107589190612ff3565b6110e8565b60405161076a919061304b565b60405180910390f35b34801561077e575f5ffd5b5061078761110a565b6040516107949190613073565b60405180910390f35b3480156107a8575f5ffd5b506107c360048036038101906107be919061322d565b611110565b005b3480156107d0575f5ffd5b506107eb60048036038101906107e69190613193565b6113ac565b005b3480156107f8575f5ffd5b50610813600480360381019061080e9190613193565b61145a565b005b348015610820575f5ffd5b5061083b6004803603810190610836919061313e565b611470565b005b348015610848575f5ffd5b50610851611503565b60405161085e91906132db565b60405180910390f35b348015610872575f5ffd5b5061087b611528565b6040516108889190613073565b60405180910390f35b34801561089c575f5ffd5b506108b760048036038101906108b291906132f4565b611584565b6040516108c49190613073565b60405180910390f35b3480156108d8575f5ffd5b506108e1611606565b6040516108ee91906132db565b60405180910390f35b348015610902575f5ffd5b5061090b61162e565b6040516109189190613073565b60405180910390f35b34801561092c575f5ffd5b506109476004803603810190610942919061322d565b611642565b005b348015610954575f5ffd5b5061096f600480360381019061096a9190613332565b6116ee565b005b606060038054610980906133af565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906133af565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b5f5f610a0b611a74565b9050610a18818585611a7b565b600191505092915050565b5f600254905090565b610a34611c3e565b5f8161ffff16118015610a4d57506101f48161ffff1611155b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390613475565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad89190613214565b60405180910390a150565b5f5f610aed611a74565b9050610afa858285611cbc565b610b05858585611d47565b60019150509392505050565b610b19611c3e565b610b21612372565b811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906134dd565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b999190613073565b60405180910390a150565b610bac611c3e565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061356b565b60405180910390fd5b610c458282612399565b5050565b5f6012905090565b5f5f610c5b611a74565b9050610c7c818585610c6d8589611584565b610c7791906135b6565b611a7b565b600191505092915050565b600b8160038110610c96575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc5610cbf611a74565b82612451565b50565b600660149054906101000a900461ffff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d27611c3e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061367f565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de08160016113ac565b610deb816001612614565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e1a91906132db565b60405180910390a150565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e8f611c3e565b610e985f6126ba565b565b60098160038110610ea9575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f610eed611a74565b90508073ffffffffffffffffffffffffffffffffffffffff16610f0e611606565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061370d565b60405180910390fd5b610f6d816126ba565b50565b610f8282610f7c611a74565b83611cbc565b610f8c8282612451565b5050565b60115481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ff2906133af565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906133af565b80156110695780601f1061104057610100808354040283529160200191611069565b820191905f5260205f20905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b5f5f61107d611a74565b90505f61108a8286611584565b9050838110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061379b565b60405180910390fd5b6110dc8286868403611a7b565b60019250505092915050565b5f5f6110f2611a74565b90506110ff818585611d47565b600191505092915050565b60105481565b611118611c3e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e891906137cd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129391906137cd565b6040518363ffffffff1660e01b81526004016112b09291906137f8565b6020604051808303815f875af11580156112cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f091906137cd565b600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061133a816001612614565b611366600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612399565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6113b4611c3e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144e919061304b565b60405180910390a25050565b611462611c3e565b61146c8282612614565b5050565b611478611c3e565b6114806126ea565b8110156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613869565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001816040516114f89190613073565b60405180910390a150565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f612710600660149054906101000a900461ffff1661ffff1661156b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b6115759190613887565b61157f91906138f5565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6007545f61163d91906135b6565b905090565b61164a611c3e565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166116a9610f96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f6611c3e565b8260095f6003811061170b5761170a613925565b5b601091828204019190066002029054906101000a900461ffff16600b5f6003811061173957611738613925565b5b601091828204019190066002029054906101000a900461ffff1661175d9190613952565b6117679190613987565b600b5f6003811061177b5761177a613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106117b6576117b5613925565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106117e5576117e4613925565b5b601091828204019190066002029054906101000a900461ffff166118099190613952565b6118139190613987565b600b60016003811061182857611827613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555080600960026003811061186357611862613925565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061189257611891613925565b5b601091828204019190066002029054906101000a900461ffff166118b69190613952565b6118c09190613987565b600b6002600381106118d5576118d4613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f6003811061191157611910613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156119715750611388600b6001600381106119505761194f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156119b15750611388600b6002600381106119905761198f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613a2c565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003611a33929190612e1b565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df4838383604051611a6793929190613a4a565b60405180910390a1505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613aef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b7d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c319190613073565b60405180910390a3505050565b611c46611a74565b73ffffffffffffffffffffffffffffffffffffffff16611c64610f96565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613be5565b60405180910390fd5b565b5f611cc78484611584565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d415781811015611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613c4d565b60405180910390fd5b611d408484848403611a7b565b5b50505050565b600c5f9054906101000a900460ff16158015611d6257505f81115b8015611dbc5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0f5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e625750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ec575f5f90505f60039050600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f01575f600b5f60038110611ed457611ed3613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611efc575f90505b611fd5565b600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f94575f600b600160038110611f6657611f65613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611f8f57600190505b611fd4565b5f600b600260038110611faa57611fa9613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611fd357600290505b5b5b60038160ff1610156120d557612710600b8260ff1660038110611ffb57611ffa613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16846120249190613887565b61202e91906138f5565b9150818361203c9190613c6b565b9250600b8160ff166003811061205557612054613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061208a57612089613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16836120b39190613887565b6120bd91906138f5565b60075f8282546120cd91906135b6565b925050819055505b5f8211156120e9576120e8853084612705565b5b50505b5f6120f5611528565b90505f8161210161162e565b1015801561213757505f612135600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b115b9050600c5f9054906101000a900460ff1615801561219c5750600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156121f65750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156121ff5750805b15612360576001600c5f6101000a81548160ff0219169083151502179055505f8061222957505f82115b15612346575f825f61223b91906135b6565b90505f5f905061224a82612971565b5f4790505f83868361225c9190613887565b61226691906138f5565b90505f8111156123295760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505092508215612328577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161231f929190613c9e565b60405180910390a15b5b8560075f82825461233a9190613c6b565b92505081905550505050505b5f600c5f6101000a81548160ff0219169083151502179055505b61236b858585612705565b5050505050565b5f6127106005612380610a23565b61238a9190613887565b61239491906138f5565b905090565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080156123ff576123fe826001612614565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051612445919061304b565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613d35565b60405180910390fd5b6124ca825f83612baa565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490613dc3565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc9190613073565b60405180910390a361260f835f84612ca2565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516126ae919061304b565b60405180910390a25050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556126e781612d4e565b50565b5f6103e86126f6610a23565b61270091906138f5565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613e51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890613edf565b60405180910390fd5b6127ec838383612baa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613f6d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129589190613073565b60405180910390a361296b848484612ca2565b50505050565b5f600267ffffffffffffffff81111561298d5761298c613f8b565b5b6040519080825280602002602001820160405280156129bb5781602001602082028036833780820191505090505b50905030815f815181106129d2576129d1613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b91906137cd565b81600181518110612aaf57612aae613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b1630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a7b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b799594939291906140a8565b5f604051808303815f87803b158015612b90575f5ffd5b505af1158015612ba2573d5f5f3e3d5ffd5b505050505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c475750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c9257601154811115612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890614170565b60405180910390fd5b5b612c9d838383612e11565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612d3e57601054612cfc83610e42565b1115612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d34906141fe565b60405180910390fd5b5b612d49838383612e16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b826003600f01601090048101928215612ea6579160200282015f5b83821115612e7657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612e36565b8015612ea45782816101000a81549061ffff0219169055600201602081600101049283019260010302612e76565b505b509050612eb39190612eb7565b5090565b5b80821115612ece575f815f905550600101612eb8565b5090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612f1482612ed2565b612f1e8185612edc565b9350612f2e818560208601612eec565b612f3781612efa565b840191505092915050565b5f6020820190508181035f830152612f5a8184612f0a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8f82612f66565b9050919050565b612f9f81612f85565b8114612fa9575f5ffd5b50565b5f81359050612fba81612f96565b92915050565b5f819050919050565b612fd281612fc0565b8114612fdc575f5ffd5b50565b5f81359050612fed81612fc9565b92915050565b5f5f6040838503121561300957613008612f62565b5b5f61301685828601612fac565b925050602061302785828601612fdf565b9150509250929050565b5f8115159050919050565b61304581613031565b82525050565b5f60208201905061305e5f83018461303c565b92915050565b61306d81612fc0565b82525050565b5f6020820190506130865f830184613064565b92915050565b5f61ffff82169050919050565b6130a28161308c565b81146130ac575f5ffd5b50565b5f813590506130bd81613099565b92915050565b5f602082840312156130d8576130d7612f62565b5b5f6130e5848285016130af565b91505092915050565b5f5f5f6060848603121561310557613104612f62565b5b5f61311286828701612fac565b935050602061312386828701612fac565b925050604061313486828701612fdf565b9150509250925092565b5f6020828403121561315357613152612f62565b5b5f61316084828501612fdf565b91505092915050565b61317281613031565b811461317c575f5ffd5b50565b5f8135905061318d81613169565b92915050565b5f5f604083850312156131a9576131a8612f62565b5b5f6131b685828601612fac565b92505060206131c78582860161317f565b9150509250929050565b5f60ff82169050919050565b6131e6816131d1565b82525050565b5f6020820190506131ff5f8301846131dd565b92915050565b61320e8161308c565b82525050565b5f6020820190506132275f830184613205565b92915050565b5f6020828403121561324257613241612f62565b5b5f61324f84828501612fac565b91505092915050565b5f819050919050565b5f61327b61327661327184612f66565b613258565b612f66565b9050919050565b5f61328c82613261565b9050919050565b5f61329d82613282565b9050919050565b6132ad81613293565b82525050565b5f6020820190506132c65f8301846132a4565b92915050565b6132d581612f85565b82525050565b5f6020820190506132ee5f8301846132cc565b92915050565b5f5f6040838503121561330a57613309612f62565b5b5f61331785828601612fac565b925050602061332885828601612fac565b9150509250929050565b5f5f5f6060848603121561334957613348612f62565b5b5f613356868287016130af565b9350506020613367868287016130af565b9250506040613378868287016130af565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806133c657607f821691505b6020821081036133d9576133d8613382565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f61345f604b83612edc565b915061346a826133df565b606082019050919050565b5f6020820190508181035f83015261348c81613453565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f6134c7601483612edc565b91506134d282613493565b602082019050919050565b5f6020820190508181035f8301526134f4816134bb565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e695f8201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b5f613555603383612edc565b9150613560826134fb565b604082019050919050565b5f6020820190508181035f83015261358281613549565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135c082612fc0565b91506135cb83612fc0565b92508282019050808211156135e3576135e2613589565b5b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f613669604683612edc565b9150613674826135e9565b606082019050919050565b5f6020820190508181035f8301526136968161365d565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6136f7602983612edc565b91506137028261369d565b604082019050919050565b5f6020820190508181035f830152613724816136eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613785602583612edc565b91506137908261372b565b604082019050919050565b5f6020820190508181035f8301526137b281613779565b9050919050565b5f815190506137c781612f96565b92915050565b5f602082840312156137e2576137e1612f62565b5b5f6137ef848285016137b9565b91505092915050565b5f60408201905061380b5f8301856132cc565b61381860208301846132cc565b9392505050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f613853601883612edc565b915061385e8261381f565b602082019050919050565b5f6020820190508181035f83015261388081613847565b9050919050565b5f61389182612fc0565b915061389c83612fc0565b92508282026138aa81612fc0565b915082820484148315176138c1576138c0613589565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138ff82612fc0565b915061390a83612fc0565b92508261391a576139196138c8565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61395c8261308c565b91506139678361308c565b9250828203905061ffff81111561398157613980613589565b5b92915050565b5f6139918261308c565b915061399c8361308c565b9250828201905061ffff8111156139b6576139b5613589565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f613a16603683612edc565b9150613a21826139bc565b604082019050919050565b5f6020820190508181035f830152613a4381613a0a565b9050919050565b5f606082019050613a5d5f830186613205565b613a6a6020830185613205565b613a776040830184613205565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad9602483612edc565b9150613ae482613a7f565b604082019050919050565b5f6020820190508181035f830152613b0681613acd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b67602283612edc565b9150613b7282613b0d565b604082019050919050565b5f6020820190508181035f830152613b9481613b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613bcf602083612edc565b9150613bda82613b9b565b602082019050919050565b5f6020820190508181035f830152613bfc81613bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c37601d83612edc565b9150613c4282613c03565b602082019050919050565b5f6020820190508181035f830152613c6481613c2b565b9050919050565b5f613c7582612fc0565b9150613c8083612fc0565b9250828203905081811115613c9857613c97613589565b5b92915050565b5f604082019050613cb15f8301856132cc565b613cbe6020830184613064565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1f602183612edc565b9150613d2a82613cc5565b604082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613dad602283612edc565b9150613db882613d53565b604082019050919050565b5f6020820190508181035f830152613dda81613da1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e3b602583612edc565b9150613e4682613de1565b604082019050919050565b5f6020820190508181035f830152613e6881613e2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ec9602383612edc565b9150613ed482613e6f565b604082019050919050565b5f6020820190508181035f830152613ef681613ebd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f57602683612edc565b9150613f6282613efd565b604082019050919050565b5f6020820190508181035f830152613f8481613f4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f613fdb613fd6613fd184613fb8565b613258565b612fc0565b9050919050565b613feb81613fc1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61402381612f85565b82525050565b5f614034838361401a565b60208301905092915050565b5f602082019050919050565b5f61405682613ff1565b6140608185613ffb565b935061406b8361400b565b805f5b8381101561409b5781516140828882614029565b975061408d83614040565b92505060018101905061406e565b5085935050505092915050565b5f60a0820190506140bb5f830188613064565b6140c86020830187613fe2565b81810360408301526140da818661404c565b90506140e960608301856132cc565b6140f66080830184613064565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f61415a602283612edc565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f6141e8602983612edc565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b905091905056fea26469706673582212207f0e4a7f3555e1aa7e4f0ef3dde3e694692a2e717baae0b6c89c3f4abddaba9464736f6c634300081b0033

Deployed Bytecode

0x60806040526004361061023e575f3560e01c806379ba50971161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e14610891578063e30c3978146108cd578063f112ba72146108f7578063f2fde38b14610921578063f7d3eca51461094957610245565b8063c0246668146107c5578063c0a904a2146107ed578063c18bc19514610815578063c1d4212d1461083d578063d94775261461086757610245565b806395d89b41116100f157806395d89b41146106d1578063a457c2d7146106fb578063a9059cbb14610737578063aa4bde2814610773578063afbfcbbc1461079d57610245565b806379ba50971461061557806379cc67901461062b57806388e765ff146106535780638da5cb5b1461067d5780638fffabed146106a757610245565b806342966c68116101bb5780635cce86cd1161017f5780635cce86cd1461050f57806370a082311461054b578063715018a61461058757806375c211e01461059d57806376856557146105d957610245565b806342966c681461042f5780634f011b83146104575780634fbee19314610481578063502f7446146104bd57806356417fef146104e757610245565b80632be32b61116102025780632be32b611461033d5780632d99d32e14610365578063313ce5671461038d57806339509351146103b7578063408ccbdf146103f357610245565b806306fdde0314610249578063095ea7b31461027357806318160ddd146102af5780631a0e718c146102d957806323b872dd1461030157610245565b3661024557005b5f5ffd5b348015610254575f5ffd5b5061025d610971565b60405161026a9190612f42565b60405180910390f35b34801561027e575f5ffd5b5061029960048036038101906102949190612ff3565b610a01565b6040516102a6919061304b565b60405180910390f35b3480156102ba575f5ffd5b506102c3610a23565b6040516102d09190613073565b60405180910390f35b3480156102e4575f5ffd5b506102ff60048036038101906102fa91906130c3565b610a2c565b005b34801561030c575f5ffd5b50610327600480360381019061032291906130ee565b610ae3565b604051610334919061304b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e919061313e565b610b11565b005b348015610370575f5ffd5b5061038b60048036038101906103869190613193565b610ba4565b005b348015610398575f5ffd5b506103a1610c49565b6040516103ae91906131ec565b60405180910390f35b3480156103c2575f5ffd5b506103dd60048036038101906103d89190612ff3565b610c51565b6040516103ea919061304b565b60405180910390f35b3480156103fe575f5ffd5b506104196004803603810190610414919061313e565b610c87565b6040516104269190613214565b60405180910390f35b34801561043a575f5ffd5b506104556004803603810190610450919061313e565b610cb4565b005b348015610462575f5ffd5b5061046b610cc8565b6040516104789190613214565b60405180910390f35b34801561048c575f5ffd5b506104a760048036038101906104a2919061322d565b610cdc565b6040516104b4919061304b565b60405180910390f35b3480156104c8575f5ffd5b506104d1610cf9565b6040516104de91906132b3565b60405180910390f35b3480156104f2575f5ffd5b5061050d6004803603810190610508919061322d565b610d1f565b005b34801561051a575f5ffd5b506105356004803603810190610530919061322d565b610e25565b604051610542919061304b565b60405180910390f35b348015610556575f5ffd5b50610571600480360381019061056c919061322d565b610e42565b60405161057e9190613073565b60405180910390f35b348015610592575f5ffd5b5061059b610e87565b005b3480156105a8575f5ffd5b506105c360048036038101906105be919061313e565b610e9a565b6040516105d09190613214565b60405180910390f35b3480156105e4575f5ffd5b506105ff60048036038101906105fa919061322d565b610ec7565b60405161060c919061304b565b60405180910390f35b348015610620575f5ffd5b50610629610ee4565b005b348015610636575f5ffd5b50610651600480360381019061064c9190612ff3565b610f70565b005b34801561065e575f5ffd5b50610667610f90565b6040516106749190613073565b60405180910390f35b348015610688575f5ffd5b50610691610f96565b60405161069e91906132db565b60405180910390f35b3480156106b2575f5ffd5b506106bb610fbe565b6040516106c891906132db565b60405180910390f35b3480156106dc575f5ffd5b506106e5610fe3565b6040516106f29190612f42565b60405180910390f35b348015610706575f5ffd5b50610721600480360381019061071c9190612ff3565b611073565b60405161072e919061304b565b60405180910390f35b348015610742575f5ffd5b5061075d60048036038101906107589190612ff3565b6110e8565b60405161076a919061304b565b60405180910390f35b34801561077e575f5ffd5b5061078761110a565b6040516107949190613073565b60405180910390f35b3480156107a8575f5ffd5b506107c360048036038101906107be919061322d565b611110565b005b3480156107d0575f5ffd5b506107eb60048036038101906107e69190613193565b6113ac565b005b3480156107f8575f5ffd5b50610813600480360381019061080e9190613193565b61145a565b005b348015610820575f5ffd5b5061083b6004803603810190610836919061313e565b611470565b005b348015610848575f5ffd5b50610851611503565b60405161085e91906132db565b60405180910390f35b348015610872575f5ffd5b5061087b611528565b6040516108889190613073565b60405180910390f35b34801561089c575f5ffd5b506108b760048036038101906108b291906132f4565b611584565b6040516108c49190613073565b60405180910390f35b3480156108d8575f5ffd5b506108e1611606565b6040516108ee91906132db565b60405180910390f35b348015610902575f5ffd5b5061090b61162e565b6040516109189190613073565b60405180910390f35b34801561092c575f5ffd5b506109476004803603810190610942919061322d565b611642565b005b348015610954575f5ffd5b5061096f600480360381019061096a9190613332565b6116ee565b005b606060038054610980906133af565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906133af565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b5f5f610a0b611a74565b9050610a18818585611a7b565b600191505092915050565b5f600254905090565b610a34611c3e565b5f8161ffff16118015610a4d57506101f48161ffff1611155b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390613475565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad89190613214565b60405180910390a150565b5f5f610aed611a74565b9050610afa858285611cbc565b610b05858585611d47565b60019150509392505050565b610b19611c3e565b610b21612372565b811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906134dd565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b999190613073565b60405180910390a150565b610bac611c3e565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061356b565b60405180910390fd5b610c458282612399565b5050565b5f6012905090565b5f5f610c5b611a74565b9050610c7c818585610c6d8589611584565b610c7791906135b6565b611a7b565b600191505092915050565b600b8160038110610c96575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc5610cbf611a74565b82612451565b50565b600660149054906101000a900461ffff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d27611c3e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061367f565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de08160016113ac565b610deb816001612614565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e1a91906132db565b60405180910390a150565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e8f611c3e565b610e985f6126ba565b565b60098160038110610ea9575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f610eed611a74565b90508073ffffffffffffffffffffffffffffffffffffffff16610f0e611606565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061370d565b60405180910390fd5b610f6d816126ba565b50565b610f8282610f7c611a74565b83611cbc565b610f8c8282612451565b5050565b60115481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ff2906133af565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906133af565b80156110695780601f1061104057610100808354040283529160200191611069565b820191905f5260205f20905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b5f5f61107d611a74565b90505f61108a8286611584565b9050838110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061379b565b60405180910390fd5b6110dc8286868403611a7b565b60019250505092915050565b5f5f6110f2611a74565b90506110ff818585611d47565b600191505092915050565b60105481565b611118611c3e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e891906137cd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129391906137cd565b6040518363ffffffff1660e01b81526004016112b09291906137f8565b6020604051808303815f875af11580156112cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f091906137cd565b600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061133a816001612614565b611366600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612399565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6113b4611c3e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144e919061304b565b60405180910390a25050565b611462611c3e565b61146c8282612614565b5050565b611478611c3e565b6114806126ea565b8110156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613869565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001816040516114f89190613073565b60405180910390a150565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f612710600660149054906101000a900461ffff1661ffff1661156b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b6115759190613887565b61157f91906138f5565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6007545f61163d91906135b6565b905090565b61164a611c3e565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166116a9610f96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f6611c3e565b8260095f6003811061170b5761170a613925565b5b601091828204019190066002029054906101000a900461ffff16600b5f6003811061173957611738613925565b5b601091828204019190066002029054906101000a900461ffff1661175d9190613952565b6117679190613987565b600b5f6003811061177b5761177a613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106117b6576117b5613925565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106117e5576117e4613925565b5b601091828204019190066002029054906101000a900461ffff166118099190613952565b6118139190613987565b600b60016003811061182857611827613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555080600960026003811061186357611862613925565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061189257611891613925565b5b601091828204019190066002029054906101000a900461ffff166118b69190613952565b6118c09190613987565b600b6002600381106118d5576118d4613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f6003811061191157611910613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156119715750611388600b6001600381106119505761194f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156119b15750611388600b6002600381106119905761198f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613a2c565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003611a33929190612e1b565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df4838383604051611a6793929190613a4a565b60405180910390a1505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613aef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b7d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c319190613073565b60405180910390a3505050565b611c46611a74565b73ffffffffffffffffffffffffffffffffffffffff16611c64610f96565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613be5565b60405180910390fd5b565b5f611cc78484611584565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d415781811015611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613c4d565b60405180910390fd5b611d408484848403611a7b565b5b50505050565b600c5f9054906101000a900460ff16158015611d6257505f81115b8015611dbc5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0f5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e625750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ec575f5f90505f60039050600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f01575f600b5f60038110611ed457611ed3613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611efc575f90505b611fd5565b600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f94575f600b600160038110611f6657611f65613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611f8f57600190505b611fd4565b5f600b600260038110611faa57611fa9613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611fd357600290505b5b5b60038160ff1610156120d557612710600b8260ff1660038110611ffb57611ffa613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16846120249190613887565b61202e91906138f5565b9150818361203c9190613c6b565b9250600b8160ff166003811061205557612054613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061208a57612089613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16836120b39190613887565b6120bd91906138f5565b60075f8282546120cd91906135b6565b925050819055505b5f8211156120e9576120e8853084612705565b5b50505b5f6120f5611528565b90505f8161210161162e565b1015801561213757505f612135600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b115b9050600c5f9054906101000a900460ff1615801561219c5750600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156121f65750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156121ff5750805b15612360576001600c5f6101000a81548160ff0219169083151502179055505f8061222957505f82115b15612346575f825f61223b91906135b6565b90505f5f905061224a82612971565b5f4790505f83868361225c9190613887565b61226691906138f5565b90505f8111156123295760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505092508215612328577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161231f929190613c9e565b60405180910390a15b5b8560075f82825461233a9190613c6b565b92505081905550505050505b5f600c5f6101000a81548160ff0219169083151502179055505b61236b858585612705565b5050505050565b5f6127106005612380610a23565b61238a9190613887565b61239491906138f5565b905090565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080156123ff576123fe826001612614565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051612445919061304b565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613d35565b60405180910390fd5b6124ca825f83612baa565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490613dc3565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc9190613073565b60405180910390a361260f835f84612ca2565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516126ae919061304b565b60405180910390a25050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556126e781612d4e565b50565b5f6103e86126f6610a23565b61270091906138f5565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613e51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890613edf565b60405180910390fd5b6127ec838383612baa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613f6d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129589190613073565b60405180910390a361296b848484612ca2565b50505050565b5f600267ffffffffffffffff81111561298d5761298c613f8b565b5b6040519080825280602002602001820160405280156129bb5781602001602082028036833780820191505090505b50905030815f815181106129d2576129d1613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b91906137cd565b81600181518110612aaf57612aae613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b1630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a7b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b799594939291906140a8565b5f604051808303815f87803b158015612b90575f5ffd5b505af1158015612ba2573d5f5f3e3d5ffd5b505050505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c475750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c9257601154811115612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890614170565b60405180910390fd5b5b612c9d838383612e11565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612d3e57601054612cfc83610e42565b1115612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d34906141fe565b60405180910390fd5b5b612d49838383612e16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b826003600f01601090048101928215612ea6579160200282015f5b83821115612e7657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612e36565b8015612ea45782816101000a81549061ffff0219169055600201602081600101049283019260010302612e76565b505b509050612eb39190612eb7565b5090565b5b80821115612ece575f815f905550600101612eb8565b5090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612f1482612ed2565b612f1e8185612edc565b9350612f2e818560208601612eec565b612f3781612efa565b840191505092915050565b5f6020820190508181035f830152612f5a8184612f0a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8f82612f66565b9050919050565b612f9f81612f85565b8114612fa9575f5ffd5b50565b5f81359050612fba81612f96565b92915050565b5f819050919050565b612fd281612fc0565b8114612fdc575f5ffd5b50565b5f81359050612fed81612fc9565b92915050565b5f5f6040838503121561300957613008612f62565b5b5f61301685828601612fac565b925050602061302785828601612fdf565b9150509250929050565b5f8115159050919050565b61304581613031565b82525050565b5f60208201905061305e5f83018461303c565b92915050565b61306d81612fc0565b82525050565b5f6020820190506130865f830184613064565b92915050565b5f61ffff82169050919050565b6130a28161308c565b81146130ac575f5ffd5b50565b5f813590506130bd81613099565b92915050565b5f602082840312156130d8576130d7612f62565b5b5f6130e5848285016130af565b91505092915050565b5f5f5f6060848603121561310557613104612f62565b5b5f61311286828701612fac565b935050602061312386828701612fac565b925050604061313486828701612fdf565b9150509250925092565b5f6020828403121561315357613152612f62565b5b5f61316084828501612fdf565b91505092915050565b61317281613031565b811461317c575f5ffd5b50565b5f8135905061318d81613169565b92915050565b5f5f604083850312156131a9576131a8612f62565b5b5f6131b685828601612fac565b92505060206131c78582860161317f565b9150509250929050565b5f60ff82169050919050565b6131e6816131d1565b82525050565b5f6020820190506131ff5f8301846131dd565b92915050565b61320e8161308c565b82525050565b5f6020820190506132275f830184613205565b92915050565b5f6020828403121561324257613241612f62565b5b5f61324f84828501612fac565b91505092915050565b5f819050919050565b5f61327b61327661327184612f66565b613258565b612f66565b9050919050565b5f61328c82613261565b9050919050565b5f61329d82613282565b9050919050565b6132ad81613293565b82525050565b5f6020820190506132c65f8301846132a4565b92915050565b6132d581612f85565b82525050565b5f6020820190506132ee5f8301846132cc565b92915050565b5f5f6040838503121561330a57613309612f62565b5b5f61331785828601612fac565b925050602061332885828601612fac565b9150509250929050565b5f5f5f6060848603121561334957613348612f62565b5b5f613356868287016130af565b9350506020613367868287016130af565b9250506040613378868287016130af565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806133c657607f821691505b6020821081036133d9576133d8613382565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f61345f604b83612edc565b915061346a826133df565b606082019050919050565b5f6020820190508181035f83015261348c81613453565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f6134c7601483612edc565b91506134d282613493565b602082019050919050565b5f6020820190508181035f8301526134f4816134bb565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e695f8201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b5f613555603383612edc565b9150613560826134fb565b604082019050919050565b5f6020820190508181035f83015261358281613549565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135c082612fc0565b91506135cb83612fc0565b92508282019050808211156135e3576135e2613589565b5b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f613669604683612edc565b9150613674826135e9565b606082019050919050565b5f6020820190508181035f8301526136968161365d565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6136f7602983612edc565b91506137028261369d565b604082019050919050565b5f6020820190508181035f830152613724816136eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613785602583612edc565b91506137908261372b565b604082019050919050565b5f6020820190508181035f8301526137b281613779565b9050919050565b5f815190506137c781612f96565b92915050565b5f602082840312156137e2576137e1612f62565b5b5f6137ef848285016137b9565b91505092915050565b5f60408201905061380b5f8301856132cc565b61381860208301846132cc565b9392505050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f613853601883612edc565b915061385e8261381f565b602082019050919050565b5f6020820190508181035f83015261388081613847565b9050919050565b5f61389182612fc0565b915061389c83612fc0565b92508282026138aa81612fc0565b915082820484148315176138c1576138c0613589565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138ff82612fc0565b915061390a83612fc0565b92508261391a576139196138c8565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61395c8261308c565b91506139678361308c565b9250828203905061ffff81111561398157613980613589565b5b92915050565b5f6139918261308c565b915061399c8361308c565b9250828201905061ffff8111156139b6576139b5613589565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f613a16603683612edc565b9150613a21826139bc565b604082019050919050565b5f6020820190508181035f830152613a4381613a0a565b9050919050565b5f606082019050613a5d5f830186613205565b613a6a6020830185613205565b613a776040830184613205565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad9602483612edc565b9150613ae482613a7f565b604082019050919050565b5f6020820190508181035f830152613b0681613acd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b67602283612edc565b9150613b7282613b0d565b604082019050919050565b5f6020820190508181035f830152613b9481613b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613bcf602083612edc565b9150613bda82613b9b565b602082019050919050565b5f6020820190508181035f830152613bfc81613bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c37601d83612edc565b9150613c4282613c03565b602082019050919050565b5f6020820190508181035f830152613c6481613c2b565b9050919050565b5f613c7582612fc0565b9150613c8083612fc0565b9250828203905081811115613c9857613c97613589565b5b92915050565b5f604082019050613cb15f8301856132cc565b613cbe6020830184613064565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1f602183612edc565b9150613d2a82613cc5565b604082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613dad602283612edc565b9150613db882613d53565b604082019050919050565b5f6020820190508181035f830152613dda81613da1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e3b602583612edc565b9150613e4682613de1565b604082019050919050565b5f6020820190508181035f830152613e6881613e2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ec9602383612edc565b9150613ed482613e6f565b604082019050919050565b5f6020820190508181035f830152613ef681613ebd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f57602683612edc565b9150613f6282613efd565b604082019050919050565b5f6020820190508181035f830152613f8481613f4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f613fdb613fd6613fd184613fb8565b613258565b612fc0565b9050919050565b613feb81613fc1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61402381612f85565b82525050565b5f614034838361401a565b60208301905092915050565b5f602082019050919050565b5f61405682613ff1565b6140608185613ffb565b935061406b8361400b565b805f5b8381101561409b5781516140828882614029565b975061408d83614040565b92505060018101905061406e565b5085935050505092915050565b5f60a0820190506140bb5f830188613064565b6140c86020830187613fe2565b81810360408301526140da818661404c565b90506140e960608301856132cc565b6140f66080830184613064565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f61415a602283612edc565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f6141e8602983612edc565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b905091905056fea26469706673582212207f0e4a7f3555e1aa7e4f0ef3dde3e694692a2e717baae0b6c89c3f4abddaba9464736f6c634300081b0033

Deployed Bytecode Sourcemap

31319:8937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8907:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7676:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33970:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9688:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39322:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38020:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33489:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10358:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31606:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18044:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31386:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31546:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31770:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34576:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31889:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7847:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20444:103;;;;;;;;;;;;;:::i;:::-;;31507:30;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31839:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22988:216;;;;;;;;;;;;;:::i;:::-;;18454:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19803:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31811:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6766:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11099:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8180:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31951:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37673:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35571:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38465:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38807:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31469:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34322:136;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8436:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22076:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34466:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22376:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34970:593;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6547:100;6601:13;6634:5;6627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547:100;:::o;8907:201::-;8990:4;9007:13;9023:12;:10;:12::i;:::-;9007:28;;9046:32;9055:5;9062:7;9071:6;9046:8;:32::i;:::-;9096:4;9089:11;;;8907:201;;;;:::o;7676:108::-;7737:7;7764:12;;7757:19;;7676:108;:::o;33970:344::-;19689:13;:11;:13::i;:::-;34085:1:::1;34063:19;:23;;;:53;;;;;34113:3;34090:19;:26;;;;34063:53;34055:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34228:19;34207:18;;:40;;;;;;;;;;;;;;;;;;34265:41;34286:19;34265:41;;;;;;:::i;:::-;;;;;;;;33970:344:::0;:::o;9688:261::-;9785:4;9802:15;9820:12;:10;:12::i;:::-;9802:30;;9843:38;9859:4;9865:7;9874:6;9843:15;:38::i;:::-;9892:27;9902:4;9908:2;9912:6;9892:9;:27::i;:::-;9937:4;9930:11;;;9688:261;;;;;:::o;39322:245::-;19689:13;:11;:13::i;:::-;39426:17:::1;:15;:17::i;:::-;39409:13;:34;;39401:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39494:13;39479:12;:28;;;;39525:34;39545:13;39525:34;;;;;;:::i;:::-;;;;;;;;39322:245:::0;:::o;38020:201::-;19689:13;:11;:13::i;:::-;38113:6:::1;;;;;;;;;;;38105:14;;:4;:14;;::::0;38097:78:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38188:25;38200:4;38206:6;38188:11;:25::i;:::-;38020:201:::0;;:::o;33489:85::-;33539:5;33564:2;33557:9;;33489:85;:::o;10358:238::-;10446:4;10463:13;10479:12;:10;:12::i;:::-;10463:28;;10502:64;10511:5;10518:7;10555:10;10527:25;10537:5;10544:7;10527:9;:25::i;:::-;:38;;;;:::i;:::-;10502:8;:64::i;:::-;10584:4;10577:11;;;10358:238;;;;:::o;31606:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18044:91::-;18100:27;18106:12;:10;:12::i;:::-;18120:6;18100:5;:27::i;:::-;18044:91;:::o;31386:32::-;;;;;;;;;;;;;:::o;31546:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;31770:34::-;;;;;;;;;;;;;:::o;34576:386::-;19689:13;:11;:13::i;:::-;34687:1:::1;34664:25;;:11;:25;;::::0;34656:108:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;34796:11;34777:16;;:30;;;;;;;;;;;;;;;;;;34818:34;34834:11;34847:4;34818:15;:34::i;:::-;34863:37;34882:11;34895:4;34863:18;:37::i;:::-;34918:36;34942:11;34918:36;;;;;;:::i;:::-;;;;;;;;34576:386:::0;:::o;31889:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;7847:127::-;7921:7;7948:9;:18;7958:7;7948:18;;;;;;;;;;;;;;;;7941:25;;7847:127;;;:::o;20444:103::-;19689:13;:11;:13::i;:::-;20509:30:::1;20536:1;20509:18;:30::i;:::-;20444:103::o:0;31507:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31839:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;22988:216::-;23041:14;23058:12;:10;:12::i;:::-;23041:29;;23107:6;23089:24;;:14;:12;:14::i;:::-;:24;;;23081:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23170:26;23189:6;23170:18;:26::i;:::-;23030:174;22988:216::o;18454:164::-;18531:46;18547:7;18556:12;:10;:12::i;:::-;18570:6;18531:15;:46::i;:::-;18588:22;18594:7;18603:6;18588:5;:22::i;:::-;18454:164;;:::o;31990:27::-;;;;:::o;19803:87::-;19849:7;19876:6;;;;;;;;;;;19869:13;;19803:87;:::o;31811:21::-;;;;;;;;;;;;;:::o;6766:104::-;6822:13;6855:7;6848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6766:104;:::o;11099:436::-;11192:4;11209:13;11225:12;:10;:12::i;:::-;11209:28;;11248:24;11275:25;11285:5;11292:7;11275:9;:25::i;:::-;11248:52;;11339:15;11319:16;:35;;11311:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11432:60;11441:5;11448:7;11476:15;11457:16;:34;11432:8;:60::i;:::-;11523:4;11516:11;;;;11099:436;;;;:::o;8180:193::-;8259:4;8276:13;8292:12;:10;:12::i;:::-;8276:28;;8315;8325:5;8332:2;8336:6;8315:9;:28::i;:::-;8361:4;8354:11;;;8180:193;;;;:::o;31951:30::-;;;;:::o;37673:339::-;19689:13;:11;:13::i;:::-;37773:6:::1;37743:8;;:37;;;;;;;;;;;;;;;;;;37818:8;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37800:48;;;37857:4;37864:8;;;;;;;;;;;:13;;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37800:80;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37791:6;;:89;;;;;;;;;;;;;;;;;;37893:32;37912:6;37920:4;37893:18;:32::i;:::-;37938:25;37950:6;;;;;;;;;;;37958:4;37938:11;:25::i;:::-;37997:6;37981:23;;;;;;;;;;;;37673:339:::0;:::o;35571:189::-;19689:13;:11;:13::i;:::-;35688:10:::1;35658:18;:27;35677:7;35658:27;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;35732:7;35716:36;;;35741:10;35716:36;;;;;;:::i;:::-;;;;;;;;35571:189:::0;;:::o;38465:138::-;19689:13;:11;:13::i;:::-;38556:39:::1;38575:7;38584:10;38556:18;:39::i;:::-;38465:138:::0;;:::o;38807:274::-;19689:13;:11;:13::i;:::-;38920:21:::1;:19;:21::i;:::-;38900:16;:41;;38892:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;38999:16;38981:15;:34;;;;39033:40;39056:16;39033:40;;;;;;:::i;:::-;;;;;;;;38807:274:::0;:::o;31469:31::-;;;;;;;;;;;;;:::o;34322:136::-;34377:7;34445:5;34424:18;;;;;;;;;;;34404:38;;:17;34414:6;;;;;;;;;;;34404:9;:17::i;:::-;:38;;;;:::i;:::-;:46;;;;:::i;:::-;34397:53;;34322:136;:::o;8436:151::-;8525:7;8552:11;:18;8564:5;8552:18;;;;;;;;;;;;;;;:27;8571:7;8552:27;;;;;;;;;;;;;;;;8545:34;;8436:151;;;;:::o;22076:101::-;22129:7;22156:13;;;;;;;;;;;22149:20;;22076:101;:::o;34466:102::-;34512:7;34543:17;;34539:1;:21;;;;:::i;:::-;34532:28;;34466:102;:::o;22376:181::-;19689:13;:11;:13::i;:::-;22482:8:::1;22466:13;;:24;;;;;;;;;;;;;;;;;;22540:8;22506:43;;22531:7;:5;:7::i;:::-;22506:43;;;;;;;;;;;;22376:181:::0;:::o;34970:593::-;19689:13;:11;:13::i;:::-;35129:7:::1;35110:13;35124:1;35110:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;35095:9;35105:1;35095:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:41;;;;:::i;:::-;35080:9;35090:1;35080:12;;;;;;;:::i;:::-;;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;35196:8;35177:13;35191:1;35177:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;35162:9;35172:1;35162:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:42;;;;:::i;:::-;35147:9;35157:1;35147:12;;;;;;;:::i;:::-;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;35264:12;35245:13;35259:1;35245:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;35230:9;35240:1;35230:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:46;;;;:::i;:::-;35215:9;35225:1;35215:12;;;;;;;:::i;:::-;;;;;;;;;;;;;:61;;;;;;;;;;;;;;;;;;35311:4;35295:9;35305:1;35295:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:20;;;;:44;;;;;35335:4;35319:9;35329:1;35319:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:20;;;;35295:44;:68;;;;;35359:4;35343:9;35353:1;35343:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:20;;;;35295:68;35287:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;35435:49;;;;;;;;35452:7;35435:49;;;;;;;;35461:8;35435:49;;;;;;;;35471:12;35435:49;;;;;;::::0;:13:::1;:49;;;;;;;:::i;:::-;;35502:53;35523:7;35532:8;35542:12;35502:53;;;;;;;;:::i;:::-;;;;;;;;34970:593:::0;;;:::o;4245:98::-;4298:7;4325:10;4318:17;;4245:98;:::o;15092:346::-;15211:1;15194:19;;:5;:19;;;15186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15292:1;15273:21;;:7;:21;;;15265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15376:6;15346:11;:18;15358:5;15346:18;;;;;;;;;;;;;;;:27;15365:7;15346:27;;;;;;;;;;;;;;;:36;;;;15414:7;15398:32;;15407:5;15398:32;;;15423:6;15398:32;;;;;;:::i;:::-;;;;;;;;15092:346;;;:::o;19968:132::-;20043:12;:10;:12::i;:::-;20032:23;;:7;:5;:7::i;:::-;:23;;;20024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19968:132::o;15729:419::-;15830:24;15857:25;15867:5;15874:7;15857:9;:25::i;:::-;15830:52;;15917:17;15897:16;:37;15893:248;;15979:6;15959:16;:26;;15951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16063:51;16072:5;16079:7;16107:6;16088:16;:25;16063:8;:51::i;:::-;15893:248;15819:329;15729:419;;;:::o;35768:1897::-;35897:9;;;;;;;;;;;35896:10;:24;;;;;35919:1;35910:6;:10;35896:24;:51;;;;;35938:8;;;;;;;;;;;35924:23;;:2;:23;;;;35896:51;:80;;;;;35952:18;:24;35971:4;35952:24;;;;;;;;;;;;;;;;;;;;;;;;;35951:25;35896:80;:107;;;;;35981:18;:22;36000:2;35981:22;;;;;;;;;;;;;;;;;;;;;;;;;35980:23;35896:107;35892:790;;;36020:12;36035:1;36020:16;;36051:12;36066:1;36051:16;;36088:8;:14;36097:4;36088:14;;;;;;;;;;;;;;;;;;;;;;;;;36084:242;;;36142:1;36127:9;36137:1;36127:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:16;;;36123:32;;;36154:1;36145:10;;36123:32;36084:242;;;36194:8;:12;36203:2;36194:12;;;;;;;;;;;;;;;;;;;;;;;;;36190:136;;;36246:1;36231:9;36241:1;36231:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:16;;;36227:32;;;36258:1;36249:10;;36227:32;36190:136;;;36313:1;36298:9;36308:1;36298:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:16;;;36294:32;;;36325:1;36316:10;;36294:32;36190:136;36084:242;36356:1;36347:6;:10;;;36343:221;;;36416:5;36396:9;36406:6;36396:17;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;36387:26;;:6;:26;;;;:::i;:::-;:34;;;;:::i;:::-;36380:41;;36450:4;36440:14;;;;;:::i;:::-;;;36527:9;36537:6;36527:17;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;36496:48;;36503:13;36517:6;36503:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;36496:28;;:4;:28;;;;:::i;:::-;:48;;;;:::i;:::-;36475:17;;:69;;;;;;;:::i;:::-;;;;;;;;36343:221;36591:1;36584:4;:8;36580:91;;;36613:42;36629:4;36643;36650;36613:15;:42::i;:::-;36580:91;36005:677;;35892:790;36690:27;36720:24;:22;:24::i;:::-;36690:54;;36751:12;36785:19;36766:15;:13;:15::i;:::-;:38;;:63;;;;;36828:1;36808:17;36818:6;;;;;;;;;;;36808:9;:17::i;:::-;:21;36766:63;36751:78;;36843:9;;;;;;;;;;;36842:10;:29;;;;;36857:8;:14;36866:4;36857:14;;;;;;;;;;;;;;;;;;;;;;;;;36856:15;36842:29;:58;;;;;36891:8;;;;;;;;;;;36875:25;;:4;:25;;;;36842:58;:69;;;;;36904:7;36842:69;36838:772;;;36936:4;36924:9;;:16;;;;;;;;;;;;;;;;;;36953:5;:32;;;;36984:1;36962:19;:23;36953:32;36949:616;;;36998:18;37023:19;37019:1;:23;;;;:::i;:::-;36998:44;;37053:12;37068:5;37053:20;;37086:30;37105:10;37086:18;:30::i;:::-;37127:21;37151;37127:45;;37185:24;37250:10;37228:19;37212:13;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37185:75;;37294:1;37275:16;:20;37271:230;;;37330:16;;;;;;;;;;;37322:30;;:48;37353:16;37322:48;;;;;;;;;;;;;;;;;;;;;;;37312:58;;37389:7;37385:105;;;37422:52;37439:16;;;;;;;;;;;37457;37422:52;;;;;;;:::i;:::-;;;;;;;;37385:105;37271:230;37532:19;37511:17;;:40;;;;;;;:::i;:::-;;;;;;;;36987:578;;;;36949:616;37593:5;37581:9;;:17;;;;;;;;;;;;;;;;;;36838:772;37622:33;37638:4;37644:2;37648:6;37622:15;:33::i;:::-;35881:1784;;35768:1897;;;:::o;39205:109::-;39254:7;39301:5;39297:1;39281:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:25;;;;:::i;:::-;39274:32;;39205:109;:::o;38229:228::-;38313:6;38296:8;:14;38305:4;38296:14;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;38336:6;38332:71;;;38359:30;38378:4;38384;38359:18;:30::i;:::-;38332:71;38436:4;38420:29;;;38442:6;38420:29;;;;;;:::i;:::-;;;;;;;;38229:228;;:::o;13979:675::-;14082:1;14063:21;;:7;:21;;;14055:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14135:49;14156:7;14173:1;14177:6;14135:20;:49::i;:::-;14197:22;14222:9;:18;14232:7;14222:18;;;;;;;;;;;;;;;;14197:43;;14277:6;14259:14;:24;;14251:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14396:6;14379:14;:23;14358:9;:18;14368:7;14358:18;;;;;;;;;;;;;;;:44;;;;14513:6;14497:12;;:22;;;;;;;;;;;14574:1;14548:37;;14557:7;14548:37;;;14578:6;14548:37;;;;;;:::i;:::-;;;;;;;;14598:48;14618:7;14635:1;14639:6;14598:19;:48::i;:::-;14044:610;13979:675;;:::o;38611:188::-;38725:10;38693:20;:29;38714:7;38693:29;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;38771:7;38753:38;;;38780:10;38753:38;;;;;;:::i;:::-;;;;;;;;38611:188;;:::o;22747:156::-;22837:13;;22830:20;;;;;;;;;;;22861:34;22886:8;22861:24;:34::i;:::-;22747:156;:::o;39089:108::-;39142:7;39185:4;39169:13;:11;:13::i;:::-;:20;;;;:::i;:::-;39162:27;;39089:108;:::o;12005:806::-;12118:1;12102:18;;:4;:18;;;12094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12195:1;12181:16;;:2;:16;;;12173:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12250:38;12271:4;12277:2;12281:6;12250:20;:38::i;:::-;12301:19;12323:9;:15;12333:4;12323:15;;;;;;;;;;;;;;;;12301:37;;12372:6;12357:11;:21;;12349:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12489:6;12475:11;:20;12457:9;:15;12467:4;12457:15;;;;;;;;;;;;;;;:38;;;;12692:6;12675:9;:13;12685:2;12675:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12742:2;12727:26;;12736:4;12727:26;;;12746:6;12727:26;;;;;;:::i;:::-;;;;;;;;12766:37;12786:4;12792:2;12796:6;12766:19;:37::i;:::-;12083:728;12005:806;;;:::o;33582:380::-;33650:21;33688:1;33674:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33650:40;;33719:4;33701;33706:1;33701:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33745:8;;;;;;;;;;;:13;;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33735:4;33740:1;33735:7;;;;;;;;:::i;:::-;;;;;;;:25;;;;;;;;;;;33773:55;33790:4;33805:8;;;;;;;;;;;33816:11;33773:8;:55::i;:::-;33841:8;;;;;;;;;;;:59;;;33901:11;33914:1;33917:4;33931;33938:15;33841:113;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33639:323;33582:380;:::o;39575:340::-;39703:8;:14;39712:4;39703:14;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;;39722:20;:24;39743:2;39722:24;;;;;;;;;;;;;;;;;;;;;;;;;39721:25;39703:43;39699:152;;;39788:12;;39778:6;:22;;39770:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39699:152;39863:44;39890:4;39896:2;39900:6;39863:26;:44::i;:::-;39575:340;;;:::o;39923:330::-;40051:20;:24;40072:2;40051:24;;;;;;;;;;;;;;;;;;;;;;;;;40046:144;;40117:15;;40100:13;40110:2;40100:9;:13::i;:::-;:32;;40092:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;40046:144;40202:43;40228:4;40234:2;40238:6;40202:25;:43::i;:::-;39923:330;;;:::o;21063:191::-;21137:16;21156:6;;;;;;;;;;;21137:25;;21182:8;21173:6;;:17;;;;;;;;;;;;;;;;;;21237:8;21206:40;;21227:8;21206:40;;;;;;;;;;;;21126:128;21063:191;:::o;16748:91::-;;;;:::o;17443:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:89::-;3727:7;3767:6;3760:5;3756:18;3745:29;;3691:89;;;:::o;3786:120::-;3858:23;3875:5;3858:23;:::i;:::-;3851:5;3848:34;3838:62;;3896:1;3893;3886:12;3838:62;3786:120;:::o;3912:137::-;3957:5;3995:6;3982:20;3973:29;;4011:32;4037:5;4011:32;:::i;:::-;3912:137;;;;:::o;4055:327::-;4113:6;4162:2;4150:9;4141:7;4137:23;4133:32;4130:119;;;4168:79;;:::i;:::-;4130:119;4288:1;4313:52;4357:7;4348:6;4337:9;4333:22;4313:52;:::i;:::-;4303:62;;4259:116;4055:327;;;;:::o;4388:619::-;4465:6;4473;4481;4530:2;4518:9;4509:7;4505:23;4501:32;4498:119;;;4536:79;;:::i;:::-;4498:119;4656:1;4681:53;4726:7;4717:6;4706:9;4702:22;4681:53;:::i;:::-;4671:63;;4627:117;4783:2;4809:53;4854:7;4845:6;4834:9;4830:22;4809:53;:::i;:::-;4799:63;;4754:118;4911:2;4937:53;4982:7;4973:6;4962:9;4958:22;4937:53;:::i;:::-;4927:63;;4882:118;4388:619;;;;;:::o;5013:329::-;5072:6;5121:2;5109:9;5100:7;5096:23;5092:32;5089:119;;;5127:79;;:::i;:::-;5089:119;5247:1;5272:53;5317:7;5308:6;5297:9;5293:22;5272:53;:::i;:::-;5262:63;;5218:117;5013:329;;;;:::o;5348:116::-;5418:21;5433:5;5418:21;:::i;:::-;5411:5;5408:32;5398:60;;5454:1;5451;5444:12;5398:60;5348:116;:::o;5470:133::-;5513:5;5551:6;5538:20;5529:29;;5567:30;5591:5;5567:30;:::i;:::-;5470:133;;;;:::o;5609:468::-;5674:6;5682;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5984:2;6010:50;6052:7;6043:6;6032:9;6028:22;6010:50;:::i;:::-;6000:60;;5955:115;5609:468;;;;;:::o;6083:86::-;6118:7;6158:4;6151:5;6147:16;6136:27;;6083:86;;;:::o;6175:112::-;6258:22;6274:5;6258:22;:::i;:::-;6253:3;6246:35;6175:112;;:::o;6293:214::-;6382:4;6420:2;6409:9;6405:18;6397:26;;6433:67;6497:1;6486:9;6482:17;6473:6;6433:67;:::i;:::-;6293:214;;;;:::o;6513:115::-;6598:23;6615:5;6598:23;:::i;:::-;6593:3;6586:36;6513:115;;:::o;6634:218::-;6725:4;6763:2;6752:9;6748:18;6740:26;;6776:69;6842:1;6831:9;6827:17;6818:6;6776:69;:::i;:::-;6634:218;;;;:::o;6858:329::-;6917:6;6966:2;6954:9;6945:7;6941:23;6937:32;6934:119;;;6972:79;;:::i;:::-;6934:119;7092:1;7117:53;7162:7;7153:6;7142:9;7138:22;7117:53;:::i;:::-;7107:63;;7063:117;6858:329;;;;:::o;7193:60::-;7221:3;7242:5;7235:12;;7193:60;;;:::o;7259:142::-;7309:9;7342:53;7360:34;7369:24;7387:5;7369:24;:::i;:::-;7360:34;:::i;:::-;7342:53;:::i;:::-;7329:66;;7259:142;;;:::o;7407:126::-;7457:9;7490:37;7521:5;7490:37;:::i;:::-;7477:50;;7407:126;;;:::o;7539:153::-;7616:9;7649:37;7680:5;7649:37;:::i;:::-;7636:50;;7539:153;;;:::o;7698:185::-;7812:64;7870:5;7812:64;:::i;:::-;7807:3;7800:77;7698:185;;:::o;7889:276::-;8009:4;8047:2;8036:9;8032:18;8024:26;;8060:98;8155:1;8144:9;8140:17;8131:6;8060:98;:::i;:::-;7889:276;;;;:::o;8171:118::-;8258:24;8276:5;8258:24;:::i;:::-;8253:3;8246:37;8171:118;;:::o;8295:222::-;8388:4;8426:2;8415:9;8411:18;8403:26;;8439:71;8507:1;8496:9;8492:17;8483:6;8439:71;:::i;:::-;8295:222;;;;:::o;8523:474::-;8591:6;8599;8648:2;8636:9;8627:7;8623:23;8619:32;8616:119;;;8654:79;;:::i;:::-;8616:119;8774:1;8799:53;8844:7;8835:6;8824:9;8820:22;8799:53;:::i;:::-;8789:63;;8745:117;8901:2;8927:53;8972:7;8963:6;8952:9;8948:22;8927:53;:::i;:::-;8917:63;;8872:118;8523:474;;;;;:::o;9003:613::-;9077:6;9085;9093;9142:2;9130:9;9121:7;9117:23;9113:32;9110:119;;;9148:79;;:::i;:::-;9110:119;9268:1;9293:52;9337:7;9328:6;9317:9;9313:22;9293:52;:::i;:::-;9283:62;;9239:116;9394:2;9420:52;9464:7;9455:6;9444:9;9440:22;9420:52;:::i;:::-;9410:62;;9365:117;9521:2;9547:52;9591:7;9582:6;9571:9;9567:22;9547:52;:::i;:::-;9537:62;;9492:117;9003:613;;;;;:::o;9622:180::-;9670:77;9667:1;9660:88;9767:4;9764:1;9757:15;9791:4;9788:1;9781:15;9808:320;9852:6;9889:1;9883:4;9879:12;9869:22;;9936:1;9930:4;9926:12;9957:18;9947:81;;10013:4;10005:6;10001:17;9991:27;;9947:81;10075:2;10067:6;10064:14;10044:18;10041:38;10038:84;;10094:18;;:::i;:::-;10038:84;9859:269;9808:320;;;:::o;10134:299::-;10274:34;10270:1;10262:6;10258:14;10251:58;10343:34;10338:2;10330:6;10326:15;10319:59;10412:13;10407:2;10399:6;10395:15;10388:38;10134:299;:::o;10439:366::-;10581:3;10602:67;10666:2;10661:3;10602:67;:::i;:::-;10595:74;;10678:93;10767:3;10678:93;:::i;:::-;10796:2;10791:3;10787:12;10780:19;;10439:366;;;:::o;10811:419::-;10977:4;11015:2;11004:9;11000:18;10992:26;;11064:9;11058:4;11054:20;11050:1;11039:9;11035:17;11028:47;11092:131;11218:4;11092:131;:::i;:::-;11084:139;;10811:419;;;:::o;11236:170::-;11376:22;11372:1;11364:6;11360:14;11353:46;11236:170;:::o;11412:366::-;11554:3;11575:67;11639:2;11634:3;11575:67;:::i;:::-;11568:74;;11651:93;11740:3;11651:93;:::i;:::-;11769:2;11764:3;11760:12;11753:19;;11412:366;;;:::o;11784:419::-;11950:4;11988:2;11977:9;11973:18;11965:26;;12037:9;12031:4;12027:20;12023:1;12012:9;12008:17;12001:47;12065:131;12191:4;12065:131;:::i;:::-;12057:139;;11784:419;;;:::o;12209:238::-;12349:34;12345:1;12337:6;12333:14;12326:58;12418:21;12413:2;12405:6;12401:15;12394:46;12209:238;:::o;12453:366::-;12595:3;12616:67;12680:2;12675:3;12616:67;:::i;:::-;12609:74;;12692:93;12781:3;12692:93;:::i;:::-;12810:2;12805:3;12801:12;12794:19;;12453:366;;;:::o;12825:419::-;12991:4;13029:2;13018:9;13014:18;13006:26;;13078:9;13072:4;13068:20;13064:1;13053:9;13049:17;13042:47;13106:131;13232:4;13106:131;:::i;:::-;13098:139;;12825:419;;;:::o;13250:180::-;13298:77;13295:1;13288:88;13395:4;13392:1;13385:15;13419:4;13416:1;13409:15;13436:191;13476:3;13495:20;13513:1;13495:20;:::i;:::-;13490:25;;13529:20;13547:1;13529:20;:::i;:::-;13524:25;;13572:1;13569;13565:9;13558:16;;13593:3;13590:1;13587:10;13584:36;;;13600:18;;:::i;:::-;13584:36;13436:191;;;;:::o;13633:294::-;13773:34;13769:1;13761:6;13757:14;13750:58;13842:34;13837:2;13829:6;13825:15;13818:59;13911:8;13906:2;13898:6;13894:15;13887:33;13633:294;:::o;13933:366::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:419::-;14471:4;14509:2;14498:9;14494:18;14486:26;;14558:9;14552:4;14548:20;14544:1;14533:9;14529:17;14522:47;14586:131;14712:4;14586:131;:::i;:::-;14578:139;;14305:419;;;:::o;14730:228::-;14870:34;14866:1;14858:6;14854:14;14847:58;14939:11;14934:2;14926:6;14922:15;14915:36;14730:228;:::o;14964:366::-;15106:3;15127:67;15191:2;15186:3;15127:67;:::i;:::-;15120:74;;15203:93;15292:3;15203:93;:::i;:::-;15321:2;15316:3;15312:12;15305:19;;14964:366;;;:::o;15336:419::-;15502:4;15540:2;15529:9;15525:18;15517:26;;15589:9;15583:4;15579:20;15575:1;15564:9;15560:17;15553:47;15617:131;15743:4;15617:131;:::i;:::-;15609:139;;15336:419;;;:::o;15761:224::-;15901:34;15897:1;15889:6;15885:14;15878:58;15970:7;15965:2;15957:6;15953:15;15946:32;15761:224;:::o;15991:366::-;16133:3;16154:67;16218:2;16213:3;16154:67;:::i;:::-;16147:74;;16230:93;16319:3;16230:93;:::i;:::-;16348:2;16343:3;16339:12;16332:19;;15991:366;;;:::o;16363:419::-;16529:4;16567:2;16556:9;16552:18;16544:26;;16616:9;16610:4;16606:20;16602:1;16591:9;16587:17;16580:47;16644:131;16770:4;16644:131;:::i;:::-;16636:139;;16363:419;;;:::o;16788:143::-;16845:5;16876:6;16870:13;16861:22;;16892:33;16919:5;16892:33;:::i;:::-;16788:143;;;;:::o;16937:351::-;17007:6;17056:2;17044:9;17035:7;17031:23;17027:32;17024:119;;;17062:79;;:::i;:::-;17024:119;17182:1;17207:64;17263:7;17254:6;17243:9;17239:22;17207:64;:::i;:::-;17197:74;;17153:128;16937:351;;;;:::o;17294:332::-;17415:4;17453:2;17442:9;17438:18;17430:26;;17466:71;17534:1;17523:9;17519:17;17510:6;17466:71;:::i;:::-;17547:72;17615:2;17604:9;17600:18;17591:6;17547:72;:::i;:::-;17294:332;;;;;:::o;17632:174::-;17772:26;17768:1;17760:6;17756:14;17749:50;17632:174;:::o;17812:366::-;17954:3;17975:67;18039:2;18034:3;17975:67;:::i;:::-;17968:74;;18051:93;18140:3;18051:93;:::i;:::-;18169:2;18164:3;18160:12;18153:19;;17812:366;;;:::o;18184:419::-;18350:4;18388:2;18377:9;18373:18;18365:26;;18437:9;18431:4;18427:20;18423:1;18412:9;18408:17;18401:47;18465:131;18591:4;18465:131;:::i;:::-;18457:139;;18184:419;;;:::o;18609:410::-;18649:7;18672:20;18690:1;18672:20;:::i;:::-;18667:25;;18706:20;18724:1;18706:20;:::i;:::-;18701:25;;18761:1;18758;18754:9;18783:30;18801:11;18783:30;:::i;:::-;18772:41;;18962:1;18953:7;18949:15;18946:1;18943:22;18923:1;18916:9;18896:83;18873:139;;18992:18;;:::i;:::-;18873:139;18657:362;18609:410;;;;:::o;19025:180::-;19073:77;19070:1;19063:88;19170:4;19167:1;19160:15;19194:4;19191:1;19184:15;19211:185;19251:1;19268:20;19286:1;19268:20;:::i;:::-;19263:25;;19302:20;19320:1;19302:20;:::i;:::-;19297:25;;19341:1;19331:35;;19346:18;;:::i;:::-;19331:35;19388:1;19385;19381:9;19376:14;;19211:185;;;;:::o;19402:180::-;19450:77;19447:1;19440:88;19547:4;19544:1;19537:15;19571:4;19568:1;19561:15;19588:196;19627:4;19647:19;19664:1;19647:19;:::i;:::-;19642:24;;19680:19;19697:1;19680:19;:::i;:::-;19675:24;;19723:1;19720;19716:9;19708:17;;19747:6;19741:4;19738:16;19735:42;;;19757:18;;:::i;:::-;19735:42;19588:196;;;;:::o;19790:193::-;19829:3;19848:19;19865:1;19848:19;:::i;:::-;19843:24;;19881:19;19898:1;19881:19;:::i;:::-;19876:24;;19923:1;19920;19916:9;19909:16;;19946:6;19941:3;19938:15;19935:41;;;19956:18;;:::i;:::-;19935:41;19790:193;;;;:::o;19989:241::-;20129:34;20125:1;20117:6;20113:14;20106:58;20198:24;20193:2;20185:6;20181:15;20174:49;19989:241;:::o;20236:366::-;20378:3;20399:67;20463:2;20458:3;20399:67;:::i;:::-;20392:74;;20475:93;20564:3;20475:93;:::i;:::-;20593:2;20588:3;20584:12;20577:19;;20236:366;;;:::o;20608:419::-;20774:4;20812:2;20801:9;20797:18;20789:26;;20861:9;20855:4;20851:20;20847:1;20836:9;20832:17;20825:47;20889:131;21015:4;20889:131;:::i;:::-;20881:139;;20608:419;;;:::o;21033:430::-;21176:4;21214:2;21203:9;21199:18;21191:26;;21227:69;21293:1;21282:9;21278:17;21269:6;21227:69;:::i;:::-;21306:70;21372:2;21361:9;21357:18;21348:6;21306:70;:::i;:::-;21386;21452:2;21441:9;21437:18;21428:6;21386:70;:::i;:::-;21033:430;;;;;;:::o;21469:223::-;21609:34;21605:1;21597:6;21593:14;21586:58;21678:6;21673:2;21665:6;21661:15;21654:31;21469:223;:::o;21698:366::-;21840:3;21861:67;21925:2;21920:3;21861:67;:::i;:::-;21854:74;;21937:93;22026:3;21937:93;:::i;:::-;22055:2;22050:3;22046:12;22039:19;;21698:366;;;:::o;22070:419::-;22236:4;22274:2;22263:9;22259:18;22251:26;;22323:9;22317:4;22313:20;22309:1;22298:9;22294:17;22287:47;22351:131;22477:4;22351:131;:::i;:::-;22343:139;;22070:419;;;:::o;22495:221::-;22635:34;22631:1;22623:6;22619:14;22612:58;22704:4;22699:2;22691:6;22687:15;22680:29;22495:221;:::o;22722:366::-;22864:3;22885:67;22949:2;22944:3;22885:67;:::i;:::-;22878:74;;22961:93;23050:3;22961:93;:::i;:::-;23079:2;23074:3;23070:12;23063:19;;22722:366;;;:::o;23094:419::-;23260:4;23298:2;23287:9;23283:18;23275:26;;23347:9;23341:4;23337:20;23333:1;23322:9;23318:17;23311:47;23375:131;23501:4;23375:131;:::i;:::-;23367:139;;23094:419;;;:::o;23519:182::-;23659:34;23655:1;23647:6;23643:14;23636:58;23519:182;:::o;23707:366::-;23849:3;23870:67;23934:2;23929:3;23870:67;:::i;:::-;23863:74;;23946:93;24035:3;23946:93;:::i;:::-;24064:2;24059:3;24055:12;24048:19;;23707:366;;;:::o;24079:419::-;24245:4;24283:2;24272:9;24268:18;24260:26;;24332:9;24326:4;24322:20;24318:1;24307:9;24303:17;24296:47;24360:131;24486:4;24360:131;:::i;:::-;24352:139;;24079:419;;;:::o;24504:179::-;24644:31;24640:1;24632:6;24628:14;24621:55;24504:179;:::o;24689:366::-;24831:3;24852:67;24916:2;24911:3;24852:67;:::i;:::-;24845:74;;24928:93;25017:3;24928:93;:::i;:::-;25046:2;25041:3;25037:12;25030:19;;24689:366;;;:::o;25061:419::-;25227:4;25265:2;25254:9;25250:18;25242:26;;25314:9;25308:4;25304:20;25300:1;25289:9;25285:17;25278:47;25342:131;25468:4;25342:131;:::i;:::-;25334:139;;25061:419;;;:::o;25486:194::-;25526:4;25546:20;25564:1;25546:20;:::i;:::-;25541:25;;25580:20;25598:1;25580:20;:::i;:::-;25575:25;;25624:1;25621;25617:9;25609:17;;25648:1;25642:4;25639:11;25636:37;;;25653:18;;:::i;:::-;25636:37;25486:194;;;;:::o;25686:332::-;25807:4;25845:2;25834:9;25830:18;25822:26;;25858:71;25926:1;25915:9;25911:17;25902:6;25858:71;:::i;:::-;25939:72;26007:2;25996:9;25992:18;25983:6;25939:72;:::i;:::-;25686:332;;;;;:::o;26024:220::-;26164:34;26160:1;26152:6;26148:14;26141:58;26233:3;26228:2;26220:6;26216:15;26209:28;26024:220;:::o;26250:366::-;26392:3;26413:67;26477:2;26472:3;26413:67;:::i;:::-;26406:74;;26489:93;26578:3;26489:93;:::i;:::-;26607:2;26602:3;26598:12;26591:19;;26250:366;;;:::o;26622:419::-;26788:4;26826:2;26815:9;26811:18;26803:26;;26875:9;26869:4;26865:20;26861:1;26850:9;26846:17;26839:47;26903:131;27029:4;26903:131;:::i;:::-;26895:139;;26622:419;;;:::o;27047:221::-;27187:34;27183:1;27175:6;27171:14;27164:58;27256:4;27251:2;27243:6;27239:15;27232:29;27047:221;:::o;27274:366::-;27416:3;27437:67;27501:2;27496:3;27437:67;:::i;:::-;27430:74;;27513:93;27602:3;27513:93;:::i;:::-;27631:2;27626:3;27622:12;27615:19;;27274:366;;;:::o;27646:419::-;27812:4;27850:2;27839:9;27835:18;27827:26;;27899:9;27893:4;27889:20;27885:1;27874:9;27870:17;27863:47;27927:131;28053:4;27927:131;:::i;:::-;27919:139;;27646:419;;;:::o;28071:224::-;28211:34;28207:1;28199:6;28195:14;28188:58;28280:7;28275:2;28267:6;28263:15;28256:32;28071:224;:::o;28301:366::-;28443:3;28464:67;28528:2;28523:3;28464:67;:::i;:::-;28457:74;;28540:93;28629:3;28540:93;:::i;:::-;28658:2;28653:3;28649:12;28642:19;;28301:366;;;:::o;28673:419::-;28839:4;28877:2;28866:9;28862:18;28854:26;;28926:9;28920:4;28916:20;28912:1;28901:9;28897:17;28890:47;28954:131;29080:4;28954:131;:::i;:::-;28946:139;;28673:419;;;:::o;29098:222::-;29238:34;29234:1;29226:6;29222:14;29215:58;29307:5;29302:2;29294:6;29290:15;29283:30;29098:222;:::o;29326:366::-;29468:3;29489:67;29553:2;29548:3;29489:67;:::i;:::-;29482:74;;29565:93;29654:3;29565:93;:::i;:::-;29683:2;29678:3;29674:12;29667:19;;29326:366;;;:::o;29698:419::-;29864:4;29902:2;29891:9;29887:18;29879:26;;29951:9;29945:4;29941:20;29937:1;29926:9;29922:17;29915:47;29979:131;30105:4;29979:131;:::i;:::-;29971:139;;29698:419;;;:::o;30123:225::-;30263:34;30259:1;30251:6;30247:14;30240:58;30332:8;30327:2;30319:6;30315:15;30308:33;30123:225;:::o;30354:366::-;30496:3;30517:67;30581:2;30576:3;30517:67;:::i;:::-;30510:74;;30593:93;30682:3;30593:93;:::i;:::-;30711:2;30706:3;30702:12;30695:19;;30354:366;;;:::o;30726:419::-;30892:4;30930:2;30919:9;30915:18;30907:26;;30979:9;30973:4;30969:20;30965:1;30954:9;30950:17;30943:47;31007:131;31133:4;31007:131;:::i;:::-;30999:139;;30726:419;;;:::o;31151:180::-;31199:77;31196:1;31189:88;31296:4;31293:1;31286:15;31320:4;31317:1;31310:15;31337:85;31382:7;31411:5;31400:16;;31337:85;;;:::o;31428:158::-;31486:9;31519:61;31537:42;31546:32;31572:5;31546:32;:::i;:::-;31537:42;:::i;:::-;31519:61;:::i;:::-;31506:74;;31428:158;;;:::o;31592:147::-;31687:45;31726:5;31687:45;:::i;:::-;31682:3;31675:58;31592:147;;:::o;31745:114::-;31812:6;31846:5;31840:12;31830:22;;31745:114;;;:::o;31865:184::-;31964:11;31998:6;31993:3;31986:19;32038:4;32033:3;32029:14;32014:29;;31865:184;;;;:::o;32055:132::-;32122:4;32145:3;32137:11;;32175:4;32170:3;32166:14;32158:22;;32055:132;;;:::o;32193:108::-;32270:24;32288:5;32270:24;:::i;:::-;32265:3;32258:37;32193:108;;:::o;32307:179::-;32376:10;32397:46;32439:3;32431:6;32397:46;:::i;:::-;32475:4;32470:3;32466:14;32452:28;;32307:179;;;;:::o;32492:113::-;32562:4;32594;32589:3;32585:14;32577:22;;32492:113;;;:::o;32641:732::-;32760:3;32789:54;32837:5;32789:54;:::i;:::-;32859:86;32938:6;32933:3;32859:86;:::i;:::-;32852:93;;32969:56;33019:5;32969:56;:::i;:::-;33048:7;33079:1;33064:284;33089:6;33086:1;33083:13;33064:284;;;33165:6;33159:13;33192:63;33251:3;33236:13;33192:63;:::i;:::-;33185:70;;33278:60;33331:6;33278:60;:::i;:::-;33268:70;;33124:224;33111:1;33108;33104:9;33099:14;;33064:284;;;33068:14;33364:3;33357:10;;32765:608;;;32641:732;;;;:::o;33379:831::-;33642:4;33680:3;33669:9;33665:19;33657:27;;33694:71;33762:1;33751:9;33747:17;33738:6;33694:71;:::i;:::-;33775:80;33851:2;33840:9;33836:18;33827:6;33775:80;:::i;:::-;33902:9;33896:4;33892:20;33887:2;33876:9;33872:18;33865:48;33930:108;34033:4;34024:6;33930:108;:::i;:::-;33922:116;;34048:72;34116:2;34105:9;34101:18;34092:6;34048:72;:::i;:::-;34130:73;34198:3;34187:9;34183:19;34174:6;34130:73;:::i;:::-;33379:831;;;;;;;;:::o;34216:221::-;34356:34;34352:1;34344:6;34340:14;34333:58;34425:4;34420:2;34412:6;34408:15;34401:29;34216:221;:::o;34443:366::-;34585:3;34606:67;34670:2;34665:3;34606:67;:::i;:::-;34599:74;;34682:93;34771:3;34682:93;:::i;:::-;34800:2;34795:3;34791:12;34784:19;;34443:366;;;:::o;34815:419::-;34981:4;35019:2;35008:9;35004:18;34996:26;;35068:9;35062:4;35058:20;35054:1;35043:9;35039:17;35032:47;35096:131;35222:4;35096:131;:::i;:::-;35088:139;;34815:419;;;:::o;35240:228::-;35380:34;35376:1;35368:6;35364:14;35357:58;35449:11;35444:2;35436:6;35432:15;35425:36;35240:228;:::o;35474:366::-;35616:3;35637:67;35701:2;35696:3;35637:67;:::i;:::-;35630:74;;35713:93;35802:3;35713:93;:::i;:::-;35831:2;35826:3;35822:12;35815:19;;35474:366;;;:::o;35846:419::-;36012:4;36050:2;36039:9;36035:18;36027:26;;36099:9;36093:4;36089:20;36085:1;36074:9;36070:17;36063:47;36127:131;36253:4;36127:131;:::i;:::-;36119:139;;35846:419;;;:::o

Swarm Source

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