ETH Price: $2,285.87 (-3.05%)

Token

HIDASHI (HIDASHI)
 

Overview

Max Total Supply

100,000,000 HIDASHI

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,935,134.8 HIDASHI

Value
$0.00
0x55e2b2d12e848263450d9ac0c761ae1060a3fe4f
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:
HIDASHI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-04
*/

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public pairedToken = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public treasuryWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellLiquidityFee;

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("HIDASHI", "HIDASHI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyTreasuryFee = 5;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellTreasuryFee = 5;
        uint256 _sellLiquidityFee = 0;


        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 1 / 100; // 1% 
        maxWallet = totalSupply * 1 / 100; // 5% 
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.10%

        buyTreasuryFee = _buyTreasuryFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee;

        treasuryWallet = address(0x6D68fD002FA1e19944346E291c4739acBbe63512); // set as treasury wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function updateTreasuryWallet(address newTreasuryWallet)
        external
        onlyOwner
    {
        emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet);
        treasuryWallet = newTreasuryWallet;
    }


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForPairedToken(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairedToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600781526020017f48494441534849000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4849444153484900000000000000000000000000000000000000000000000000815250816003908162000135919062000c1b565b50806004908162000147919062000c1b565b5050506200016a6200015e6200050360201b60201c565b6200050b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620005d160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000d6c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000daf565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000d6c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a0516001620005d160201b60201c565b600060059050600080600590506000806a52b7d2dcc80cd2e40000009050606460018262000357919062000e0b565b62000363919062000e9b565b60088190555060646001826200037a919062000e0b565b62000386919062000e9b565b600a81905550612710600a826200039e919062000e0b565b620003aa919062000e9b565b60098190555084600d8190555083600e81905550600e54600d54620003d0919062000ed3565b600c819055508260108190555081601181905550601154601054620003f6919062000ed3565b600f81905550736d68fd002fa1e19944346e291c4739acbbe63512600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047362000465620006bb60201b60201c565b6001620006e560201b60201c565b62000486306001620006e560201b60201c565b6200049b61dead6001620006e560201b60201c565b620004bd620004af620006bb60201b60201c565b6001620005d160201b60201c565b620004d0306001620005d160201b60201c565b620004e561dead6001620005d160201b60201c565b620004f733826200081f60201b60201c565b5050505050506200106b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005e16200050360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000607620006bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006579062000f6f565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006f56200050360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200071b620006bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076b9062000f6f565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000813919062000fae565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000888906200101b565b60405180910390fd5b620008a5600083836200099760201b60201c565b8060026000828254620008b9919062000ed3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000910919062000ed3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200097791906200104e565b60405180910390a362000993600083836200099c60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a2357607f821691505b60208210810362000a395762000a38620009db565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aa37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a64565b62000aaf868362000a64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000afc62000af662000af08462000ac7565b62000ad1565b62000ac7565b9050919050565b6000819050919050565b62000b188362000adb565b62000b3062000b278262000b03565b84845462000a71565b825550505050565b600090565b62000b4762000b38565b62000b5481848462000b0d565b505050565b5b8181101562000b7c5762000b7060008262000b3d565b60018101905062000b5a565b5050565b601f82111562000bcb5762000b958162000a3f565b62000ba08462000a54565b8101602085101562000bb0578190505b62000bc862000bbf8562000a54565b83018262000b59565b50505b505050565b600082821c905092915050565b600062000bf06000198460080262000bd0565b1980831691505092915050565b600062000c0b838362000bdd565b9150826002028217905092915050565b62000c2682620009a1565b67ffffffffffffffff81111562000c425762000c41620009ac565b5b62000c4e825462000a0a565b62000c5b82828562000b80565b600060209050601f83116001811462000c93576000841562000c7e578287015190505b62000c8a858262000bfd565b86555062000cfa565b601f19841662000ca38662000a3f565b60005b8281101562000ccd5784890151825560018201915060208501945060208101905062000ca6565b8683101562000ced578489015162000ce9601f89168262000bdd565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d348262000d07565b9050919050565b62000d468162000d27565b811462000d5257600080fd5b50565b60008151905062000d668162000d3b565b92915050565b60006020828403121562000d855762000d8462000d02565b5b600062000d958482850162000d55565b91505092915050565b62000da98162000d27565b82525050565b600060408201905062000dc6600083018562000d9e565b62000dd5602083018462000d9e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e188262000ac7565b915062000e258362000ac7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e615762000e6062000ddc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ea88262000ac7565b915062000eb58362000ac7565b92508262000ec85762000ec762000e6c565b5b828204905092915050565b600062000ee08262000ac7565b915062000eed8362000ac7565b925082820190508082111562000f085762000f0762000ddc565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f5760208362000f0e565b915062000f648262000f1f565b602082019050919050565b6000602082019050818103600083015262000f8a8162000f48565b9050919050565b60008115159050919050565b62000fa88162000f91565b82525050565b600060208201905062000fc5600083018462000f9d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001003601f8362000f0e565b9150620010108262000fcb565b602082019050919050565b60006020820190508181036000830152620010368162000ff4565b9050919050565b620010488162000ac7565b82525050565b60006020820190506200106560008301846200103d565b92915050565b60805160a051613bf1620010c260003960008181610daf01528181611f320152818161217b0152818161238601528181612451015261253b015260008181610b4b01528181612a660152612a8d0152613bf16000f3fe60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461088f578063f11a24d3146108ba578063f2fde38b146108e5578063f63743421461090e578063f8b45b0514610939578063ffc94f901461096457610251565b8063c18bc19514610796578063c8c8ebe4146107bf578063d257b34f146107ea578063d85ba06314610827578063dd62ed3e1461085257610251565b8063924de9b7116100fd578063924de9b7146106b157806395d89b41146106da578063a9059cbb14610705578063bbc0c74214610742578063c02466681461076d57610251565b8063751039fc146105f25780637571336a1461061d578063809d458d146106465780638a8c523c1461066f5780638da5cb5b1461068657610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051d5780636b2fb124146105485780636ddd17131461057357806370a082311461059e578063715018a6146105db57610251565b806349bd5a5e146104365780634a62bb65146104615780634fbee1931461048c5780635c068a8c146104c957806366ca9b83146104f457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a3578063313ce567146103e05780634626402b1461040b57610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b80565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c50565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612cd0565b610b0b565b6040516102de9190612d2b565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d46565b610b29565b60405161031b9190612d2b565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612dd2565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612dfc565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e17565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612e44565b610c86565b6040516103d79190612d2b565b60405180910390f35b3480156103ec57600080fd5b506103f5610d7e565b6040516104029190612eb3565b60405180910390f35b34801561041757600080fd5b50610420610d87565b60405161042d9190612edd565b60405180910390f35b34801561044257600080fd5b5061044b610dad565b6040516104589190612edd565b60405180910390f35b34801561046d57600080fd5b50610476610dd1565b6040516104839190612d2b565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612d46565b610de4565b6040516104c09190612d2b565b60405180910390f35b3480156104d557600080fd5b506104de610e3a565b6040516104eb9190612dfc565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612b80565b610e40565b005b34801561052957600080fd5b50610532610f2a565b60405161053f9190612dfc565b60405180910390f35b34801561055457600080fd5b5061055d610f30565b60405161056a9190612dfc565b60405180910390f35b34801561057f57600080fd5b50610588610f36565b6040516105959190612d2b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612d46565b610f49565b6040516105d29190612dfc565b60405180910390f35b3480156105e757600080fd5b506105f0610f91565b005b3480156105fe57600080fd5b50610607611019565b6040516106149190612d2b565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190612f24565b6110b9565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d46565b611190565b005b34801561067b57600080fd5b506106846112cc565b005b34801561069257600080fd5b5061069b611380565b6040516106a89190612edd565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f64565b6113aa565b005b3480156106e657600080fd5b506106ef611443565b6040516106fc9190612c50565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612cd0565b6114d5565b6040516107399190612d2b565b60405180910390f35b34801561074e57600080fd5b506107576114f3565b6040516107649190612d2b565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f24565b611506565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612e17565b61162b565b005b3480156107cb57600080fd5b506107d461173a565b6040516107e19190612dfc565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612e17565b611740565b60405161081e9190612d2b565b60405180910390f35b34801561083357600080fd5b5061083c611895565b6040516108499190612dfc565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612f91565b61189b565b6040516108869190612dfc565b60405180910390f35b34801561089b57600080fd5b506108a4611922565b6040516108b19190612dfc565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612dfc565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190612d46565b61192e565b005b34801561091a57600080fd5b50610923611a25565b6040516109309190612dfc565b60405180910390f35b34801561094557600080fd5b5061094e611a2b565b60405161095b9190612dfc565b60405180910390f35b34801561097057600080fd5b50610979611a31565b6040516109869190612edd565b60405180910390f35b610997611a57565b73ffffffffffffffffffffffffffffffffffffffff166109b5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061301d565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061306c565b600f81905550600a600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906130ec565b60405180910390fd5b5050565b606060038054610a889061313b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061313b565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a57565b8484611a5f565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610b7f611a57565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611380565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061301d565b60405180910390fd5b670de0b6b3a76400006103e86001610c09610b6d565b610c13919061316c565b610c1d91906131f5565b610c2791906131f5565b811015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613298565b60405180910390fd5b670de0b6b3a764000081610c7d919061316c565b60088190555050565b6000610c93848484611c28565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cde611a57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061332a565b60405180910390fd5b610d7285610d6a611a57565b858403611a5f565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b610e48611a57565b73ffffffffffffffffffffffffffffffffffffffff16610e66611380565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061301d565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610eda919061306c565b600c81905550600a600c541115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d906130ec565b60405180910390fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f99611a57565b73ffffffffffffffffffffffffffffffffffffffff16610fb7611380565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061301d565b60405180910390fd5b6110176000612587565b565b6000611023611a57565b73ffffffffffffffffffffffffffffffffffffffff16611041611380565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061301d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c1611a57565b73ffffffffffffffffffffffffffffffffffffffff166110df611380565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061301d565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611198611a57565b73ffffffffffffffffffffffffffffffffffffffff166111b6611380565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061301d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112d4611a57565b73ffffffffffffffffffffffffffffffffffffffff166112f2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061301d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b2611a57565b73ffffffffffffffffffffffffffffffffffffffff166113d0611380565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061301d565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114529061313b565b80601f016020809104026020016040519081016040528092919081815260200182805461147e9061313b565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b5050505050905090565b60006114e96114e2611a57565b8484611c28565b6001905092915050565b600b60019054906101000a900460ff1681565b61150e611a57565b73ffffffffffffffffffffffffffffffffffffffff1661152c611380565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061301d565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161161f9190612d2b565b60405180910390a25050565b611633611a57565b73ffffffffffffffffffffffffffffffffffffffff16611651611380565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e9061301d565b60405180910390fd5b670de0b6b3a76400006103e860056116bd610b6d565b6116c7919061316c565b6116d191906131f5565b6116db91906131f5565b81101561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906133bc565b60405180910390fd5b670de0b6b3a764000081611731919061316c565b600a8190555050565b60085481565b600061174a611a57565b73ffffffffffffffffffffffffffffffffffffffff16611768611380565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061301d565b60405180910390fd5b620186a060016117cc610b6d565b6117d6919061316c565b6117e091906131f5565b821015611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061344e565b60405180910390fd5b6103e8600561182f610b6d565b611839919061316c565b61184391906131f5565b821115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c906134e0565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611936611a57565b73ffffffffffffffffffffffffffffffffffffffff16611954611380565b73ffffffffffffffffffffffffffffffffffffffff16146119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a19061301d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613572565b60405180910390fd5b611a2281612587565b50565b60115481565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490613696565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1b9190612dfc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906137ba565b60405180910390fd5b60008103611d1f57611d1a8383600061264d565b612582565b600b60009054906101000a900460ff161561212957611d3c611380565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611daa5750611d7a611380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e365750600660149054906101000a900460ff16155b1561212857600b60019054906101000a900460ff16611f3057601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613826565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fd55750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561207c5760085481111561201f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612016906138b8565b60405180910390fd5b600a5461202b83610f49565b82612036919061306c565b1115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90613924565b60405180910390fd5b612127565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212657600a546120d983610f49565b826120e4919061306c565b1115612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613924565b60405180910390fd5b5b5b5b5b600061213430610f49565b9050600060095482101590508080156121595750600b60029054906101000a900460ff165b80156121725750600660149054906101000a900460ff16155b80156121c957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561221f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122755750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122b9576001600660146101000a81548160ff02191690831515021790555061229d6128cc565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061236f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561237957600090505b60008060008315612570577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123e157506000600f54115b1561244f5761240e6064612400600f548a61291c90919063ffffffff16565b61293290919063ffffffff16565b9250600f5460115484612421919061316c565b61242b91906131f5565b9150600f546010548461243e919061316c565b61244891906131f5565b9050612517565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124ac57506000600c54115b15612516576124d960646124cb600c548a61291c90919063ffffffff16565b61293290919063ffffffff16565b9250600c54600e54846124ec919061316c565b6124f691906131f5565b9150600c54600d5484612509919061316c565b61251391906131f5565b90505b5b600083111561252c5761252b89308561264d565b5b600082111561256157612560307f00000000000000000000000000000000000000000000000000000000000000008461264d565b5b828761256d9190613944565b96505b61257b89898961264d565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361272b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612722906137ba565b60405180910390fd5b612736838383612948565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b3906139ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284f919061306c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128b39190612dfc565b60405180910390a36128c684848461294d565b50505050565b60006128d730610f49565b9050600081036128e7575061291a565b60146009546128f6919061316c565b81111561290f57601460095461290c919061316c565b90505b61291881612952565b505b565b6000818361292a919061316c565b905092915050565b6000818361294091906131f5565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561296f5761296e613a0a565b5b60405190808252806020026020018201604052801561299d5781602001602082028036833780820191505090505b50905030816000815181106129b5576129b4613a39565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a2657612a25613a39565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a8b307f000000000000000000000000000000000000000000000000000000000000000084611a5f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b0f959493929190613b61565b600060405180830381600087803b158015612b2957600080fd5b505af1158015612b3d573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b5d81612b4a565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b60008060408385031215612b9757612b96612b45565b5b6000612ba585828601612b6b565b9250506020612bb685828601612b6b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bfa578082015181840152602081019050612bdf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2282612bc0565b612c2c8185612bcb565b9350612c3c818560208601612bdc565b612c4581612c06565b840191505092915050565b60006020820190508181036000830152612c6a8184612c17565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c9d82612c72565b9050919050565b612cad81612c92565b8114612cb857600080fd5b50565b600081359050612cca81612ca4565b92915050565b60008060408385031215612ce757612ce6612b45565b5b6000612cf585828601612cbb565b9250506020612d0685828601612b6b565b9150509250929050565b60008115159050919050565b612d2581612d10565b82525050565b6000602082019050612d406000830184612d1c565b92915050565b600060208284031215612d5c57612d5b612b45565b5b6000612d6a84828501612cbb565b91505092915050565b6000819050919050565b6000612d98612d93612d8e84612c72565b612d73565b612c72565b9050919050565b6000612daa82612d7d565b9050919050565b6000612dbc82612d9f565b9050919050565b612dcc81612db1565b82525050565b6000602082019050612de76000830184612dc3565b92915050565b612df681612b4a565b82525050565b6000602082019050612e116000830184612ded565b92915050565b600060208284031215612e2d57612e2c612b45565b5b6000612e3b84828501612b6b565b91505092915050565b600080600060608486031215612e5d57612e5c612b45565b5b6000612e6b86828701612cbb565b9350506020612e7c86828701612cbb565b9250506040612e8d86828701612b6b565b9150509250925092565b600060ff82169050919050565b612ead81612e97565b82525050565b6000602082019050612ec86000830184612ea4565b92915050565b612ed781612c92565b82525050565b6000602082019050612ef26000830184612ece565b92915050565b612f0181612d10565b8114612f0c57600080fd5b50565b600081359050612f1e81612ef8565b92915050565b60008060408385031215612f3b57612f3a612b45565b5b6000612f4985828601612cbb565b9250506020612f5a85828601612f0f565b9150509250929050565b600060208284031215612f7a57612f79612b45565b5b6000612f8884828501612f0f565b91505092915050565b60008060408385031215612fa857612fa7612b45565b5b6000612fb685828601612cbb565b9250506020612fc785828601612cbb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613007602083612bcb565b915061301282612fd1565b602082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061307782612b4a565b915061308283612b4a565b925082820190508082111561309a5761309961303d565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006130d6601d83612bcb565b91506130e1826130a0565b602082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061315357607f821691505b6020821081036131665761316561310c565b5b50919050565b600061317782612b4a565b915061318283612b4a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bb576131ba61303d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061320082612b4a565b915061320b83612b4a565b92508261321b5761321a6131c6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613282602f83612bcb565b915061328d82613226565b604082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613314602883612bcb565b915061331f826132b8565b604082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006133a6602483612bcb565b91506133b18261334a565b604082019050919050565b600060208201905081810360008301526133d581613399565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613438603583612bcb565b9150613443826133dc565b604082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134ca603483612bcb565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355c602683612bcb565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602483612bcb565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613680602283612bcb565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613712602583612bcb565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137a4602383612bcb565b91506137af82613748565b604082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613810601683612bcb565b915061381b826137da565b602082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006138a2603583612bcb565b91506138ad82613846565b604082019050919050565b600060208201905081810360008301526138d181613895565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061390e601383612bcb565b9150613919826138d8565b602082019050919050565b6000602082019050818103600083015261393d81613901565b9050919050565b600061394f82612b4a565b915061395a83612b4a565b92508282039050818111156139725761397161303d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139d4602683612bcb565b91506139df82613978565b604082019050919050565b60006020820190508181036000830152613a03816139c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613a8d613a88613a8384613a68565b612d73565b612b4a565b9050919050565b613a9d81613a72565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ad881612c92565b82525050565b6000613aea8383613acf565b60208301905092915050565b6000602082019050919050565b6000613b0e82613aa3565b613b188185613aae565b9350613b2383613abf565b8060005b83811015613b54578151613b3b8882613ade565b9750613b4683613af6565b925050600181019050613b27565b5085935050505092915050565b600060a082019050613b766000830188612ded565b613b836020830187613a94565b8181036040830152613b958186613b03565b9050613ba46060830185612ece565b613bb16080830184612ded565b969550505050505056fea2646970667358221220e1000674427c8dfaf10bda5f350036242c71342cb55a85a2bb46e262764aeea864736f6c63430008100033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461088f578063f11a24d3146108ba578063f2fde38b146108e5578063f63743421461090e578063f8b45b0514610939578063ffc94f901461096457610251565b8063c18bc19514610796578063c8c8ebe4146107bf578063d257b34f146107ea578063d85ba06314610827578063dd62ed3e1461085257610251565b8063924de9b7116100fd578063924de9b7146106b157806395d89b41146106da578063a9059cbb14610705578063bbc0c74214610742578063c02466681461076d57610251565b8063751039fc146105f25780637571336a1461061d578063809d458d146106465780638a8c523c1461066f5780638da5cb5b1461068657610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051d5780636b2fb124146105485780636ddd17131461057357806370a082311461059e578063715018a6146105db57610251565b806349bd5a5e146104365780634a62bb65146104615780634fbee1931461048c5780635c068a8c146104c957806366ca9b83146104f457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a3578063313ce567146103e05780634626402b1461040b57610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b80565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c50565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612cd0565b610b0b565b6040516102de9190612d2b565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d46565b610b29565b60405161031b9190612d2b565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612dd2565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612dfc565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e17565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612e44565b610c86565b6040516103d79190612d2b565b60405180910390f35b3480156103ec57600080fd5b506103f5610d7e565b6040516104029190612eb3565b60405180910390f35b34801561041757600080fd5b50610420610d87565b60405161042d9190612edd565b60405180910390f35b34801561044257600080fd5b5061044b610dad565b6040516104589190612edd565b60405180910390f35b34801561046d57600080fd5b50610476610dd1565b6040516104839190612d2b565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612d46565b610de4565b6040516104c09190612d2b565b60405180910390f35b3480156104d557600080fd5b506104de610e3a565b6040516104eb9190612dfc565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612b80565b610e40565b005b34801561052957600080fd5b50610532610f2a565b60405161053f9190612dfc565b60405180910390f35b34801561055457600080fd5b5061055d610f30565b60405161056a9190612dfc565b60405180910390f35b34801561057f57600080fd5b50610588610f36565b6040516105959190612d2b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612d46565b610f49565b6040516105d29190612dfc565b60405180910390f35b3480156105e757600080fd5b506105f0610f91565b005b3480156105fe57600080fd5b50610607611019565b6040516106149190612d2b565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190612f24565b6110b9565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d46565b611190565b005b34801561067b57600080fd5b506106846112cc565b005b34801561069257600080fd5b5061069b611380565b6040516106a89190612edd565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f64565b6113aa565b005b3480156106e657600080fd5b506106ef611443565b6040516106fc9190612c50565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612cd0565b6114d5565b6040516107399190612d2b565b60405180910390f35b34801561074e57600080fd5b506107576114f3565b6040516107649190612d2b565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f24565b611506565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612e17565b61162b565b005b3480156107cb57600080fd5b506107d461173a565b6040516107e19190612dfc565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612e17565b611740565b60405161081e9190612d2b565b60405180910390f35b34801561083357600080fd5b5061083c611895565b6040516108499190612dfc565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612f91565b61189b565b6040516108869190612dfc565b60405180910390f35b34801561089b57600080fd5b506108a4611922565b6040516108b19190612dfc565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612dfc565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190612d46565b61192e565b005b34801561091a57600080fd5b50610923611a25565b6040516109309190612dfc565b60405180910390f35b34801561094557600080fd5b5061094e611a2b565b60405161095b9190612dfc565b60405180910390f35b34801561097057600080fd5b50610979611a31565b6040516109869190612edd565b60405180910390f35b610997611a57565b73ffffffffffffffffffffffffffffffffffffffff166109b5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061301d565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061306c565b600f81905550600a600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906130ec565b60405180910390fd5b5050565b606060038054610a889061313b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061313b565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a57565b8484611a5f565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610b7f611a57565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611380565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061301d565b60405180910390fd5b670de0b6b3a76400006103e86001610c09610b6d565b610c13919061316c565b610c1d91906131f5565b610c2791906131f5565b811015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613298565b60405180910390fd5b670de0b6b3a764000081610c7d919061316c565b60088190555050565b6000610c93848484611c28565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cde611a57565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061332a565b60405180910390fd5b610d7285610d6a611a57565b858403611a5f565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade81565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b610e48611a57565b73ffffffffffffffffffffffffffffffffffffffff16610e66611380565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061301d565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610eda919061306c565b600c81905550600a600c541115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d906130ec565b60405180910390fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f99611a57565b73ffffffffffffffffffffffffffffffffffffffff16610fb7611380565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061301d565b60405180910390fd5b6110176000612587565b565b6000611023611a57565b73ffffffffffffffffffffffffffffffffffffffff16611041611380565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061301d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c1611a57565b73ffffffffffffffffffffffffffffffffffffffff166110df611380565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061301d565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611198611a57565b73ffffffffffffffffffffffffffffffffffffffff166111b6611380565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061301d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112d4611a57565b73ffffffffffffffffffffffffffffffffffffffff166112f2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061301d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b2611a57565b73ffffffffffffffffffffffffffffffffffffffff166113d0611380565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061301d565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114529061313b565b80601f016020809104026020016040519081016040528092919081815260200182805461147e9061313b565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b5050505050905090565b60006114e96114e2611a57565b8484611c28565b6001905092915050565b600b60019054906101000a900460ff1681565b61150e611a57565b73ffffffffffffffffffffffffffffffffffffffff1661152c611380565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061301d565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161161f9190612d2b565b60405180910390a25050565b611633611a57565b73ffffffffffffffffffffffffffffffffffffffff16611651611380565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e9061301d565b60405180910390fd5b670de0b6b3a76400006103e860056116bd610b6d565b6116c7919061316c565b6116d191906131f5565b6116db91906131f5565b81101561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906133bc565b60405180910390fd5b670de0b6b3a764000081611731919061316c565b600a8190555050565b60085481565b600061174a611a57565b73ffffffffffffffffffffffffffffffffffffffff16611768611380565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061301d565b60405180910390fd5b620186a060016117cc610b6d565b6117d6919061316c565b6117e091906131f5565b821015611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061344e565b60405180910390fd5b6103e8600561182f610b6d565b611839919061316c565b61184391906131f5565b821115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c906134e0565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611936611a57565b73ffffffffffffffffffffffffffffffffffffffff16611954611380565b73ffffffffffffffffffffffffffffffffffffffff16146119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a19061301d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613572565b60405180910390fd5b611a2281612587565b50565b60115481565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490613696565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1b9190612dfc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906137ba565b60405180910390fd5b60008103611d1f57611d1a8383600061264d565b612582565b600b60009054906101000a900460ff161561212957611d3c611380565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611daa5750611d7a611380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e365750600660149054906101000a900460ff16155b1561212857600b60019054906101000a900460ff16611f3057601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613826565b60405180910390fd5b5b7f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fd55750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561207c5760085481111561201f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612016906138b8565b60405180910390fd5b600a5461202b83610f49565b82612036919061306c565b1115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90613924565b60405180910390fd5b612127565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212657600a546120d983610f49565b826120e4919061306c565b1115612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613924565b60405180910390fd5b5b5b5b5b600061213430610f49565b9050600060095482101590508080156121595750600b60029054906101000a900460ff165b80156121725750600660149054906101000a900460ff16155b80156121c957507f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561221f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122755750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122b9576001600660146101000a81548160ff02191690831515021790555061229d6128cc565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061236f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561237957600090505b60008060008315612570577f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123e157506000600f54115b1561244f5761240e6064612400600f548a61291c90919063ffffffff16565b61293290919063ffffffff16565b9250600f5460115484612421919061316c565b61242b91906131f5565b9150600f546010548461243e919061316c565b61244891906131f5565b9050612517565b7f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124ac57506000600c54115b15612516576124d960646124cb600c548a61291c90919063ffffffff16565b61293290919063ffffffff16565b9250600c54600e54846124ec919061316c565b6124f691906131f5565b9150600c54600d5484612509919061316c565b61251391906131f5565b90505b5b600083111561252c5761252b89308561264d565b5b600082111561256157612560307f000000000000000000000000bdfd9f7c41f296874714796da94592ac80da3ade8461264d565b5b828761256d9190613944565b96505b61257b89898961264d565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361272b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612722906137ba565b60405180910390fd5b612736838383612948565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b3906139ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284f919061306c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128b39190612dfc565b60405180910390a36128c684848461294d565b50505050565b60006128d730610f49565b9050600081036128e7575061291a565b60146009546128f6919061316c565b81111561290f57601460095461290c919061316c565b90505b61291881612952565b505b565b6000818361292a919061316c565b905092915050565b6000818361294091906131f5565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561296f5761296e613a0a565b5b60405190808252806020026020018201604052801561299d5781602001602082028036833780820191505090505b50905030816000815181106129b5576129b4613a39565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a2657612a25613a39565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a8b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a5f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b0f959493929190613b61565b600060405180830381600087803b158015612b2957600080fd5b505af1158015612b3d573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b5d81612b4a565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b60008060408385031215612b9757612b96612b45565b5b6000612ba585828601612b6b565b9250506020612bb685828601612b6b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bfa578082015181840152602081019050612bdf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2282612bc0565b612c2c8185612bcb565b9350612c3c818560208601612bdc565b612c4581612c06565b840191505092915050565b60006020820190508181036000830152612c6a8184612c17565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c9d82612c72565b9050919050565b612cad81612c92565b8114612cb857600080fd5b50565b600081359050612cca81612ca4565b92915050565b60008060408385031215612ce757612ce6612b45565b5b6000612cf585828601612cbb565b9250506020612d0685828601612b6b565b9150509250929050565b60008115159050919050565b612d2581612d10565b82525050565b6000602082019050612d406000830184612d1c565b92915050565b600060208284031215612d5c57612d5b612b45565b5b6000612d6a84828501612cbb565b91505092915050565b6000819050919050565b6000612d98612d93612d8e84612c72565b612d73565b612c72565b9050919050565b6000612daa82612d7d565b9050919050565b6000612dbc82612d9f565b9050919050565b612dcc81612db1565b82525050565b6000602082019050612de76000830184612dc3565b92915050565b612df681612b4a565b82525050565b6000602082019050612e116000830184612ded565b92915050565b600060208284031215612e2d57612e2c612b45565b5b6000612e3b84828501612b6b565b91505092915050565b600080600060608486031215612e5d57612e5c612b45565b5b6000612e6b86828701612cbb565b9350506020612e7c86828701612cbb565b9250506040612e8d86828701612b6b565b9150509250925092565b600060ff82169050919050565b612ead81612e97565b82525050565b6000602082019050612ec86000830184612ea4565b92915050565b612ed781612c92565b82525050565b6000602082019050612ef26000830184612ece565b92915050565b612f0181612d10565b8114612f0c57600080fd5b50565b600081359050612f1e81612ef8565b92915050565b60008060408385031215612f3b57612f3a612b45565b5b6000612f4985828601612cbb565b9250506020612f5a85828601612f0f565b9150509250929050565b600060208284031215612f7a57612f79612b45565b5b6000612f8884828501612f0f565b91505092915050565b60008060408385031215612fa857612fa7612b45565b5b6000612fb685828601612cbb565b9250506020612fc785828601612cbb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613007602083612bcb565b915061301282612fd1565b602082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061307782612b4a565b915061308283612b4a565b925082820190508082111561309a5761309961303d565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006130d6601d83612bcb565b91506130e1826130a0565b602082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061315357607f821691505b6020821081036131665761316561310c565b5b50919050565b600061317782612b4a565b915061318283612b4a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bb576131ba61303d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061320082612b4a565b915061320b83612b4a565b92508261321b5761321a6131c6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613282602f83612bcb565b915061328d82613226565b604082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613314602883612bcb565b915061331f826132b8565b604082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006133a6602483612bcb565b91506133b18261334a565b604082019050919050565b600060208201905081810360008301526133d581613399565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613438603583612bcb565b9150613443826133dc565b604082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134ca603483612bcb565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061355c602683612bcb565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602483612bcb565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613680602283612bcb565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613712602583612bcb565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137a4602383612bcb565b91506137af82613748565b604082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613810601683612bcb565b915061381b826137da565b602082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006138a2603583612bcb565b91506138ad82613846565b604082019050919050565b600060208201905081810360008301526138d181613895565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061390e601383612bcb565b9150613919826138d8565b602082019050919050565b6000602082019050818103600083015261393d81613901565b9050919050565b600061394f82612b4a565b915061395a83612b4a565b92508282039050818111156139725761397161303d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139d4602683612bcb565b91506139df82613978565b604082019050919050565b60006020820190508181036000830152613a03816139c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613a8d613a88613a8384613a68565b612d73565b612b4a565b9050919050565b613a9d81613a72565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ad881612c92565b82525050565b6000613aea8383613acf565b60208301905092915050565b6000602082019050919050565b6000613b0e82613aa3565b613b188185613aae565b9350613b2383613abf565b8060005b83811015613b54578151613b3b8882613ade565b9750613b4683613af6565b925050600181019050613b27565b5085935050505092915050565b600060a082019050613b766000830188612ded565b613b836020830187613a94565b8181036040830152613b958186613b03565b9050613ba46060830185612ece565b613bb16080830184612ded565b969550505050505056fea2646970667358221220e1000674427c8dfaf10bda5f350036242c71342cb55a85a2bb46e262764aeea864736f6c63430008100033

Deployed Bytecode Sourcemap

23402:10815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28643:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10746:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24298:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23479:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9699:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27386:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11397:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9541:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23692:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23537:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23845:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23999:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28304:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24074:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24109:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23925:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9870:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2491:103;;;;;;;;;;;;;:::i;:::-;;26690:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27933:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29179:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26526:112;;;;;;;;;;;;;:::i;:::-;;1840:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28196:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10210:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23885:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28989:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27669:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23730:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26881:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23965:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10448:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23772:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24035:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2749:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24146:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23812:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23582:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28643:338;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:12:::1;28767:15;:30;;;;28827:13;28808:16;:32;;;;28885:16;;28867:15;;:34;;;;:::i;:::-;28851:13;:50;;;;28937:2;28920:13;;:19;;28912:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28643:338:::0;;:::o;8579:100::-;8633:13;8666:5;8659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8579:100;:::o;10746:169::-;10829:4;10846:39;10855:12;:10;:12::i;:::-;10869:7;10878:6;10846:8;:39::i;:::-;10903:4;10896:11;;10746:169;;;;:::o;24298:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23479:51::-;;;:::o;9699:108::-;9760:7;9787:12;;9780:19;;9699:108;:::o;27386:275::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27523:4:::1;27515;27510:1;27494:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27493:26;;;;:::i;:::-;27492:35;;;;:::i;:::-;27482:6;:45;;27460:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;27646:6;27636;:17;;;;:::i;:::-;27613:20;:40;;;;27386:275:::0;:::o;11397:492::-;11537:4;11554:36;11564:6;11572:9;11583:6;11554:9;:36::i;:::-;11603:24;11630:11;:19;11642:6;11630:19;;;;;;;;;;;;;;;:33;11650:12;:10;:12::i;:::-;11630:33;;;;;;;;;;;;;;;;11603:60;;11702:6;11682:16;:26;;11674:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11789:57;11798:6;11806:12;:10;:12::i;:::-;11839:6;11820:16;:25;11789:8;:57::i;:::-;11877:4;11870:11;;;11397:492;;;;;:::o;9541:93::-;9599:5;9624:2;9617:9;;9541:93;:::o;23692:29::-;;;;;;;;;;;;;:::o;23537:38::-;;;:::o;23845:33::-;;;;;;;;;;;;;:::o;29413:126::-;29479:4;29503:19;:28;29523:7;29503:28;;;;;;;;;;;;;;;;;;;;;;;;;29496:35;;29413:126;;;:::o;23999:29::-;;;;:::o;28304:331::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28444:12:::1;28427:14;:29;;;;28485:13;28467:15;:31;;;;28541:15;;28524:14;;:32;;;;:::i;:::-;28509:12;:47;;;;28591:2;28575:12;;:18;;28567:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28304:331:::0;;:::o;24074:28::-;;;;:::o;24109:30::-;;;;:::o;23925:31::-;;;;;;;;;;;;;:::o;9870:127::-;9944:7;9971:9;:18;9981:7;9971:18;;;;;;;;;;;;;;;;9964:25;;9870:127;;;:::o;2491:103::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2556:30:::1;2583:1;2556:18;:30::i;:::-;2491:103::o:0;26690:121::-;26742:4;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26776:5:::1;26759:14;;:22;;;;;;;;;;;;;;;;;;26799:4;26792:11;;26690:121:::0;:::o;27933:167::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28088:4:::1;28046:31;:39;28078:6;28046:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27933:167:::0;;:::o;29179:224::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29335:14:::1;;;;;;;;;;;29294:56;;29316:17;29294:56;;;;;;;;;;;;29378:17;29361:14;;:34;;;;;;;;;;;;;;;;;;29179:224:::0;:::o;26526:112::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26597:4:::1;26581:13;;:20;;;;;;;;;;;;;;;;;;26626:4;26612:11;;:18;;;;;;;;;;;;;;;;;;26526:112::o:0;1840:87::-;1886:7;1913:6;;;;;;;;;;;1906:13;;1840:87;:::o;28196:100::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28281:7:::1;28267:11;;:21;;;;;;;;;;;;;;;;;;28196:100:::0;:::o;8798:104::-;8854:13;8887:7;8880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8798:104;:::o;10210:175::-;10296:4;10313:42;10323:12;:10;:12::i;:::-;10337:9;10348:6;10313:9;:42::i;:::-;10373:4;10366:11;;10210:175;;;;:::o;23885:33::-;;;;;;;;;;;;;:::o;28989:182::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29105:8:::1;29074:19;:28;29094:7;29074:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29145:7;29129:34;;;29154:8;29129:34;;;;;;:::i;:::-;;;;;;;;28989:182:::0;;:::o;27669:256::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27809:4:::1;27801;27796:1;27780:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27779:26;;;;:::i;:::-;27778:35;;;;:::i;:::-;27768:6;:45;;27746:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;27910:6;27900;:17;;;;:::i;:::-;27888:9;:29;;;;27669:256:::0;:::o;23730:35::-;;;;:::o;26881:497::-;26989:4;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27068:6:::1;27063:1;27047:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27046:28;;;;:::i;:::-;27033:9;:41;;27011:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27223:4;27218:1;27202:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27201:26;;;;:::i;:::-;27188:9;:39;;27166:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27339:9;27318:18;:30;;;;27366:4;27359:11;;26881:497:::0;;;:::o;23965:27::-;;;;:::o;10448:151::-;10537:7;10564:11;:18;10576:5;10564:18;;;;;;;;;;;;;;;:27;10583:7;10564:27;;;;;;;;;;;;;;;;10557:34;;10448:151;;;;:::o;23772:33::-;;;;:::o;24035:30::-;;;;:::o;2749:201::-;2071:12;:10;:12::i;:::-;2060:23;;:7;:5;:7::i;:::-;:23;;;2052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2858:1:::1;2838:22;;:8;:22;;::::0;2830:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2914:28;2933:8;2914:18;:28::i;:::-;2749:201:::0;:::o;24146:31::-;;;;:::o;23812:24::-;;;;:::o;23582:71::-;;;;;;;;;;;;;:::o;707:98::-;760:7;787:10;780:17;;707:98;:::o;14238:380::-;14391:1;14374:19;;:5;:19;;;14366:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14472:1;14453:21;;:7;:21;;;14445:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14556:6;14526:11;:18;14538:5;14526:18;;;;;;;;;;;;;;;:27;14545:7;14526:27;;;;;;;;;;;;;;;:36;;;;14594:7;14578:32;;14587:5;14578:32;;;14603:6;14578:32;;;;;;:::i;:::-;;;;;;;;14238:380;;;:::o;29547:3704::-;29695:1;29679:18;;:4;:18;;;29671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29772:1;29758:16;;:2;:16;;;29750:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29841:1;29831:6;:11;29827:93;;29859:28;29875:4;29881:2;29885:1;29859:15;:28::i;:::-;29902:7;;29827:93;29936:14;;;;;;;;;;;29932:1430;;;29997:7;:5;:7::i;:::-;29989:15;;:4;:15;;;;:49;;;;;30031:7;:5;:7::i;:::-;30025:13;;:2;:13;;;;29989:49;:86;;;;;30073:1;30059:16;;:2;:16;;;;29989:86;:128;;;;;30110:6;30096:21;;:2;:21;;;;29989:128;:158;;;;;30139:8;;;;;;;;;;;30138:9;29989:158;29967:1384;;;30187:13;;;;;;;;;;;30182:223;;30259:19;:25;30279:4;30259:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30288:19;:23;30308:2;30288:23;;;;;;;;;;;;;;;;;;;;;;;;;30259:52;30225:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30182:223;30619:13;30611:21;;:4;:21;;;:82;;;;;30658:31;:35;30690:2;30658:35;;;;;;;;;;;;;;;;;;;;;;;;;30657:36;30611:82;30585:751;;;30780:20;;30770:6;:30;;30736:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30988:9;;30971:13;30981:2;30971:9;:13::i;:::-;30962:6;:22;;;;:::i;:::-;:35;;30928:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30585:751;;;31116:31;:35;31148:2;31116:35;;;;;;;;;;;;;;;;;;;;;;;;;31111:225;;31236:9;;31219:13;31229:2;31219:9;:13::i;:::-;31210:6;:22;;;;:::i;:::-;:35;;31176:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31111:225;30585:751;29967:1384;29932:1430;31374:28;31405:24;31423:4;31405:9;:24::i;:::-;31374:55;;31442:12;31481:18;;31457:20;:42;;31442:57;;31530:7;:35;;;;;31554:11;;;;;;;;;;;31530:35;:61;;;;;31583:8;;;;;;;;;;;31582:9;31530:61;:97;;;;;31614:13;31608:19;;:2;:19;;;31530:97;:140;;;;;31645:19;:25;31665:4;31645:25;;;;;;;;;;;;;;;;;;;;;;;;;31644:26;31530:140;:181;;;;;31688:19;:23;31708:2;31688:23;;;;;;;;;;;;;;;;;;;;;;;;;31687:24;31530:181;31512:313;;;31749:4;31738:8;;:15;;;;;;;;;;;;;;;;;;31770:10;:8;:10::i;:::-;31808:5;31797:8;;:16;;;;;;;;;;;;;;;;;;31512:313;31837:12;31853:8;;;;;;;;;;;31852:9;31837:24;;31963:19;:25;31983:4;31963:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31992:19;:23;32012:2;31992:23;;;;;;;;;;;;;;;;;;;;;;;;;31963:52;31959:100;;;32042:5;32032:15;;31959:100;32071:12;32098:26;32139:25;32257:7;32253:945;;;32315:13;32309:19;;:2;:19;;;:40;;;;;32348:1;32332:13;;:17;32309:40;32305:603;;;32377:34;32407:3;32377:25;32388:13;;32377:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;32370:41;;32479:13;;32459:16;;32452:4;:23;;;;:::i;:::-;32451:41;;;;:::i;:::-;32430:62;;32558:13;;32539:15;;32532:4;:22;;;;:::i;:::-;32531:40;;;;:::i;:::-;32511:60;;32305:603;;;32641:13;32633:21;;:4;:21;;;:41;;;;;32673:1;32658:12;;:16;32633:41;32629:279;;;32702:33;32731:3;32702:24;32713:12;;32702:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32695:40;;32802:12;;32783:15;;32776:4;:22;;;;:::i;:::-;32775:39;;;;:::i;:::-;32754:60;;32880:12;;32862:14;;32855:4;:21;;;;:::i;:::-;32854:38;;;;:::i;:::-;32834:58;;32629:279;32305:603;32934:1;32928:4;:7;32924:90;;;32956:42;32972:4;32986;32993;32956:15;:42::i;:::-;32924:90;33053:1;33032:18;:22;33028:128;;;33075:65;33099:4;33106:13;33121:18;33075:15;:65::i;:::-;33028:128;33182:4;33172:14;;;;;:::i;:::-;;;32253:945;33210:33;33226:4;33232:2;33236:6;33210:15;:33::i;:::-;29660:3591;;;;;;29547:3704;;;;:::o;3110:191::-;3184:16;3203:6;;;;;;;;;;;3184:25;;3229:8;3220:6;;:17;;;;;;;;;;;;;;;;;;3284:8;3253:40;;3274:8;3253:40;;;;;;;;;;;;3173:128;3110:191;:::o;12379:733::-;12537:1;12519:20;;:6;:20;;;12511:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12621:1;12600:23;;:9;:23;;;12592:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12676:47;12697:6;12705:9;12716:6;12676:20;:47::i;:::-;12736:21;12760:9;:17;12770:6;12760:17;;;;;;;;;;;;;;;;12736:41;;12813:6;12796:13;:23;;12788:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12934:6;12918:13;:22;12898:9;:17;12908:6;12898:17;;;;;;;;;;;;;;;:42;;;;12986:6;12962:9;:20;12972:9;12962:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13027:9;13010:35;;13019:6;13010:35;;;13038:6;13010:35;;;;;;:::i;:::-;;;;;;;;13058:46;13078:6;13086:9;13097:6;13058:19;:46::i;:::-;12500:612;12379:733;;;:::o;33865:347::-;33904:23;33930:24;33948:4;33930:9;:24::i;:::-;33904:50;;33988:1;33969:15;:20;33965:59;;34006:7;;;33965:59;34079:2;34058:18;;:23;;;;:::i;:::-;34040:15;:41;34036:115;;;34137:2;34116:18;;:23;;;;:::i;:::-;34098:41;;34036:115;34163:41;34188:15;34163:24;:41::i;:::-;33893:319;33865:347;:::o;19370:98::-;19428:7;19459:1;19455;:5;;;;:::i;:::-;19448:12;;19370:98;;;;:::o;19769:::-;19827:7;19858:1;19854;:5;;;;:::i;:::-;19847:12;;19769:98;;;;:::o;15218:125::-;;;;:::o;15947:124::-;;;;:::o;33259:598::-;33393:21;33431:1;33417:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33393:40;;33462:4;33444;33449:1;33444:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33488:11;;;;;;;;;;;33478:4;33483:1;33478:7;;;;;;;;:::i;:::-;;;;;;;:21;;;;;;;;;;;33512:62;33529:4;33544:15;33562:11;33512:8;:62::i;:::-;33613:15;:69;;;33697:11;33723:1;33775:4;33794:14;;;;;;;;;;;33823:15;33613:236;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33322:535;33259:598;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:152::-;4683:9;4716:37;4747:5;4716:37;:::i;:::-;4703:50;;4607:152;;;:::o;4765:183::-;4878:63;4935:5;4878:63;:::i;:::-;4873:3;4866:76;4765:183;;:::o;4954:274::-;5073:4;5111:2;5100:9;5096:18;5088:26;;5124:97;5218:1;5207:9;5203:17;5194:6;5124:97;:::i;:::-;4954:274;;;;:::o;5234:118::-;5321:24;5339:5;5321:24;:::i;:::-;5316:3;5309:37;5234:118;;:::o;5358:222::-;5451:4;5489:2;5478:9;5474:18;5466:26;;5502:71;5570:1;5559:9;5555:17;5546:6;5502:71;:::i;:::-;5358:222;;;;:::o;5586:329::-;5645:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:119;;;5700:79;;:::i;:::-;5662:119;5820:1;5845:53;5890:7;5881:6;5870:9;5866:22;5845:53;:::i;:::-;5835:63;;5791:117;5586:329;;;;:::o;5921:619::-;5998:6;6006;6014;6063:2;6051:9;6042:7;6038:23;6034:32;6031:119;;;6069:79;;:::i;:::-;6031:119;6189:1;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6160:117;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;5921:619;;;;;:::o;6546:86::-;6581:7;6621:4;6614:5;6610:16;6599:27;;6546:86;;;:::o;6638:112::-;6721:22;6737:5;6721:22;:::i;:::-;6716:3;6709:35;6638:112;;:::o;6756:214::-;6845:4;6883:2;6872:9;6868:18;6860:26;;6896:67;6960:1;6949:9;6945:17;6936:6;6896:67;:::i;:::-;6756:214;;;;:::o;6976:118::-;7063:24;7081:5;7063:24;:::i;:::-;7058:3;7051:37;6976:118;;:::o;7100:222::-;7193:4;7231:2;7220:9;7216:18;7208:26;;7244:71;7312:1;7301:9;7297:17;7288:6;7244:71;:::i;:::-;7100:222;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:323::-;8119:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:119;;;8174:79;;:::i;:::-;8136:119;8294:1;8319:50;8361:7;8352:6;8341:9;8337:22;8319:50;:::i;:::-;8309:60;;8265:114;8063:323;;;;:::o;8392:474::-;8460:6;8468;8517:2;8505:9;8496:7;8492:23;8488:32;8485:119;;;8523:79;;:::i;:::-;8485:119;8643:1;8668:53;8713:7;8704:6;8693:9;8689:22;8668:53;:::i;:::-;8658:63;;8614:117;8770:2;8796:53;8841:7;8832:6;8821:9;8817:22;8796:53;:::i;:::-;8786:63;;8741:118;8392:474;;;;;:::o;8872:182::-;9012:34;9008:1;9000:6;8996:14;8989:58;8872:182;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:419::-;9598:4;9636:2;9625:9;9621:18;9613:26;;9685:9;9679:4;9675:20;9671:1;9660:9;9656:17;9649:47;9713:131;9839:4;9713:131;:::i;:::-;9705:139;;9432:419;;;:::o;9857:180::-;9905:77;9902:1;9895:88;10002:4;9999:1;9992:15;10026:4;10023:1;10016:15;10043:191;10083:3;10102:20;10120:1;10102:20;:::i;:::-;10097:25;;10136:20;10154:1;10136:20;:::i;:::-;10131:25;;10179:1;10176;10172:9;10165:16;;10200:3;10197:1;10194:10;10191:36;;;10207:18;;:::i;:::-;10191:36;10043:191;;;;:::o;10240:179::-;10380:31;10376:1;10368:6;10364:14;10357:55;10240:179;:::o;10425:366::-;10567:3;10588:67;10652:2;10647:3;10588:67;:::i;:::-;10581:74;;10664:93;10753:3;10664:93;:::i;:::-;10782:2;10777:3;10773:12;10766:19;;10425:366;;;:::o;10797:419::-;10963:4;11001:2;10990:9;10986:18;10978:26;;11050:9;11044:4;11040:20;11036:1;11025:9;11021:17;11014:47;11078:131;11204:4;11078:131;:::i;:::-;11070:139;;10797:419;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:348::-;11774:7;11797:20;11815:1;11797:20;:::i;:::-;11792:25;;11831:20;11849:1;11831:20;:::i;:::-;11826:25;;12019:1;11951:66;11947:74;11944:1;11941:81;11936:1;11929:9;11922:17;11918:105;11915:131;;;12026:18;;:::i;:::-;11915:131;12074:1;12071;12067:9;12056:20;;11734:348;;;;:::o;12088:180::-;12136:77;12133:1;12126:88;12233:4;12230:1;12223:15;12257:4;12254:1;12247:15;12274:185;12314:1;12331:20;12349:1;12331:20;:::i;:::-;12326:25;;12365:20;12383:1;12365:20;:::i;:::-;12360:25;;12404:1;12394:35;;12409:18;;:::i;:::-;12394:35;12451:1;12448;12444:9;12439:14;;12274:185;;;;:::o;12465:234::-;12605:34;12601:1;12593:6;12589:14;12582:58;12674:17;12669:2;12661:6;12657:15;12650:42;12465:234;:::o;12705:366::-;12847:3;12868:67;12932:2;12927:3;12868:67;:::i;:::-;12861:74;;12944:93;13033:3;12944:93;:::i;:::-;13062:2;13057:3;13053:12;13046:19;;12705:366;;;:::o;13077:419::-;13243:4;13281:2;13270:9;13266:18;13258:26;;13330:9;13324:4;13320:20;13316:1;13305:9;13301:17;13294:47;13358:131;13484:4;13358:131;:::i;:::-;13350:139;;13077:419;;;:::o;13502:227::-;13642:34;13638:1;13630:6;13626:14;13619:58;13711:10;13706:2;13698:6;13694:15;13687:35;13502:227;:::o;13735:366::-;13877:3;13898:67;13962:2;13957:3;13898:67;:::i;:::-;13891:74;;13974:93;14063:3;13974:93;:::i;:::-;14092:2;14087:3;14083:12;14076:19;;13735:366;;;:::o;14107:419::-;14273:4;14311:2;14300:9;14296:18;14288:26;;14360:9;14354:4;14350:20;14346:1;14335:9;14331:17;14324:47;14388:131;14514:4;14388:131;:::i;:::-;14380:139;;14107:419;;;:::o;14532:223::-;14672:34;14668:1;14660:6;14656:14;14649:58;14741:6;14736:2;14728:6;14724:15;14717:31;14532:223;:::o;14761:366::-;14903:3;14924:67;14988:2;14983:3;14924:67;:::i;:::-;14917:74;;15000:93;15089:3;15000:93;:::i;:::-;15118:2;15113:3;15109:12;15102:19;;14761:366;;;:::o;15133:419::-;15299:4;15337:2;15326:9;15322:18;15314:26;;15386:9;15380:4;15376:20;15372:1;15361:9;15357:17;15350:47;15414:131;15540:4;15414:131;:::i;:::-;15406:139;;15133:419;;;:::o;15558:240::-;15698:34;15694:1;15686:6;15682:14;15675:58;15767:23;15762:2;15754:6;15750:15;15743:48;15558:240;:::o;15804:366::-;15946:3;15967:67;16031:2;16026:3;15967:67;:::i;:::-;15960:74;;16043:93;16132:3;16043:93;:::i;:::-;16161:2;16156:3;16152:12;16145:19;;15804:366;;;:::o;16176:419::-;16342:4;16380:2;16369:9;16365:18;16357:26;;16429:9;16423:4;16419:20;16415:1;16404:9;16400:17;16393:47;16457:131;16583:4;16457:131;:::i;:::-;16449:139;;16176:419;;;:::o;16601:239::-;16741:34;16737:1;16729:6;16725:14;16718:58;16810:22;16805:2;16797:6;16793:15;16786:47;16601:239;:::o;16846:366::-;16988:3;17009:67;17073:2;17068:3;17009:67;:::i;:::-;17002:74;;17085:93;17174:3;17085:93;:::i;:::-;17203:2;17198:3;17194:12;17187:19;;16846:366;;;:::o;17218:419::-;17384:4;17422:2;17411:9;17407:18;17399:26;;17471:9;17465:4;17461:20;17457:1;17446:9;17442:17;17435:47;17499:131;17625:4;17499:131;:::i;:::-;17491:139;;17218:419;;;:::o;17643:225::-;17783:34;17779:1;17771:6;17767:14;17760:58;17852:8;17847:2;17839:6;17835:15;17828:33;17643:225;:::o;17874:366::-;18016:3;18037:67;18101:2;18096:3;18037:67;:::i;:::-;18030:74;;18113:93;18202:3;18113:93;:::i;:::-;18231:2;18226:3;18222:12;18215:19;;17874:366;;;:::o;18246:419::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18499:9;18493:4;18489:20;18485:1;18474:9;18470:17;18463:47;18527:131;18653:4;18527:131;:::i;:::-;18519:139;;18246:419;;;:::o;18671:223::-;18811:34;18807:1;18799:6;18795:14;18788:58;18880:6;18875:2;18867:6;18863:15;18856:31;18671:223;:::o;18900:366::-;19042:3;19063:67;19127:2;19122:3;19063:67;:::i;:::-;19056:74;;19139:93;19228:3;19139:93;:::i;:::-;19257:2;19252:3;19248:12;19241:19;;18900:366;;;:::o;19272:419::-;19438:4;19476:2;19465:9;19461:18;19453:26;;19525:9;19519:4;19515:20;19511:1;19500:9;19496:17;19489:47;19553:131;19679:4;19553:131;:::i;:::-;19545:139;;19272:419;;;:::o;19697:221::-;19837:34;19833:1;19825:6;19821:14;19814:58;19906:4;19901:2;19893:6;19889:15;19882:29;19697:221;:::o;19924:366::-;20066:3;20087:67;20151:2;20146:3;20087:67;:::i;:::-;20080:74;;20163:93;20252:3;20163:93;:::i;:::-;20281:2;20276:3;20272:12;20265:19;;19924:366;;;:::o;20296:419::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20549:9;20543:4;20539:20;20535:1;20524:9;20520:17;20513:47;20577:131;20703:4;20577:131;:::i;:::-;20569:139;;20296:419;;;:::o;20721:224::-;20861:34;20857:1;20849:6;20845:14;20838:58;20930:7;20925:2;20917:6;20913:15;20906:32;20721:224;:::o;20951:366::-;21093:3;21114:67;21178:2;21173:3;21114:67;:::i;:::-;21107:74;;21190:93;21279:3;21190:93;:::i;:::-;21308:2;21303:3;21299:12;21292:19;;20951:366;;;:::o;21323:419::-;21489:4;21527:2;21516:9;21512:18;21504:26;;21576:9;21570:4;21566:20;21562:1;21551:9;21547:17;21540:47;21604:131;21730:4;21604:131;:::i;:::-;21596:139;;21323:419;;;:::o;21748:222::-;21888:34;21884:1;21876:6;21872:14;21865:58;21957:5;21952:2;21944:6;21940:15;21933:30;21748:222;:::o;21976:366::-;22118:3;22139:67;22203:2;22198:3;22139:67;:::i;:::-;22132:74;;22215:93;22304:3;22215:93;:::i;:::-;22333:2;22328:3;22324:12;22317:19;;21976:366;;;:::o;22348:419::-;22514:4;22552:2;22541:9;22537:18;22529:26;;22601:9;22595:4;22591:20;22587:1;22576:9;22572:17;22565:47;22629:131;22755:4;22629:131;:::i;:::-;22621:139;;22348:419;;;:::o;22773:172::-;22913:24;22909:1;22901:6;22897:14;22890:48;22773:172;:::o;22951:366::-;23093:3;23114:67;23178:2;23173:3;23114:67;:::i;:::-;23107:74;;23190:93;23279:3;23190:93;:::i;:::-;23308:2;23303:3;23299:12;23292:19;;22951:366;;;:::o;23323:419::-;23489:4;23527:2;23516:9;23512:18;23504:26;;23576:9;23570:4;23566:20;23562:1;23551:9;23547:17;23540:47;23604:131;23730:4;23604:131;:::i;:::-;23596:139;;23323:419;;;:::o;23748:240::-;23888:34;23884:1;23876:6;23872:14;23865:58;23957:23;23952:2;23944:6;23940:15;23933:48;23748:240;:::o;23994:366::-;24136:3;24157:67;24221:2;24216:3;24157:67;:::i;:::-;24150:74;;24233:93;24322:3;24233:93;:::i;:::-;24351:2;24346:3;24342:12;24335:19;;23994:366;;;:::o;24366:419::-;24532:4;24570:2;24559:9;24555:18;24547:26;;24619:9;24613:4;24609:20;24605:1;24594:9;24590:17;24583:47;24647:131;24773:4;24647:131;:::i;:::-;24639:139;;24366:419;;;:::o;24791:169::-;24931:21;24927:1;24919:6;24915:14;24908:45;24791:169;:::o;24966:366::-;25108:3;25129:67;25193:2;25188:3;25129:67;:::i;:::-;25122:74;;25205:93;25294:3;25205:93;:::i;:::-;25323:2;25318:3;25314:12;25307:19;;24966:366;;;:::o;25338:419::-;25504:4;25542:2;25531:9;25527:18;25519:26;;25591:9;25585:4;25581:20;25577:1;25566:9;25562:17;25555:47;25619:131;25745:4;25619:131;:::i;:::-;25611:139;;25338:419;;;:::o;25763:194::-;25803:4;25823:20;25841:1;25823:20;:::i;:::-;25818:25;;25857:20;25875:1;25857:20;:::i;:::-;25852:25;;25901:1;25898;25894:9;25886:17;;25925:1;25919:4;25916:11;25913:37;;;25930:18;;:::i;:::-;25913:37;25763:194;;;;:::o;25963:225::-;26103:34;26099:1;26091:6;26087:14;26080:58;26172:8;26167:2;26159:6;26155:15;26148:33;25963:225;:::o;26194:366::-;26336:3;26357:67;26421:2;26416:3;26357:67;:::i;:::-;26350:74;;26433:93;26522:3;26433:93;:::i;:::-;26551:2;26546:3;26542:12;26535:19;;26194:366;;;:::o;26566:419::-;26732:4;26770:2;26759:9;26755:18;26747:26;;26819:9;26813:4;26809:20;26805:1;26794:9;26790:17;26783:47;26847:131;26973:4;26847:131;:::i;:::-;26839:139;;26566:419;;;:::o;26991:180::-;27039:77;27036:1;27029:88;27136:4;27133:1;27126:15;27160:4;27157:1;27150:15;27177:180;27225:77;27222:1;27215:88;27322:4;27319:1;27312:15;27346:4;27343:1;27336:15;27363:85;27408:7;27437:5;27426:16;;27363:85;;;:::o;27454:158::-;27512:9;27545:61;27563:42;27572:32;27598:5;27572:32;:::i;:::-;27563:42;:::i;:::-;27545:61;:::i;:::-;27532:74;;27454:158;;;:::o;27618:147::-;27713:45;27752:5;27713:45;:::i;:::-;27708:3;27701:58;27618:147;;:::o;27771:114::-;27838:6;27872:5;27866:12;27856:22;;27771:114;;;:::o;27891:184::-;27990:11;28024:6;28019:3;28012:19;28064:4;28059:3;28055:14;28040:29;;27891:184;;;;:::o;28081:132::-;28148:4;28171:3;28163:11;;28201:4;28196:3;28192:14;28184:22;;28081:132;;;:::o;28219:108::-;28296:24;28314:5;28296:24;:::i;:::-;28291:3;28284:37;28219:108;;:::o;28333:179::-;28402:10;28423:46;28465:3;28457:6;28423:46;:::i;:::-;28501:4;28496:3;28492:14;28478:28;;28333:179;;;;:::o;28518:113::-;28588:4;28620;28615:3;28611:14;28603:22;;28518:113;;;:::o;28667:732::-;28786:3;28815:54;28863:5;28815:54;:::i;:::-;28885:86;28964:6;28959:3;28885:86;:::i;:::-;28878:93;;28995:56;29045:5;28995:56;:::i;:::-;29074:7;29105:1;29090:284;29115:6;29112:1;29109:13;29090:284;;;29191:6;29185:13;29218:63;29277:3;29262:13;29218:63;:::i;:::-;29211:70;;29304:60;29357:6;29304:60;:::i;:::-;29294:70;;29150:224;29137:1;29134;29130:9;29125:14;;29090:284;;;29094:14;29390:3;29383:10;;28791:608;;;28667:732;;;;:::o;29405:831::-;29668:4;29706:3;29695:9;29691:19;29683:27;;29720:71;29788:1;29777:9;29773:17;29764:6;29720:71;:::i;:::-;29801:80;29877:2;29866:9;29862:18;29853:6;29801:80;:::i;:::-;29928:9;29922:4;29918:20;29913:2;29902:9;29898:18;29891:48;29956:108;30059:4;30050:6;29956:108;:::i;:::-;29948:116;;30074:72;30142:2;30131:9;30127:18;30118:6;30074:72;:::i;:::-;30156:73;30224:3;30213:9;30209:19;30200:6;30156:73;:::i;:::-;29405:831;;;;;;;;:::o

Swarm Source

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