ETH Price: $2,376.23 (-3.52%)

Token

Trails Finance (TRAILS)
 

Overview

Max Total Supply

100,000,000 TRAILS

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 TRAILS

Value
$0.00
0x5b0a1edf234c4facc952abd17293dd8a94ae8ef5
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:
TRAILS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

// SPDX-License-Identifier: MIT
// File: TRAILS.sol

/**
     Trails Finance 
     
     Follow the whales to success with Trails - the ultimate blockchain tool 
     for discovering profitable crypto wallets


     https://trails.finance/
     https://twitter.com/TrailsFinance
     https://medium.com/@TrailsFinance
     https://t.me/TrailsFinanceTools


     Tax: 6/6
     LP: 100% of supply will be added to the LP
     Max Transaction: 2%
     Max Wallet: 2%
  
*/

pragma solidity ^0.8.15;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.15; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.15; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.15; */

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

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.15; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.15; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.15; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.15; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.15; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.15; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.15; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Trails Finance", "TRAILS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

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

        uint256 totalSupply = 100000000 * 1e18;

        maxTransactionAmount = 2000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = true;
        return true;
    }

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

        (success, ) = address(marketingWallet).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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600e81526020017f547261696c732046696e616e63650000000000000000000000000000000000008152506040518060400160405280600681526020017f545241494c5300000000000000000000000000000000000000000000000000008152508160039081620000fb919062000dbd565b5080600490816200010d919062000dbd565b50505062000130620001246200060460201b60201c565b6200060c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006d260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f0e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f0e565b6040518363ffffffff1660e01b8152600401620002af92919062000f51565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f0e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006d260201b60201c565b6200035260a0516001620007bc60201b60201c565b600060039050600080600390506000600390506000806003905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550612710600a82620003b2919062000fad565b620003be919062001027565b60098190555086600f819055508560108190555084601181905550601154601054600f54620003ee91906200105f565b620003fa91906200105f565b600e819055508360138190555082601481905550816015819055506015546014546013546200042a91906200105f565b6200043691906200105f565b60128190555073fdd33c935970c303eac88cff3d0d92efc2705548600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738ff6275b2491acf33cb385e8573c099a82e23bd1600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000508620004fa6200085d60201b60201c565b60016200088760201b60201c565b6200051b3060016200088760201b60201c565b6200053061dead60016200088760201b60201c565b62000565600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088760201b60201c565b62000587620005796200085d60201b60201c565b6001620006d260201b60201c565b6200059a306001620006d260201b60201c565b620005af61dead6001620006d260201b60201c565b620005e4600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d260201b60201c565b620005f63382620009c160201b60201c565b5050505050505050620011f7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e26200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007086200085d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075890620010fb565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008976200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008bd6200085d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090d90620010fb565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b591906200113a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2a90620011a7565b60405180910390fd5b62000a476000838362000b3960201b60201c565b806002600082825462000a5b91906200105f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab291906200105f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b199190620011da565b60405180910390a362000b356000838362000b3e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bc557607f821691505b60208210810362000bdb5762000bda62000b7d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c06565b62000c51868362000c06565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c9e62000c9862000c928462000c69565b62000c73565b62000c69565b9050919050565b6000819050919050565b62000cba8362000c7d565b62000cd262000cc98262000ca5565b84845462000c13565b825550505050565b600090565b62000ce962000cda565b62000cf681848462000caf565b505050565b5b8181101562000d1e5762000d1260008262000cdf565b60018101905062000cfc565b5050565b601f82111562000d6d5762000d378162000be1565b62000d428462000bf6565b8101602085101562000d52578190505b62000d6a62000d618562000bf6565b83018262000cfb565b50505b505050565b600082821c905092915050565b600062000d926000198460080262000d72565b1980831691505092915050565b600062000dad838362000d7f565b9150826002028217905092915050565b62000dc88262000b43565b67ffffffffffffffff81111562000de45762000de362000b4e565b5b62000df0825462000bac565b62000dfd82828562000d22565b600060209050601f83116001811462000e35576000841562000e20578287015190505b62000e2c858262000d9f565b86555062000e9c565b601f19841662000e458662000be1565b60005b8281101562000e6f5784890151825560018201915060208501945060208101905062000e48565b8683101562000e8f578489015162000e8b601f89168262000d7f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ed68262000ea9565b9050919050565b62000ee88162000ec9565b811462000ef457600080fd5b50565b60008151905062000f088162000edd565b92915050565b60006020828403121562000f275762000f2662000ea4565b5b600062000f378482850162000ef7565b91505092915050565b62000f4b8162000ec9565b82525050565b600060408201905062000f68600083018562000f40565b62000f77602083018462000f40565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fba8262000c69565b915062000fc78362000c69565b925082820262000fd78162000c69565b9150828204841483151762000ff15762000ff062000f7e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010348262000c69565b9150620010418362000c69565b92508262001054576200105362000ff8565b5b828204905092915050565b60006200106c8262000c69565b9150620010798362000c69565b925082820190508082111562001094576200109362000f7e565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010e36020836200109a565b9150620010f082620010ab565b602082019050919050565b600060208201905081810360008301526200111681620010d4565b9050919050565b60008115159050919050565b62001134816200111d565b82525050565b600060208201905062001151600083018462001129565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200118f601f836200109a565b91506200119c8262001157565b602082019050919050565b60006020820190508181036000830152620011c28162001180565b9050919050565b620011d48162000c69565b82525050565b6000602082019050620011f16000830184620011c9565b92915050565b60805160a0516149c36200125560003960008181610f9d0152818161156701526122b3015260008181610ca10152818161225b0152818161334b0152818161342c01528181613453015281816134ef015261351601526149c36000f3fe6080604052600436106102cd5760003560e01c80638ea5220f11610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b25578063f2fde38b14610b50578063f637434214610b79578063f8b45b0514610ba4576102d4565b8063dd62ed3e14610a92578063e2f4560514610acf578063e884f26014610afa576102d4565b8063c024666814610982578063c18bc195146109ab578063c876d0b9146109d4578063c8c8ebe4146109ff578063d257b34f14610a2a578063d85ba06314610a67576102d4565b80639fccce321161012e5780639fccce321461084a578063a0d82dc514610875578063a457c2d7146108a0578063a9059cbb146108dd578063b62496f51461091a578063bbc0c74214610957576102d4565b80638ea5220f1461074c5780639213691314610777578063924de9b7146107a257806395d89b41146107cb5780639a7a23d6146107f65780639c3b4fdc1461081f576102d4565b806349bd5a5e11610234578063715018a6116101ed57806375f0a874116101c757806375f0a874146106b45780637bce5a04146106df5780638a8c523c1461070a5780638da5cb5b14610721576102d4565b8063715018a614610649578063751039fc146106605780637571336a1461068b576102d4565b806349bd5a5e146105235780634a62bb651461054e5780634fbee193146105795780636a486a8e146105b65780636ddd1713146105e157806370a082311461060c576102d4565b80631f3fed8f116102865780631f3fed8f146103ff578063203e727e1461042a57806323b872dd1461045357806327c8f83514610490578063313ce567146104bb57806339509351146104e6576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631a8145bb146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bcf565b6040516102fb9190613675565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613730565b610c61565b604051610338919061378b565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906137a6565b610c7f565b604051610375919061378b565b60405180910390f35b34801561038a57600080fd5b50610393610c9f565b6040516103a09190613832565b60405180910390f35b3480156103b557600080fd5b506103be610cc3565b6040516103cb919061385c565b60405180910390f35b3480156103e057600080fd5b506103e9610ccd565b6040516103f6919061385c565b60405180910390f35b34801561040b57600080fd5b50610414610cd3565b604051610421919061385c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613877565b610cd9565b005b34801561045f57600080fd5b5061047a600480360381019061047591906138a4565b610de8565b604051610487919061378b565b60405180910390f35b34801561049c57600080fd5b506104a5610ee0565b6040516104b29190613906565b60405180910390f35b3480156104c757600080fd5b506104d0610ee6565b6040516104dd919061393d565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613730565b610eef565b60405161051a919061378b565b60405180910390f35b34801561052f57600080fd5b50610538610f9b565b6040516105459190613906565b60405180910390f35b34801561055a57600080fd5b50610563610fbf565b604051610570919061378b565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906137a6565b610fd2565b6040516105ad919061378b565b60405180910390f35b3480156105c257600080fd5b506105cb611028565b6040516105d8919061385c565b60405180910390f35b3480156105ed57600080fd5b506105f661102e565b604051610603919061378b565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906137a6565b611041565b604051610640919061385c565b60405180910390f35b34801561065557600080fd5b5061065e611089565b005b34801561066c57600080fd5b50610675611111565b604051610682919061378b565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613984565b6111b1565b005b3480156106c057600080fd5b506106c9611288565b6040516106d69190613906565b60405180910390f35b3480156106eb57600080fd5b506106f46112ae565b604051610701919061385c565b60405180910390f35b34801561071657600080fd5b5061071f6112b4565b005b34801561072d57600080fd5b50610736611368565b6040516107439190613906565b60405180910390f35b34801561075857600080fd5b50610761611392565b60405161076e9190613906565b60405180910390f35b34801561078357600080fd5b5061078c6113b8565b604051610799919061385c565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906139c4565b6113be565b005b3480156107d757600080fd5b506107e0611457565b6040516107ed9190613675565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613984565b6114e9565b005b34801561082b57600080fd5b50610834611601565b604051610841919061385c565b60405180910390f35b34801561085657600080fd5b5061085f611607565b60405161086c919061385c565b60405180910390f35b34801561088157600080fd5b5061088a61160d565b604051610897919061385c565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613730565b611613565b6040516108d4919061378b565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613730565b6116fe565b604051610911919061378b565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c91906137a6565b61171c565b60405161094e919061378b565b60405180910390f35b34801561096357600080fd5b5061096c61173c565b604051610979919061378b565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613984565b61174f565b005b3480156109b757600080fd5b506109d260048036038101906109cd9190613877565b611874565b005b3480156109e057600080fd5b506109e9611983565b6040516109f6919061378b565b60405180910390f35b348015610a0b57600080fd5b50610a14611996565b604051610a21919061385c565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613877565b61199c565b604051610a5e919061378b565b60405180910390f35b348015610a7357600080fd5b50610a7c611af1565b604051610a89919061385c565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab491906139f1565b611af7565b604051610ac6919061385c565b60405180910390f35b348015610adb57600080fd5b50610ae4611b7e565b604051610af1919061385c565b60405180910390f35b348015610b0657600080fd5b50610b0f611b84565b604051610b1c919061378b565b60405180910390f35b348015610b3157600080fd5b50610b3a611c24565b604051610b47919061385c565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b7291906137a6565b611c2a565b005b348015610b8557600080fd5b50610b8e611d21565b604051610b9b919061385c565b60405180910390f35b348015610bb057600080fd5b50610bb9611d27565b604051610bc6919061385c565b60405180910390f35b606060038054610bde90613a60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90613a60565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b6000610c75610c6e611d2d565b8484611d35565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60175481565b60165481565b610ce1611d2d565b73ffffffffffffffffffffffffffffffffffffffff16610cff611368565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613add565b60405180910390fd5b670de0b6b3a76400006103e86001610d6b610cc3565b610d759190613b2c565b610d7f9190613b9d565b610d899190613b9d565b811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613c40565b60405180910390fd5b670de0b6b3a764000081610ddf9190613b2c565b60088190555050565b6000610df5848484611efe565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e40611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613cd2565b60405180910390fd5b610ed485610ecc611d2d565b858403611d35565b60019150509392505050565b61dead81565b60006012905090565b6000610f91610efc611d2d565b848460016000610f0a611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8c9190613cf2565b611d35565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611091611d2d565b73ffffffffffffffffffffffffffffffffffffffff166110af611368565b73ffffffffffffffffffffffffffffffffffffffff1614611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90613add565b60405180910390fd5b61110f6000612b95565b565b600061111b611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611139611368565b73ffffffffffffffffffffffffffffffffffffffff161461118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613add565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111b9611d2d565b73ffffffffffffffffffffffffffffffffffffffff166111d7611368565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490613add565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6112bc611d2d565b73ffffffffffffffffffffffffffffffffffffffff166112da611368565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613add565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6113c6611d2d565b73ffffffffffffffffffffffffffffffffffffffff166113e4611368565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613add565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461146690613a60565b80601f016020809104026020016040519081016040528092919081815260200182805461149290613a60565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b5050505050905090565b6114f1611d2d565b73ffffffffffffffffffffffffffffffffffffffff1661150f611368565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613add565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613d98565b60405180910390fd5b6115fd8282612c5b565b5050565b60115481565b60185481565b60155481565b60008060016000611622611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613e2a565b60405180910390fd5b6116f36116ea611d2d565b85858403611d35565b600191505092915050565b600061171261170b611d2d565b8484611efe565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611757611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611775611368565b73ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613add565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611868919061378b565b60405180910390a25050565b61187c611d2d565b73ffffffffffffffffffffffffffffffffffffffff1661189a611368565b73ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613add565b60405180910390fd5b670de0b6b3a76400006103e86005611906610cc3565b6119109190613b2c565b61191a9190613b9d565b6119249190613b9d565b811015611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613ebc565b60405180910390fd5b670de0b6b3a76400008161197a9190613b2c565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006119a6611d2d565b73ffffffffffffffffffffffffffffffffffffffff166119c4611368565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613add565b60405180910390fd5b620186a06001611a28610cc3565b611a329190613b2c565b611a3c9190613b9d565b821015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590613f4e565b60405180910390fd5b6103e86005611a8b610cc3565b611a959190613b2c565b611a9f9190613b9d565b821115611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613fe0565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611b8e611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611bac611368565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613add565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b611c32611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611c50611368565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613add565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614072565b60405180910390fd5b611d1e81612b95565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90614196565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ef1919061385c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490614228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd3906142ba565b60405180910390fd5b60008103611ff557611ff083836000612cfc565b612b90565b600b60009054906101000a900460ff16156126b857612012611368565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120805750612050611368565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120b95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120f3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561210c5750600560149054906101000a900460ff16155b156126b757600b60019054906101000a900460ff1661220657601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121c65750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614326565b60405180910390fd5b5b600d60009054906101000a900460ff16156123ce57612223611368565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122aa57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561230257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156123cd5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906143de565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124715750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612518576008548111156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290614470565b60405180910390fd5b600a546124c783611041565b826124d29190613cf2565b1115612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a906144dc565b60405180910390fd5b6126b6565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125bb5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561260a57600854811115612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061456e565b60405180910390fd5b6126b5565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126b457600a5461266783611041565b826126729190613cf2565b11156126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa906144dc565b60405180910390fd5b5b5b5b5b5b60006126c330611041565b9050600060095482101590508080156126e85750600b60029054906101000a900460ff165b80156127015750600560149054906101000a900460ff16155b80156127575750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127ad5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128035750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612847576001600560146101000a81548160ff02191690831515021790555061282b612f7b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128fd5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290757600090505b60008115612b8057601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296a57506000601254115b15612a375761299760646129896012548861326090919063ffffffff16565b61327690919063ffffffff16565b9050601254601454826129aa9190613b2c565b6129b49190613b9d565b601760008282546129c59190613cf2565b92505081905550601254601554826129dd9190613b2c565b6129e79190613b9d565b601860008282546129f89190613cf2565b9250508190555060125460135482612a109190613b2c565b612a1a9190613b9d565b60166000828254612a2b9190613cf2565b92505081905550612b5c565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9257506000600e54115b15612b5b57612abf6064612ab1600e548861326090919063ffffffff16565b61327690919063ffffffff16565b9050600e5460105482612ad29190613b2c565b612adc9190613b9d565b60176000828254612aed9190613cf2565b92505081905550600e5460115482612b059190613b2c565b612b0f9190613b9d565b60186000828254612b209190613cf2565b92505081905550600e54600f5482612b389190613b2c565b612b429190613b9d565b60166000828254612b539190613cf2565b925050819055505b5b6000811115612b7157612b70873083612cfc565b5b8085612b7d919061458e565b94505b612b8b878787612cfc565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6290614228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd1906142ba565b60405180910390fd5b612de583838361328c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614634565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efe9190613cf2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f62919061385c565b60405180910390a3612f75848484613291565b50505050565b6000612f8630611041565b90506000601854601654601754612f9d9190613cf2565b612fa79190613cf2565b9050600080831480612fb95750600082145b15612fc65750505061325e565b6014600954612fd59190613b2c565b831115612fee576014600954612feb9190613b2c565b92505b6000600283601754866130019190613b2c565b61300b9190613b9d565b6130159190613b9d565b9050600061302c828661329690919063ffffffff16565b9050600047905061303c826132ac565b6000613051824761329690919063ffffffff16565b9050600061307c8761306e6016548561326090919063ffffffff16565b61327690919063ffffffff16565b905060006130a7886130996018548661326090919063ffffffff16565b61327690919063ffffffff16565b905060008183856130b8919061458e565b6130c2919061458e565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161312290614685565b60006040518083038185875af1925050503d806000811461315f576040519150601f19603f3d011682016040523d82523d6000602084013e613164565b606091505b50508098505060008711801561317a5750600081115b156131c55761318987826134e9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682896040516131bc9392919061469a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161320b90614685565b60006040518083038185875af1925050503d8060008114613248576040519150601f19603f3d011682016040523d82523d6000602084013e61324d565b606091505b505080985050505050505050505050505b565b6000818361326e9190613b2c565b905092915050565b600081836132849190613b9d565b905092915050565b505050565b505050565b600081836132a4919061458e565b905092915050565b6000600267ffffffffffffffff8111156132c9576132c86146d1565b5b6040519080825280602002602001820160405280156132f75781602001602082028036833780820191505090505b509050308160008151811061330f5761330e614700565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d89190614744565b816001815181106133ec576133eb614700565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613451307f000000000000000000000000000000000000000000000000000000000000000084611d35565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134b395949392919061486a565b600060405180830381600087803b1580156134cd57600080fd5b505af11580156134e1573d6000803e3d6000fd5b505050505050565b613514307f000000000000000000000000000000000000000000000000000000000000000084611d35565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161359b969594939291906148c4565b60606040518083038185885af11580156135b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135de919061493a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561361f578082015181840152602081019050613604565b60008484015250505050565b6000601f19601f8301169050919050565b6000613647826135e5565b61365181856135f0565b9350613661818560208601613601565b61366a8161362b565b840191505092915050565b6000602082019050818103600083015261368f818461363c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c78261369c565b9050919050565b6136d7816136bc565b81146136e257600080fd5b50565b6000813590506136f4816136ce565b92915050565b6000819050919050565b61370d816136fa565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b6000806040838503121561374757613746613697565b5b6000613755858286016136e5565b92505060206137668582860161371b565b9150509250929050565b60008115159050919050565b61378581613770565b82525050565b60006020820190506137a0600083018461377c565b92915050565b6000602082840312156137bc576137bb613697565b5b60006137ca848285016136e5565b91505092915050565b6000819050919050565b60006137f86137f36137ee8461369c565b6137d3565b61369c565b9050919050565b600061380a826137dd565b9050919050565b600061381c826137ff565b9050919050565b61382c81613811565b82525050565b60006020820190506138476000830184613823565b92915050565b613856816136fa565b82525050565b6000602082019050613871600083018461384d565b92915050565b60006020828403121561388d5761388c613697565b5b600061389b8482850161371b565b91505092915050565b6000806000606084860312156138bd576138bc613697565b5b60006138cb868287016136e5565b93505060206138dc868287016136e5565b92505060406138ed8682870161371b565b9150509250925092565b613900816136bc565b82525050565b600060208201905061391b60008301846138f7565b92915050565b600060ff82169050919050565b61393781613921565b82525050565b6000602082019050613952600083018461392e565b92915050565b61396181613770565b811461396c57600080fd5b50565b60008135905061397e81613958565b92915050565b6000806040838503121561399b5761399a613697565b5b60006139a9858286016136e5565b92505060206139ba8582860161396f565b9150509250929050565b6000602082840312156139da576139d9613697565b5b60006139e88482850161396f565b91505092915050565b60008060408385031215613a0857613a07613697565b5b6000613a16858286016136e5565b9250506020613a27858286016136e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a7857607f821691505b602082108103613a8b57613a8a613a31565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ac76020836135f0565b9150613ad282613a91565b602082019050919050565b60006020820190508181036000830152613af681613aba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b37826136fa565b9150613b42836136fa565b9250828202613b50816136fa565b91508282048414831517613b6757613b66613afd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ba8826136fa565b9150613bb3836136fa565b925082613bc357613bc2613b6e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613c2a602f836135f0565b9150613c3582613bce565b604082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613cbc6028836135f0565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b6000613cfd826136fa565b9150613d08836136fa565b9250828201905080821115613d2057613d1f613afd565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613d826039836135f0565b9150613d8d82613d26565b604082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e146025836135f0565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613ea66024836135f0565b9150613eb182613e4a565b604082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613f386035836135f0565b9150613f4382613edc565b604082019050919050565b60006020820190508181036000830152613f6781613f2b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613fca6034836135f0565b9150613fd582613f6e565b604082019050919050565b60006020820190508181036000830152613ff981613fbd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061405c6026836135f0565b915061406782614000565b604082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ee6024836135f0565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006141806022836135f0565b915061418b82614124565b604082019050919050565b600060208201905081810360008301526141af81614173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142126025836135f0565b915061421d826141b6565b604082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a46023836135f0565b91506142af82614248565b604082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143106016836135f0565b915061431b826142da565b602082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143c86049836135f0565b91506143d382614346565b606082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061445a6035836135f0565b9150614465826143fe565b604082019050919050565b600060208201905081810360008301526144898161444d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144c66013836135f0565b91506144d182614490565b602082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006145586036836135f0565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b6000614599826136fa565b91506145a4836136fa565b92508282039050818111156145bc576145bb613afd565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061461e6026836135f0565b9150614629826145c2565b604082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b600081905092915050565b50565b600061466f600083614654565b915061467a8261465f565b600082019050919050565b600061469082614662565b9150819050919050565b60006060820190506146af600083018661384d565b6146bc602083018561384d565b6146c9604083018461384d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061473e816136ce565b92915050565b60006020828403121561475a57614759613697565b5b60006147688482850161472f565b91505092915050565b6000819050919050565b600061479661479161478c84614771565b6137d3565b6136fa565b9050919050565b6147a68161477b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147e1816136bc565b82525050565b60006147f383836147d8565b60208301905092915050565b6000602082019050919050565b6000614817826147ac565b61482181856147b7565b935061482c836147c8565b8060005b8381101561485d57815161484488826147e7565b975061484f836147ff565b925050600181019050614830565b5085935050505092915050565b600060a08201905061487f600083018861384d565b61488c602083018761479d565b818103604083015261489e818661480c565b90506148ad60608301856138f7565b6148ba608083018461384d565b9695505050505050565b600060c0820190506148d960008301896138f7565b6148e6602083018861384d565b6148f3604083018761479d565b614900606083018661479d565b61490d60808301856138f7565b61491a60a083018461384d565b979650505050505050565b60008151905061493481613704565b92915050565b60008060006060848603121561495357614952613697565b5b600061496186828701614925565b935050602061497286828701614925565b925050604061498386828701614925565b915050925092509256fea2646970667358221220b37ce484273e3d9461878645e7341ad88ec69a0d523909c0fbc8bc323b931cae64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638ea5220f11610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b25578063f2fde38b14610b50578063f637434214610b79578063f8b45b0514610ba4576102d4565b8063dd62ed3e14610a92578063e2f4560514610acf578063e884f26014610afa576102d4565b8063c024666814610982578063c18bc195146109ab578063c876d0b9146109d4578063c8c8ebe4146109ff578063d257b34f14610a2a578063d85ba06314610a67576102d4565b80639fccce321161012e5780639fccce321461084a578063a0d82dc514610875578063a457c2d7146108a0578063a9059cbb146108dd578063b62496f51461091a578063bbc0c74214610957576102d4565b80638ea5220f1461074c5780639213691314610777578063924de9b7146107a257806395d89b41146107cb5780639a7a23d6146107f65780639c3b4fdc1461081f576102d4565b806349bd5a5e11610234578063715018a6116101ed57806375f0a874116101c757806375f0a874146106b45780637bce5a04146106df5780638a8c523c1461070a5780638da5cb5b14610721576102d4565b8063715018a614610649578063751039fc146106605780637571336a1461068b576102d4565b806349bd5a5e146105235780634a62bb651461054e5780634fbee193146105795780636a486a8e146105b65780636ddd1713146105e157806370a082311461060c576102d4565b80631f3fed8f116102865780631f3fed8f146103ff578063203e727e1461042a57806323b872dd1461045357806327c8f83514610490578063313ce567146104bb57806339509351146104e6576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631a8145bb146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bcf565b6040516102fb9190613675565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613730565b610c61565b604051610338919061378b565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906137a6565b610c7f565b604051610375919061378b565b60405180910390f35b34801561038a57600080fd5b50610393610c9f565b6040516103a09190613832565b60405180910390f35b3480156103b557600080fd5b506103be610cc3565b6040516103cb919061385c565b60405180910390f35b3480156103e057600080fd5b506103e9610ccd565b6040516103f6919061385c565b60405180910390f35b34801561040b57600080fd5b50610414610cd3565b604051610421919061385c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613877565b610cd9565b005b34801561045f57600080fd5b5061047a600480360381019061047591906138a4565b610de8565b604051610487919061378b565b60405180910390f35b34801561049c57600080fd5b506104a5610ee0565b6040516104b29190613906565b60405180910390f35b3480156104c757600080fd5b506104d0610ee6565b6040516104dd919061393d565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613730565b610eef565b60405161051a919061378b565b60405180910390f35b34801561052f57600080fd5b50610538610f9b565b6040516105459190613906565b60405180910390f35b34801561055a57600080fd5b50610563610fbf565b604051610570919061378b565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906137a6565b610fd2565b6040516105ad919061378b565b60405180910390f35b3480156105c257600080fd5b506105cb611028565b6040516105d8919061385c565b60405180910390f35b3480156105ed57600080fd5b506105f661102e565b604051610603919061378b565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906137a6565b611041565b604051610640919061385c565b60405180910390f35b34801561065557600080fd5b5061065e611089565b005b34801561066c57600080fd5b50610675611111565b604051610682919061378b565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613984565b6111b1565b005b3480156106c057600080fd5b506106c9611288565b6040516106d69190613906565b60405180910390f35b3480156106eb57600080fd5b506106f46112ae565b604051610701919061385c565b60405180910390f35b34801561071657600080fd5b5061071f6112b4565b005b34801561072d57600080fd5b50610736611368565b6040516107439190613906565b60405180910390f35b34801561075857600080fd5b50610761611392565b60405161076e9190613906565b60405180910390f35b34801561078357600080fd5b5061078c6113b8565b604051610799919061385c565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906139c4565b6113be565b005b3480156107d757600080fd5b506107e0611457565b6040516107ed9190613675565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613984565b6114e9565b005b34801561082b57600080fd5b50610834611601565b604051610841919061385c565b60405180910390f35b34801561085657600080fd5b5061085f611607565b60405161086c919061385c565b60405180910390f35b34801561088157600080fd5b5061088a61160d565b604051610897919061385c565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613730565b611613565b6040516108d4919061378b565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613730565b6116fe565b604051610911919061378b565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c91906137a6565b61171c565b60405161094e919061378b565b60405180910390f35b34801561096357600080fd5b5061096c61173c565b604051610979919061378b565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613984565b61174f565b005b3480156109b757600080fd5b506109d260048036038101906109cd9190613877565b611874565b005b3480156109e057600080fd5b506109e9611983565b6040516109f6919061378b565b60405180910390f35b348015610a0b57600080fd5b50610a14611996565b604051610a21919061385c565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613877565b61199c565b604051610a5e919061378b565b60405180910390f35b348015610a7357600080fd5b50610a7c611af1565b604051610a89919061385c565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab491906139f1565b611af7565b604051610ac6919061385c565b60405180910390f35b348015610adb57600080fd5b50610ae4611b7e565b604051610af1919061385c565b60405180910390f35b348015610b0657600080fd5b50610b0f611b84565b604051610b1c919061378b565b60405180910390f35b348015610b3157600080fd5b50610b3a611c24565b604051610b47919061385c565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b7291906137a6565b611c2a565b005b348015610b8557600080fd5b50610b8e611d21565b604051610b9b919061385c565b60405180910390f35b348015610bb057600080fd5b50610bb9611d27565b604051610bc6919061385c565b60405180910390f35b606060038054610bde90613a60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90613a60565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b5050505050905090565b6000610c75610c6e611d2d565b8484611d35565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60175481565b60165481565b610ce1611d2d565b73ffffffffffffffffffffffffffffffffffffffff16610cff611368565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613add565b60405180910390fd5b670de0b6b3a76400006103e86001610d6b610cc3565b610d759190613b2c565b610d7f9190613b9d565b610d899190613b9d565b811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613c40565b60405180910390fd5b670de0b6b3a764000081610ddf9190613b2c565b60088190555050565b6000610df5848484611efe565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e40611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613cd2565b60405180910390fd5b610ed485610ecc611d2d565b858403611d35565b60019150509392505050565b61dead81565b60006012905090565b6000610f91610efc611d2d565b848460016000610f0a611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8c9190613cf2565b611d35565b6001905092915050565b7f000000000000000000000000d4e4689cde7ca5b4faabed3a27c430667bb7339a81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611091611d2d565b73ffffffffffffffffffffffffffffffffffffffff166110af611368565b73ffffffffffffffffffffffffffffffffffffffff1614611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90613add565b60405180910390fd5b61110f6000612b95565b565b600061111b611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611139611368565b73ffffffffffffffffffffffffffffffffffffffff161461118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613add565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111b9611d2d565b73ffffffffffffffffffffffffffffffffffffffff166111d7611368565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490613add565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6112bc611d2d565b73ffffffffffffffffffffffffffffffffffffffff166112da611368565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613add565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6113c6611d2d565b73ffffffffffffffffffffffffffffffffffffffff166113e4611368565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613add565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461146690613a60565b80601f016020809104026020016040519081016040528092919081815260200182805461149290613a60565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b5050505050905090565b6114f1611d2d565b73ffffffffffffffffffffffffffffffffffffffff1661150f611368565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613add565b60405180910390fd5b7f000000000000000000000000d4e4689cde7ca5b4faabed3a27c430667bb7339a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613d98565b60405180910390fd5b6115fd8282612c5b565b5050565b60115481565b60185481565b60155481565b60008060016000611622611d2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613e2a565b60405180910390fd5b6116f36116ea611d2d565b85858403611d35565b600191505092915050565b600061171261170b611d2d565b8484611efe565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611757611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611775611368565b73ffffffffffffffffffffffffffffffffffffffff16146117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613add565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611868919061378b565b60405180910390a25050565b61187c611d2d565b73ffffffffffffffffffffffffffffffffffffffff1661189a611368565b73ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613add565b60405180910390fd5b670de0b6b3a76400006103e86005611906610cc3565b6119109190613b2c565b61191a9190613b9d565b6119249190613b9d565b811015611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613ebc565b60405180910390fd5b670de0b6b3a76400008161197a9190613b2c565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006119a6611d2d565b73ffffffffffffffffffffffffffffffffffffffff166119c4611368565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613add565b60405180910390fd5b620186a06001611a28610cc3565b611a329190613b2c565b611a3c9190613b9d565b821015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590613f4e565b60405180910390fd5b6103e86005611a8b610cc3565b611a959190613b2c565b611a9f9190613b9d565b821115611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613fe0565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611b8e611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611bac611368565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613add565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b611c32611d2d565b73ffffffffffffffffffffffffffffffffffffffff16611c50611368565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613add565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614072565b60405180910390fd5b611d1e81612b95565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90614196565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ef1919061385c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490614228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd3906142ba565b60405180910390fd5b60008103611ff557611ff083836000612cfc565b612b90565b600b60009054906101000a900460ff16156126b857612012611368565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120805750612050611368565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120b95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120f3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561210c5750600560149054906101000a900460ff16155b156126b757600b60019054906101000a900460ff1661220657601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121c65750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614326565b60405180910390fd5b5b600d60009054906101000a900460ff16156123ce57612223611368565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122aa57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561230257507f000000000000000000000000d4e4689cde7ca5b4faabed3a27c430667bb7339a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156123cd5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906143de565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124715750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612518576008548111156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290614470565b60405180910390fd5b600a546124c783611041565b826124d29190613cf2565b1115612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a906144dc565b60405180910390fd5b6126b6565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125bb5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561260a57600854811115612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061456e565b60405180910390fd5b6126b5565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126b457600a5461266783611041565b826126729190613cf2565b11156126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa906144dc565b60405180910390fd5b5b5b5b5b5b60006126c330611041565b9050600060095482101590508080156126e85750600b60029054906101000a900460ff165b80156127015750600560149054906101000a900460ff16155b80156127575750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127ad5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128035750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612847576001600560146101000a81548160ff02191690831515021790555061282b612f7b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128fd5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290757600090505b60008115612b8057601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296a57506000601254115b15612a375761299760646129896012548861326090919063ffffffff16565b61327690919063ffffffff16565b9050601254601454826129aa9190613b2c565b6129b49190613b9d565b601760008282546129c59190613cf2565b92505081905550601254601554826129dd9190613b2c565b6129e79190613b9d565b601860008282546129f89190613cf2565b9250508190555060125460135482612a109190613b2c565b612a1a9190613b9d565b60166000828254612a2b9190613cf2565b92505081905550612b5c565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9257506000600e54115b15612b5b57612abf6064612ab1600e548861326090919063ffffffff16565b61327690919063ffffffff16565b9050600e5460105482612ad29190613b2c565b612adc9190613b9d565b60176000828254612aed9190613cf2565b92505081905550600e5460115482612b059190613b2c565b612b0f9190613b9d565b60186000828254612b209190613cf2565b92505081905550600e54600f5482612b389190613b2c565b612b429190613b9d565b60166000828254612b539190613cf2565b925050819055505b5b6000811115612b7157612b70873083612cfc565b5b8085612b7d919061458e565b94505b612b8b878787612cfc565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6290614228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd1906142ba565b60405180910390fd5b612de583838361328c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614634565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efe9190613cf2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f62919061385c565b60405180910390a3612f75848484613291565b50505050565b6000612f8630611041565b90506000601854601654601754612f9d9190613cf2565b612fa79190613cf2565b9050600080831480612fb95750600082145b15612fc65750505061325e565b6014600954612fd59190613b2c565b831115612fee576014600954612feb9190613b2c565b92505b6000600283601754866130019190613b2c565b61300b9190613b9d565b6130159190613b9d565b9050600061302c828661329690919063ffffffff16565b9050600047905061303c826132ac565b6000613051824761329690919063ffffffff16565b9050600061307c8761306e6016548561326090919063ffffffff16565b61327690919063ffffffff16565b905060006130a7886130996018548661326090919063ffffffff16565b61327690919063ffffffff16565b905060008183856130b8919061458e565b6130c2919061458e565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161312290614685565b60006040518083038185875af1925050503d806000811461315f576040519150601f19603f3d011682016040523d82523d6000602084013e613164565b606091505b50508098505060008711801561317a5750600081115b156131c55761318987826134e9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682896040516131bc9392919061469a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161320b90614685565b60006040518083038185875af1925050503d8060008114613248576040519150601f19603f3d011682016040523d82523d6000602084013e61324d565b606091505b505080985050505050505050505050505b565b6000818361326e9190613b2c565b905092915050565b600081836132849190613b9d565b905092915050565b505050565b505050565b600081836132a4919061458e565b905092915050565b6000600267ffffffffffffffff8111156132c9576132c86146d1565b5b6040519080825280602002602001820160405280156132f75781602001602082028036833780820191505090505b509050308160008151811061330f5761330e614700565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d89190614744565b816001815181106133ec576133eb614700565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613451307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d35565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134b395949392919061486a565b600060405180830381600087803b1580156134cd57600080fd5b505af11580156134e1573d6000803e3d6000fd5b505050505050565b613514307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d35565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161359b969594939291906148c4565b60606040518083038185885af11580156135b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135de919061493a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561361f578082015181840152602081019050613604565b60008484015250505050565b6000601f19601f8301169050919050565b6000613647826135e5565b61365181856135f0565b9350613661818560208601613601565b61366a8161362b565b840191505092915050565b6000602082019050818103600083015261368f818461363c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c78261369c565b9050919050565b6136d7816136bc565b81146136e257600080fd5b50565b6000813590506136f4816136ce565b92915050565b6000819050919050565b61370d816136fa565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b6000806040838503121561374757613746613697565b5b6000613755858286016136e5565b92505060206137668582860161371b565b9150509250929050565b60008115159050919050565b61378581613770565b82525050565b60006020820190506137a0600083018461377c565b92915050565b6000602082840312156137bc576137bb613697565b5b60006137ca848285016136e5565b91505092915050565b6000819050919050565b60006137f86137f36137ee8461369c565b6137d3565b61369c565b9050919050565b600061380a826137dd565b9050919050565b600061381c826137ff565b9050919050565b61382c81613811565b82525050565b60006020820190506138476000830184613823565b92915050565b613856816136fa565b82525050565b6000602082019050613871600083018461384d565b92915050565b60006020828403121561388d5761388c613697565b5b600061389b8482850161371b565b91505092915050565b6000806000606084860312156138bd576138bc613697565b5b60006138cb868287016136e5565b93505060206138dc868287016136e5565b92505060406138ed8682870161371b565b9150509250925092565b613900816136bc565b82525050565b600060208201905061391b60008301846138f7565b92915050565b600060ff82169050919050565b61393781613921565b82525050565b6000602082019050613952600083018461392e565b92915050565b61396181613770565b811461396c57600080fd5b50565b60008135905061397e81613958565b92915050565b6000806040838503121561399b5761399a613697565b5b60006139a9858286016136e5565b92505060206139ba8582860161396f565b9150509250929050565b6000602082840312156139da576139d9613697565b5b60006139e88482850161396f565b91505092915050565b60008060408385031215613a0857613a07613697565b5b6000613a16858286016136e5565b9250506020613a27858286016136e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a7857607f821691505b602082108103613a8b57613a8a613a31565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ac76020836135f0565b9150613ad282613a91565b602082019050919050565b60006020820190508181036000830152613af681613aba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b37826136fa565b9150613b42836136fa565b9250828202613b50816136fa565b91508282048414831517613b6757613b66613afd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ba8826136fa565b9150613bb3836136fa565b925082613bc357613bc2613b6e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613c2a602f836135f0565b9150613c3582613bce565b604082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613cbc6028836135f0565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b6000613cfd826136fa565b9150613d08836136fa565b9250828201905080821115613d2057613d1f613afd565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613d826039836135f0565b9150613d8d82613d26565b604082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e146025836135f0565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613ea66024836135f0565b9150613eb182613e4a565b604082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613f386035836135f0565b9150613f4382613edc565b604082019050919050565b60006020820190508181036000830152613f6781613f2b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613fca6034836135f0565b9150613fd582613f6e565b604082019050919050565b60006020820190508181036000830152613ff981613fbd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061405c6026836135f0565b915061406782614000565b604082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ee6024836135f0565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006141806022836135f0565b915061418b82614124565b604082019050919050565b600060208201905081810360008301526141af81614173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142126025836135f0565b915061421d826141b6565b604082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a46023836135f0565b91506142af82614248565b604082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143106016836135f0565b915061431b826142da565b602082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143c86049836135f0565b91506143d382614346565b606082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061445a6035836135f0565b9150614465826143fe565b604082019050919050565b600060208201905081810360008301526144898161444d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144c66013836135f0565b91506144d182614490565b602082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006145586036836135f0565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b6000614599826136fa565b91506145a4836136fa565b92508282039050818111156145bc576145bb613afd565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061461e6026836135f0565b9150614629826145c2565b604082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b600081905092915050565b50565b600061466f600083614654565b915061467a8261465f565b600082019050919050565b600061469082614662565b9150819050919050565b60006060820190506146af600083018661384d565b6146bc602083018561384d565b6146c9604083018461384d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061473e816136ce565b92915050565b60006020828403121561475a57614759613697565b5b60006147688482850161472f565b91505092915050565b6000819050919050565b600061479661479161478c84614771565b6137d3565b6136fa565b9050919050565b6147a68161477b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147e1816136bc565b82525050565b60006147f383836147d8565b60208301905092915050565b6000602082019050919050565b6000614817826147ac565b61482181856147b7565b935061482c836147c8565b8060005b8381101561485d57815161484488826147e7565b975061484f836147ff565b925050600181019050614830565b5085935050505092915050565b600060a08201905061487f600083018861384d565b61488c602083018761479d565b818103604083015261489e818661480c565b90506148ad60608301856138f7565b6148ba608083018461384d565b9695505050505050565b600060c0820190506148d960008301896138f7565b6148e6602083018861384d565b6148f3604083018761479d565b614900606083018661479d565b61490d60808301856138f7565b61491a60a083018461384d565b979650505050505050565b60008151905061493481613704565b92915050565b60008060006060848603121561495357614952613697565b5b600061496186828701614925565b935050602061497286828701614925565b925050604061498386828701614925565b915050925092509256fea2646970667358221220b37ce484273e3d9461878645e7341ad88ec69a0d523909c0fbc8bc323b931cae64736f6c63430008110033

Deployed Bytecode Sourcemap

29628:14827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30969:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29704:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30753:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30713;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35207:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29807:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29762:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30084:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36824:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30164:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2886:103;;;;;;;;;;;;;:::i;:::-;;34316:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35755:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29899:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30461;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34152:112;;;;;;;;;;;;;:::i;:::-;;2578:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29936:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30603:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36018:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7405:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36316:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30535:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30793:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30679:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31190:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30124:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36126:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35490:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30382:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29969:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34702:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30430:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30011:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34498:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30498:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2997:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30641:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30051:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7186:100;7240:13;7273:5;7266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186:100;:::o;8722:169::-;8805:4;8822:39;8831:12;:10;:12::i;:::-;8845:7;8854:6;8822:8;:39::i;:::-;8879:4;8872:11;;8722:169;;;;:::o;30969:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29704:51::-;;;:::o;7675:108::-;7736:7;7763:12;;7756:19;;7675:108;:::o;30753:33::-;;;;:::o;30713:::-;;;;:::o;35207:275::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35344:4:::1;35336;35331:1;35315:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35314:26;;;;:::i;:::-;35313:35;;;;:::i;:::-;35303:6;:45;;35281:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35467:6;35457;:17;;;;:::i;:::-;35434:20;:40;;;;35207:275:::0;:::o;9373:492::-;9513:4;9530:36;9540:6;9548:9;9559:6;9530:9;:36::i;:::-;9579:24;9606:11;:19;9618:6;9606:19;;;;;;;;;;;;;;;:33;9626:12;:10;:12::i;:::-;9606:33;;;;;;;;;;;;;;;;9579:60;;9678:6;9658:16;:26;;9650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9765:57;9774:6;9782:12;:10;:12::i;:::-;9815:6;9796:16;:25;9765:8;:57::i;:::-;9853:4;9846:11;;;9373:492;;;;;:::o;29807:53::-;29853:6;29807:53;:::o;7517:93::-;7575:5;7600:2;7593:9;;7517:93;:::o;10274:215::-;10362:4;10379:80;10388:12;:10;:12::i;:::-;10402:7;10448:10;10411:11;:25;10423:12;:10;:12::i;:::-;10411:25;;;;;;;;;;;;;;;:34;10437:7;10411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10379:8;:80::i;:::-;10477:4;10470:11;;10274:215;;;;:::o;29762:38::-;;;:::o;30084:33::-;;;;;;;;;;;;;:::o;36824:126::-;36890:4;36914:19;:28;36934:7;36914:28;;;;;;;;;;;;;;;;;;;;;;;;;36907:35;;36824:126;;;:::o;30568:28::-;;;;:::o;30164:31::-;;;;;;;;;;;;;:::o;7846:127::-;7920:7;7947:9;:18;7957:7;7947:18;;;;;;;;;;;;;;;;7940:25;;7846:127;;;:::o;2886:103::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2951:30:::1;2978:1;2951:18;:30::i;:::-;2886:103::o:0;34316:121::-;34368:4;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34402:5:::1;34385:14;;:22;;;;;;;;;;;;;;;;;;34425:4;34418:11;;34316:121:::0;:::o;35755:167::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35910:4:::1;35868:31;:39;35900:6;35868:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35755:167:::0;;:::o;29899:30::-;;;;;;;;;;;;;:::o;30461:::-;;;;:::o;34152:112::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34223:4:::1;34207:13;;:20;;;;;;;;;;;;;;;;;;34252:4;34238:11;;:18;;;;;;;;;;;;;;;;;;34152:112::o:0;2578:87::-;2624:7;2651:6;;;;;;;;;;;2644:13;;2578:87;:::o;29936:24::-;;;;;;;;;;;;;:::o;30603:31::-;;;;:::o;36018:100::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36103:7:::1;36089:11;;:21;;;;;;;;;;;;;;;;;;36018:100:::0;:::o;7405:104::-;7461:13;7494:7;7487:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7405:104;:::o;36316:304::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36460:13:::1;36452:21;;:4;:21;;::::0;36430:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36571:41;36600:4;36606:5;36571:28;:41::i;:::-;36316:304:::0;;:::o;30535:24::-;;;;:::o;30793:27::-;;;;:::o;30679:25::-;;;;:::o;10992:413::-;11085:4;11102:24;11129:11;:25;11141:12;:10;:12::i;:::-;11129:25;;;;;;;;;;;;;;;:34;11155:7;11129:34;;;;;;;;;;;;;;;;11102:61;;11202:15;11182:16;:35;;11174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11295:67;11304:12;:10;:12::i;:::-;11318:7;11346:15;11327:16;:34;11295:8;:67::i;:::-;11393:4;11386:11;;;10992:413;;;;:::o;8186:175::-;8272:4;8289:42;8299:12;:10;:12::i;:::-;8313:9;8324:6;8289:9;:42::i;:::-;8349:4;8342:11;;8186:175;;;;:::o;31190:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30124:33::-;;;;;;;;;;;;;:::o;36126:182::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36242:8:::1;36211:19;:28;36231:7;36211:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36282:7;36266:34;;;36291:8;36266:34;;;;;;:::i;:::-;;;;;;;;36126:182:::0;;:::o;35490:256::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35630:4:::1;35622;35617:1;35601:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35600:26;;;;:::i;:::-;35599:35;;;;:::i;:::-;35589:6;:45;;35567:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35731:6;35721;:17;;;;:::i;:::-;35709:9;:29;;;;35490:256:::0;:::o;30382:39::-;;;;;;;;;;;;;:::o;29969:35::-;;;;:::o;34702:497::-;34810:4;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34889:6:::1;34884:1;34868:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34867:28;;;;:::i;:::-;34854:9;:41;;34832:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;35044:4;35039:1;35023:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35022:26;;;;:::i;:::-;35009:9;:39;;34987:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;35160:9;35139:18;:30;;;;35187:4;35180:11;;34702:497:::0;;;:::o;30430:27::-;;;;:::o;8424:151::-;8513:7;8540:11;:18;8552:5;8540:18;;;;;;;;;;;;;;;:27;8559:7;8540:27;;;;;;;;;;;;;;;;8533:34;;8424:151;;;;:::o;30011:33::-;;;;:::o;34498:134::-;34558:4;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34598:4:::1;34575:20;;:27;;;;;;;;;;;;;;;;;;34620:4;34613:11;;34498:134:::0;:::o;30498:30::-;;;;:::o;2997:201::-;2809:12;:10;:12::i;:::-;2798:23;;:7;:5;:7::i;:::-;:23;;;2790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3106:1:::1;3086:22;;:8;:22;;::::0;3078:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3162:28;3181:8;3162:18;:28::i;:::-;2997:201:::0;:::o;30641:31::-;;;;:::o;30051:24::-;;;;:::o;1250:98::-;1303:7;1330:10;1323:17;;1250:98;:::o;14676:380::-;14829:1;14812:19;;:5;:19;;;14804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14910:1;14891:21;;:7;:21;;;14883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14994:6;14964:11;:18;14976:5;14964:18;;;;;;;;;;;;;;;:27;14983:7;14964:27;;;;;;;;;;;;;;;:36;;;;15032:7;15016:32;;15025:5;15016:32;;;15041:6;15016:32;;;;;;:::i;:::-;;;;;;;;14676:380;;;:::o;36958:4717::-;37106:1;37090:18;;:4;:18;;;37082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37183:1;37169:16;;:2;:16;;;37161:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37252:1;37242:6;:11;37238:93;;37270:28;37286:4;37292:2;37296:1;37270:15;:28::i;:::-;37313:7;;37238:93;37347:14;;;;;;;;;;;37343:2487;;;37408:7;:5;:7::i;:::-;37400:15;;:4;:15;;;;:49;;;;;37442:7;:5;:7::i;:::-;37436:13;;:2;:13;;;;37400:49;:86;;;;;37484:1;37470:16;;:2;:16;;;;37400:86;:128;;;;;37521:6;37507:21;;:2;:21;;;;37400:128;:158;;;;;37550:8;;;;;;;;;;;37549:9;37400:158;37378:2441;;;37598:13;;;;;;;;;;;37593:223;;37670:19;:25;37690:4;37670:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37699:19;:23;37719:2;37699:23;;;;;;;;;;;;;;;;;;;;;;;;;37670:52;37636:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37593:223;37972:20;;;;;;;;;;;37968:641;;;38053:7;:5;:7::i;:::-;38047:13;;:2;:13;;;;:72;;;;;38103:15;38089:30;;:2;:30;;;;38047:72;:129;;;;;38162:13;38148:28;;:2;:28;;;;38047:129;38017:573;;;38340:12;38265:28;:39;38294:9;38265:39;;;;;;;;;;;;;;;;:87;38227:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38554:12;38512:28;:39;38541:9;38512:39;;;;;;;;;;;;;;;:54;;;;38017:573;37968:641;38683:25;:31;38709:4;38683:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38740:31;:35;38772:2;38740:35;;;;;;;;;;;;;;;;;;;;;;;;;38739:36;38683:92;38657:1147;;;38862:20;;38852:6;:30;;38818:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39070:9;;39053:13;39063:2;39053:9;:13::i;:::-;39044:6;:22;;;;:::i;:::-;:35;;39010:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38657:1147;;;39248:25;:29;39274:2;39248:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39303:31;:37;39335:4;39303:37;;;;;;;;;;;;;;;;;;;;;;;;;39302:38;39248:92;39222:582;;;39427:20;;39417:6;:30;;39383:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39222:582;;;39584:31;:35;39616:2;39584:35;;;;;;;;;;;;;;;;;;;;;;;;;39579:225;;39704:9;;39687:13;39697:2;39687:9;:13::i;:::-;39678:6;:22;;;;:::i;:::-;:35;;39644:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39579:225;39222:582;38657:1147;37378:2441;37343:2487;39842:28;39873:24;39891:4;39873:9;:24::i;:::-;39842:55;;39910:12;39949:18;;39925:20;:42;;39910:57;;39998:7;:35;;;;;40022:11;;;;;;;;;;;39998:35;:61;;;;;40051:8;;;;;;;;;;;40050:9;39998:61;:110;;;;;40077:25;:31;40103:4;40077:31;;;;;;;;;;;;;;;;;;;;;;;;;40076:32;39998:110;:153;;;;;40126:19;:25;40146:4;40126:25;;;;;;;;;;;;;;;;;;;;;;;;;40125:26;39998:153;:194;;;;;40169:19;:23;40189:2;40169:23;;;;;;;;;;;;;;;;;;;;;;;;;40168:24;39998:194;39980:326;;;40230:4;40219:8;;:15;;;;;;;;;;;;;;;;;;40251:10;:8;:10::i;:::-;40289:5;40278:8;;:16;;;;;;;;;;;;;;;;;;39980:326;40318:12;40334:8;;;;;;;;;;;40333:9;40318:24;;40444:19;:25;40464:4;40444:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40473:19;:23;40493:2;40473:23;;;;;;;;;;;;;;;;;;;;;;;;;40444:52;40440:100;;;40523:5;40513:15;;40440:100;40552:12;40657:7;40653:969;;;40709:25;:29;40735:2;40709:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40758:1;40742:13;;:17;40709:50;40705:768;;;40787:34;40817:3;40787:25;40798:13;;40787:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40780:41;;40890:13;;40870:16;;40863:4;:23;;;;:::i;:::-;40862:41;;;;:::i;:::-;40840:18;;:63;;;;;;;:::i;:::-;;;;;;;;40960:13;;40946:10;;40939:4;:17;;;;:::i;:::-;40938:35;;;;:::i;:::-;40922:12;;:51;;;;;;;:::i;:::-;;;;;;;;41042:13;;41022:16;;41015:4;:23;;;;:::i;:::-;41014:41;;;;:::i;:::-;40992:18;;:63;;;;;;;:::i;:::-;;;;;;;;40705:768;;;41117:25;:31;41143:4;41117:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41167:1;41152:12;;:16;41117:51;41113:360;;;41196:33;41225:3;41196:24;41207:12;;41196:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41189:40;;41297:12;;41278:15;;41271:4;:22;;;;:::i;:::-;41270:39;;;;:::i;:::-;41248:18;;:61;;;;;;;:::i;:::-;;;;;;;;41365:12;;41352:9;;41345:4;:16;;;;:::i;:::-;41344:33;;;;:::i;:::-;41328:12;;:49;;;;;;;:::i;:::-;;;;;;;;41445:12;;41426:15;;41419:4;:22;;;;:::i;:::-;41418:39;;;;:::i;:::-;41396:18;;:61;;;;;;;:::i;:::-;;;;;;;;41113:360;40705:768;41500:1;41493:4;:8;41489:91;;;41522:42;41538:4;41552;41559;41522:15;:42::i;:::-;41489:91;41606:4;41596:14;;;;;:::i;:::-;;;40653:969;41634:33;41650:4;41656:2;41660:6;41634:15;:33::i;:::-;37071:4604;;;;36958:4717;;;;:::o;3206:191::-;3280:16;3299:6;;;;;;;;;;;3280:25;;3325:8;3316:6;;:17;;;;;;;;;;;;;;;;;;3380:8;3349:40;;3370:8;3349:40;;;;;;;;;;;;3269:128;3206:191;:::o;36628:188::-;36745:5;36711:25;:31;36737:4;36711:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36802:5;36768:40;;36796:4;36768:40;;;;;;;;;;;;36628:188;;:::o;11895:733::-;12053:1;12035:20;;:6;:20;;;12027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12137:1;12116:23;;:9;:23;;;12108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12192:47;12213:6;12221:9;12232:6;12192:20;:47::i;:::-;12252:21;12276:9;:17;12286:6;12276:17;;;;;;;;;;;;;;;;12252:41;;12329:6;12312:13;:23;;12304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12450:6;12434:13;:22;12414:9;:17;12424:6;12414:17;;;;;;;;;;;;;;;:42;;;;12502:6;12478:9;:20;12488:9;12478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12543:9;12526:35;;12535:6;12526:35;;;12554:6;12526:35;;;;;;:::i;:::-;;;;;;;;12574:46;12594:6;12602:9;12613:6;12574:19;:46::i;:::-;12016:612;11895:733;;;:::o;42803:1647::-;42842:23;42868:24;42886:4;42868:9;:24::i;:::-;42842:50;;42903:25;42973:12;;42952:18;;42931;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42903:82;;42996:12;43044:1;43025:15;:20;:46;;;;43070:1;43049:17;:22;43025:46;43021:85;;;43088:7;;;;;43021:85;43161:2;43140:18;;:23;;;;:::i;:::-;43122:15;:41;43118:115;;;43219:2;43198:18;;:23;;;;:::i;:::-;43180:41;;43118:115;43294:23;43381:1;43361:17;43339:18;;43321:15;:36;;;;:::i;:::-;43320:58;;;;:::i;:::-;:62;;;;:::i;:::-;43294:88;;43393:26;43422:36;43442:15;43422;:19;;:36;;;;:::i;:::-;43393:65;;43471:25;43499:21;43471:49;;43533:36;43550:18;43533:16;:36::i;:::-;43582:18;43603:44;43629:17;43603:21;:25;;:44;;;;:::i;:::-;43582:65;;43660:23;43686:57;43725:17;43686:34;43701:18;;43686:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43660:83;;43754:17;43774:51;43807:17;43774:28;43789:12;;43774:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43754:71;;43838:23;43895:9;43877:15;43864:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43838:66;;43932:1;43911:18;:22;;;;43965:1;43944:18;:22;;;;43992:1;43977:12;:16;;;;44028:9;;;;;;;;;;;44020:23;;44051:9;44020:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44006:59;;;;;44100:1;44082:15;:19;:42;;;;;44123:1;44105:15;:19;44082:42;44078:275;;;44141:46;44154:15;44171;44141:12;:46::i;:::-;44207:134;44240:18;44277:15;44311;44207:134;;;;;;;;:::i;:::-;;;;;;;;44078:275;44387:15;;;;;;;;;;;44379:29;;44416:21;44379:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44365:77;;;;;42831:1619;;;;;;;;;;42803:1647;:::o;20130:98::-;20188:7;20219:1;20215;:5;;;;:::i;:::-;20208:12;;20130:98;;;;:::o;20529:::-;20587:7;20618:1;20614;:5;;;;:::i;:::-;20607:12;;20529:98;;;;:::o;15656:125::-;;;;:::o;16385:124::-;;;;:::o;19773:98::-;19831:7;19862:1;19858;:5;;;;:::i;:::-;19851:12;;19773:98;;;;:::o;41683:589::-;41809:21;41847:1;41833:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41809:40;;41878:4;41860;41865:1;41860:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41904:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41894:4;41899:1;41894:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41939:62;41956:4;41971:15;41989:11;41939:8;:62::i;:::-;42040:15;:66;;;42121:11;42147:1;42191:4;42218;42238:15;42040:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41738:534;41683:589;:::o;42280:515::-;42428:62;42445:4;42460:15;42478:11;42428:8;:62::i;:::-;42533:15;:31;;;42572:9;42605:4;42625:11;42651:1;42694;42737:9;;;;;;;;;;;42761:15;42533:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42280:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:323::-;7644:6;7693:2;7681:9;7672:7;7668:23;7664:32;7661:119;;;7699:79;;:::i;:::-;7661:119;7819:1;7844:50;7886:7;7877:6;7866:9;7862:22;7844:50;:::i;:::-;7834:60;;7790:114;7588:323;;;;:::o;7917:474::-;7985:6;7993;8042:2;8030:9;8021:7;8017:23;8013:32;8010:119;;;8048:79;;:::i;:::-;8010:119;8168:1;8193:53;8238:7;8229:6;8218:9;8214:22;8193:53;:::i;:::-;8183:63;;8139:117;8295:2;8321:53;8366:7;8357:6;8346:9;8342:22;8321:53;:::i;:::-;8311:63;;8266:118;7917:474;;;;;:::o;8397:180::-;8445:77;8442:1;8435:88;8542:4;8539:1;8532:15;8566:4;8563:1;8556:15;8583:320;8627:6;8664:1;8658:4;8654:12;8644:22;;8711:1;8705:4;8701:12;8732:18;8722:81;;8788:4;8780:6;8776:17;8766:27;;8722:81;8850:2;8842:6;8839:14;8819:18;8816:38;8813:84;;8869:18;;:::i;:::-;8813:84;8634:269;8583:320;;;:::o;8909:182::-;9049:34;9045:1;9037:6;9033:14;9026:58;8909:182;:::o;9097:366::-;9239:3;9260:67;9324:2;9319:3;9260:67;:::i;:::-;9253:74;;9336:93;9425:3;9336:93;:::i;:::-;9454:2;9449:3;9445:12;9438:19;;9097:366;;;:::o;9469:419::-;9635:4;9673:2;9662:9;9658:18;9650:26;;9722:9;9716:4;9712:20;9708:1;9697:9;9693:17;9686:47;9750:131;9876:4;9750:131;:::i;:::-;9742:139;;9469:419;;;:::o;9894:180::-;9942:77;9939:1;9932:88;10039:4;10036:1;10029:15;10063:4;10060:1;10053:15;10080:410;10120:7;10143:20;10161:1;10143:20;:::i;:::-;10138:25;;10177:20;10195:1;10177:20;:::i;:::-;10172:25;;10232:1;10229;10225:9;10254:30;10272:11;10254:30;:::i;:::-;10243:41;;10433:1;10424:7;10420:15;10417:1;10414:22;10394:1;10387:9;10367:83;10344:139;;10463:18;;:::i;:::-;10344:139;10128:362;10080:410;;;;:::o;10496:180::-;10544:77;10541:1;10534:88;10641:4;10638:1;10631:15;10665:4;10662:1;10655:15;10682:185;10722:1;10739:20;10757:1;10739:20;:::i;:::-;10734:25;;10773:20;10791:1;10773:20;:::i;:::-;10768:25;;10812:1;10802:35;;10817:18;;:::i;:::-;10802:35;10859:1;10856;10852:9;10847:14;;10682:185;;;;:::o;10873:234::-;11013:34;11009:1;11001:6;10997:14;10990:58;11082:17;11077:2;11069:6;11065:15;11058:42;10873:234;:::o;11113:366::-;11255:3;11276:67;11340:2;11335:3;11276:67;:::i;:::-;11269:74;;11352:93;11441:3;11352:93;:::i;:::-;11470:2;11465:3;11461:12;11454:19;;11113:366;;;:::o;11485:419::-;11651:4;11689:2;11678:9;11674:18;11666:26;;11738:9;11732:4;11728:20;11724:1;11713:9;11709:17;11702:47;11766:131;11892:4;11766:131;:::i;:::-;11758:139;;11485:419;;;:::o;11910:227::-;12050:34;12046:1;12038:6;12034:14;12027:58;12119:10;12114:2;12106:6;12102:15;12095:35;11910:227;:::o;12143:366::-;12285:3;12306:67;12370:2;12365:3;12306:67;:::i;:::-;12299:74;;12382:93;12471:3;12382:93;:::i;:::-;12500:2;12495:3;12491:12;12484:19;;12143:366;;;:::o;12515:419::-;12681:4;12719:2;12708:9;12704:18;12696:26;;12768:9;12762:4;12758:20;12754:1;12743:9;12739:17;12732:47;12796:131;12922:4;12796:131;:::i;:::-;12788:139;;12515:419;;;:::o;12940:191::-;12980:3;12999:20;13017:1;12999:20;:::i;:::-;12994:25;;13033:20;13051:1;13033:20;:::i;:::-;13028:25;;13076:1;13073;13069:9;13062:16;;13097:3;13094:1;13091:10;13088:36;;;13104:18;;:::i;:::-;13088:36;12940:191;;;;:::o;13137:244::-;13277:34;13273:1;13265:6;13261:14;13254:58;13346:27;13341:2;13333:6;13329:15;13322:52;13137:244;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:224::-;14324:34;14320:1;14312:6;14308:14;14301:58;14393:7;14388:2;14380:6;14376:15;14369:32;14184:224;:::o;14414:366::-;14556:3;14577:67;14641:2;14636:3;14577:67;:::i;:::-;14570:74;;14653:93;14742:3;14653:93;:::i;:::-;14771:2;14766:3;14762:12;14755:19;;14414:366;;;:::o;14786:419::-;14952:4;14990:2;14979:9;14975:18;14967:26;;15039:9;15033:4;15029:20;15025:1;15014:9;15010:17;15003:47;15067:131;15193:4;15067:131;:::i;:::-;15059:139;;14786:419;;;:::o;15211:223::-;15351:34;15347:1;15339:6;15335:14;15328:58;15420:6;15415:2;15407:6;15403:15;15396:31;15211:223;:::o;15440:366::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15440:366;;;:::o;15812:419::-;15978:4;16016:2;16005:9;16001:18;15993:26;;16065:9;16059:4;16055:20;16051:1;16040:9;16036:17;16029:47;16093:131;16219:4;16093:131;:::i;:::-;16085:139;;15812:419;;;:::o;16237:240::-;16377:34;16373:1;16365:6;16361:14;16354:58;16446:23;16441:2;16433:6;16429:15;16422:48;16237:240;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:239::-;17420:34;17416:1;17408:6;17404:14;17397:58;17489:22;17484:2;17476:6;17472:15;17465:47;17280:239;:::o;17525:366::-;17667:3;17688:67;17752:2;17747:3;17688:67;:::i;:::-;17681:74;;17764:93;17853:3;17764:93;:::i;:::-;17882:2;17877:3;17873:12;17866:19;;17525:366;;;:::o;17897:419::-;18063:4;18101:2;18090:9;18086:18;18078:26;;18150:9;18144:4;18140:20;18136:1;18125:9;18121:17;18114:47;18178:131;18304:4;18178:131;:::i;:::-;18170:139;;17897:419;;;:::o;18322:225::-;18462:34;18458:1;18450:6;18446:14;18439:58;18531:8;18526:2;18518:6;18514:15;18507:33;18322:225;:::o;18553:366::-;18695:3;18716:67;18780:2;18775:3;18716:67;:::i;:::-;18709:74;;18792:93;18881:3;18792:93;:::i;:::-;18910:2;18905:3;18901:12;18894:19;;18553:366;;;:::o;18925:419::-;19091:4;19129:2;19118:9;19114:18;19106:26;;19178:9;19172:4;19168:20;19164:1;19153:9;19149:17;19142:47;19206:131;19332:4;19206:131;:::i;:::-;19198:139;;18925:419;;;:::o;19350:223::-;19490:34;19486:1;19478:6;19474:14;19467:58;19559:6;19554:2;19546:6;19542:15;19535:31;19350:223;:::o;19579:366::-;19721:3;19742:67;19806:2;19801:3;19742:67;:::i;:::-;19735:74;;19818:93;19907:3;19818:93;:::i;:::-;19936:2;19931:3;19927:12;19920:19;;19579:366;;;:::o;19951:419::-;20117:4;20155:2;20144:9;20140:18;20132:26;;20204:9;20198:4;20194:20;20190:1;20179:9;20175:17;20168:47;20232:131;20358:4;20232:131;:::i;:::-;20224:139;;19951:419;;;:::o;20376:221::-;20516:34;20512:1;20504:6;20500:14;20493:58;20585:4;20580:2;20572:6;20568:15;20561:29;20376:221;:::o;20603:366::-;20745:3;20766:67;20830:2;20825:3;20766:67;:::i;:::-;20759:74;;20842:93;20931:3;20842:93;:::i;:::-;20960:2;20955:3;20951:12;20944:19;;20603:366;;;:::o;20975:419::-;21141:4;21179:2;21168:9;21164:18;21156:26;;21228:9;21222:4;21218:20;21214:1;21203:9;21199:17;21192:47;21256:131;21382:4;21256:131;:::i;:::-;21248:139;;20975:419;;;:::o;21400:224::-;21540:34;21536:1;21528:6;21524:14;21517:58;21609:7;21604:2;21596:6;21592:15;21585:32;21400:224;:::o;21630:366::-;21772:3;21793:67;21857:2;21852:3;21793:67;:::i;:::-;21786:74;;21869:93;21958:3;21869:93;:::i;:::-;21987:2;21982:3;21978:12;21971:19;;21630:366;;;:::o;22002:419::-;22168:4;22206:2;22195:9;22191:18;22183:26;;22255:9;22249:4;22245:20;22241:1;22230:9;22226:17;22219:47;22283:131;22409:4;22283:131;:::i;:::-;22275:139;;22002:419;;;:::o;22427:222::-;22567:34;22563:1;22555:6;22551:14;22544:58;22636:5;22631:2;22623:6;22619:15;22612:30;22427:222;:::o;22655:366::-;22797:3;22818:67;22882:2;22877:3;22818:67;:::i;:::-;22811:74;;22894:93;22983:3;22894:93;:::i;:::-;23012:2;23007:3;23003:12;22996:19;;22655:366;;;:::o;23027:419::-;23193:4;23231:2;23220:9;23216:18;23208:26;;23280:9;23274:4;23270:20;23266:1;23255:9;23251:17;23244:47;23308:131;23434:4;23308:131;:::i;:::-;23300:139;;23027:419;;;:::o;23452:172::-;23592:24;23588:1;23580:6;23576:14;23569:48;23452:172;:::o;23630:366::-;23772:3;23793:67;23857:2;23852:3;23793:67;:::i;:::-;23786:74;;23869:93;23958:3;23869:93;:::i;:::-;23987:2;23982:3;23978:12;23971:19;;23630:366;;;:::o;24002:419::-;24168:4;24206:2;24195:9;24191:18;24183:26;;24255:9;24249:4;24245:20;24241:1;24230:9;24226:17;24219:47;24283:131;24409:4;24283:131;:::i;:::-;24275:139;;24002:419;;;:::o;24427:297::-;24567:34;24563:1;24555:6;24551:14;24544:58;24636:34;24631:2;24623:6;24619:15;24612:59;24705:11;24700:2;24692:6;24688:15;24681:36;24427:297;:::o;24730:366::-;24872:3;24893:67;24957:2;24952:3;24893:67;:::i;:::-;24886:74;;24969:93;25058:3;24969:93;:::i;:::-;25087:2;25082:3;25078:12;25071:19;;24730:366;;;:::o;25102:419::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:240::-;25667:34;25663:1;25655:6;25651:14;25644:58;25736:23;25731:2;25723:6;25719:15;25712:48;25527:240;:::o;25773:366::-;25915:3;25936:67;26000:2;25995:3;25936:67;:::i;:::-;25929:74;;26012:93;26101:3;26012:93;:::i;:::-;26130:2;26125:3;26121:12;26114:19;;25773:366;;;:::o;26145:419::-;26311:4;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26145:419;;;:::o;26570:169::-;26710:21;26706:1;26698:6;26694:14;26687:45;26570:169;:::o;26745:366::-;26887:3;26908:67;26972:2;26967:3;26908:67;:::i;:::-;26901:74;;26984:93;27073:3;26984:93;:::i;:::-;27102:2;27097:3;27093:12;27086:19;;26745:366;;;:::o;27117:419::-;27283:4;27321:2;27310:9;27306:18;27298:26;;27370:9;27364:4;27360:20;27356:1;27345:9;27341:17;27334:47;27398:131;27524:4;27398:131;:::i;:::-;27390:139;;27117:419;;;:::o;27542:241::-;27682:34;27678:1;27670:6;27666:14;27659:58;27751:24;27746:2;27738:6;27734:15;27727:49;27542:241;:::o;27789:366::-;27931:3;27952:67;28016:2;28011:3;27952:67;:::i;:::-;27945:74;;28028:93;28117:3;28028:93;:::i;:::-;28146:2;28141:3;28137:12;28130:19;;27789:366;;;:::o;28161:419::-;28327:4;28365:2;28354:9;28350:18;28342:26;;28414:9;28408:4;28404:20;28400:1;28389:9;28385:17;28378:47;28442:131;28568:4;28442:131;:::i;:::-;28434:139;;28161:419;;;:::o;28586:194::-;28626:4;28646:20;28664:1;28646:20;:::i;:::-;28641:25;;28680:20;28698:1;28680:20;:::i;:::-;28675:25;;28724:1;28721;28717:9;28709:17;;28748:1;28742:4;28739:11;28736:37;;;28753:18;;:::i;:::-;28736:37;28586:194;;;;:::o;28786:225::-;28926:34;28922:1;28914:6;28910:14;28903:58;28995:8;28990:2;28982:6;28978:15;28971:33;28786:225;:::o;29017:366::-;29159:3;29180:67;29244:2;29239:3;29180:67;:::i;:::-;29173:74;;29256:93;29345:3;29256:93;:::i;:::-;29374:2;29369:3;29365:12;29358:19;;29017:366;;;:::o;29389:419::-;29555:4;29593:2;29582:9;29578:18;29570:26;;29642:9;29636:4;29632:20;29628:1;29617:9;29613:17;29606:47;29670:131;29796:4;29670:131;:::i;:::-;29662:139;;29389:419;;;:::o;29814:147::-;29915:11;29952:3;29937:18;;29814:147;;;;:::o;29967:114::-;;:::o;30087:398::-;30246:3;30267:83;30348:1;30343:3;30267:83;:::i;:::-;30260:90;;30359:93;30448:3;30359:93;:::i;:::-;30477:1;30472:3;30468:11;30461:18;;30087:398;;;:::o;30491:379::-;30675:3;30697:147;30840:3;30697:147;:::i;:::-;30690:154;;30861:3;30854:10;;30491:379;;;:::o;30876:442::-;31025:4;31063:2;31052:9;31048:18;31040:26;;31076:71;31144:1;31133:9;31129:17;31120:6;31076:71;:::i;:::-;31157:72;31225:2;31214:9;31210:18;31201:6;31157:72;:::i;:::-;31239;31307:2;31296:9;31292:18;31283:6;31239:72;:::i;:::-;30876:442;;;;;;:::o;31324:180::-;31372:77;31369:1;31362:88;31469:4;31466:1;31459:15;31493:4;31490:1;31483:15;31510:180;31558:77;31555:1;31548:88;31655:4;31652:1;31645:15;31679:4;31676:1;31669:15;31696:143;31753:5;31784:6;31778:13;31769:22;;31800:33;31827:5;31800:33;:::i;:::-;31696:143;;;;:::o;31845:351::-;31915:6;31964:2;31952:9;31943:7;31939:23;31935:32;31932:119;;;31970:79;;:::i;:::-;31932:119;32090:1;32115:64;32171:7;32162:6;32151:9;32147:22;32115:64;:::i;:::-;32105:74;;32061:128;31845:351;;;;:::o;32202:85::-;32247:7;32276:5;32265:16;;32202:85;;;:::o;32293:158::-;32351:9;32384:61;32402:42;32411:32;32437:5;32411:32;:::i;:::-;32402:42;:::i;:::-;32384:61;:::i;:::-;32371:74;;32293:158;;;:::o;32457:147::-;32552:45;32591:5;32552:45;:::i;:::-;32547:3;32540:58;32457:147;;:::o;32610:114::-;32677:6;32711:5;32705:12;32695:22;;32610:114;;;:::o;32730:184::-;32829:11;32863:6;32858:3;32851:19;32903:4;32898:3;32894:14;32879:29;;32730:184;;;;:::o;32920:132::-;32987:4;33010:3;33002:11;;33040:4;33035:3;33031:14;33023:22;;32920:132;;;:::o;33058:108::-;33135:24;33153:5;33135:24;:::i;:::-;33130:3;33123:37;33058:108;;:::o;33172:179::-;33241:10;33262:46;33304:3;33296:6;33262:46;:::i;:::-;33340:4;33335:3;33331:14;33317:28;;33172:179;;;;:::o;33357:113::-;33427:4;33459;33454:3;33450:14;33442:22;;33357:113;;;:::o;33506:732::-;33625:3;33654:54;33702:5;33654:54;:::i;:::-;33724:86;33803:6;33798:3;33724:86;:::i;:::-;33717:93;;33834:56;33884:5;33834:56;:::i;:::-;33913:7;33944:1;33929:284;33954:6;33951:1;33948:13;33929:284;;;34030:6;34024:13;34057:63;34116:3;34101:13;34057:63;:::i;:::-;34050:70;;34143:60;34196:6;34143:60;:::i;:::-;34133:70;;33989:224;33976:1;33973;33969:9;33964:14;;33929:284;;;33933:14;34229:3;34222:10;;33630:608;;;33506:732;;;;:::o;34244:831::-;34507:4;34545:3;34534:9;34530:19;34522:27;;34559:71;34627:1;34616:9;34612:17;34603:6;34559:71;:::i;:::-;34640:80;34716:2;34705:9;34701:18;34692:6;34640:80;:::i;:::-;34767:9;34761:4;34757:20;34752:2;34741:9;34737:18;34730:48;34795:108;34898:4;34889:6;34795:108;:::i;:::-;34787:116;;34913:72;34981:2;34970:9;34966:18;34957:6;34913:72;:::i;:::-;34995:73;35063:3;35052:9;35048:19;35039:6;34995:73;:::i;:::-;34244:831;;;;;;;;:::o;35081:807::-;35330:4;35368:3;35357:9;35353:19;35345:27;;35382:71;35450:1;35439:9;35435:17;35426:6;35382:71;:::i;:::-;35463:72;35531:2;35520:9;35516:18;35507:6;35463:72;:::i;:::-;35545:80;35621:2;35610:9;35606:18;35597:6;35545:80;:::i;:::-;35635;35711:2;35700:9;35696:18;35687:6;35635:80;:::i;:::-;35725:73;35793:3;35782:9;35778:19;35769:6;35725:73;:::i;:::-;35808;35876:3;35865:9;35861:19;35852:6;35808:73;:::i;:::-;35081:807;;;;;;;;;:::o;35894:143::-;35951:5;35982:6;35976:13;35967:22;;35998:33;36025:5;35998:33;:::i;:::-;35894:143;;;;:::o;36043:663::-;36131:6;36139;36147;36196:2;36184:9;36175:7;36171:23;36167:32;36164:119;;;36202:79;;:::i;:::-;36164:119;36322:1;36347:64;36403:7;36394:6;36383:9;36379:22;36347:64;:::i;:::-;36337:74;;36293:128;36460:2;36486:64;36542:7;36533:6;36522:9;36518:22;36486:64;:::i;:::-;36476:74;;36431:129;36599:2;36625:64;36681:7;36672:6;36661:9;36657:22;36625:64;:::i;:::-;36615:74;;36570:129;36043:663;;;;;:::o

Swarm Source

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