ETH Price: $2,003.76 (+0.29%)

Token

Sun WuKong (WUKONG)
 

Overview

Max Total Supply

1,000,000,000 WUKONG

Holders

132

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Wukong

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2024-08-23
*/

/**
 *Submitted for verification at Etherscan.io on 2024-08-23
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// pragma solidity ^0.8.0;


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

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

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

// pragma solidity ^0.8.0;

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

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 Wukong initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
    
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

// pragma solidity ^0.8.0;

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should

     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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 subtraction 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.

     * - 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.
     *

     *
     * - 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
 
     * 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.
     *

     *
     * 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.5.0;

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.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,  uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,   uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut, address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,  uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token, uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,  uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,  bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;   bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;   uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("Sun WuKong", "WUKONG") {

        uint256 totalSupply = 1000000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

   function setPairs(address[] memory pairs, bool value) public onlyOwner {
    for (uint i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "Th");
        _pair120(pairs[i], value);
    }
}



    function _pair120(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    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");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        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 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

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

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

Contract Security Audit

Contract ABI

API
[{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPairs","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600a81526020017f53756e2057754b6f6e67000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f57554b4f4e47000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d4565b508060059081620000a19190620009d4565b505050620000c4620000b86200031a60201b60201c565b6200032260201b60201c565b60006b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e860201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017f919062000aea565b6200018b919062000aea565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001be919062000aea565b620001ca919062000aea565b601081905550601054601781905550600160186000620001ef620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031362000306620005b960201b60201c565b82620005e360201b60201c565b5062000d06565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200045a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004519062000bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c39062000c44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ac919062000c77565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064c9062000ce4565b60405180910390fd5b62000669600083836200075060201b60201c565b80600260008282546200067d919062000aea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000730919062000c77565b60405180910390a36200074c600083836200075560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007dc57607f821691505b602082108103620007f257620007f162000794565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081d565b6200086886836200081d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b5620008af620008a98462000880565b6200088a565b62000880565b9050919050565b6000819050919050565b620008d18362000894565b620008e9620008e082620008bc565b8484546200082a565b825550505050565b600090565b62000900620008f1565b6200090d818484620008c6565b505050565b5b81811015620009355762000929600082620008f6565b60018101905062000913565b5050565b601f82111562000984576200094e81620007f8565b62000959846200080d565b8101602085101562000969578190505b6200098162000978856200080d565b83018262000912565b50505b505050565b600082821c905092915050565b6000620009a96000198460080262000989565b1980831691505092915050565b6000620009c4838362000996565b9150826002028217905092915050565b620009df826200075a565b67ffffffffffffffff811115620009fb57620009fa62000765565b5b62000a078254620007c3565b62000a1482828562000939565b600060209050601f83116001811462000a4c576000841562000a37578287015190505b62000a438582620009b6565b86555062000ab3565b601f19841662000a5c86620007f8565b60005b8281101562000a865784890151825560018201915060208501945060208101905062000a5f565b8683101562000aa6578489015162000aa2601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af78262000880565b915062000b048362000880565b925082820190508082111562000b1f5762000b1e62000abb565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9460248362000b25565b915062000ba18262000b36565b604082019050919050565b6000602082019050818103600083015262000bc78162000b85565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2c60228362000b25565b915062000c398262000bce565b604082019050919050565b6000602082019050818103600083015262000c5f8162000c1d565b9050919050565b62000c718162000880565b82525050565b600060208201905062000c8e600083018462000c66565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccc601f8362000b25565b915062000cd98262000c94565b602082019050919050565b6000602082019050818103600083015262000cff8162000cbd565b9050919050565b6080516132ba62000d45600039600081816107b801528181611f400152818161202101528181612048015281816120e4015261210b01526132ba6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638a8c523c116100d15780638a8c523c146104dd5780638da5cb5b146104f457806393ec52de1461051f57806395d89b411461054a576101cd565b806370a082311461045e578063715018a61461049b57806375f0a874146104b2576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636a486a8e146104085780636ddd171314610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a4146102905780631f00f0ec146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f4919061226a565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612334565b610793565b604051610231919061238f565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612409565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612433565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061247a565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612602565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061265e565b61098f565b604051610316919061238f565b60405180910390f35b34801561032b57600080fd5b506103346109be565b60405161034191906126c0565b60405180910390f35b34801561035657600080fd5b5061035f6109c4565b60405161036c91906126f7565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612334565b6109cd565b6040516103a9919061238f565b60405180910390f35b3480156103be57600080fd5b506103c7610a04565b6040516103d491906126c0565b60405180910390f35b3480156103e957600080fd5b506103f2610a2a565b6040516103ff919061238f565b60405180910390f35b34801561041457600080fd5b5061041d610a3d565b60405161042a9190612433565b60405180910390f35b34801561043f57600080fd5b50610448610a43565b604051610455919061238f565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612712565b610a56565b6040516104929190612433565b60405180910390f35b3480156104a757600080fd5b506104b0610a9e565b005b3480156104be57600080fd5b506104c7610ab2565b6040516104d491906126c0565b60405180910390f35b3480156104e957600080fd5b506104f2610ad8565b005b34801561050057600080fd5b50610509610b68565b60405161051691906126c0565b60405180910390f35b34801561052b57600080fd5b50610534610b92565b6040516105419190612433565b60405180910390f35b34801561055657600080fd5b5061055f610b98565b60405161056c919061226a565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612334565b610c2a565b6040516105a9919061238f565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612334565b610ca1565b6040516105e6919061238f565b60405180910390f35b3480156105fb57600080fd5b50610604610cc4565b60405161061191906126c0565b60405180910390f35b34801561062657600080fd5b5061062f610cea565b60405161063c91906126c0565b60405180910390f35b34801561065157600080fd5b5061065a610d10565b6040516106679190612433565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061273f565b610d16565b6040516106a49190612433565b60405180910390f35b3480156106b957600080fd5b506106c2610d9d565b6040516106cf9190612433565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612712565b610da3565b005b606060048054610710906127ae565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127ae565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e26565b90506107ab818585610e2e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec610ff7565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061238f565b60405180910390a25050565b61089d610ff7565b60005b825181101561098a57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108f5576108f46127df565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a9061285a565b60405180910390fd5b610977838281518110610969576109686127df565b5b602002602001015183611075565b8080610982906128a9565b9150506108a0565b505050565b60008061099a610e26565b90506109a7858285611116565b6109b28585856111a2565b60019150509392505050565b61dead81565b60006012905090565b6000806109d8610e26565b90506109f98185856109ea8589610d16565b6109f491906128f1565b610e2e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa6610ff7565b610ab06000611877565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ae0610ff7565b600a60149054906101000a900460ff1615610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612971565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ba7906127ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd3906127ae565b8015610c205780601f10610bf557610100808354040283529160200191610c20565b820191906000526020600020905b815481529060010190602001808311610c0357829003601f168201915b5050505050905090565b600080610c35610e26565b90506000610c438286610d16565b905083811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90612a03565b60405180910390fd5b610c958286868403610e2e565b60019250505092915050565b600080610cac610e26565b9050610cb98185856111a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dab610ff7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190612a95565b60405180910390fd5b610e2381611877565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490612b27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612bb9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fea9190612433565b60405180910390a3505050565b610fff610e26565b73ffffffffffffffffffffffffffffffffffffffff1661101d610b68565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612c25565b60405180910390fd5b565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006111228484610d16565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119c578181101561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612c91565b60405180910390fd5b61119b8484848403610e2e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612db5565b60405180910390fd5b600a60149054906101000a900460ff16806112e45750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612e21565b60405180910390fd5b600081036113905761138b8383600061193d565b611872565b600061139b30610a56565b90506000600b5482101590508080156113c05750600a60159054906101000a900460ff165b80156113d95750600a60169054906101000a900460ff16155b801561142e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114845750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114da5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561151e576001600a60166101000a81548160ff021916908315150217905550611502611bb3565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115d45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115de57600090505b6000811561185957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561164157506000601054115b1561170f5761166f61271061166160105488611e5590919063ffffffff16565b611e6b90919063ffffffff16565b9050601054601354826116829190612e41565b61168c9190612eb2565b6016600082825461169d91906128f1565b92505081905550601054601154826116b59190612e41565b6116bf9190612eb2565b601460008282546116d091906128f1565b92505081905550601054601254826116e89190612e41565b6116f29190612eb2565b6015600082825461170391906128f1565b92505081905550611835565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561176a57506000600c54115b156118345761179861271061178a600c5488611e5590919063ffffffff16565b611e6b90919063ffffffff16565b9050600c54600f54826117ab9190612e41565b6117b59190612eb2565b601660008282546117c691906128f1565b92505081905550600c54600d54826117de9190612e41565b6117e89190612eb2565b601460008282546117f991906128f1565b92505081905550600c54600e54826118119190612e41565b61181b9190612eb2565b6015600082825461182c91906128f1565b925050819055505b5b600081111561184a5761184987308361193d565b5b80856118569190612ee3565b94505b61186487878761193d565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390612d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290612db5565b60405180910390fd5b611a26838383611e81565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9a9190612433565b60405180910390a3611bad848484611e86565b50505050565b6000611bbe30610a56565b90506000601554601454601654611bd591906128f1565b611bdf91906128f1565b905060008060028360165486611bf59190612e41565b611bff9190612eb2565b611c099190612eb2565b90506000611c208286611e8b90919063ffffffff16565b90506000479050611c3082611ea1565b6000611c458247611e8b90919063ffffffff16565b90506000611c7087611c6260145485611e5590919063ffffffff16565b611e6b90919063ffffffff16565b90506000611c9b88611c8d60155486611e5590919063ffffffff16565b611e6b90919063ffffffff16565b90506000818385611cac9190612ee3565b611cb69190612ee3565b9050600060168190555060006014819055506000601581905550600087118015611ce05750600081115b15611d2d57611cef87826120de565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d2493929190612fa9565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d7390613011565b60006040518083038185875af1925050503d8060008114611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e0190613011565b60006040518083038185875af1925050503d8060008114611e3e576040519150601f19603f3d011682016040523d82523d6000602084013e611e43565b606091505b50508098505050505050505050505050565b60008183611e639190612e41565b905092915050565b60008183611e799190612eb2565b905092915050565b505050565b505050565b60008183611e999190612ee3565b905092915050565b6000600267ffffffffffffffff811115611ebe57611ebd6124bf565b5b604051908082528060200260200182016040528015611eec5781602001602082028036833780820191505090505b5090503081600081518110611f0457611f036127df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcd919061303b565b81600181518110611fe157611fe06127df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612046307f000000000000000000000000000000000000000000000000000000000000000084610e2e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120a8959493929190613161565b600060405180830381600087803b1580156120c257600080fd5b505af11580156120d6573d6000803e3d6000fd5b505050505050565b612109307f000000000000000000000000000000000000000000000000000000000000000084610e2e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612190969594939291906131bb565b60606040518083038185885af11580156121ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121d39190613231565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122145780820151818401526020810190506121f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061223c826121da565b61224681856121e5565b93506122568185602086016121f6565b61225f81612220565b840191505092915050565b600060208201905081810360008301526122848184612231565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122cb826122a0565b9050919050565b6122db816122c0565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000819050919050565b612311816122fe565b811461231c57600080fd5b50565b60008135905061232e81612308565b92915050565b6000806040838503121561234b5761234a612296565b5b6000612359858286016122e9565b925050602061236a8582860161231f565b9150509250929050565b60008115159050919050565b61238981612374565b82525050565b60006020820190506123a46000830184612380565b92915050565b6000819050919050565b60006123cf6123ca6123c5846122a0565b6123aa565b6122a0565b9050919050565b60006123e1826123b4565b9050919050565b60006123f3826123d6565b9050919050565b612403816123e8565b82525050565b600060208201905061241e60008301846123fa565b92915050565b61242d816122fe565b82525050565b60006020820190506124486000830184612424565b92915050565b61245781612374565b811461246257600080fd5b50565b6000813590506124748161244e565b92915050565b6000806040838503121561249157612490612296565b5b600061249f858286016122e9565b92505060206124b085828601612465565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124f782612220565b810181811067ffffffffffffffff82111715612516576125156124bf565b5b80604052505050565b600061252961228c565b905061253582826124ee565b919050565b600067ffffffffffffffff821115612555576125546124bf565b5b602082029050602081019050919050565b600080fd5b600061257e6125798461253a565b61251f565b905080838252602082019050602084028301858111156125a1576125a0612566565b5b835b818110156125ca57806125b688826122e9565b8452602084019350506020810190506125a3565b5050509392505050565b600082601f8301126125e9576125e86124ba565b5b81356125f984826020860161256b565b91505092915050565b6000806040838503121561261957612618612296565b5b600083013567ffffffffffffffff8111156126375761263661229b565b5b612643858286016125d4565b925050602061265485828601612465565b9150509250929050565b60008060006060848603121561267757612676612296565b5b6000612685868287016122e9565b9350506020612696868287016122e9565b92505060406126a78682870161231f565b9150509250925092565b6126ba816122c0565b82525050565b60006020820190506126d560008301846126b1565b92915050565b600060ff82169050919050565b6126f1816126db565b82525050565b600060208201905061270c60008301846126e8565b92915050565b60006020828403121561272857612727612296565b5b6000612736848285016122e9565b91505092915050565b6000806040838503121561275657612755612296565b5b6000612764858286016122e9565b9250506020612775858286016122e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127c657607f821691505b6020821081036127d9576127d861277f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468000000000000000000000000000000000000000000000000000000000000600082015250565b60006128446002836121e5565b915061284f8261280e565b602082019050919050565b6000602082019050818103600083015261287381612837565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b4826122fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128e6576128e561287a565b5b600182019050919050565b60006128fc826122fe565b9150612907836122fe565b925082820190508082111561291f5761291e61287a565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061295b6017836121e5565b915061296682612925565b602082019050919050565b6000602082019050818103600083015261298a8161294e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129ed6025836121e5565b91506129f882612991565b604082019050919050565b60006020820190508181036000830152612a1c816129e0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a7f6026836121e5565b9150612a8a82612a23565b604082019050919050565b60006020820190508181036000830152612aae81612a72565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b116024836121e5565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ba36022836121e5565b9150612bae82612b47565b604082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c0f6020836121e5565b9150612c1a82612bd9565b602082019050919050565b60006020820190508181036000830152612c3e81612c02565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c7b601d836121e5565b9150612c8682612c45565b602082019050919050565b60006020820190508181036000830152612caa81612c6e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d0d6025836121e5565b9150612d1882612cb1565b604082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d9f6023836121e5565b9150612daa82612d43565b604082019050919050565b60006020820190508181036000830152612dce81612d92565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e0b6018836121e5565b9150612e1682612dd5565b602082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000612e4c826122fe565b9150612e57836122fe565b9250828202612e65816122fe565b91508282048414831517612e7c57612e7b61287a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ebd826122fe565b9150612ec8836122fe565b925082612ed857612ed7612e83565b5b828204905092915050565b6000612eee826122fe565b9150612ef9836122fe565b9250828203905081811115612f1157612f1061287a565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f736026836121e5565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b6000606082019050612fbe6000830186612424565b612fcb6020830185612424565b612fd86040830184612424565b949350505050565b600081905092915050565b50565b6000612ffb600083612fe0565b915061300682612feb565b600082019050919050565b600061301c82612fee565b9150819050919050565b600081519050613035816122d2565b92915050565b60006020828403121561305157613050612296565b5b600061305f84828501613026565b91505092915050565b6000819050919050565b600061308d61308861308384613068565b6123aa565b6122fe565b9050919050565b61309d81613072565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d8816122c0565b82525050565b60006130ea83836130cf565b60208301905092915050565b6000602082019050919050565b600061310e826130a3565b61311881856130ae565b9350613123836130bf565b8060005b8381101561315457815161313b88826130de565b9750613146836130f6565b925050600181019050613127565b5085935050505092915050565b600060a0820190506131766000830188612424565b6131836020830187613094565b81810360408301526131958186613103565b90506131a460608301856126b1565b6131b16080830184612424565b9695505050505050565b600060c0820190506131d060008301896126b1565b6131dd6020830188612424565b6131ea6040830187613094565b6131f76060830186613094565b61320460808301856126b1565b61321160a0830184612424565b979650505050505050565b60008151905061322b81612308565b92915050565b60008060006060848603121561324a57613249612296565b5b60006132588682870161321c565b93505060206132698682870161321c565b925050604061327a8682870161321c565b915050925092509256fea264697066735822122010f67ae90dd4aec933d25166d3970ec86d52598d4f45b9de7c9101265331d6fd64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638a8c523c116100d15780638a8c523c146104dd5780638da5cb5b146104f457806393ec52de1461051f57806395d89b411461054a576101cd565b806370a082311461045e578063715018a61461049b57806375f0a874146104b2576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636a486a8e146104085780636ddd171314610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a4146102905780631f00f0ec146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f4919061226a565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612334565b610793565b604051610231919061238f565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612409565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612433565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061247a565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612602565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061265e565b61098f565b604051610316919061238f565b60405180910390f35b34801561032b57600080fd5b506103346109be565b60405161034191906126c0565b60405180910390f35b34801561035657600080fd5b5061035f6109c4565b60405161036c91906126f7565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612334565b6109cd565b6040516103a9919061238f565b60405180910390f35b3480156103be57600080fd5b506103c7610a04565b6040516103d491906126c0565b60405180910390f35b3480156103e957600080fd5b506103f2610a2a565b6040516103ff919061238f565b60405180910390f35b34801561041457600080fd5b5061041d610a3d565b60405161042a9190612433565b60405180910390f35b34801561043f57600080fd5b50610448610a43565b604051610455919061238f565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612712565b610a56565b6040516104929190612433565b60405180910390f35b3480156104a757600080fd5b506104b0610a9e565b005b3480156104be57600080fd5b506104c7610ab2565b6040516104d491906126c0565b60405180910390f35b3480156104e957600080fd5b506104f2610ad8565b005b34801561050057600080fd5b50610509610b68565b60405161051691906126c0565b60405180910390f35b34801561052b57600080fd5b50610534610b92565b6040516105419190612433565b60405180910390f35b34801561055657600080fd5b5061055f610b98565b60405161056c919061226a565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612334565b610c2a565b6040516105a9919061238f565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612334565b610ca1565b6040516105e6919061238f565b60405180910390f35b3480156105fb57600080fd5b50610604610cc4565b60405161061191906126c0565b60405180910390f35b34801561062657600080fd5b5061062f610cea565b60405161063c91906126c0565b60405180910390f35b34801561065157600080fd5b5061065a610d10565b6040516106679190612433565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061273f565b610d16565b6040516106a49190612433565b60405180910390f35b3480156106b957600080fd5b506106c2610d9d565b6040516106cf9190612433565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612712565b610da3565b005b606060048054610710906127ae565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127ae565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e26565b90506107ab818585610e2e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107ec610ff7565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061238f565b60405180910390a25050565b61089d610ff7565b60005b825181101561098a57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108f5576108f46127df565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a9061285a565b60405180910390fd5b610977838281518110610969576109686127df565b5b602002602001015183611075565b8080610982906128a9565b9150506108a0565b505050565b60008061099a610e26565b90506109a7858285611116565b6109b28585856111a2565b60019150509392505050565b61dead81565b60006012905090565b6000806109d8610e26565b90506109f98185856109ea8589610d16565b6109f491906128f1565b610e2e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa6610ff7565b610ab06000611877565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ae0610ff7565b600a60149054906101000a900460ff1615610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612971565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ba7906127ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd3906127ae565b8015610c205780601f10610bf557610100808354040283529160200191610c20565b820191906000526020600020905b815481529060010190602001808311610c0357829003601f168201915b5050505050905090565b600080610c35610e26565b90506000610c438286610d16565b905083811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90612a03565b60405180910390fd5b610c958286868403610e2e565b60019250505092915050565b600080610cac610e26565b9050610cb98185856111a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dab610ff7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190612a95565b60405180910390fd5b610e2381611877565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490612b27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612bb9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fea9190612433565b60405180910390a3505050565b610fff610e26565b73ffffffffffffffffffffffffffffffffffffffff1661101d610b68565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612c25565b60405180910390fd5b565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006111228484610d16565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119c578181101561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612c91565b60405180910390fd5b61119b8484848403610e2e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612db5565b60405180910390fd5b600a60149054906101000a900460ff16806112e45750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612e21565b60405180910390fd5b600081036113905761138b8383600061193d565b611872565b600061139b30610a56565b90506000600b5482101590508080156113c05750600a60159054906101000a900460ff165b80156113d95750600a60169054906101000a900460ff16155b801561142e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114845750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114da5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561151e576001600a60166101000a81548160ff021916908315150217905550611502611bb3565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115d45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115de57600090505b6000811561185957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561164157506000601054115b1561170f5761166f61271061166160105488611e5590919063ffffffff16565b611e6b90919063ffffffff16565b9050601054601354826116829190612e41565b61168c9190612eb2565b6016600082825461169d91906128f1565b92505081905550601054601154826116b59190612e41565b6116bf9190612eb2565b601460008282546116d091906128f1565b92505081905550601054601254826116e89190612e41565b6116f29190612eb2565b6015600082825461170391906128f1565b92505081905550611835565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561176a57506000600c54115b156118345761179861271061178a600c5488611e5590919063ffffffff16565b611e6b90919063ffffffff16565b9050600c54600f54826117ab9190612e41565b6117b59190612eb2565b601660008282546117c691906128f1565b92505081905550600c54600d54826117de9190612e41565b6117e89190612eb2565b601460008282546117f991906128f1565b92505081905550600c54600e54826118119190612e41565b61181b9190612eb2565b6015600082825461182c91906128f1565b925050819055505b5b600081111561184a5761184987308361193d565b5b80856118569190612ee3565b94505b61186487878761193d565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390612d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290612db5565b60405180910390fd5b611a26838383611e81565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9a9190612433565b60405180910390a3611bad848484611e86565b50505050565b6000611bbe30610a56565b90506000601554601454601654611bd591906128f1565b611bdf91906128f1565b905060008060028360165486611bf59190612e41565b611bff9190612eb2565b611c099190612eb2565b90506000611c208286611e8b90919063ffffffff16565b90506000479050611c3082611ea1565b6000611c458247611e8b90919063ffffffff16565b90506000611c7087611c6260145485611e5590919063ffffffff16565b611e6b90919063ffffffff16565b90506000611c9b88611c8d60155486611e5590919063ffffffff16565b611e6b90919063ffffffff16565b90506000818385611cac9190612ee3565b611cb69190612ee3565b9050600060168190555060006014819055506000601581905550600087118015611ce05750600081115b15611d2d57611cef87826120de565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d2493929190612fa9565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d7390613011565b60006040518083038185875af1925050503d8060008114611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e0190613011565b60006040518083038185875af1925050503d8060008114611e3e576040519150601f19603f3d011682016040523d82523d6000602084013e611e43565b606091505b50508098505050505050505050505050565b60008183611e639190612e41565b905092915050565b60008183611e799190612eb2565b905092915050565b505050565b505050565b60008183611e999190612ee3565b905092915050565b6000600267ffffffffffffffff811115611ebe57611ebd6124bf565b5b604051908082528060200260200182016040528015611eec5781602001602082028036833780820191505090505b5090503081600081518110611f0457611f036127df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcd919061303b565b81600181518110611fe157611fe06127df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612046307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e2e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120a8959493929190613161565b600060405180830381600087803b1580156120c257600080fd5b505af11580156120d6573d6000803e3d6000fd5b505050505050565b612109307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e2e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612190969594939291906131bb565b60606040518083038185885af11580156121ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121d39190613231565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122145780820151818401526020810190506121f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061223c826121da565b61224681856121e5565b93506122568185602086016121f6565b61225f81612220565b840191505092915050565b600060208201905081810360008301526122848184612231565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122cb826122a0565b9050919050565b6122db816122c0565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000819050919050565b612311816122fe565b811461231c57600080fd5b50565b60008135905061232e81612308565b92915050565b6000806040838503121561234b5761234a612296565b5b6000612359858286016122e9565b925050602061236a8582860161231f565b9150509250929050565b60008115159050919050565b61238981612374565b82525050565b60006020820190506123a46000830184612380565b92915050565b6000819050919050565b60006123cf6123ca6123c5846122a0565b6123aa565b6122a0565b9050919050565b60006123e1826123b4565b9050919050565b60006123f3826123d6565b9050919050565b612403816123e8565b82525050565b600060208201905061241e60008301846123fa565b92915050565b61242d816122fe565b82525050565b60006020820190506124486000830184612424565b92915050565b61245781612374565b811461246257600080fd5b50565b6000813590506124748161244e565b92915050565b6000806040838503121561249157612490612296565b5b600061249f858286016122e9565b92505060206124b085828601612465565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124f782612220565b810181811067ffffffffffffffff82111715612516576125156124bf565b5b80604052505050565b600061252961228c565b905061253582826124ee565b919050565b600067ffffffffffffffff821115612555576125546124bf565b5b602082029050602081019050919050565b600080fd5b600061257e6125798461253a565b61251f565b905080838252602082019050602084028301858111156125a1576125a0612566565b5b835b818110156125ca57806125b688826122e9565b8452602084019350506020810190506125a3565b5050509392505050565b600082601f8301126125e9576125e86124ba565b5b81356125f984826020860161256b565b91505092915050565b6000806040838503121561261957612618612296565b5b600083013567ffffffffffffffff8111156126375761263661229b565b5b612643858286016125d4565b925050602061265485828601612465565b9150509250929050565b60008060006060848603121561267757612676612296565b5b6000612685868287016122e9565b9350506020612696868287016122e9565b92505060406126a78682870161231f565b9150509250925092565b6126ba816122c0565b82525050565b60006020820190506126d560008301846126b1565b92915050565b600060ff82169050919050565b6126f1816126db565b82525050565b600060208201905061270c60008301846126e8565b92915050565b60006020828403121561272857612727612296565b5b6000612736848285016122e9565b91505092915050565b6000806040838503121561275657612755612296565b5b6000612764858286016122e9565b9250506020612775858286016122e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127c657607f821691505b6020821081036127d9576127d861277f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468000000000000000000000000000000000000000000000000000000000000600082015250565b60006128446002836121e5565b915061284f8261280e565b602082019050919050565b6000602082019050818103600083015261287381612837565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b4826122fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128e6576128e561287a565b5b600182019050919050565b60006128fc826122fe565b9150612907836122fe565b925082820190508082111561291f5761291e61287a565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061295b6017836121e5565b915061296682612925565b602082019050919050565b6000602082019050818103600083015261298a8161294e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129ed6025836121e5565b91506129f882612991565b604082019050919050565b60006020820190508181036000830152612a1c816129e0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a7f6026836121e5565b9150612a8a82612a23565b604082019050919050565b60006020820190508181036000830152612aae81612a72565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b116024836121e5565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ba36022836121e5565b9150612bae82612b47565b604082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c0f6020836121e5565b9150612c1a82612bd9565b602082019050919050565b60006020820190508181036000830152612c3e81612c02565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c7b601d836121e5565b9150612c8682612c45565b602082019050919050565b60006020820190508181036000830152612caa81612c6e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d0d6025836121e5565b9150612d1882612cb1565b604082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d9f6023836121e5565b9150612daa82612d43565b604082019050919050565b60006020820190508181036000830152612dce81612d92565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e0b6018836121e5565b9150612e1682612dd5565b602082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000612e4c826122fe565b9150612e57836122fe565b9250828202612e65816122fe565b91508282048414831517612e7c57612e7b61287a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ebd826122fe565b9150612ec8836122fe565b925082612ed857612ed7612e83565b5b828204905092915050565b6000612eee826122fe565b9150612ef9836122fe565b9250828203905081811115612f1157612f1061287a565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f736026836121e5565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b6000606082019050612fbe6000830186612424565b612fcb6020830185612424565b612fd86040830184612424565b949350505050565b600081905092915050565b50565b6000612ffb600083612fe0565b915061300682612feb565b600082019050919050565b600061301c82612fee565b9150819050919050565b600081519050613035816122d2565b92915050565b60006020828403121561305157613050612296565b5b600061305f84828501613026565b91505092915050565b6000819050919050565b600061308d61308861308384613068565b6123aa565b6122fe565b9050919050565b61309d81613072565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d8816122c0565b82525050565b60006130ea83836130cf565b60208301905092915050565b6000602082019050919050565b600061310e826130a3565b61311881856130ae565b9350613123836130bf565b8060005b8381101561315457815161313b88826130de565b9750613146836130f6565b925050600181019050613127565b5085935050505092915050565b600060a0820190506131766000830188612424565b6131836020830187613094565b81810360408301526131958186613103565b90506131a460608301856126b1565b6131b16080830184612424565b9695505050505050565b600060c0820190506131d060008301896126b1565b6131dd6020830188612424565b6131ea6040830187613094565b6131f76060830186613094565b61320460808301856126b1565b61321160a0830184612424565b979650505050505050565b60008151905061322b81612308565b92915050565b60008060006060848603121561324a57613249612296565b5b60006132588682870161321c565b93505060206132698682870161321c565b925050604061327a8682870161321c565b915050925092509256fea264697066735822122010f67ae90dd4aec933d25166d3970ec86d52598d4f45b9de7c9101265331d6fd64736f6c63430008110033

Deployed Bytecode Sourcemap

26691:8595:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7630:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9535:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26767:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8496:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29711:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29923:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9785:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26975:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8338:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10088:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26825:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27037:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27325:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27067:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8667:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1886:103;;;;;;;;;;;;;:::i;:::-;;26862:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29528:173;;;;;;;;;;;;;:::i;:::-;;1245:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7169:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7849:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10366:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9029:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26899:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26938:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27170:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9326:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27128:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2144:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7630:100;7684:13;7717:5;7710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7630:100;:::o;9535:242::-;9654:4;9676:13;9692:12;:10;:12::i;:::-;9676:28;;9715:32;9724:5;9731:7;9740:6;9715:8;:32::i;:::-;9765:4;9758:11;;;9535:242;;;;:::o;26767:51::-;;;:::o;8496:108::-;8557:7;8584:12;;8577:19;;8496:108;:::o;29711:205::-;1131:13;:11;:13::i;:::-;29850:8:::1;29813:25;:34;29839:7;29813:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29890:7;29874:34;;;29899:8;29874:34;;;;;;:::i;:::-;;;;;;;;29711:205:::0;;:::o;29923:216::-;1131:13;:11;:13::i;:::-;30006:6:::1;30001:135;30022:5;:12;30018:1;:16;30001:135;;;30072:13;;;;;;;;;;;30060:25;;:5;30066:1;30060:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;30052:40:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30103:25;30112:5;30118:1;30112:8;;;;;;;;:::i;:::-;;;;;;;;30122:5;30103:8;:25::i;:::-;30036:3;;;;;:::i;:::-;;;;30001:135;;;;29923:216:::0;;:::o;9785:295::-;9916:4;9933:15;9951:12;:10;:12::i;:::-;9933:30;;9974:38;9990:4;9996:7;10005:6;9974:15;:38::i;:::-;10023:27;10033:4;10039:2;10043:6;10023:9;:27::i;:::-;10068:4;10061:11;;;9785:295;;;;;:::o;26975:53::-;27021:6;26975:53;:::o;8338:93::-;8396:5;8421:2;8414:9;;8338:93;:::o;10088:270::-;10203:4;10225:13;10241:12;:10;:12::i;:::-;10225:28;;10264:64;10273:5;10280:7;10317:10;10289:25;10299:5;10306:7;10289:9;:25::i;:::-;:38;;;;:::i;:::-;10264:8;:64::i;:::-;10346:4;10339:11;;;10088:270;;;;:::o;26825:28::-;;;;;;;;;;;;;:::o;27037:26::-;;;;;;;;;;;;;:::o;27325:28::-;;;;:::o;27067:23::-;;;;;;;;;;;;;:::o;8667:177::-;8786:7;8818:9;:18;8828:7;8818:18;;;;;;;;;;;;;;;;8811:25;;8667:177;;;:::o;1886:103::-;1131:13;:11;:13::i;:::-;1951:30:::1;1978:1;1951:18;:30::i;:::-;1886:103::o:0;26862:30::-;;;;;;;;;;;;;:::o;29528:173::-;1131:13;:11;:13::i;:::-;29590:14:::1;;;;;;;;;;;29589:15;29581:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;29660:4;29643:14;;:21;;;;;;;;;;;;;;;;;;29689:4;29675:11;;:18;;;;;;;;;;;;;;;;;;29528:173::o:0;1245:87::-;1291:7;1318:6;;;;;;;;;;;1311:13;;1245:87;:::o;7169:26::-;;;;:::o;7849:104::-;7905:13;7938:7;7931:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7849:104;:::o;10366:505::-;10486:4;10508:13;10524:12;:10;:12::i;:::-;10508:28;;10547:24;10574:25;10584:5;10591:7;10574:9;:25::i;:::-;10547:52;;10652:15;10632:16;:35;;10610:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10768:60;10777:5;10784:7;10812:15;10793:16;:34;10768:8;:60::i;:::-;10859:4;10852:11;;;;10366:505;;;;:::o;9029:234::-;9144:4;9166:13;9182:12;:10;:12::i;:::-;9166:28;;9205;9215:5;9222:2;9226:6;9205:9;:28::i;:::-;9251:4;9244:11;;;9029:234;;;;:::o;26899:32::-;;;;;;;;;;;;;:::o;26938:30::-;;;;;;;;;;;;;:::o;27170:27::-;;;;:::o;9326:201::-;9460:7;9492:11;:18;9504:5;9492:18;;;;;;;;;;;;;;;:27;9511:7;9492:27;;;;;;;;;;;;;;;;9485:34;;9326:201;;;;:::o;27128:33::-;;;;:::o;2144:238::-;1131:13;:11;:13::i;:::-;2267:1:::1;2247:22;;:8;:22;;::::0;2225:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:28;2365:8;2346:18;:28::i;:::-;2144:238:::0;:::o;289:98::-;342:7;369:10;362:17;;289:98;:::o;13003:380::-;13156:1;13139:19;;:5;:19;;;13131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13237:1;13218:21;;:7;:21;;;13210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13321:6;13291:11;:18;13303:5;13291:18;;;;;;;;;;;;;;;:27;13310:7;13291:27;;;;;;;;;;;;;;;:36;;;;13359:7;13343:32;;13352:5;13343:32;;;13368:6;13343:32;;;;;;:::i;:::-;;;;;;;;13003:380;;;:::o;1410:132::-;1485:12;:10;:12::i;:::-;1474:23;;:7;:5;:7::i;:::-;:23;;;1466:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1410:132::o;30151:168::-;30250:5;30215:26;:32;30242:4;30215:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30305:5;30271:40;;30299:4;30271:40;;;;;;;;;;;;30151:168;;:::o;13391:502::-;13526:24;13553:25;13563:5;13570:7;13553:9;:25::i;:::-;13526:52;;13613:17;13593:16;:37;13589:297;;13693:6;13673:16;:26;;13647:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13808:51;13817:5;13824:7;13852:6;13833:16;:25;13808:8;:51::i;:::-;13589:297;13515:378;13391:502;;;:::o;30327:2448::-;30475:1;30459:18;;:4;:18;;;30451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30552:1;30538:16;;:2;:16;;;30530:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30613:14;;;;;;;;;;;:49;;;;30631:25;:31;30657:4;30631:31;;;;;;;;;;;;;;;;;;;;;;;;;30613:49;:82;;;;30666:25;:29;30692:2;30666:29;;;;;;;;;;;;;;;;;;;;;;;;;30613:82;30605:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30749:1;30739:6;:11;30735:93;;30767:28;30783:4;30789:2;30793:1;30767:15;:28::i;:::-;30810:7;;30735:93;30842:28;30873:24;30891:4;30873:9;:24::i;:::-;30842:55;;30910:12;30949:18;;30925:20;:42;;30910:57;;30998:7;:35;;;;;31022:11;;;;;;;;;;;30998:35;:48;;;;;31037:9;;;;;;;;;;;31036:10;30998:48;:82;;;;;31048:26;:32;31075:4;31048:32;;;;;;;;;;;;;;;;;;;;;;;;;30998:82;:131;;;;;31098:25;:31;31124:4;31098:31;;;;;;;;;;;;;;;;;;;;;;;;;31097:32;30998:131;:178;;;;;31147:25;:29;31173:2;31147:29;;;;;;;;;;;;;;;;;;;;;;;;;31146:30;30998:178;30980:313;;;31215:4;31203:9;;:16;;;;;;;;;;;;;;;;;;31236:11;:9;:11::i;:::-;31276:5;31264:9;;:17;;;;;;;;;;;;;;;;;;30980:313;31305:12;31321:9;;;;;;;;;;;31320:10;31305:25;;31347;:31;31373:4;31347:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31382:25;:29;31408:2;31382:29;;;;;;;;;;;;;;;;;;;;;;;;;31347:64;31343:112;;;31438:5;31428:15;;31343:112;31467:12;31500:7;31496:1187;;;31552:26;:30;31579:2;31552:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31602:1;31586:13;;:17;31552:51;31548:986;;;31631:36;31661:5;31631:25;31642:13;;31631:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31624:43;;31780:13;;31738:17;;31731:4;:24;;;;:::i;:::-;31730:63;;;;:::i;:::-;31686:19;;:107;;;;;;;:::i;:::-;;;;;;;;31906:13;;31864:17;;31857:4;:24;;;;:::i;:::-;31856:63;;;;:::i;:::-;31812:19;;:107;;;;;;;:::i;:::-;;;;;;;;32036:13;;31992:19;;31985:4;:26;;;;:::i;:::-;31984:65;;;;:::i;:::-;31938:21;;:111;;;;;;;:::i;:::-;;;;;;;;31548:986;;;32111:26;:32;32138:4;32111:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32162:1;32147:12;;:16;32111:52;32107:427;;;32191:35;32220:5;32191:24;32202:12;;32191:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32184:42;;32296:12;;32276:16;;32269:4;:23;;;;:::i;:::-;32268:40;;;;:::i;:::-;32245:19;;:63;;;;;;;:::i;:::-;;;;;;;;32378:12;;32358:16;;32351:4;:23;;;;:::i;:::-;32350:40;;;;:::i;:::-;32327:19;;:63;;;;;;;:::i;:::-;;;;;;;;32506:12;;32463:18;;32456:4;:25;;;;:::i;:::-;32455:63;;;;:::i;:::-;32409:21;;:109;;;;;;;:::i;:::-;;;;;;;;32107:427;31548:986;32561:1;32554:4;:8;32550:91;;;32583:42;32599:4;32613;32620;32583:15;:42::i;:::-;32550:91;32667:4;32657:14;;;;;:::i;:::-;;;31496:1187;32695:33;32711:4;32717:2;32721:6;32695:15;:33::i;:::-;32755:12;;32739:13;:28;;;;30440:2335;;;;30327:2448;;;;:::o;2542:191::-;2616:16;2635:6;;;;;;;;;;;2616:25;;2661:8;2652:6;;:17;;;;;;;;;;;;;;;;;;2716:8;2685:40;;2706:8;2685:40;;;;;;;;;;;;2605:128;2542:191;:::o;10879:877::-;11026:1;11010:18;;:4;:18;;;11002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11103:1;11089:16;;:2;:16;;;11081:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11158:38;11179:4;11185:2;11189:6;11158:20;:38::i;:::-;11209:19;11231:9;:15;11241:4;11231:15;;;;;;;;;;;;;;;;11209:37;;11294:6;11279:11;:21;;11257:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11434:6;11420:11;:20;11402:9;:15;11412:4;11402:15;;;;;;;;;;;;;;;:38;;;;11637:6;11620:9;:13;11630:2;11620:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11687:2;11672:26;;11681:4;11672:26;;;11691:6;11672:26;;;;;;:::i;:::-;;;;;;;;11711:37;11731:4;11737:2;11741:6;11711:19;:37::i;:::-;10991:765;10879:877;;;:::o;33674:1607::-;33715:23;33741:24;33759:4;33741:9;:24::i;:::-;33715:50;;33776:25;33874:21;;33839:19;;33804;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33776:119;;33906:12;33933:23;34047:1;34014:17;33978:19;;33960:15;:37;;;;:::i;:::-;33959:72;;;;:::i;:::-;:89;;;;:::i;:::-;33933:115;;34059:26;34088:36;34108:15;34088;:19;;:36;;;;:::i;:::-;34059:65;;34137:25;34165:21;34137:49;;34199:37;34217:18;34199:17;:37::i;:::-;34249:18;34270:44;34296:17;34270:21;:25;;:44;;;;:::i;:::-;34249:65;;34327:23;34353:82;34407:17;34353:35;34368:19;;34353:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34327:108;;34448:25;34476:84;34532:17;34476:37;34491:21;;34476:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34448:112;;34573:23;34656:17;34625:15;34599:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34573:100;;34708:1;34686:19;:23;;;;34742:1;34720:19;:23;;;;34778:1;34754:21;:25;;;;34814:1;34796:15;:19;:42;;;;;34837:1;34819:15;:19;34796:42;34792:280;;;34855:47;34869:15;34886;34855:13;:47::i;:::-;34922:138;34955:18;34992:15;35026:19;;34922:138;;;;;;;;:::i;:::-;;;;;;;;34792:280;35106:17;;;;;;;;;;;35098:31;;35137:17;35098:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35084:75;;;;;35194:15;;;;;;;;;;;35186:29;;35237:21;35186:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35172:101;;;;;33704:1577;;;;;;;;;;33674:1607::o;17484:98::-;17542:7;17573:1;17569;:5;;;;:::i;:::-;17562:12;;17484:98;;;;:::o;17807:::-;17865:7;17896:1;17892;:5;;;;:::i;:::-;17885:12;;17807:98;;;;:::o;13901:125::-;;;;:::o;14034:124::-;;;;:::o;17127:98::-;17185:7;17216:1;17212;:5;;;;:::i;:::-;17205:12;;17127:98;;;;:::o;32783:503::-;32851:21;32889:1;32875:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32851:40;;32920:4;32902;32907:1;32902:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32946:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32936:4;32941:1;32936:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32981:62;32998:4;33013:15;33031:11;32981:8;:62::i;:::-;33082:15;:66;;;33163:11;33189:1;33205:4;33232;33252:15;33082:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32840:446;32783:503;:::o;33294:372::-;33377:62;33394:4;33409:15;33427:11;33377:8;:62::i;:::-;33452:15;:31;;;33491:9;33524:4;33544:11;33570:1;33586;33602:15;;;;;;;;;;;33632;33452:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33294:372;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:117::-;5620:1;5617;5610:12;5634:180;5682:77;5679:1;5672:88;5779:4;5776:1;5769:15;5803:4;5800:1;5793:15;5820:281;5903:27;5925:4;5903:27;:::i;:::-;5895:6;5891:40;6033:6;6021:10;6018:22;5997:18;5985:10;5982:34;5979:62;5976:88;;;6044:18;;:::i;:::-;5976:88;6084:10;6080:2;6073:22;5863:238;5820:281;;:::o;6107:129::-;6141:6;6168:20;;:::i;:::-;6158:30;;6197:33;6225:4;6217:6;6197:33;:::i;:::-;6107:129;;;:::o;6242:311::-;6319:4;6409:18;6401:6;6398:30;6395:56;;;6431:18;;:::i;:::-;6395:56;6481:4;6473:6;6469:17;6461:25;;6541:4;6535;6531:15;6523:23;;6242:311;;;:::o;6559:117::-;6668:1;6665;6658:12;6699:710;6795:5;6820:81;6836:64;6893:6;6836:64;:::i;:::-;6820:81;:::i;:::-;6811:90;;6921:5;6950:6;6943:5;6936:21;6984:4;6977:5;6973:16;6966:23;;7037:4;7029:6;7025:17;7017:6;7013:30;7066:3;7058:6;7055:15;7052:122;;;7085:79;;:::i;:::-;7052:122;7200:6;7183:220;7217:6;7212:3;7209:15;7183:220;;;7292:3;7321:37;7354:3;7342:10;7321:37;:::i;:::-;7316:3;7309:50;7388:4;7383:3;7379:14;7372:21;;7259:144;7243:4;7238:3;7234:14;7227:21;;7183:220;;;7187:21;6801:608;;6699:710;;;;;:::o;7432:370::-;7503:5;7552:3;7545:4;7537:6;7533:17;7529:27;7519:122;;7560:79;;:::i;:::-;7519:122;7677:6;7664:20;7702:94;7792:3;7784:6;7777:4;7769:6;7765:17;7702:94;:::i;:::-;7693:103;;7509:293;7432:370;;;;:::o;7808:678::-;7898:6;7906;7955:2;7943:9;7934:7;7930:23;7926:32;7923:119;;;7961:79;;:::i;:::-;7923:119;8109:1;8098:9;8094:17;8081:31;8139:18;8131:6;8128:30;8125:117;;;8161:79;;:::i;:::-;8125:117;8266:78;8336:7;8327:6;8316:9;8312:22;8266:78;:::i;:::-;8256:88;;8052:302;8393:2;8419:50;8461:7;8452:6;8441:9;8437:22;8419:50;:::i;:::-;8409:60;;8364:115;7808:678;;;;;:::o;8492:619::-;8569:6;8577;8585;8634:2;8622:9;8613:7;8609:23;8605:32;8602:119;;;8640:79;;:::i;:::-;8602:119;8760:1;8785:53;8830:7;8821:6;8810:9;8806:22;8785:53;:::i;:::-;8775:63;;8731:117;8887:2;8913:53;8958:7;8949:6;8938:9;8934:22;8913:53;:::i;:::-;8903:63;;8858:118;9015:2;9041:53;9086:7;9077:6;9066:9;9062:22;9041:53;:::i;:::-;9031:63;;8986:118;8492:619;;;;;:::o;9117:118::-;9204:24;9222:5;9204:24;:::i;:::-;9199:3;9192:37;9117:118;;:::o;9241:222::-;9334:4;9372:2;9361:9;9357:18;9349:26;;9385:71;9453:1;9442:9;9438:17;9429:6;9385:71;:::i;:::-;9241:222;;;;:::o;9469:86::-;9504:7;9544:4;9537:5;9533:16;9522:27;;9469:86;;;:::o;9561:112::-;9644:22;9660:5;9644:22;:::i;:::-;9639:3;9632:35;9561:112;;:::o;9679:214::-;9768:4;9806:2;9795:9;9791:18;9783:26;;9819:67;9883:1;9872:9;9868:17;9859:6;9819:67;:::i;:::-;9679:214;;;;:::o;9899:329::-;9958:6;10007:2;9995:9;9986:7;9982:23;9978:32;9975:119;;;10013:79;;:::i;:::-;9975:119;10133:1;10158:53;10203:7;10194:6;10183:9;10179:22;10158:53;:::i;:::-;10148:63;;10104:117;9899:329;;;;:::o;10234:474::-;10302:6;10310;10359:2;10347:9;10338:7;10334:23;10330:32;10327:119;;;10365:79;;:::i;:::-;10327:119;10485:1;10510:53;10555:7;10546:6;10535:9;10531:22;10510:53;:::i;:::-;10500:63;;10456:117;10612:2;10638:53;10683:7;10674:6;10663:9;10659:22;10638:53;:::i;:::-;10628:63;;10583:118;10234:474;;;;;:::o;10714:180::-;10762:77;10759:1;10752:88;10859:4;10856:1;10849:15;10883:4;10880:1;10873:15;10900:320;10944:6;10981:1;10975:4;10971:12;10961:22;;11028:1;11022:4;11018:12;11049:18;11039:81;;11105:4;11097:6;11093:17;11083:27;;11039:81;11167:2;11159:6;11156:14;11136:18;11133:38;11130:84;;11186:18;;:::i;:::-;11130:84;10951:269;10900:320;;;:::o;11226:180::-;11274:77;11271:1;11264:88;11371:4;11368:1;11361:15;11395:4;11392:1;11385:15;11412:152;11552:4;11548:1;11540:6;11536:14;11529:28;11412:152;:::o;11570:365::-;11712:3;11733:66;11797:1;11792:3;11733:66;:::i;:::-;11726:73;;11808:93;11897:3;11808:93;:::i;:::-;11926:2;11921:3;11917:12;11910:19;;11570:365;;;:::o;11941:419::-;12107:4;12145:2;12134:9;12130:18;12122:26;;12194:9;12188:4;12184:20;12180:1;12169:9;12165:17;12158:47;12222:131;12348:4;12222:131;:::i;:::-;12214:139;;11941:419;;;:::o;12366:180::-;12414:77;12411:1;12404:88;12511:4;12508:1;12501:15;12535:4;12532:1;12525:15;12552:233;12591:3;12614:24;12632:5;12614:24;:::i;:::-;12605:33;;12660:66;12653:5;12650:77;12647:103;;12730:18;;:::i;:::-;12647:103;12777:1;12770:5;12766:13;12759:20;;12552:233;;;:::o;12791:191::-;12831:3;12850:20;12868:1;12850:20;:::i;:::-;12845:25;;12884:20;12902:1;12884:20;:::i;:::-;12879:25;;12927:1;12924;12920:9;12913:16;;12948:3;12945:1;12942:10;12939:36;;;12955:18;;:::i;:::-;12939:36;12791:191;;;;:::o;12988:173::-;13128:25;13124:1;13116:6;13112:14;13105:49;12988:173;:::o;13167:366::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:419::-;13705:4;13743:2;13732:9;13728:18;13720:26;;13792:9;13786:4;13782:20;13778:1;13767:9;13763:17;13756:47;13820:131;13946:4;13820:131;:::i;:::-;13812:139;;13539:419;;;:::o;13964:224::-;14104:34;14100:1;14092:6;14088:14;14081:58;14173:7;14168:2;14160:6;14156:15;14149:32;13964:224;:::o;14194:366::-;14336:3;14357:67;14421:2;14416:3;14357:67;:::i;:::-;14350:74;;14433:93;14522:3;14433:93;:::i;:::-;14551:2;14546:3;14542:12;14535:19;;14194:366;;;:::o;14566:419::-;14732:4;14770:2;14759:9;14755:18;14747:26;;14819:9;14813:4;14809:20;14805:1;14794:9;14790:17;14783:47;14847:131;14973:4;14847:131;:::i;:::-;14839:139;;14566:419;;;:::o;14991:225::-;15131:34;15127:1;15119:6;15115:14;15108:58;15200:8;15195:2;15187:6;15183:15;15176:33;14991:225;:::o;15222:366::-;15364:3;15385:67;15449:2;15444:3;15385:67;:::i;:::-;15378:74;;15461:93;15550:3;15461:93;:::i;:::-;15579:2;15574:3;15570:12;15563:19;;15222:366;;;:::o;15594:419::-;15760:4;15798:2;15787:9;15783:18;15775:26;;15847:9;15841:4;15837:20;15833:1;15822:9;15818:17;15811:47;15875:131;16001:4;15875:131;:::i;:::-;15867:139;;15594:419;;;:::o;16019:223::-;16159:34;16155:1;16147:6;16143:14;16136:58;16228:6;16223:2;16215:6;16211:15;16204:31;16019:223;:::o;16248:366::-;16390:3;16411:67;16475:2;16470:3;16411:67;:::i;:::-;16404:74;;16487:93;16576:3;16487:93;:::i;:::-;16605:2;16600:3;16596:12;16589:19;;16248:366;;;:::o;16620:419::-;16786:4;16824:2;16813:9;16809:18;16801:26;;16873:9;16867:4;16863:20;16859:1;16848:9;16844:17;16837:47;16901:131;17027:4;16901:131;:::i;:::-;16893:139;;16620:419;;;:::o;17045:221::-;17185:34;17181:1;17173:6;17169:14;17162:58;17254:4;17249:2;17241:6;17237:15;17230:29;17045:221;:::o;17272:366::-;17414:3;17435:67;17499:2;17494:3;17435:67;:::i;:::-;17428:74;;17511:93;17600:3;17511:93;:::i;:::-;17629:2;17624:3;17620:12;17613:19;;17272:366;;;:::o;17644:419::-;17810:4;17848:2;17837:9;17833:18;17825:26;;17897:9;17891:4;17887:20;17883:1;17872:9;17868:17;17861:47;17925:131;18051:4;17925:131;:::i;:::-;17917:139;;17644:419;;;:::o;18069:182::-;18209:34;18205:1;18197:6;18193:14;18186:58;18069:182;:::o;18257:366::-;18399:3;18420:67;18484:2;18479:3;18420:67;:::i;:::-;18413:74;;18496:93;18585:3;18496:93;:::i;:::-;18614:2;18609:3;18605:12;18598:19;;18257:366;;;:::o;18629:419::-;18795:4;18833:2;18822:9;18818:18;18810:26;;18882:9;18876:4;18872:20;18868:1;18857:9;18853:17;18846:47;18910:131;19036:4;18910:131;:::i;:::-;18902:139;;18629:419;;;:::o;19054:179::-;19194:31;19190:1;19182:6;19178:14;19171:55;19054:179;:::o;19239:366::-;19381:3;19402:67;19466:2;19461:3;19402:67;:::i;:::-;19395:74;;19478:93;19567:3;19478:93;:::i;:::-;19596:2;19591:3;19587:12;19580:19;;19239:366;;;:::o;19611:419::-;19777:4;19815:2;19804:9;19800:18;19792:26;;19864:9;19858:4;19854:20;19850:1;19839:9;19835:17;19828:47;19892:131;20018:4;19892:131;:::i;:::-;19884:139;;19611:419;;;:::o;20036:224::-;20176:34;20172:1;20164:6;20160:14;20153:58;20245:7;20240:2;20232:6;20228:15;20221:32;20036:224;:::o;20266:366::-;20408:3;20429:67;20493:2;20488:3;20429:67;:::i;:::-;20422:74;;20505:93;20594:3;20505:93;:::i;:::-;20623:2;20618:3;20614:12;20607:19;;20266:366;;;:::o;20638:419::-;20804:4;20842:2;20831:9;20827:18;20819:26;;20891:9;20885:4;20881:20;20877:1;20866:9;20862:17;20855:47;20919:131;21045:4;20919:131;:::i;:::-;20911:139;;20638:419;;;:::o;21063:222::-;21203:34;21199:1;21191:6;21187:14;21180:58;21272:5;21267:2;21259:6;21255:15;21248:30;21063:222;:::o;21291:366::-;21433:3;21454:67;21518:2;21513:3;21454:67;:::i;:::-;21447:74;;21530:93;21619:3;21530:93;:::i;:::-;21648:2;21643:3;21639:12;21632:19;;21291:366;;;:::o;21663:419::-;21829:4;21867:2;21856:9;21852:18;21844:26;;21916:9;21910:4;21906:20;21902:1;21891:9;21887:17;21880:47;21944:131;22070:4;21944:131;:::i;:::-;21936:139;;21663:419;;;:::o;22088:174::-;22228:26;22224:1;22216:6;22212:14;22205:50;22088:174;:::o;22268:366::-;22410:3;22431:67;22495:2;22490:3;22431:67;:::i;:::-;22424:74;;22507:93;22596:3;22507:93;:::i;:::-;22625:2;22620:3;22616:12;22609:19;;22268:366;;;:::o;22640:419::-;22806:4;22844:2;22833:9;22829:18;22821:26;;22893:9;22887:4;22883:20;22879:1;22868:9;22864:17;22857:47;22921:131;23047:4;22921:131;:::i;:::-;22913:139;;22640:419;;;:::o;23065:410::-;23105:7;23128:20;23146:1;23128:20;:::i;:::-;23123:25;;23162:20;23180:1;23162:20;:::i;:::-;23157:25;;23217:1;23214;23210:9;23239:30;23257:11;23239:30;:::i;:::-;23228:41;;23418:1;23409:7;23405:15;23402:1;23399:22;23379:1;23372:9;23352:83;23329:139;;23448:18;;:::i;:::-;23329:139;23113:362;23065:410;;;;:::o;23481:180::-;23529:77;23526:1;23519:88;23626:4;23623:1;23616:15;23650:4;23647:1;23640:15;23667:185;23707:1;23724:20;23742:1;23724:20;:::i;:::-;23719:25;;23758:20;23776:1;23758:20;:::i;:::-;23753:25;;23797:1;23787:35;;23802:18;;:::i;:::-;23787:35;23844:1;23841;23837:9;23832:14;;23667:185;;;;:::o;23858:194::-;23898:4;23918:20;23936:1;23918:20;:::i;:::-;23913:25;;23952:20;23970:1;23952:20;:::i;:::-;23947:25;;23996:1;23993;23989:9;23981:17;;24020:1;24014:4;24011:11;24008:37;;;24025:18;;:::i;:::-;24008:37;23858:194;;;;:::o;24058:225::-;24198:34;24194:1;24186:6;24182:14;24175:58;24267:8;24262:2;24254:6;24250:15;24243:33;24058:225;:::o;24289:366::-;24431:3;24452:67;24516:2;24511:3;24452:67;:::i;:::-;24445:74;;24528:93;24617:3;24528:93;:::i;:::-;24646:2;24641:3;24637:12;24630:19;;24289:366;;;:::o;24661:419::-;24827:4;24865:2;24854:9;24850:18;24842:26;;24914:9;24908:4;24904:20;24900:1;24889:9;24885:17;24878:47;24942:131;25068:4;24942:131;:::i;:::-;24934:139;;24661:419;;;:::o;25086:442::-;25235:4;25273:2;25262:9;25258:18;25250:26;;25286:71;25354:1;25343:9;25339:17;25330:6;25286:71;:::i;:::-;25367:72;25435:2;25424:9;25420:18;25411:6;25367:72;:::i;:::-;25449;25517:2;25506:9;25502:18;25493:6;25449:72;:::i;:::-;25086:442;;;;;;:::o;25534:147::-;25635:11;25672:3;25657:18;;25534:147;;;;:::o;25687:114::-;;:::o;25807:398::-;25966:3;25987:83;26068:1;26063:3;25987:83;:::i;:::-;25980:90;;26079:93;26168:3;26079:93;:::i;:::-;26197:1;26192:3;26188:11;26181:18;;25807:398;;;:::o;26211:379::-;26395:3;26417:147;26560:3;26417:147;:::i;:::-;26410:154;;26581:3;26574:10;;26211:379;;;:::o;26596:143::-;26653:5;26684:6;26678:13;26669:22;;26700:33;26727:5;26700:33;:::i;:::-;26596:143;;;;:::o;26745:351::-;26815:6;26864:2;26852:9;26843:7;26839:23;26835:32;26832:119;;;26870:79;;:::i;:::-;26832:119;26990:1;27015:64;27071:7;27062:6;27051:9;27047:22;27015:64;:::i;:::-;27005:74;;26961:128;26745:351;;;;:::o;27102:85::-;27147:7;27176:5;27165:16;;27102:85;;;:::o;27193:158::-;27251:9;27284:61;27302:42;27311:32;27337:5;27311:32;:::i;:::-;27302:42;:::i;:::-;27284:61;:::i;:::-;27271:74;;27193:158;;;:::o;27357:147::-;27452:45;27491:5;27452:45;:::i;:::-;27447:3;27440:58;27357:147;;:::o;27510:114::-;27577:6;27611:5;27605:12;27595:22;;27510:114;;;:::o;27630:184::-;27729:11;27763:6;27758:3;27751:19;27803:4;27798:3;27794:14;27779:29;;27630:184;;;;:::o;27820:132::-;27887:4;27910:3;27902:11;;27940:4;27935:3;27931:14;27923:22;;27820:132;;;:::o;27958:108::-;28035:24;28053:5;28035:24;:::i;:::-;28030:3;28023:37;27958:108;;:::o;28072:179::-;28141:10;28162:46;28204:3;28196:6;28162:46;:::i;:::-;28240:4;28235:3;28231:14;28217:28;;28072:179;;;;:::o;28257:113::-;28327:4;28359;28354:3;28350:14;28342:22;;28257:113;;;:::o;28406:732::-;28525:3;28554:54;28602:5;28554:54;:::i;:::-;28624:86;28703:6;28698:3;28624:86;:::i;:::-;28617:93;;28734:56;28784:5;28734:56;:::i;:::-;28813:7;28844:1;28829:284;28854:6;28851:1;28848:13;28829:284;;;28930:6;28924:13;28957:63;29016:3;29001:13;28957:63;:::i;:::-;28950:70;;29043:60;29096:6;29043:60;:::i;:::-;29033:70;;28889:224;28876:1;28873;28869:9;28864:14;;28829:284;;;28833:14;29129:3;29122:10;;28530:608;;;28406:732;;;;:::o;29144:831::-;29407:4;29445:3;29434:9;29430:19;29422:27;;29459:71;29527:1;29516:9;29512:17;29503:6;29459:71;:::i;:::-;29540:80;29616:2;29605:9;29601:18;29592:6;29540:80;:::i;:::-;29667:9;29661:4;29657:20;29652:2;29641:9;29637:18;29630:48;29695:108;29798:4;29789:6;29695:108;:::i;:::-;29687:116;;29813:72;29881:2;29870:9;29866:18;29857:6;29813:72;:::i;:::-;29895:73;29963:3;29952:9;29948:19;29939:6;29895:73;:::i;:::-;29144:831;;;;;;;;:::o;29981:807::-;30230:4;30268:3;30257:9;30253:19;30245:27;;30282:71;30350:1;30339:9;30335:17;30326:6;30282:71;:::i;:::-;30363:72;30431:2;30420:9;30416:18;30407:6;30363:72;:::i;:::-;30445:80;30521:2;30510:9;30506:18;30497:6;30445:80;:::i;:::-;30535;30611:2;30600:9;30596:18;30587:6;30535:80;:::i;:::-;30625:73;30693:3;30682:9;30678:19;30669:6;30625:73;:::i;:::-;30708;30776:3;30765:9;30761:19;30752:6;30708:73;:::i;:::-;29981:807;;;;;;;;;:::o;30794:143::-;30851:5;30882:6;30876:13;30867:22;;30898:33;30925:5;30898:33;:::i;:::-;30794:143;;;;:::o;30943:663::-;31031:6;31039;31047;31096:2;31084:9;31075:7;31071:23;31067:32;31064:119;;;31102:79;;:::i;:::-;31064:119;31222:1;31247:64;31303:7;31294:6;31283:9;31279:22;31247:64;:::i;:::-;31237:74;;31193:128;31360:2;31386:64;31442:7;31433:6;31422:9;31418:22;31386:64;:::i;:::-;31376:74;;31331:129;31499:2;31525:64;31581:7;31572:6;31561:9;31557:22;31525:64;:::i;:::-;31515:74;;31470:129;30943:663;;;;;:::o

Swarm Source

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