ETH Price: $2,521.14 (-0.16%)

Token

Combustion (BOOM)
 

Overview

Max Total Supply

890,862.493262 BOOM

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
9,700.000033 BOOM

Value
$0.00
0x7f7935ca3c351337df4ec046c4625bcf40e6f00a
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

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-22
*/

/**
“Destiny is a funny thing. You never know how things are going to work out. But if you keep an open mind and an open heart, 
I promise you will find your own destiny someday.”

Tokenomics: 3/3% True Burn

 https://medium.com/@CombustionMan
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.9;

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

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

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 6. 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 6, 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 6;
    }

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

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



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

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

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

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

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

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

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

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


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

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


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

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

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

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

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

pragma solidity 0.8.9;

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

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

    bool private swapping;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public supply;

    address public devWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    bool public transferDelayEnabled = true;

    uint256 public buyBurnFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees;   
    
    uint256 public tokensForBurn;
    uint256 public tokensForDev;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public delayDigit;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Combustion", "BOOM") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyBurnFee = 3;
        uint256 _buyDevFee = 0;

        uint256 _sellBurnFee = 3;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1 * 1e6 * 1e6;
        supply += totalSupply;
        
        walletDigit = 2;
        transDigit = 2;
        delayDigit = 0;

        maxTransactionAmount = supply * transDigit / 200;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 200;

        buyBurnFee = _buyBurnFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        
        sellBurnFee = _sellBurnFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        
        devWallet = 0x000000000000000000000000000000000000dEaD;

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

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);

    }

    receive() external payable {

  	}

    function enableTrading() external onlyOwner {
        buyBurnFee = 3;
        buyDevFee = 0;
        buyTotalFees = buyBurnFee + buyDevFee;

        sellBurnFee = 3;
        sellDevFee = 0;
        sellTotalFees = sellBurnFee + sellDevFee;

        delayDigit = 5;
    }
    
    function updateTransDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        transDigit = newNum;
        updateLimits();
    }

    function updateWalletDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        walletDigit = newNum;
        updateLimits();
    }

    function updateDelayDigit(uint256 newNum) external onlyOwner{
        delayDigit = newNum;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }
    
    function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

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

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

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function 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.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number + delayDigit;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {

        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if(contractBalance == 0) {return;}

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

        swapTokensForEth(contractBalance); 
        
        tokensForDev = 0;

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f436f6d62757374696f6e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4f4d0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d4a565b5080600490805190602001906200011b92919062000d4a565b5050506000620001306200064360201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200064b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e64565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e64565b6040518363ffffffff1660e01b81526004016200036e92919062000ea7565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e64565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200064b60201b60201c565b6200042160a05160016200074860201b60201c565b6000600390506000806003905060008064e8d4a51000905080600960008282546200044d919062000f0d565b9250508190555060026015819055506002601681905550600060178190555060c860165460095462000480919062000f6a565b6200048c919062000ffa565b6006819055506127106005600954620004a6919062000f6a565b620004b2919062000ffa565b60078190555060c8601554600954620004cc919062000f6a565b620004d8919062000ffa565b60088190555084600d8190555083600e81905550600e54600d54620004fe919062000f0d565b600f81905550826010819055508160118190555060115460105462000524919062000f0d565b60128190555061dead600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200058f62000581620007e960201b60201c565b60016200081360201b60201c565b620005a23060016200081360201b60201c565b620005b761dead60016200081360201b60201c565b620005d9620005cb620007e960201b60201c565b60016200064b60201b60201c565b620005ec3060016200064b60201b60201c565b6200060161dead60016200064b60201b60201c565b6200062562000615620007e960201b60201c565b608051836200096060201b60201c565b62000637338262000b3360201b60201c565b50505050505062001396565b600033905090565b6200065b6200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e49062001093565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008236200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ac9062001093565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009549190620010d2565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ca9062001165565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3d90620011fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b26919062001230565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ba6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9d906200129d565b60405180910390fd5b62000bba6000838362000ce260201b60201c565b62000bd68160025462000ce760201b62001e921790919060201c565b60028190555062000c34816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ce760201b62001e921790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cd6919062001230565b60405180910390a35050565b505050565b600080828462000cf8919062000f0d565b90508381101562000d40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d37906200130f565b60405180910390fd5b8091505092915050565b82805462000d589062001360565b90600052602060002090601f01602090048101928262000d7c576000855562000dc8565b82601f1062000d9757805160ff191683800117855562000dc8565b8280016001018555821562000dc8579182015b8281111562000dc757825182559160200191906001019062000daa565b5b50905062000dd7919062000ddb565b5090565b5b8082111562000df657600081600090555060010162000ddc565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e2c8262000dff565b9050919050565b62000e3e8162000e1f565b811462000e4a57600080fd5b50565b60008151905062000e5e8162000e33565b92915050565b60006020828403121562000e7d5762000e7c62000dfa565b5b600062000e8d8482850162000e4d565b91505092915050565b62000ea18162000e1f565b82525050565b600060408201905062000ebe600083018562000e96565b62000ecd602083018462000e96565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f1a8262000ed4565b915062000f278362000ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f5f5762000f5e62000ede565b5b828201905092915050565b600062000f778262000ed4565b915062000f848362000ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fc05762000fbf62000ede565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010078262000ed4565b9150620010148362000ed4565b92508262001027576200102662000fcb565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107b60208362001032565b9150620010888262001043565b602082019050919050565b60006020820190508181036000830152620010ae816200106c565b9050919050565b60008115159050919050565b620010cc81620010b5565b82525050565b6000602082019050620010e96000830184620010c1565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200114d60248362001032565b91506200115a82620010ef565b604082019050919050565b6000602082019050818103600083015262001180816200113e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011e560228362001032565b9150620011f28262001187565b604082019050919050565b600060208201905081810360008301526200121881620011d6565b9050919050565b6200122a8162000ed4565b82525050565b60006020820190506200124760008301846200121f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001285601f8362001032565b915062001292826200124d565b602082019050919050565b60006020820190508181036000830152620012b88162001276565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620012f7601b8362001032565b91506200130482620012bf565b602082019050919050565b600060208201905081810360008301526200132a81620012e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200137957607f821691505b6020821081141562001390576200138f62001331565b5b50919050565b60805160a05161495f620013e6600039600081816111ac0152818161185b01526124e3015260008181610e4b0152818161248b0152818161353d0152818161362d0152613654015261495f6000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d2565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613821565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613955565b610d54565b60405161038c91906139b0565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139cb565b610d72565b6040516103c991906139b0565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f8565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a84565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613821565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139cb565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613821565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f8565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9f565b61100f565b60405161050291906139b0565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b01565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b38565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613955565b6110f7565b60405161059591906139b0565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b01565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139b0565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139cb565b6111e1565b60405161062891906139b0565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d2565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613821565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139b0565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139cb565b611355565b6040516106e49190613821565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7f565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613821565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116da565b6040516107919190613b01565b60405180910390f35b3480156107a657600080fd5b506107af611704565b6040516107bc9190613b01565b60405180910390f35b3480156107d157600080fd5b506107da61172a565b6040516107e791906138d5565b60405180910390f35b3480156107fc57600080fd5b506108056117bc565b6040516108129190613821565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7f565b6117c2565b005b34801561085057600080fd5b506108596118f6565b6040516108669190613821565b60405180910390f35b34801561087b57600080fd5b506108846118fc565b6040516108919190613821565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f8565b611902565b005b3480156108cf57600080fd5b506108d86119a3565b6040516108e59190613821565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613955565b6119a9565b60405161092291906139b0565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613955565b611a76565b60405161095f91906139b0565b60405180910390f35b34801561097457600080fd5b5061097d611a94565b60405161098a9190613821565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139cb565b611a9a565b6040516109c791906139b0565b60405180910390f35b3480156109dc57600080fd5b506109e5611aba565b6040516109f291906139b0565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7f565b611acd565b005b348015610a3057600080fd5b50610a39611c0d565b604051610a4691906139b0565b60405180910390f35b348015610a5b57600080fd5b50610a64611c20565b604051610a719190613821565b60405180910390f35b348015610a8657600080fd5b50610a8f611c26565b604051610a9c9190613821565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbf565b611c2c565b604051610ad99190613821565b60405180910390f35b348015610aee57600080fd5b50610af7611cb3565b604051610b049190613821565b60405180910390f35b348015610b1957600080fd5b50610b22611cb9565b604051610b2f9190613821565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbf565b604051610b5a9190613821565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139cb565b611cc5565b005b348015610b9857600080fd5b50610ba1611e8c565b604051610bae9190613821565b60405180910390f35b610bbf611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4b565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c9a565b60128190555060056012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3c565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8b565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611ef0565b8484611ef8565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4b565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c3565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4b565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4b565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c3565b50565b600061101c84848461212b565b6110dd84611028611ef0565b6110d8856040518060600160405280602881526020016148dd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b611ef8565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611ef0565b8461119b8560016000611115611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9290919063ffffffff16565b611ef8565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4b565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c9a565b600f819055506005600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d3c565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c4b565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c4b565b60405180910390fd5b6003600d819055506000600e81905550600e54600d546116a49190613c9a565b600f81905550600360108190555060006011819055506011546010546116ca9190613c9a565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173990613d8b565b80601f016020809104026020016040519081016040528092919081815260200182805461176590613d8b565b80156117b25780601f10611787576101008083540402835291602001916117b2565b820191906000526020600020905b81548152906001019060200180831161179557829003601f168201915b5050505050905090565b60165481565b6117ca611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613c4b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613e2f565b60405180910390fd5b6118f28282612e06565b5050565b600e5481565b60145481565b61190a611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613c4b565b60405180910390fd5b8060178190555050565b60115481565b6000611a6c6119b6611ef0565b84611a678560405180606001604052806025815260200161490560259139600160006119e0611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b611ef8565b6001905092915050565b6000611a8a611a83611ef0565b848461212b565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90613c4b565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0191906139b0565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccd611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390613c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613ec1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea19190613c9a565b905083811015611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613f2d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90613fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90614051565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b69190613821565b60405180910390a3505050565b60646016546009546120d59190614071565b6120df91906140fa565b60068190555061271060056009546120f79190614071565b61210191906140fa565b60078190555060646015546009546121199190614071565b61212391906140fa565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121929061419d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061422f565b60405180910390fd5b60008114156122255761222083836000612ea7565b612d9d565b600a60149054906101000a900460ff16156128f5576122426116da565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b057506122806116da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612323575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233c5750600560149054906101000a900460ff16155b156128f457600a60159054906101000a900460ff1661243657601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f65750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c9061429b565b60405180910390fd5b5b600c60009054906101000a900460ff161561260b576124536116da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124da57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561260a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614353565b60405180910390fd5b601754436125c69190613c9a565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ae5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612755576006548111156126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906143e5565b60405180910390fd5b60085461270483611355565b8261270f9190613c9a565b1115612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614451565b60405180910390fd5b6128f3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f85750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284757600654811115612842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612839906144e3565b60405180910390fd5b6128f2565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f1576008546128a483611355565b826128af9190613c9a565b11156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790614451565b60405180910390fd5b5b5b5b5b5b600061290030611355565b9050600060075482101590508080156129265750600560149054906101000a900460ff16155b801561293e5750600a60169054906101000a900460ff165b80156129945750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129ea5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a405750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a84576001600560146101000a81548160ff021916908315150217905550612a6861313c565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b3a5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4457600090505b60008115612d8d57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba757506000601254115b15612c4157612bd46064612bc66012548861322690919063ffffffff16565b6132a190919063ffffffff16565b905060125460105482612be79190614071565b612bf191906140fa565b60136000828254612c029190613c9a565b9250508190555060125460115482612c1a9190614071565b612c2491906140fa565b60146000828254612c359190613c9a565b92505081905550612d33565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9c57506000600f54115b15612d3257612cc96064612cbb600f548861322690919063ffffffff16565b6132a190919063ffffffff16565b9050600f54600d5482612cdc9190614071565b612ce691906140fa565b60136000828254612cf79190613c9a565b92505081905550600f54600e5482612d0f9190614071565b612d1991906140fa565b60146000828254612d2a9190613c9a565b925050819055505b5b6000811115612d7e57612d47873083612ea7565b60006013541115612d7d57612d5e306013546132eb565b612d66610e6d565b600981905550612d746120c3565b60006013819055505b5b8085612d8a9190614503565b94505b612d98878787612ea7565b505050505b505050565b6000838311158290612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de191906138d5565b60405180910390fd5b5060008385612df99190614503565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e9061419d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e9061422f565b60405180910390fd5b612f92838383613499565b612ffd816040518060600160405280602681526020016148b7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613090816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312f9190613821565b60405180910390a3505050565b600061314730611355565b905060008082141561315a575050613224565b60146007546131699190614071565b82111561318257601460075461317f9190614071565b91505b61318b8261349e565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d990614568565b60006040518083038185875af1925050503d8060008114613216576040519150601f19603f3d011682016040523d82523d6000602084013e61321b565b606091505b50508091505050505b565b600080831415613239576000905061329b565b600082846132479190614071565b905082848261325691906140fa565b14613296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328d906145ef565b60405180910390fd5b809150505b92915050565b60006132e383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136ea565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335290614681565b60405180910390fd5b61336782600083613499565b6133d281604051806060016040528060228152602001614895602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134298160025461374d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348d9190613821565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134bb576134ba6146a1565b5b6040519080825280602002602001820160405280156134e95781602001602082028036833780820191505090505b5090503081600081518110613501576135006146d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a157600080fd5b505afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614714565b816001815181106135ed576135ec6146d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613652307f000000000000000000000000000000000000000000000000000000000000000084611ef8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b495949392919061483a565b600060405180830381600087803b1580156136ce57600080fd5b505af11580156136e2573d6000803e3d6000fd5b505050505050565b60008083118290613731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372891906138d5565b60405180910390fd5b506000838561374091906140fa565b9050809150509392505050565b600061378f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da2565b905092915050565b600080fd5b6000819050919050565b6137af8161379c565b81146137ba57600080fd5b50565b6000813590506137cc816137a6565b92915050565b600080604083850312156137e9576137e8613797565b5b60006137f7858286016137bd565b9250506020613808858286016137bd565b9150509250929050565b61381b8161379c565b82525050565b60006020820190506138366000830184613812565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387657808201518184015260208101905061385b565b83811115613885576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a78261383c565b6138b18185613847565b93506138c1818560208601613858565b6138ca8161388b565b840191505092915050565b600060208201905081810360008301526138ef818461389c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613922826138f7565b9050919050565b61393281613917565b811461393d57600080fd5b50565b60008135905061394f81613929565b92915050565b6000806040838503121561396c5761396b613797565b5b600061397a85828601613940565b925050602061398b858286016137bd565b9150509250929050565b60008115159050919050565b6139aa81613995565b82525050565b60006020820190506139c560008301846139a1565b92915050565b6000602082840312156139e1576139e0613797565b5b60006139ef84828501613940565b91505092915050565b600060208284031215613a0e57613a0d613797565b5b6000613a1c848285016137bd565b91505092915050565b6000819050919050565b6000613a4a613a45613a40846138f7565b613a25565b6138f7565b9050919050565b6000613a5c82613a2f565b9050919050565b6000613a6e82613a51565b9050919050565b613a7e81613a63565b82525050565b6000602082019050613a996000830184613a75565b92915050565b600080600060608486031215613ab857613ab7613797565b5b6000613ac686828701613940565b9350506020613ad786828701613940565b9250506040613ae8868287016137bd565b9150509250925092565b613afb81613917565b82525050565b6000602082019050613b166000830184613af2565b92915050565b600060ff82169050919050565b613b3281613b1c565b82525050565b6000602082019050613b4d6000830184613b29565b92915050565b613b5c81613995565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b60008060408385031215613b9657613b95613797565b5b6000613ba485828601613940565b9250506020613bb585828601613b6a565b9150509250929050565b60008060408385031215613bd657613bd5613797565b5b6000613be485828601613940565b9250506020613bf585828601613940565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c35602083613847565b9150613c4082613bff565b602082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca58261379c565b9150613cb08361379c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce557613ce4613c6b565b5b828201905092915050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000613d26601c83613847565b9150613d3182613cf0565b602082019050919050565b60006020820190508181036000830152613d5581613d19565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da357607f821691505b60208210811415613db757613db6613d5c565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e19603983613847565b9150613e2482613dbd565b604082019050919050565b60006020820190508181036000830152613e4881613e0c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eab602683613847565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f17601b83613847565b9150613f2282613ee1565b602082019050919050565b60006020820190508181036000830152613f4681613f0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa9602483613847565b9150613fb482613f4d565b604082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403b602283613847565b915061404682613fdf565b604082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b600061407c8261379c565b91506140878361379c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140c0576140bf613c6b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141058261379c565b91506141108361379c565b9250826141205761411f6140cb565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614187602583613847565b91506141928261412b565b604082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614219602383613847565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614285601683613847565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433d604983613847565b9150614348826142bb565b606082019050919050565b6000602082019050818103600083015261436c81614330565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143cf603583613847565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443b601383613847565b915061444682614405565b602082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144cd603683613847565b91506144d882614471565b604082019050919050565b600060208201905081810360008301526144fc816144c0565b9050919050565b600061450e8261379c565b91506145198361379c565b92508282101561452c5761452b613c6b565b5b828203905092915050565b600081905092915050565b50565b6000614552600083614537565b915061455d82614542565b600082019050919050565b600061457382614545565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d9602183613847565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466b602183613847565b91506146768261460f565b604082019050919050565b6000602082019050818103600083015261469a8161465e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470e81613929565b92915050565b60006020828403121561472a57614729613797565b5b6000614738848285016146ff565b91505092915050565b6000819050919050565b600061476661476161475c84614741565b613a25565b61379c565b9050919050565b6147768161474b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147b181613917565b82525050565b60006147c383836147a8565b60208301905092915050565b6000602082019050919050565b60006147e78261477c565b6147f18185614787565b93506147fc83614798565b8060005b8381101561482d57815161481488826147b7565b975061481f836147cf565b925050600181019050614800565b5085935050505092915050565b600060a08201905061484f6000830188613812565b61485c602083018761476d565b818103604083015261486e81866147dc565b905061487d6060830185613af2565b61488a6080830184613812565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203c037b88c41c501f05fe382f2bae7d82feb33bd85a62070b272921d1a73045eb64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d2565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613821565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613955565b610d54565b60405161038c91906139b0565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139cb565b610d72565b6040516103c991906139b0565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f8565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a84565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613821565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139cb565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613821565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f8565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9f565b61100f565b60405161050291906139b0565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b01565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b38565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613955565b6110f7565b60405161059591906139b0565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b01565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139b0565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139cb565b6111e1565b60405161062891906139b0565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d2565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613821565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139b0565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139cb565b611355565b6040516106e49190613821565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7f565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613821565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116da565b6040516107919190613b01565b60405180910390f35b3480156107a657600080fd5b506107af611704565b6040516107bc9190613b01565b60405180910390f35b3480156107d157600080fd5b506107da61172a565b6040516107e791906138d5565b60405180910390f35b3480156107fc57600080fd5b506108056117bc565b6040516108129190613821565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7f565b6117c2565b005b34801561085057600080fd5b506108596118f6565b6040516108669190613821565b60405180910390f35b34801561087b57600080fd5b506108846118fc565b6040516108919190613821565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f8565b611902565b005b3480156108cf57600080fd5b506108d86119a3565b6040516108e59190613821565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613955565b6119a9565b60405161092291906139b0565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613955565b611a76565b60405161095f91906139b0565b60405180910390f35b34801561097457600080fd5b5061097d611a94565b60405161098a9190613821565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139cb565b611a9a565b6040516109c791906139b0565b60405180910390f35b3480156109dc57600080fd5b506109e5611aba565b6040516109f291906139b0565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7f565b611acd565b005b348015610a3057600080fd5b50610a39611c0d565b604051610a4691906139b0565b60405180910390f35b348015610a5b57600080fd5b50610a64611c20565b604051610a719190613821565b60405180910390f35b348015610a8657600080fd5b50610a8f611c26565b604051610a9c9190613821565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbf565b611c2c565b604051610ad99190613821565b60405180910390f35b348015610aee57600080fd5b50610af7611cb3565b604051610b049190613821565b60405180910390f35b348015610b1957600080fd5b50610b22611cb9565b604051610b2f9190613821565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbf565b604051610b5a9190613821565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139cb565b611cc5565b005b348015610b9857600080fd5b50610ba1611e8c565b604051610bae9190613821565b60405180910390f35b610bbf611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4b565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c9a565b60128190555060056012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3c565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8b565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611ef0565b8484611ef8565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4b565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c3565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4b565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4b565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c3565b50565b600061101c84848461212b565b6110dd84611028611ef0565b6110d8856040518060600160405280602881526020016148dd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b611ef8565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611ef0565b8461119b8560016000611115611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9290919063ffffffff16565b611ef8565b6001905092915050565b7f0000000000000000000000005266fb90d918fe079c9a64fa089b5eae4e54179c81565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4b565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c9a565b600f819055506005600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d3c565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c4b565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c4b565b60405180910390fd5b6003600d819055506000600e81905550600e54600d546116a49190613c9a565b600f81905550600360108190555060006011819055506011546010546116ca9190613c9a565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173990613d8b565b80601f016020809104026020016040519081016040528092919081815260200182805461176590613d8b565b80156117b25780601f10611787576101008083540402835291602001916117b2565b820191906000526020600020905b81548152906001019060200180831161179557829003601f168201915b5050505050905090565b60165481565b6117ca611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613c4b565b60405180910390fd5b7f0000000000000000000000005266fb90d918fe079c9a64fa089b5eae4e54179c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613e2f565b60405180910390fd5b6118f28282612e06565b5050565b600e5481565b60145481565b61190a611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613c4b565b60405180910390fd5b8060178190555050565b60115481565b6000611a6c6119b6611ef0565b84611a678560405180606001604052806025815260200161490560259139600160006119e0611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b611ef8565b6001905092915050565b6000611a8a611a83611ef0565b848461212b565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad5611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90613c4b565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0191906139b0565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccd611ef0565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390613c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613ec1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea19190613c9a565b905083811015611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613f2d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90613fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90614051565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b69190613821565b60405180910390a3505050565b60646016546009546120d59190614071565b6120df91906140fa565b60068190555061271060056009546120f79190614071565b61210191906140fa565b60078190555060646015546009546121199190614071565b61212391906140fa565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121929061419d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061422f565b60405180910390fd5b60008114156122255761222083836000612ea7565b612d9d565b600a60149054906101000a900460ff16156128f5576122426116da565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b057506122806116da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612323575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233c5750600560149054906101000a900460ff16155b156128f457600a60159054906101000a900460ff1661243657601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f65750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c9061429b565b60405180910390fd5b5b600c60009054906101000a900460ff161561260b576124536116da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124da57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253257507f0000000000000000000000005266fb90d918fe079c9a64fa089b5eae4e54179c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561260a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614353565b60405180910390fd5b601754436125c69190613c9a565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ae5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612755576006548111156126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906143e5565b60405180910390fd5b60085461270483611355565b8261270f9190613c9a565b1115612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614451565b60405180910390fd5b6128f3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f85750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284757600654811115612842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612839906144e3565b60405180910390fd5b6128f2565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f1576008546128a483611355565b826128af9190613c9a565b11156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790614451565b60405180910390fd5b5b5b5b5b5b600061290030611355565b9050600060075482101590508080156129265750600560149054906101000a900460ff16155b801561293e5750600a60169054906101000a900460ff165b80156129945750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129ea5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a405750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a84576001600560146101000a81548160ff021916908315150217905550612a6861313c565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b3a5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4457600090505b60008115612d8d57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba757506000601254115b15612c4157612bd46064612bc66012548861322690919063ffffffff16565b6132a190919063ffffffff16565b905060125460105482612be79190614071565b612bf191906140fa565b60136000828254612c029190613c9a565b9250508190555060125460115482612c1a9190614071565b612c2491906140fa565b60146000828254612c359190613c9a565b92505081905550612d33565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9c57506000600f54115b15612d3257612cc96064612cbb600f548861322690919063ffffffff16565b6132a190919063ffffffff16565b9050600f54600d5482612cdc9190614071565b612ce691906140fa565b60136000828254612cf79190613c9a565b92505081905550600f54600e5482612d0f9190614071565b612d1991906140fa565b60146000828254612d2a9190613c9a565b925050819055505b5b6000811115612d7e57612d47873083612ea7565b60006013541115612d7d57612d5e306013546132eb565b612d66610e6d565b600981905550612d746120c3565b60006013819055505b5b8085612d8a9190614503565b94505b612d98878787612ea7565b505050505b505050565b6000838311158290612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de191906138d5565b60405180910390fd5b5060008385612df99190614503565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e9061419d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e9061422f565b60405180910390fd5b612f92838383613499565b612ffd816040518060600160405280602681526020016148b7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613090816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312f9190613821565b60405180910390a3505050565b600061314730611355565b905060008082141561315a575050613224565b60146007546131699190614071565b82111561318257601460075461317f9190614071565b91505b61318b8261349e565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d990614568565b60006040518083038185875af1925050503d8060008114613216576040519150601f19603f3d011682016040523d82523d6000602084013e61321b565b606091505b50508091505050505b565b600080831415613239576000905061329b565b600082846132479190614071565b905082848261325691906140fa565b14613296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328d906145ef565b60405180910390fd5b809150505b92915050565b60006132e383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136ea565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335290614681565b60405180910390fd5b61336782600083613499565b6133d281604051806060016040528060228152602001614895602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da29092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134298160025461374d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348d9190613821565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134bb576134ba6146a1565b5b6040519080825280602002602001820160405280156134e95781602001602082028036833780820191505090505b5090503081600081518110613501576135006146d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a157600080fd5b505afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614714565b816001815181106135ed576135ec6146d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613652307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ef8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b495949392919061483a565b600060405180830381600087803b1580156136ce57600080fd5b505af11580156136e2573d6000803e3d6000fd5b505050505050565b60008083118290613731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372891906138d5565b60405180910390fd5b506000838561374091906140fa565b9050809150509392505050565b600061378f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da2565b905092915050565b600080fd5b6000819050919050565b6137af8161379c565b81146137ba57600080fd5b50565b6000813590506137cc816137a6565b92915050565b600080604083850312156137e9576137e8613797565b5b60006137f7858286016137bd565b9250506020613808858286016137bd565b9150509250929050565b61381b8161379c565b82525050565b60006020820190506138366000830184613812565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387657808201518184015260208101905061385b565b83811115613885576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a78261383c565b6138b18185613847565b93506138c1818560208601613858565b6138ca8161388b565b840191505092915050565b600060208201905081810360008301526138ef818461389c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613922826138f7565b9050919050565b61393281613917565b811461393d57600080fd5b50565b60008135905061394f81613929565b92915050565b6000806040838503121561396c5761396b613797565b5b600061397a85828601613940565b925050602061398b858286016137bd565b9150509250929050565b60008115159050919050565b6139aa81613995565b82525050565b60006020820190506139c560008301846139a1565b92915050565b6000602082840312156139e1576139e0613797565b5b60006139ef84828501613940565b91505092915050565b600060208284031215613a0e57613a0d613797565b5b6000613a1c848285016137bd565b91505092915050565b6000819050919050565b6000613a4a613a45613a40846138f7565b613a25565b6138f7565b9050919050565b6000613a5c82613a2f565b9050919050565b6000613a6e82613a51565b9050919050565b613a7e81613a63565b82525050565b6000602082019050613a996000830184613a75565b92915050565b600080600060608486031215613ab857613ab7613797565b5b6000613ac686828701613940565b9350506020613ad786828701613940565b9250506040613ae8868287016137bd565b9150509250925092565b613afb81613917565b82525050565b6000602082019050613b166000830184613af2565b92915050565b600060ff82169050919050565b613b3281613b1c565b82525050565b6000602082019050613b4d6000830184613b29565b92915050565b613b5c81613995565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b60008060408385031215613b9657613b95613797565b5b6000613ba485828601613940565b9250506020613bb585828601613b6a565b9150509250929050565b60008060408385031215613bd657613bd5613797565b5b6000613be485828601613940565b9250506020613bf585828601613940565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c35602083613847565b9150613c4082613bff565b602082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca58261379c565b9150613cb08361379c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce557613ce4613c6b565b5b828201905092915050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000613d26601c83613847565b9150613d3182613cf0565b602082019050919050565b60006020820190508181036000830152613d5581613d19565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da357607f821691505b60208210811415613db757613db6613d5c565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e19603983613847565b9150613e2482613dbd565b604082019050919050565b60006020820190508181036000830152613e4881613e0c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eab602683613847565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f17601b83613847565b9150613f2282613ee1565b602082019050919050565b60006020820190508181036000830152613f4681613f0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa9602483613847565b9150613fb482613f4d565b604082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403b602283613847565b915061404682613fdf565b604082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b600061407c8261379c565b91506140878361379c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140c0576140bf613c6b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141058261379c565b91506141108361379c565b9250826141205761411f6140cb565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614187602583613847565b91506141928261412b565b604082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614219602383613847565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614285601683613847565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433d604983613847565b9150614348826142bb565b606082019050919050565b6000602082019050818103600083015261436c81614330565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143cf603583613847565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443b601383613847565b915061444682614405565b602082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144cd603683613847565b91506144d882614471565b604082019050919050565b600060208201905081810360008301526144fc816144c0565b9050919050565b600061450e8261379c565b91506145198361379c565b92508282101561452c5761452b613c6b565b5b828203905092915050565b600081905092915050565b50565b6000614552600083614537565b915061455d82614542565b600082019050919050565b600061457382614545565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d9602183613847565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466b602183613847565b91506146768261460f565b604082019050919050565b6000602082019050818103600083015261469a8161465e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470e81613929565b92915050565b60006020828403121561472a57614729613797565b5b6000614738848285016146ff565b91505092915050565b6000819050919050565b600061476661476161475c84614741565b613a25565b61379c565b9050919050565b6147768161474b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147b181613917565b82525050565b60006147c383836147a8565b60208301905092915050565b6000602082019050919050565b60006147e78261477c565b6147f18185614787565b93506147fc83614798565b8060005b8381101561482d57815161481488826147b7565b975061481f836147cf565b925050600181019050614800565b5085935050505092915050565b600060a08201905061484f6000830188613812565b61485c602083018761476d565b818103604083015261486e81866147dc565b905061487d6060830185613af2565b61488a6080830184613812565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203c037b88c41c501f05fe382f2bae7d82feb33bd85a62070b272921d1a73045eb64736f6c63430008090033

Deployed Bytecode Sourcemap

29590:11322:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34388:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29987:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30816:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33681:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29665:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8840:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34667:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30501:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33518:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10538:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29768:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8683:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11302:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29723:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30054:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35644:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34112:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30457:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9011:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22185:148;;;;;;;;;;;;;:::i;:::-;;33956:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30572:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:280;;;;;;;;;;;;;:::i;:::-;;21543:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30017:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30605:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35196:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30325:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30536:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33846:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30425:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12023:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30392:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31038:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30094:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34778:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30245:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29868:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30356:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9589:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29910:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30293:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30637;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22488:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29950:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34388:271;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34491:8:::1;34477:11;:22;;;;34523:7;34510:10;:20;;;;34571:10;;34557:11;;:24;;;;:::i;:::-;34541:13;:40;;;;34617:1;34600:13;;:18;;34592:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;34388:271:::0;;:::o;29987:21::-;;;;:::o;7722:100::-;7776:13;7809:5;7802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7722:100;:::o;9887:169::-;9970:4;9987:39;9996:12;:10;:12::i;:::-;10010:7;10019:6;9987:8;:39::i;:::-;10044:4;10037:11;;9887:169;;;;:::o;30816:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;33681:157::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33772:1:::1;33762:6;:11;;33754:20;;;::::0;::::1;;33799:6;33785:11;:20;;;;33816:14;:12;:14::i;:::-;33681:157:::0;:::o;29665:51::-;;;:::o;8840:108::-;8901:7;8928:12;;8921:19;;8840:108;:::o;34667:103::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34753:9:::1;34741;;:21;;;;;;;;;;;;;;;;;;34667:103:::0;:::o;30501:28::-;;;;:::o;33518:155::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33608:1:::1;33598:6;:11;;33590:20;;;::::0;::::1;;33634:6;33621:10;:19;;;;33651:14;:12;:14::i;:::-;33518:155:::0;:::o;10538:355::-;10678:4;10695:36;10705:6;10713:9;10724:6;10695:9;:36::i;:::-;10742:121;10751:6;10759:12;:10;:12::i;:::-;10773:89;10811:6;10773:89;;;;;;;;;;;;;;;;;:11;:19;10785:6;10773:19;;;;;;;;;;;;;;;:33;10793:12;:10;:12::i;:::-;10773:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10742:8;:121::i;:::-;10881:4;10874:11;;10538:355;;;;;:::o;29768:53::-;29814:6;29768:53;:::o;8683:92::-;8741:5;8766:1;8759:8;;8683:92;:::o;11302:218::-;11390:4;11407:83;11416:12;:10;:12::i;:::-;11430:7;11439:50;11478:10;11439:11;:25;11451:12;:10;:12::i;:::-;11439:25;;;;;;;;;;;;;;;:34;11465:7;11439:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11407:8;:83::i;:::-;11508:4;11501:11;;11302:218;;;;:::o;29723:38::-;;;:::o;30054:33::-;;;;;;;;;;;;;:::o;35644:125::-;35709:4;35733:19;:28;35753:7;35733:28;;;;;;;;;;;;;;;;;;;;;;;;;35726:35;;35644:125;;;:::o;34112:264::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34213:8:::1;34200:10;:21;;;;34244:7;34232:9;:19;;;;34290:9;;34277:10;;:22;;;;:::i;:::-;34262:12;:37;;;;34334:1;34318:12;;:17;;34310:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34112:264:::0;;:::o;30457:28::-;;;;:::o;30133:30::-;;;;;;;;;;;;;:::o;9011:127::-;9085:7;9112:9;:18;9122:7;9112:18;;;;;;;;;;;;;;;;9105:25;;9011:127;;;:::o;22185:148::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22292:1:::1;22255:40;;22276:6;;;;;;;;;;;22255:40;;;;;;;;;;;;22323:1;22306:6;;:19;;;;;;;;;;;;;;;;;;22185:148::o:0;33956:144::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34088:4:::1;34046:31;:39;34078:6;34046:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33956:144:::0;;:::o;30572:26::-;;;;:::o;33226:280::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33294:1:::1;33281:10;:14;;;;33318:1;33306:9;:13;;;;33358:9;;33345:10;;:22;;;;:::i;:::-;33330:12;:37;;;;33394:1;33380:11;:15;;;;33419:1;33406:10;:14;;;;33461:10;;33447:11;;:24;;;;:::i;:::-;33431:13;:40;;;;33497:1;33484:10;:14;;;;33226:280::o:0;21543:79::-;21581:7;21608:6;;;;;;;;;;;21601:13;;21543:79;:::o;30017:24::-;;;;;;;;;;;;;:::o;7941:104::-;7997:13;8030:7;8023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7941:104;:::o;30605:25::-;;;;:::o;35196:244::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35303:13:::1;35295:21;;:4;:21;;;;35287:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;35391:41;35420:4;35426:5;35391:28;:41::i;:::-;35196:244:::0;;:::o;30325:24::-;;;;:::o;30536:27::-;;;;:::o;33846:98::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33930:6:::1;33917:10;:19;;;;33846:98:::0;:::o;30425:25::-;;;;:::o;12023:269::-;12116:4;12133:129;12142:12;:10;:12::i;:::-;12156:7;12165:96;12204:15;12165:96;;;;;;;;;;;;;;;;;:11;:25;12177:12;:10;:12::i;:::-;12165:25;;;;;;;;;;;;;;;:34;12191:7;12165:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12133:8;:129::i;:::-;12280:4;12273:11;;12023:269;;;;:::o;9351:175::-;9437:4;9454:42;9464:12;:10;:12::i;:::-;9478:9;9489:6;9454:9;:42::i;:::-;9514:4;9507:11;;9351:175;;;;:::o;30392:26::-;;;;:::o;31038:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30094:32::-;;;;;;;;;;;;;:::o;34778:182::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34894:8:::1;34863:19;:28;34883:7;34863:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34934:7;34918:34;;;34943:8;34918:34;;;;;;:::i;:::-;;;;;;;;34778:182:::0;;:::o;30245:39::-;;;;;;;;;;;;;:::o;29868:35::-;;;;:::o;30356:27::-;;;;:::o;9589:151::-;9678:7;9705:11;:18;9717:5;9705:18;;;;;;;;;;;;;;;:27;9724:7;9705:27;;;;;;;;;;;;;;;;9698:34;;9589:151;;;;:::o;29910:33::-;;;;:::o;30293:25::-;;;;:::o;30637:::-;;;;:::o;22488:244::-;21765:12;:10;:12::i;:::-;21755:22;;:6;;;;;;;;;;;:22;;;21747:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22597:1:::1;22577:22;;:8;:22;;;;22569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22687:8;22658:38;;22679:6;;;;;;;;;;;22658:38;;;;;;;;;;;;22716:8;22707:6;;:17;;;;;;;;;;;;;;;;;;22488:244:::0;:::o;29950:24::-;;;;:::o;16587:181::-;16645:7;16665:9;16681:1;16677;:5;;;;:::i;:::-;16665:17;;16706:1;16701;:6;;16693:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16759:1;16752:8;;;16587:181;;;;:::o;359:98::-;412:7;439:10;432:17;;359:98;:::o;15209:380::-;15362:1;15345:19;;:5;:19;;;;15337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15443:1;15424:21;;:7;:21;;;;15416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15527:6;15497:11;:18;15509:5;15497:18;;;;;;;;;;;;;;;:27;15516:7;15497:27;;;;;;;;;;;;;;;:36;;;;15565:7;15549:32;;15558:5;15549:32;;;15574:6;15549:32;;;;;;:::i;:::-;;;;;;;;15209:380;;;:::o;34968:220::-;35056:3;35043:10;;35034:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;35011:20;:48;;;;35104:5;35100:1;35091:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;35070;:39;;;;35177:3;35163:11;;35154:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;35142:9;:38;;;;34968:220::o;35781:4041::-;35929:1;35913:18;;:4;:18;;;;35905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36006:1;35992:16;;:2;:16;;;;35984:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36083:1;36073:6;:11;36070:92;;;36101:28;36117:4;36123:2;36127:1;36101:15;:28::i;:::-;36144:7;;36070:92;36185:14;;;;;;;;;;;36182:1854;;;36245:7;:5;:7::i;:::-;36237:15;;:4;:15;;;;:49;;;;;36279:7;:5;:7::i;:::-;36273:13;;:2;:13;;;;36237:49;:86;;;;;36321:1;36307:16;;:2;:16;;;;36237:86;:128;;;;;36358:6;36344:21;;:2;:21;;;;36237:128;:158;;;;;36387:8;;;;;;;;;;;36386:9;36237:158;36215:1810;;;36433:13;;;;;;;;;;;36429:148;;36478:19;:25;36498:4;36478:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36507:19;:23;36527:2;36507:23;;;;;;;;;;;;;;;;;;;;;;;;;36478:52;36470:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36429:148;36735:20;;;;;;;;;;;36731:436;;;36789:7;:5;:7::i;:::-;36783:13;;:2;:13;;;;:47;;;;;36814:15;36800:30;;:2;:30;;;;36783:47;:79;;;;;36848:13;36834:28;;:2;:28;;;;36783:79;36779:369;;;36940:12;36898:28;:39;36927:9;36898:39;;;;;;;;;;;;;;;;:54;36890:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37114:10;;37099:12;:25;;;;:::i;:::-;37057:28;:39;37086:9;37057:39;;;;;;;;;;;;;;;:67;;;;36779:369;36731:436;37236:25;:31;37262:4;37236:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37272:31;:35;37304:2;37272:35;;;;;;;;;;;;;;;;;;;;;;;;;37271:36;37236:71;37232:778;;;37354:20;;37344:6;:30;;37336:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37493:9;;37476:13;37486:2;37476:9;:13::i;:::-;37467:6;:22;;;;:::i;:::-;:35;;37459:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37232:778;;;37620:25;:29;37646:2;37620:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37654:31;:37;37686:4;37654:37;;;;;;;;;;;;;;;;;;;;;;;;;37653:38;37620:71;37616:394;;;37738:20;;37728:6;:30;;37720:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;37616:394;;;37864:31;:35;37896:2;37864:35;;;;;;;;;;;;;;;;;;;;;;;;;37860:150;;37957:9;;37940:13;37950:2;37940:9;:13::i;:::-;37931:6;:22;;;;:::i;:::-;:35;;37923:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37860:150;37616:394;37232:778;36215:1810;36182:1854;38046:28;38077:24;38095:4;38077:9;:24::i;:::-;38046:55;;38122:12;38161:18;;38137:20;:42;;38122:57;;38210:7;:33;;;;;38235:8;;;;;;;;;;;38234:9;38210:33;:61;;;;;38260:11;;;;;;;;;;;38210:61;:110;;;;;38289:25;:31;38315:4;38289:31;;;;;;;;;;;;;;;;;;;;;;;;;38288:32;38210:110;:153;;;;;38338:19;:25;38358:4;38338:25;;;;;;;;;;;;;;;;;;;;;;;;;38337:26;38210:153;:194;;;;;38381:19;:23;38401:2;38381:23;;;;;;;;;;;;;;;;;;;;;;;;;38380:24;38210:194;38192:338;;;38442:4;38431:8;;:15;;;;;;;;;;;;;;;;;;38475:10;:8;:10::i;:::-;38513:5;38502:8;;:16;;;;;;;;;;;;;;;;;;38192:338;38550:12;38566:8;;;;;;;;;;;38565:9;38550:24;;38590:19;:25;38610:4;38590:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38619:19;:23;38639:2;38619:23;;;;;;;;;;;;;;;;;;;;;;;;;38590:52;38587:99;;;38669:5;38659:15;;38587:99;38706:12;38738:7;38735:1034;;;38789:25;:29;38815:2;38789:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;38838:1;38822:13;;:17;38789:50;38785:574;;;38866:34;38896:3;38866:25;38877:13;;38866:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;38859:41;;38957:13;;38943:11;;38936:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38919:13;;:51;;;;;;;:::i;:::-;;;;;;;;39025:13;;39012:10;;39005:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;38989:12;;:49;;;;;;;:::i;:::-;;;;;;;;38785:574;;;39101:25;:31;39127:4;39101:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39151:1;39136:12;;:16;39101:51;39098:261;;;39179:33;39208:3;39179:24;39190:12;;39179:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39172:40;;39265:12;;39252:10;;39245:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39228:13;;:49;;;;;;;:::i;:::-;;;;;;;;39331:12;;39319:9;;39312:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;39296:12;;:47;;;;;;;:::i;:::-;;;;;;;;39098:261;38785:574;39397:1;39390:4;:8;39387:334;;;39422:42;39438:4;39452;39459;39422:15;:42::i;:::-;39503:1;39487:13;;:17;39483:223;;;39529:35;39543:4;39550:13;;39529:5;:35::i;:::-;39596:13;:11;:13::i;:::-;39587:6;:22;;;;39632:14;:12;:14::i;:::-;39685:1;39669:13;:17;;;;39483:223;39387:334;39753:4;39743:14;;;;;:::i;:::-;;;38735:1034;39781:33;39797:4;39803:2;39807:6;39781:15;:33::i;:::-;35894:3928;;;;35781:4041;;;;:::o;17490:192::-;17576:7;17609:1;17604;:6;;17612:12;17596:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17636:9;17652:1;17648;:5;;;;:::i;:::-;17636:17;;17673:1;17666:8;;;17490:192;;;;;:::o;35448:188::-;35565:5;35531:25;:31;35557:4;35531:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35622:5;35588:40;;35616:4;35588:40;;;;;;;;;;;;35448:188;;:::o;12782:573::-;12940:1;12922:20;;:6;:20;;;;12914:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13024:1;13003:23;;:9;:23;;;;12995:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13079:47;13100:6;13108:9;13119:6;13079:20;:47::i;:::-;13159:71;13181:6;13159:71;;;;;;;;;;;;;;;;;:9;:17;13169:6;13159:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13139:9;:17;13149:6;13139:17;;;;;;;;;;;;;;;:91;;;;13264:32;13289:6;13264:9;:20;13274:9;13264:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13241:9;:20;13251:9;13241:20;;;;;;;;;;;;;;;:55;;;;13329:9;13312:35;;13321:6;13312:35;;;13340:6;13312:35;;;;;;:::i;:::-;;;;;;;;12782:573;;;:::o;40443:464::-;40482:23;40508:24;40526:4;40508:9;:24::i;:::-;40482:50;;40543:12;40598:1;40579:15;:20;40576:34;;;40602:7;;;;40576:34;40664:2;40643:18;;:23;;;;:::i;:::-;40625:15;:41;40622:111;;;40719:2;40698:18;;:23;;;;:::i;:::-;40680:41;;40622:111;40745:33;40762:15;40745:16;:33::i;:::-;40815:1;40800:12;:16;;;;40850:9;;;;;;;;;;;40842:23;;40873:21;40842:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40829:70;;;;;40471:436;;40443:464;:::o;17941:471::-;17999:7;18249:1;18244;:6;18240:47;;;18274:1;18267:8;;;;18240:47;18299:9;18315:1;18311;:5;;;;:::i;:::-;18299:17;;18344:1;18339;18335;:5;;;;:::i;:::-;:10;18327:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18403:1;18396:8;;;17941:471;;;;;:::o;18888:132::-;18946:7;18973:39;18977:1;18980;18973:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18966:46;;18888:132;;;;:::o;14353:418::-;14456:1;14437:21;;:7;:21;;;;14429:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14509:49;14530:7;14547:1;14551:6;14509:20;:49::i;:::-;14592:68;14615:6;14592:68;;;;;;;;;;;;;;;;;:9;:18;14602:7;14592:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14571:9;:18;14581:7;14571:18;;;;;;;;;;;;;;;:89;;;;14686:24;14703:6;14686:12;;:16;;:24;;;;:::i;:::-;14671:12;:39;;;;14752:1;14726:37;;14735:7;14726:37;;;14756:6;14726:37;;;;;;:::i;:::-;;;;;;;;14353:418;;:::o;16192:125::-;;;;:::o;39830:601::-;39958:21;39996:1;39982:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39958:40;;40027:4;40009;40014:1;40009:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40053:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40043:4;40048:1;40043:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40088:62;40105:4;40120:15;40138:11;40088:8;:62::i;:::-;40189:15;:66;;;40270:11;40296:1;40340:4;40367;40387:15;40189:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39885:546;39830:601;:::o;19516:278::-;19602:7;19634:1;19630;:5;19637:12;19622:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19661:9;19677:1;19673;:5;;;;:::i;:::-;19661:17;;19785:1;19778:8;;;19516:278;;;;;:::o;17051:136::-;17109:7;17136:43;17140:1;17143;17136:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17129:50;;17051:136;;;;:::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:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:178::-;10218:30;10214:1;10206:6;10202:14;10195:54;10078:178;:::o;10262:366::-;10404:3;10425:67;10489:2;10484:3;10425:67;:::i;:::-;10418:74;;10501:93;10590:3;10501:93;:::i;:::-;10619:2;10614:3;10610:12;10603:19;;10262:366;;;:::o;10634:419::-;10800:4;10838:2;10827:9;10823:18;10815:26;;10887:9;10881:4;10877:20;10873:1;10862:9;10858:17;10851:47;10915:131;11041:4;10915:131;:::i;:::-;10907:139;;10634:419;;;:::o;11059:180::-;11107:77;11104:1;11097:88;11204:4;11201:1;11194:15;11228:4;11225:1;11218:15;11245:320;11289:6;11326:1;11320:4;11316:12;11306:22;;11373:1;11367:4;11363:12;11394:18;11384:81;;11450:4;11442:6;11438:17;11428:27;;11384:81;11512:2;11504:6;11501:14;11481:18;11478:38;11475:84;;;11531:18;;:::i;:::-;11475:84;11296:269;11245:320;;;:::o;11571:244::-;11711:34;11707:1;11699:6;11695:14;11688:58;11780:27;11775:2;11767:6;11763:15;11756:52;11571:244;:::o;11821:366::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:419::-;12359:4;12397:2;12386:9;12382:18;12374:26;;12446:9;12440:4;12436:20;12432:1;12421:9;12417:17;12410:47;12474:131;12600:4;12474:131;:::i;:::-;12466:139;;12193:419;;;:::o;12618:225::-;12758:34;12754:1;12746:6;12742:14;12735:58;12827:8;12822:2;12814:6;12810:15;12803:33;12618:225;:::o;12849:366::-;12991:3;13012:67;13076:2;13071:3;13012:67;:::i;:::-;13005:74;;13088:93;13177:3;13088:93;:::i;:::-;13206:2;13201:3;13197:12;13190:19;;12849:366;;;:::o;13221:419::-;13387:4;13425:2;13414:9;13410:18;13402:26;;13474:9;13468:4;13464:20;13460:1;13449:9;13445:17;13438:47;13502:131;13628:4;13502:131;:::i;:::-;13494:139;;13221:419;;;:::o;13646:177::-;13786:29;13782:1;13774:6;13770:14;13763:53;13646:177;:::o;13829:366::-;13971:3;13992:67;14056:2;14051:3;13992:67;:::i;:::-;13985:74;;14068:93;14157:3;14068:93;:::i;:::-;14186:2;14181:3;14177:12;14170:19;;13829:366;;;:::o;14201:419::-;14367:4;14405:2;14394:9;14390:18;14382:26;;14454:9;14448:4;14444:20;14440:1;14429:9;14425:17;14418:47;14482:131;14608:4;14482:131;:::i;:::-;14474:139;;14201:419;;;:::o;14626:223::-;14766:34;14762:1;14754:6;14750:14;14743:58;14835:6;14830:2;14822:6;14818:15;14811:31;14626:223;:::o;14855:366::-;14997:3;15018:67;15082:2;15077:3;15018:67;:::i;:::-;15011:74;;15094:93;15183:3;15094:93;:::i;:::-;15212:2;15207:3;15203:12;15196:19;;14855:366;;;:::o;15227:419::-;15393:4;15431:2;15420:9;15416:18;15408:26;;15480:9;15474:4;15470:20;15466:1;15455:9;15451:17;15444:47;15508:131;15634:4;15508:131;:::i;:::-;15500:139;;15227:419;;;:::o;15652:221::-;15792:34;15788:1;15780:6;15776:14;15769:58;15861:4;15856:2;15848:6;15844:15;15837:29;15652:221;:::o;15879:366::-;16021:3;16042:67;16106:2;16101:3;16042:67;:::i;:::-;16035:74;;16118:93;16207:3;16118:93;:::i;:::-;16236:2;16231:3;16227:12;16220:19;;15879:366;;;:::o;16251:419::-;16417:4;16455:2;16444:9;16440:18;16432:26;;16504:9;16498:4;16494:20;16490:1;16479:9;16475:17;16468:47;16532:131;16658:4;16532:131;:::i;:::-;16524:139;;16251:419;;;:::o;16676:348::-;16716:7;16739:20;16757:1;16739:20;:::i;:::-;16734:25;;16773:20;16791:1;16773:20;:::i;:::-;16768:25;;16961:1;16893:66;16889:74;16886:1;16883:81;16878:1;16871:9;16864:17;16860:105;16857:131;;;16968:18;;:::i;:::-;16857:131;17016:1;17013;17009:9;16998:20;;16676:348;;;;:::o;17030:180::-;17078:77;17075:1;17068:88;17175:4;17172:1;17165:15;17199:4;17196:1;17189:15;17216:185;17256:1;17273:20;17291:1;17273:20;:::i;:::-;17268:25;;17307:20;17325:1;17307:20;:::i;:::-;17302:25;;17346:1;17336:35;;17351:18;;:::i;:::-;17336:35;17393:1;17390;17386:9;17381:14;;17216:185;;;;:::o;17407:224::-;17547:34;17543:1;17535:6;17531:14;17524:58;17616:7;17611:2;17603:6;17599:15;17592:32;17407:224;:::o;17637:366::-;17779:3;17800:67;17864:2;17859:3;17800:67;:::i;:::-;17793:74;;17876:93;17965:3;17876:93;:::i;:::-;17994:2;17989:3;17985:12;17978:19;;17637:366;;;:::o;18009:419::-;18175:4;18213:2;18202:9;18198:18;18190:26;;18262:9;18256:4;18252:20;18248:1;18237:9;18233:17;18226:47;18290:131;18416:4;18290:131;:::i;:::-;18282:139;;18009:419;;;:::o;18434:222::-;18574:34;18570:1;18562:6;18558:14;18551:58;18643:5;18638:2;18630:6;18626:15;18619:30;18434:222;:::o;18662:366::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:419::-;19200:4;19238:2;19227:9;19223:18;19215:26;;19287:9;19281:4;19277:20;19273:1;19262:9;19258:17;19251:47;19315:131;19441:4;19315:131;:::i;:::-;19307:139;;19034:419;;;:::o;19459:172::-;19599:24;19595:1;19587:6;19583:14;19576:48;19459:172;:::o;19637:366::-;19779:3;19800:67;19864:2;19859:3;19800:67;:::i;:::-;19793:74;;19876:93;19965:3;19876:93;:::i;:::-;19994:2;19989:3;19985:12;19978:19;;19637:366;;;:::o;20009:419::-;20175:4;20213:2;20202:9;20198:18;20190:26;;20262:9;20256:4;20252:20;20248:1;20237:9;20233:17;20226:47;20290:131;20416:4;20290:131;:::i;:::-;20282:139;;20009:419;;;:::o;20434:297::-;20574:34;20570:1;20562:6;20558:14;20551:58;20643:34;20638:2;20630:6;20626:15;20619:59;20712:11;20707:2;20699:6;20695:15;20688:36;20434:297;:::o;20737:366::-;20879:3;20900:67;20964:2;20959:3;20900:67;:::i;:::-;20893:74;;20976:93;21065:3;20976:93;:::i;:::-;21094:2;21089:3;21085:12;21078:19;;20737:366;;;:::o;21109:419::-;21275:4;21313:2;21302:9;21298:18;21290:26;;21362:9;21356:4;21352:20;21348:1;21337:9;21333:17;21326:47;21390:131;21516:4;21390:131;:::i;:::-;21382:139;;21109:419;;;:::o;21534:240::-;21674:34;21670:1;21662:6;21658:14;21651:58;21743:23;21738:2;21730:6;21726:15;21719:48;21534:240;:::o;21780:366::-;21922:3;21943:67;22007:2;22002:3;21943:67;:::i;:::-;21936:74;;22019:93;22108:3;22019:93;:::i;:::-;22137:2;22132:3;22128:12;22121:19;;21780:366;;;:::o;22152:419::-;22318:4;22356:2;22345:9;22341:18;22333:26;;22405:9;22399:4;22395:20;22391:1;22380:9;22376:17;22369:47;22433:131;22559:4;22433:131;:::i;:::-;22425:139;;22152:419;;;:::o;22577:169::-;22717:21;22713:1;22705:6;22701:14;22694:45;22577:169;:::o;22752:366::-;22894:3;22915:67;22979:2;22974:3;22915:67;:::i;:::-;22908:74;;22991:93;23080:3;22991:93;:::i;:::-;23109:2;23104:3;23100:12;23093:19;;22752:366;;;:::o;23124:419::-;23290:4;23328:2;23317:9;23313:18;23305:26;;23377:9;23371:4;23367:20;23363:1;23352:9;23348:17;23341:47;23405:131;23531:4;23405:131;:::i;:::-;23397:139;;23124:419;;;:::o;23549:241::-;23689:34;23685:1;23677:6;23673:14;23666:58;23758:24;23753:2;23745:6;23741:15;23734:49;23549:241;:::o;23796:366::-;23938:3;23959:67;24023:2;24018:3;23959:67;:::i;:::-;23952:74;;24035:93;24124:3;24035:93;:::i;:::-;24153:2;24148:3;24144:12;24137:19;;23796:366;;;:::o;24168:419::-;24334:4;24372:2;24361:9;24357:18;24349:26;;24421:9;24415:4;24411:20;24407:1;24396:9;24392:17;24385:47;24449:131;24575:4;24449:131;:::i;:::-;24441:139;;24168:419;;;:::o;24593:191::-;24633:4;24653:20;24671:1;24653:20;:::i;:::-;24648:25;;24687:20;24705:1;24687:20;:::i;:::-;24682:25;;24726:1;24723;24720:8;24717:34;;;24731:18;;:::i;:::-;24717:34;24776:1;24773;24769:9;24761:17;;24593:191;;;;:::o;24790:147::-;24891:11;24928:3;24913:18;;24790:147;;;;:::o;24943:114::-;;:::o;25063:398::-;25222:3;25243:83;25324:1;25319:3;25243:83;:::i;:::-;25236:90;;25335:93;25424:3;25335:93;:::i;:::-;25453:1;25448:3;25444:11;25437:18;;25063:398;;;:::o;25467:379::-;25651:3;25673:147;25816:3;25673:147;:::i;:::-;25666:154;;25837:3;25830:10;;25467:379;;;:::o;25852:220::-;25992:34;25988:1;25980:6;25976:14;25969:58;26061:3;26056:2;26048:6;26044:15;26037:28;25852:220;:::o;26078:366::-;26220:3;26241:67;26305:2;26300:3;26241:67;:::i;:::-;26234:74;;26317:93;26406:3;26317:93;:::i;:::-;26435:2;26430:3;26426:12;26419:19;;26078:366;;;:::o;26450:419::-;26616:4;26654:2;26643:9;26639:18;26631:26;;26703:9;26697:4;26693:20;26689:1;26678:9;26674:17;26667:47;26731:131;26857:4;26731:131;:::i;:::-;26723:139;;26450:419;;;:::o;26875:220::-;27015:34;27011:1;27003:6;26999:14;26992:58;27084:3;27079:2;27071:6;27067:15;27060:28;26875:220;:::o;27101:366::-;27243:3;27264:67;27328:2;27323:3;27264:67;:::i;:::-;27257:74;;27340:93;27429:3;27340:93;:::i;:::-;27458:2;27453:3;27449:12;27442:19;;27101:366;;;:::o;27473:419::-;27639:4;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27473:419;;;:::o;27898:180::-;27946:77;27943:1;27936:88;28043:4;28040:1;28033:15;28067:4;28064:1;28057:15;28084:180;28132:77;28129:1;28122:88;28229:4;28226:1;28219:15;28253:4;28250:1;28243:15;28270:143;28327:5;28358:6;28352:13;28343:22;;28374:33;28401:5;28374:33;:::i;:::-;28270:143;;;;:::o;28419:351::-;28489:6;28538:2;28526:9;28517:7;28513:23;28509:32;28506:119;;;28544:79;;:::i;:::-;28506:119;28664:1;28689:64;28745:7;28736:6;28725:9;28721:22;28689:64;:::i;:::-;28679:74;;28635:128;28419:351;;;;:::o;28776:85::-;28821:7;28850:5;28839:16;;28776:85;;;:::o;28867:158::-;28925:9;28958:61;28976:42;28985:32;29011:5;28985:32;:::i;:::-;28976:42;:::i;:::-;28958:61;:::i;:::-;28945:74;;28867:158;;;:::o;29031:147::-;29126:45;29165:5;29126:45;:::i;:::-;29121:3;29114:58;29031:147;;:::o;29184:114::-;29251:6;29285:5;29279:12;29269:22;;29184:114;;;:::o;29304:184::-;29403:11;29437:6;29432:3;29425:19;29477:4;29472:3;29468:14;29453:29;;29304:184;;;;:::o;29494:132::-;29561:4;29584:3;29576:11;;29614:4;29609:3;29605:14;29597:22;;29494:132;;;:::o;29632:108::-;29709:24;29727:5;29709:24;:::i;:::-;29704:3;29697:37;29632:108;;:::o;29746:179::-;29815:10;29836:46;29878:3;29870:6;29836:46;:::i;:::-;29914:4;29909:3;29905:14;29891:28;;29746:179;;;;:::o;29931:113::-;30001:4;30033;30028:3;30024:14;30016:22;;29931:113;;;:::o;30080:732::-;30199:3;30228:54;30276:5;30228:54;:::i;:::-;30298:86;30377:6;30372:3;30298:86;:::i;:::-;30291:93;;30408:56;30458:5;30408:56;:::i;:::-;30487:7;30518:1;30503:284;30528:6;30525:1;30522:13;30503:284;;;30604:6;30598:13;30631:63;30690:3;30675:13;30631:63;:::i;:::-;30624:70;;30717:60;30770:6;30717:60;:::i;:::-;30707:70;;30563:224;30550:1;30547;30543:9;30538:14;;30503:284;;;30507:14;30803:3;30796:10;;30204:608;;;30080:732;;;;:::o;30818:831::-;31081:4;31119:3;31108:9;31104:19;31096:27;;31133:71;31201:1;31190:9;31186:17;31177:6;31133:71;:::i;:::-;31214:80;31290:2;31279:9;31275:18;31266:6;31214:80;:::i;:::-;31341:9;31335:4;31331:20;31326:2;31315:9;31311:18;31304:48;31369:108;31472:4;31463:6;31369:108;:::i;:::-;31361:116;;31487:72;31555:2;31544:9;31540:18;31531:6;31487:72;:::i;:::-;31569:73;31637:3;31626:9;31622:19;31613:6;31569:73;:::i;:::-;30818:831;;;;;;;;:::o

Swarm Source

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