ETH Price: $2,453.79 (-5.68%)

Contract

0x0266A7D8CB2262224A8E96B894Dfa01Be50000D6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208315852024-09-26 1:45:235 days ago1727315123IN
0x0266A7D8...Be50000D6
0 ETH0.0007289715.42444566
Approve208315852024-09-26 1:45:235 days ago1727315123IN
0x0266A7D8...Be50000D6
0 ETH0.0007289715.42444566
Approve208315852024-09-26 1:45:235 days ago1727315123IN
0x0266A7D8...Be50000D6
0 ETH0.0007289715.42444566
Approve208315852024-09-26 1:45:235 days ago1727315123IN
0x0266A7D8...Be50000D6
0 ETH0.0007289715.42444566
Approve206585202024-09-01 21:51:5930 days ago1725227519IN
0x0266A7D8...Be50000D6
0 ETH0.000031160.65951444
Approve205016042024-08-10 23:49:5951 days ago1723333799IN
0x0266A7D8...Be50000D6
0 ETH0.000062951.33379963
Approve203436402024-07-19 22:43:2374 days ago1721429003IN
0x0266A7D8...Be50000D6
0 ETH0.000215644.56865305
Approve203088742024-07-15 2:18:1178 days ago1721009891IN
0x0266A7D8...Be50000D6
0 ETH0.00019154.05731893
Approve202894742024-07-12 9:17:5981 days ago1720775879IN
0x0266A7D8...Be50000D6
0 ETH0.000165973.51632907
Increase Allowan...201764502024-06-26 14:25:4797 days ago1719411947IN
0x0266A7D8...Be50000D6
0 ETH0.0008805218.48056318
Approve200954632024-06-15 6:39:23108 days ago1718433563IN
0x0266A7D8...Be50000D6
0 ETH0.000196674.16681761
Approve198207672024-05-07 21:06:47147 days ago1715116007IN
0x0266A7D8...Be50000D6
0 ETH0.000445289.46997642
Approve197988052024-05-04 19:23:23150 days ago1714850603IN
0x0266A7D8...Be50000D6
0 ETH0.00021994.68398842
Approve196417182024-04-12 19:50:59172 days ago1712951459IN
0x0266A7D8...Be50000D6
0 ETH0.0037146378.69816153
Approve194240782024-03-13 5:31:23202 days ago1710307883IN
0x0266A7D8...Be50000D6
0 ETH0.0019244540.77139207
Approve193594432024-03-04 4:34:35211 days ago1709526875IN
0x0266A7D8...Be50000D6
0 ETH0.0021489345.46943074
Approve193594362024-03-04 4:33:11211 days ago1709526791IN
0x0266A7D8...Be50000D6
0 ETH0.0023634150.00777289
Approve193594322024-03-04 4:32:23211 days ago1709526743IN
0x0266A7D8...Be50000D6
0 ETH0.0025075853.0581285
Approve192548842024-02-18 13:08:11226 days ago1708261691IN
0x0266A7D8...Be50000D6
0 ETH0.0009478420.05556233
Approve191004032024-01-27 20:51:47248 days ago1706388707IN
0x0266A7D8...Be50000D6
0 ETH0.0025145953.20660131
Approve189860842024-01-11 20:33:47264 days ago1705005227IN
0x0266A7D8...Be50000D6
0 ETH0.001526232.50767344
Approve185424912023-11-10 15:38:35326 days ago1699630715IN
0x0266A7D8...Be50000D6
0 ETH0.0011125944.65211632
Approve184383452023-10-27 1:44:47340 days ago1698371087IN
0x0266A7D8...Be50000D6
0 ETH0.0007098715.02020899
Approve181007052023-09-09 18:45:47388 days ago1694285147IN
0x0266A7D8...Be50000D6
0 ETH0.0002768110.22021799
Approve181007032023-09-09 18:45:23388 days ago1694285123IN
0x0266A7D8...Be50000D6
0 ETH0.000457199.73076307
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WenLambo

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-01
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.9;


interface IERC20 {
 
    function totalSupply() external view returns (uint256);

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

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

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

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

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

 
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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

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

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

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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

 
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

contract WenLambo is ERC20, Ownable, Pausable {

    // variables
    
    uint256 private initialSupply;
   
    uint256 private denominator = 100;

    uint256 private swapThreshold = 0.0000009 ether; // The contract will only swap to ETH, once the fee tokens reach the specified threshold
    
    uint256 private devTaxBuy;
    uint256 private liquidityTaxBuy;
   
    
    uint256 private devTaxSell;
    uint256 private liquidityTaxSell;
    uint256 public maxWallet;
    
    address private devTaxWallet;
    address private liquidityTaxWallet;
    
    
    // Mappings
    
    mapping (address => bool) private blacklist;
    mapping (address => bool) private excludeList;
   
    
    mapping (string => uint256) private buyTaxes;
    mapping (string => uint256) private sellTaxes;
    mapping (string => address) private taxWallets;
    
    bool public taxStatus = true;
    
    IUniswapV2Router02 private uniswapV2Router02;
    IUniswapV2Factory private uniswapV2Factory;
    IUniswapV2Pair private uniswapV2Pair;
    
    constructor(string memory _tokenName,string memory _tokenSymbol,uint256 _supply) ERC20(_tokenName, _tokenSymbol) payable
    {
        initialSupply =_supply * (10**18);
        maxWallet = initialSupply * 2 / 100; 
        _setOwner(msg.sender);
        uniswapV2Router02 = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Factory = IUniswapV2Factory(uniswapV2Router02.factory());
        uniswapV2Pair = IUniswapV2Pair(uniswapV2Factory.createPair(address(this), uniswapV2Router02.WETH()));
        taxWallets["liquidity"] = address(0);
        setBuyTax(0,0); //dev tax, liquidity tax
        setSellTax(1,98); //dev tax, liquidity tax
        setTaxWallets(0x5A43C4b15475727de2629aA87fe0dCC241d22E2C); 
        exclude(msg.sender);
        exclude(address(this));
        exclude(devTaxWallet);
        _mint(msg.sender, initialSupply);
    }
    
    
    uint256 private devTokens;
    uint256 private liquidityTokens;
    
    
    /**
     * @dev Calculates the tax, transfer it to the contract. If the user is selling, and the swap threshold is met, it executes the tax.
     */
    function handleTax(address from, address to, uint256 amount) private returns (uint256) {
        address[] memory sellPath = new address[](2);
        sellPath[0] = address(this);
        sellPath[1] = uniswapV2Router02.WETH();
        
        if(!isExcluded(from) && !isExcluded(to)) {
            uint256 tax;
            uint256 baseUnit = amount / denominator;
            if(from == address(uniswapV2Pair)) {
                tax += baseUnit * buyTaxes["dev"];
                tax += baseUnit * buyTaxes["liquidity"];
               
                
                if(tax > 0) {
                    _transfer(from, address(this), tax);   
                }
                
                
                devTokens += baseUnit * buyTaxes["dev"];
                liquidityTokens += baseUnit * buyTaxes["liquidity"];

            } else if(to == address(uniswapV2Pair)) {
                
                tax += baseUnit * sellTaxes["dev"];
                tax += baseUnit * sellTaxes["liquidity"];
                
                
                if(tax > 0) {
                    _transfer(from, address(this), tax);   
                }
                
               
                devTokens += baseUnit * sellTaxes["dev"];
                liquidityTokens += baseUnit * sellTaxes["liquidity"];
                
                
                uint256 taxSum =  devTokens + liquidityTokens;
                
                if(taxSum == 0) return amount;
                
                uint256 ethValue = uniswapV2Router02.getAmountsOut( devTokens + liquidityTokens, sellPath)[1];
                
                if(ethValue >= swapThreshold) {
                    uint256 startBalance = address(this).balance;

                    uint256 toSell = devTokens + liquidityTokens / 2 ;
                    
                    _approve(address(this), address(uniswapV2Router02), toSell);
            
                    uniswapV2Router02.swapExactTokensForETH(
                        toSell,
                        0,
                        sellPath,
                        address(this),
                        block.timestamp
                    );
                    
                    uint256 ethGained = address(this).balance - startBalance;
                    
                    uint256 liquidityToken = liquidityTokens / 2;
                    uint256 liquidityETH = (ethGained * ((liquidityTokens / 2 * 10**18) / taxSum)) / 10**18;
                    
                    
                    uint256 devETH = (ethGained * ((devTokens * 10**18) / taxSum)) / 10**18;
                   
                    
                    _approve(address(this), address(uniswapV2Router02), liquidityToken);
                    
                    uniswapV2Router02.addLiquidityETH{value: liquidityETH}(
                        address(this),
                        liquidityToken,
                        0,
                        0,
                        taxWallets["liquidity"],
                        block.timestamp
                    );
                    
                    uint256 remainingTokens = (devTokens + liquidityTokens) - (toSell + liquidityToken);
                    
                    if(remainingTokens > 0) {
                        _transfer(address(this), taxWallets["dev"], remainingTokens);
                    }
                    
                    
                   (bool success,) = taxWallets["dev"].call{value: devETH}("");
                   require(success, "transfer to  dev wallet failed");
                    
                    
                    if(ethGained - ( devETH + liquidityETH) > 0) {
                       (bool success1,) = taxWallets["dev"].call{value: ethGained - (devETH + liquidityETH)}("");
                        require(success1, "transfer to  dev wallet failed");
                    }

                    
                    
                    
                    devTokens = 0;
                    liquidityTokens = 0;
                    
                }
                
            }
            
            amount -= tax;
            if (to != address(uniswapV2Pair)){
                require(balanceOf(to) + amount <= maxWallet, "maxWallet limit exceeded");
            }
           
        }
        
        return amount;
    }
    
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override virtual {
        require(!paused(), "ERC20: token transfer while paused");
        require(!isBlacklisted(msg.sender), "ERC20: sender blacklisted");
        require(!isBlacklisted(recipient), "ERC20: recipient blacklisted");
        require(!isBlacklisted(tx.origin), "ERC20: sender blacklisted");
        
        if(taxStatus) {
            amount = handleTax(sender, recipient, amount);   
        }

        super._transfer(sender, recipient, amount);
    }
    
    /**
     * @dev Triggers the tax handling functionality
     */
    function triggerTax() public onlyOwner {
        handleTax(address(0), address(uniswapV2Pair), 0);
    }
    
    /**
     * @dev Pauses transfers on the token.
     */
    function pause() public onlyOwner {
        require(!paused(), "ERC20: Contract is already paused");
        _pause();
    }

    /**
     * @dev Unpauses transfers on the token.
     */
    function unpause() public onlyOwner {
        require(paused(), "ERC20: Contract is not paused");
        _unpause();
    }

     /**
     * @dev set max wallet limit per address.
     */

    function setMaxWallet (uint256 amount) external onlyOwner {
        require (amount > 10000, "NO rug pull");
        maxWallet = amount * 10**18;
    }
    
    /**
     * @dev Burns tokens from caller address.
     */
    function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, amount);
    }
    
    /**
     * @dev Blacklists the specified account (Disables transfers to and from the account).
     */
    function enableBlacklist(address account) public onlyOwner {
        require(!blacklist[account], "ERC20: Account is already blacklisted");
        blacklist[account] = true;
    }
    
    /**
     * @dev Remove the specified account from the blacklist.
     */
    function disableBlacklist(address account) public onlyOwner {
        require(blacklist[account], "ERC20: Account is not blacklisted");
        blacklist[account] = false;
    }
    
    /**
     * @dev Excludes the specified account from tax.
     */
    function exclude(address account) public onlyOwner {
        require(!isExcluded(account), "ERC20: Account is already excluded");
        excludeList[account] = true;
    }
    
    /**
     * @dev Re-enables tax on the specified account.
     */
    function removeExclude(address account) public onlyOwner {
        require(isExcluded(account), "ERC20: Account is not excluded");
        excludeList[account] = false;
    }
    
    /**
     * @dev Sets tax for buys.
     */
    function setBuyTax(uint256 dev,uint256 liquidity) public onlyOwner {
        buyTaxes["dev"] = dev;
        buyTaxes["liquidity"] = liquidity;
       
    }
    
    /**
     * @dev Sets tax for sells.
     */
    function setSellTax(uint256 dev, uint256 liquidity) public onlyOwner {

        sellTaxes["dev"] = dev;
        sellTaxes["liquidity"] = liquidity;
        
    }
    
    /**
     * @dev Sets wallets for taxes.
     */
    function setTaxWallets(address dev) public onlyOwner {
        taxWallets["dev"] = dev;
        
    }

    function claimStuckTokens(address _token) external onlyOwner {
 
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }
    
    /**
     * @dev Enables tax globally.
     */
    function enableTax() public onlyOwner {
        require(!taxStatus, "ERC20: Tax is already enabled");
        taxStatus = true;
    }
    
    /**
     * @dev Disables tax globally.
     */
    function disableTax() public onlyOwner {
        require(taxStatus, "ERC20: Tax is already disabled");
        taxStatus = false;
    }
    
    /**
     * @dev Returns true if the account is blacklisted, and false otherwise.
     */
    function isBlacklisted(address account) public view returns (bool) {
        return blacklist[account];
    }
    
    /**
     * @dev Returns true if the account is excluded, and false otherwise.
     */
    function isExcluded(address account) public view returns (bool) {
        return excludeList[account];
    }
    
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"payable","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"disableBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"enableBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"exclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeExclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"}],"name":"setTaxWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052606460075564d18c2e28006008556001601560006101000a81548160ff021916908315150217905550604051620060e1380380620060e1833981810160405281019062000052919062000e1a565b828281600390805190602001906200006c92919062000b92565b5080600490805190602001906200008592919062000b92565b5050506000600560146101000a81548160ff021916908315150217905550670de0b6b3a764000081620000b9919062000ee3565b60068190555060646002600654620000d2919062000ee3565b620000de919062000f73565b600d81905550620000f533620004e260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d601560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b357600080fd5b505afa158015620001c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ee919062001010565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d657600080fd5b505afa158015620002eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000311919062001010565b6040518363ffffffff1660e01b81526004016200033092919062001053565b602060405180830381600087803b1580156200034b57600080fd5b505af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062001010565b601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006014604051620003d890620010db565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000437600080620005a860201b60201c565b6200044b600160626200068160201b60201c565b62000470735a43c4b15475727de2629aa87fe0dcc241d22e2c6200075a60201b60201c565b62000481336200084960201b60201c565b62000492306200084960201b60201c565b620004c5600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200084960201b60201c565b620004d9336006546200098760201b60201c565b505050620013d6565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005b862000b0060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005de62000b0860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062e9062001153565b60405180910390fd5b8160126040516200064890620011c5565b9081526020016040518091039020819055508060126040516200066b90620010db565b9081526020016040518091039020819055505050565b6200069162000b0060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006b762000b0860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007079062001153565b60405180910390fd5b8160136040516200072190620011c5565b9081526020016040518091039020819055508060136040516200074490620010db565b9081526020016040518091039020819055505050565b6200076a62000b0060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200079062000b0860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e09062001153565b60405180910390fd5b806014604051620007fa90620011c5565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6200085962000b0060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087f62000b0860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cf9062001153565b60405180910390fd5b620008e98162000b3260201b60201c565b156200092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009239062001252565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f190620012c4565b60405180910390fd5b62000a0e6000838362000b8860201b60201c565b806002600082825462000a229190620012e6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a799190620012e6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae0919062001354565b60405180910390a362000afc6000838362000b8d60201b60201c565b5050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b505050565b505050565b82805462000ba090620013a0565b90600052602060002090601f01602090048101928262000bc4576000855562000c10565b82601f1062000bdf57805160ff191683800117855562000c10565b8280016001018555821562000c10579182015b8281111562000c0f57825182559160200191906001019062000bf2565b5b50905062000c1f919062000c23565b5090565b5b8082111562000c3e57600081600090555060010162000c24565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000cab8262000c60565b810181811067ffffffffffffffff8211171562000ccd5762000ccc62000c71565b5b80604052505050565b600062000ce262000c42565b905062000cf0828262000ca0565b919050565b600067ffffffffffffffff82111562000d135762000d1262000c71565b5b62000d1e8262000c60565b9050602081019050919050565b60005b8381101562000d4b57808201518184015260208101905062000d2e565b8381111562000d5b576000848401525b50505050565b600062000d7862000d728462000cf5565b62000cd6565b90508281526020810184848401111562000d975762000d9662000c5b565b5b62000da484828562000d2b565b509392505050565b600082601f83011262000dc45762000dc362000c56565b5b815162000dd684826020860162000d61565b91505092915050565b6000819050919050565b62000df48162000ddf565b811462000e0057600080fd5b50565b60008151905062000e148162000de9565b92915050565b60008060006060848603121562000e365762000e3562000c4c565b5b600084015167ffffffffffffffff81111562000e575762000e5662000c51565b5b62000e658682870162000dac565b935050602084015167ffffffffffffffff81111562000e895762000e8862000c51565b5b62000e978682870162000dac565b925050604062000eaa8682870162000e03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef08262000ddf565b915062000efd8362000ddf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f395762000f3862000eb4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f808262000ddf565b915062000f8d8362000ddf565b92508262000fa05762000f9f62000f44565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fd88262000fab565b9050919050565b62000fea8162000fcb565b811462000ff657600080fd5b50565b6000815190506200100a8162000fdf565b92915050565b60006020828403121562001029576200102862000c4c565b5b6000620010398482850162000ff9565b91505092915050565b6200104d8162000fcb565b82525050565b60006040820190506200106a600083018562001042565b62001079602083018462001042565b9392505050565b600081905092915050565b7f6c69717569646974790000000000000000000000000000000000000000000000600082015250565b6000620010c360098362001080565b9150620010d0826200108b565b600982019050919050565b6000620010e882620010b4565b9150819050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200113b602083620010f2565b9150620011488262001103565b602082019050919050565b600060208201905081810360008301526200116e816200112c565b9050919050565b7f6465760000000000000000000000000000000000000000000000000000000000600082015250565b6000620011ad60038362001080565b9150620011ba8262001175565b600382019050919050565b6000620011d2826200119e565b9150819050919050565b7f45524332303a204163636f756e7420697320616c7265616479206578636c756460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006200123a602283620010f2565b91506200124782620011dc565b604082019050919050565b600060208201905081810360008301526200126d816200122b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012ac601f83620010f2565b9150620012b98262001274565b602082019050919050565b60006020820190508181036000830152620012df816200129d565b9050919050565b6000620012f38262000ddf565b9150620013008362000ddf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001338576200133762000eb4565b5b828201905092915050565b6200134e8162000ddf565b82525050565b60006020820190506200136b600083018462001343565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620013b957607f821691505b60208210811415620013d057620013cf62001371565b5b50919050565b614cfb80620013e66000396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063cba0e996116100a0578063dd62ed3e1161006f578063dd62ed3e146106dc578063f2fde38b14610719578063f8b45b0514610742578063f9d0831a1461076d578063fe575a871461079657610204565b8063cba0e99614610636578063ced695a414610673578063cfefd79e1461068a578063d01dc84b146106b357610204565b806395d89b41116100dc57806395d89b4114610568578063a457c2d714610593578063a9059cbb146105d0578063abe4f11d1461060d57610204565b8063715018a6146104e6578063717a8651146104fd5780638456cb59146105265780638da5cb5b1461053d57610204565b8063313ce567116101905780634febf53d1161015f5780634febf53d1461041557806353eb3bcf1461043e5780635c975abb146104555780635d0044ca1461048057806370a08231146104a957610204565b8063313ce5671461036d57806339509351146103985780633f4ba83a146103d557806342966c68146103ec57610204565b806323a38a38116101cc57806323a38a38146102c557806323b872dd146102f0578063247b912d1461032d5780632c32abc21461035657610204565b806305a1f36d1461020957806306fdde0314610232578063095ea7b31461025d57806318160ddd1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133f2565b6107d3565b005b34801561023e57600080fd5b50610247610895565b60405161025491906134cb565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f919061354b565b610927565b60405161029191906135a6565b60405180910390f35b3480156102a657600080fd5b506102af610945565b6040516102bc91906135d0565b60405180910390f35b3480156102d157600080fd5b506102da61094f565b6040516102e791906135a6565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906135eb565b610962565b60405161032491906135a6565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906133f2565b610a5a565b005b34801561036257600080fd5b5061036b610b1c565b005b34801561037957600080fd5b50610382610bca565b60405161038f919061365a565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba919061354b565b610bd3565b6040516103cc91906135a6565b60405180910390f35b3480156103e157600080fd5b506103ea610c7f565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613675565b610d4c565b005b34801561042157600080fd5b5061043c600480360381019061043791906136a2565b610dd5565b005b34801561044a57600080fd5b50610453610ef5565b005b34801561046157600080fd5b5061046a610fde565b60405161047791906135a6565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613675565b610ff5565b005b3480156104b557600080fd5b506104d060048036038101906104cb91906136a2565b6110d2565b6040516104dd91906135d0565b60405180910390f35b3480156104f257600080fd5b506104fb61111a565b005b34801561050957600080fd5b50610524600480360381019061051f91906136a2565b6111a2565b005b34801561053257600080fd5b5061053b611306565b005b34801561054957600080fd5b506105526113d4565b60405161055f91906136de565b60405180910390f35b34801561057457600080fd5b5061057d6113fe565b60405161058a91906134cb565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061354b565b611490565b6040516105c791906135a6565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f2919061354b565b61157b565b60405161060491906135a6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906136a2565b611599565b005b34801561064257600080fd5b5061065d600480360381019061065891906136a2565b6116b8565b60405161066a91906135a6565b60405180910390f35b34801561067f57600080fd5b5061068861170e565b005b34801561069657600080fd5b506106b160048036038101906106ac91906136a2565b6117f6565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906136a2565b611959565b005b3480156106e857600080fd5b5061070360048036038101906106fe91906136f9565b611a33565b60405161071091906135d0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906136a2565b611aba565b005b34801561074e57600080fd5b50610757611bb2565b60405161076491906135d0565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906136a2565b611bb8565b005b3480156107a257600080fd5b506107bd60048036038101906107b891906136a2565b611de9565b6040516107ca91906135a6565b60405180910390f35b6107db611e3f565b73ffffffffffffffffffffffffffffffffffffffff166107f96113d4565b73ffffffffffffffffffffffffffffffffffffffff161461084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690613785565b60405180910390fd5b81601260405161085e906137fc565b90815260200160405180910390208190555080601260405161087f9061385d565b9081526020016040518091039020819055505050565b6060600380546108a4906138a1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906138a1565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093b610934611e3f565b8484611e47565b6001905092915050565b6000600254905090565b601560009054906101000a900460ff1681565b600061096f848484612012565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ba611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613945565b60405180910390fd5b610a4e85610a46611e3f565b858403611e47565b60019150509392505050565b610a62611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610a806113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613785565b60405180910390fd5b816013604051610ae5906137fc565b908152602001604051809103902081905550806013604051610b069061385d565b9081526020016040518091039020819055505050565b610b24611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610b426113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613785565b60405180910390fd5b610bc76000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000612168565b50565b60006012905090565b6000610c75610be0611e3f565b848460016000610bee611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c709190613994565b611e47565b6001905092915050565b610c87611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610ca56113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290613785565b60405180910390fd5b610d03610fde565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613a36565b60405180910390fd5b610d4a612d3b565b565b610d54611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610d726113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613785565b60405180910390fd5b610dd23382612ddd565b50565b610ddd611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610dfb6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613785565b60405180910390fd5b610e5a816116b8565b15610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613ac8565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610efd611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613785565b60405180910390fd5b601560009054906101000a900460ff1615610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b34565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b6000600560149054906101000a900460ff16905090565b610ffd611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661101b6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613785565b60405180910390fd5b61271081116110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613ba0565b60405180910390fd5b670de0b6b3a7640000816110c99190613bc0565b600d8190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611122611e3f565b73ffffffffffffffffffffffffffffffffffffffff166111406113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613785565b60405180910390fd5b6111a06000612fb4565b565b6111aa611e3f565b73ffffffffffffffffffffffffffffffffffffffff166111c86113d4565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613785565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613c8c565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61130e611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661132c6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613785565b60405180910390fd5b61138a610fde565b156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613d1e565b60405180910390fd5b6113d261307a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461140d906138a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611439906138a1565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b5050505050905090565b6000806001600061149f611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613db0565b60405180910390fd5b611570611567611e3f565b85858403611e47565b600191505092915050565b600061158f611588611e3f565b8484612012565b6001905092915050565b6115a1611e3f565b73ffffffffffffffffffffffffffffffffffffffff166115bf6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613785565b60405180910390fd5b61161e816116b8565b61165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613e1c565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611716611e3f565b73ffffffffffffffffffffffffffffffffffffffff166117346113d4565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613785565b60405180910390fd5b601560009054906101000a900460ff166117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613e88565b60405180910390fd5b6000601560006101000a81548160ff021916908315150217905550565b6117fe611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661181c6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613785565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613f1a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611961611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661197f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613785565b60405180910390fd5b8060146040516119e4906137fc565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ac2611e3f565b73ffffffffffffffffffffffffffffffffffffffff16611ae06113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90613785565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613fac565b60405180910390fd5b611baf81612fb4565b50565b600d5481565b611bc0611e3f565b73ffffffffffffffffffffffffffffffffffffffff16611bde6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90613785565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbc57611c716113d4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cb6573d6000803e3d6000fd5b50611de6565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611cfc91906136de565b60206040518083038186803b158015611d1457600080fd5b505afa158015611d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4c9190613fe1565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611d726113d4565b836040518363ffffffff1660e01b8152600401611d9092919061400e565b602060405180830381600087803b158015611daa57600080fd5b505af1158015611dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de29190614063565b5050505b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614194565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161200591906135d0565b60405180910390a3505050565b61201a610fde565b1561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614226565b60405180910390fd5b61206333611de9565b156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90614292565b60405180910390fd5b6120ac82611de9565b156120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e3906142fe565b60405180910390fd5b6120f532611de9565b15612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614292565b60405180910390fd5b601560009054906101000a900460ff161561215857612155838383612168565b90505b61216383838361311d565b505050565b600080600267ffffffffffffffff8111156121865761218561431e565b5b6040519080825280602002602001820160405280156121b45781602001602082028036833780820191505090505b50905030816000815181106121cc576121cb61434d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561226e57600080fd5b505afa158015612282573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a69190614391565b816001815181106122ba576122b961434d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122fd856116b8565b158015612310575061230e846116b8565b155b15612d2f576000806007548561232691906143ed565b9050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16141561248257601260405161238c906137fc565b908152602001604051809103902054816123a69190613bc0565b826123b19190613994565b915060126040516123c19061385d565b908152602001604051809103902054816123db9190613bc0565b826123e69190613994565b915060008211156123fd576123fc873084612012565b5b601260405161240b906137fc565b908152602001604051809103902054816124259190613bc0565b601860008282546124369190613994565b92505081905550601260405161244b9061385d565b908152602001604051809103902054816124659190613bc0565b601960008282546124769190613994565b92505081905550612c70565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612c6f5760136040516124e6906137fc565b908152602001604051809103902054816125009190613bc0565b8261250b9190613994565b9150601360405161251b9061385d565b908152602001604051809103902054816125359190613bc0565b826125409190613994565b9150600082111561255757612556873084612012565b5b6013604051612565906137fc565b9081526020016040518091039020548161257f9190613bc0565b601860008282546125909190613994565b9250508190555060136040516125a59061385d565b908152602001604051809103902054816125bf9190613bc0565b601960008282546125d09190613994565b9250508190555060006019546018546125e99190613994565b905060008114156126005785945050505050612d34565b6000601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f6019546018546126509190613994565b876040518363ffffffff1660e01b815260040161266e9291906144dc565b60006040518083038186803b15801561268657600080fd5b505afa15801561269a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906126c39190614625565b6001815181106126d6576126d561434d565b5b602002602001015190506008548110612c6c576000479050600060026019546126ff91906143ed565b60185461270c9190613994565b905061273b30601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e47565b601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58260008a30426040518663ffffffff1660e01b815260040161279f9594939291906146b3565b600060405180830381600087803b1580156127b957600080fd5b505af11580156127cd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906127f69190614625565b5060008247612805919061470d565b90506000600260195461281891906143ed565b90506000670de0b6b3a764000087670de0b6b3a7640000600260195461283e91906143ed565b6128489190613bc0565b61285291906143ed565b8461285d9190613bc0565b61286791906143ed565b90506000670de0b6b3a764000088670de0b6b3a764000060185461288b9190613bc0565b61289591906143ed565b856128a09190613bc0565b6128aa91906143ed565b90506128d930601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611e47565b601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719833086600080601460405161292b9061385d565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161297c96959493929190614741565b6060604051808303818588803b15801561299557600080fd5b505af11580156129a9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129ce91906147a2565b505050600083866129df9190613994565b6019546018546129ef9190613994565b6129f9919061470d565b90506000811115612a4c57612a4b306014604051612a16906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612012565b5b60006014604051612a5c906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612aae90614826565b60006040518083038185875af1925050503d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b5050905080612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614887565b60405180910390fd5b60008484612b429190613994565b87612b4d919061470d565b1115612c535760006014604051612b63906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585612bb49190613994565b88612bbf919061470d565b604051612bcb90614826565b60006040518083038185875af1925050503d8060008114612c08576040519150601f19603f3d011682016040523d82523d6000602084013e612c0d565b606091505b5050905080612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890614887565b60405180910390fd5b505b6000601881905550600060198190555050505050505050505b50505b5b8185612c7c919061470d565b9450601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614612d2c57600d5485612ce0886110d2565b612cea9190613994565b1115612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d22906148f3565b60405180910390fd5b5b50505b829150505b9392505050565b612d43610fde565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d799061495f565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612dc6611e3f565b604051612dd391906136de565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906149f1565b60405180910390fd5b612e598260008361339e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed690614a83565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612f36919061470d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f9b91906135d0565b60405180910390a3612faf836000846133a3565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613082610fde565b156130c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b990614aef565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613106611e3f565b60405161311391906136de565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490614b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f490614c13565b60405180910390fd5b61320883838361339e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614ca5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133219190613994565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161338591906135d0565b60405180910390a36133988484846133a3565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6133cf816133bc565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b60008060408385031215613409576134086133b2565b5b6000613417858286016133dd565b9250506020613428858286016133dd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561346c578082015181840152602081019050613451565b8381111561347b576000848401525b50505050565b6000601f19601f8301169050919050565b600061349d82613432565b6134a7818561343d565b93506134b781856020860161344e565b6134c081613481565b840191505092915050565b600060208201905081810360008301526134e58184613492565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613518826134ed565b9050919050565b6135288161350d565b811461353357600080fd5b50565b6000813590506135458161351f565b92915050565b60008060408385031215613562576135616133b2565b5b600061357085828601613536565b9250506020613581858286016133dd565b9150509250929050565b60008115159050919050565b6135a08161358b565b82525050565b60006020820190506135bb6000830184613597565b92915050565b6135ca816133bc565b82525050565b60006020820190506135e560008301846135c1565b92915050565b600080600060608486031215613604576136036133b2565b5b600061361286828701613536565b935050602061362386828701613536565b9250506040613634868287016133dd565b9150509250925092565b600060ff82169050919050565b6136548161363e565b82525050565b600060208201905061366f600083018461364b565b92915050565b60006020828403121561368b5761368a6133b2565b5b6000613699848285016133dd565b91505092915050565b6000602082840312156136b8576136b76133b2565b5b60006136c684828501613536565b91505092915050565b6136d88161350d565b82525050565b60006020820190506136f360008301846136cf565b92915050565b600080604083850312156137105761370f6133b2565b5b600061371e85828601613536565b925050602061372f85828601613536565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061376f60208361343d565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b600081905092915050565b7f6465760000000000000000000000000000000000000000000000000000000000600082015250565b60006137e66003836137a5565b91506137f1826137b0565b600382019050919050565b6000613807826137d9565b9150819050919050565b7f6c69717569646974790000000000000000000000000000000000000000000000600082015250565b60006138476009836137a5565b915061385282613811565b600982019050919050565b60006138688261383a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b957607f821691505b602082108114156138cd576138cc613872565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061392f60288361343d565b915061393a826138d3565b604082019050919050565b6000602082019050818103600083015261395e81613922565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061399f826133bc565b91506139aa836133bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139df576139de613965565b5b828201905092915050565b7f45524332303a20436f6e7472616374206973206e6f7420706175736564000000600082015250565b6000613a20601d8361343d565b9150613a2b826139ea565b602082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f45524332303a204163636f756e7420697320616c7265616479206578636c756460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab260228361343d565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f45524332303a2054617820697320616c726561647920656e61626c6564000000600082015250565b6000613b1e601d8361343d565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f4e4f207275672070756c6c000000000000000000000000000000000000000000600082015250565b6000613b8a600b8361343d565b9150613b9582613b54565b602082019050919050565b60006020820190508181036000830152613bb981613b7d565b9050919050565b6000613bcb826133bc565b9150613bd6836133bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0f57613c0e613965565b5b828202905092915050565b7f45524332303a204163636f756e7420697320616c726561647920626c61636b6c60008201527f6973746564000000000000000000000000000000000000000000000000000000602082015250565b6000613c7660258361343d565b9150613c8182613c1a565b604082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f45524332303a20436f6e747261637420697320616c726561647920706175736560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0860218361343d565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d9a60258361343d565b9150613da582613d3e565b604082019050919050565b60006020820190508181036000830152613dc981613d8d565b9050919050565b7f45524332303a204163636f756e74206973206e6f74206578636c756465640000600082015250565b6000613e06601e8361343d565b9150613e1182613dd0565b602082019050919050565b60006020820190508181036000830152613e3581613df9565b9050919050565b7f45524332303a2054617820697320616c72656164792064697361626c65640000600082015250565b6000613e72601e8361343d565b9150613e7d82613e3c565b602082019050919050565b60006020820190508181036000830152613ea181613e65565b9050919050565b7f45524332303a204163636f756e74206973206e6f7420626c61636b6c6973746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f0460218361343d565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f9660268361343d565b9150613fa182613f3a565b604082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b600081519050613fdb816133c6565b92915050565b600060208284031215613ff757613ff66133b2565b5b600061400584828501613fcc565b91505092915050565b600060408201905061402360008301856136cf565b61403060208301846135c1565b9392505050565b6140408161358b565b811461404b57600080fd5b50565b60008151905061405d81614037565b92915050565b600060208284031215614079576140786133b2565b5b60006140878482850161404e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ec60248361343d565b91506140f782614090565b604082019050919050565b6000602082019050818103600083015261411b816140df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061417e60228361343d565b915061418982614122565b604082019050919050565b600060208201905081810360008301526141ad81614171565b9050919050565b7f45524332303a20746f6b656e207472616e73666572207768696c65207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061421060228361343d565b915061421b826141b4565b604082019050919050565b6000602082019050818103600083015261423f81614203565b9050919050565b7f45524332303a2073656e64657220626c61636b6c697374656400000000000000600082015250565b600061427c60198361343d565b915061428782614246565b602082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b7f45524332303a20726563697069656e7420626c61636b6c697374656400000000600082015250565b60006142e8601c8361343d565b91506142f3826142b2565b602082019050919050565b60006020820190508181036000830152614317816142db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061438b8161351f565b92915050565b6000602082840312156143a7576143a66133b2565b5b60006143b58482850161437c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143f8826133bc565b9150614403836133bc565b925082614413576144126143be565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6144538161350d565b82525050565b6000614465838361444a565b60208301905092915050565b6000602082019050919050565b60006144898261441e565b6144938185614429565b935061449e8361443a565b8060005b838110156144cf5781516144b68882614459565b97506144c183614471565b9250506001810190506144a2565b5085935050505092915050565b60006040820190506144f160008301856135c1565b8181036020830152614503818461447e565b90509392505050565b600080fd5b61451a82613481565b810181811067ffffffffffffffff821117156145395761453861431e565b5b80604052505050565b600061454c6133a8565b90506145588282614511565b919050565b600067ffffffffffffffff8211156145785761457761431e565b5b602082029050602081019050919050565b600080fd5b60006145a161459c8461455d565b614542565b905080838252602082019050602084028301858111156145c4576145c3614589565b5b835b818110156145ed57806145d98882613fcc565b8452602084019350506020810190506145c6565b5050509392505050565b600082601f83011261460c5761460b61450c565b5b815161461c84826020860161458e565b91505092915050565b60006020828403121561463b5761463a6133b2565b5b600082015167ffffffffffffffff811115614659576146586133b7565b5b614665848285016145f7565b91505092915050565b6000819050919050565b6000819050919050565b600061469d6146986146938461466e565b614678565b6133bc565b9050919050565b6146ad81614682565b82525050565b600060a0820190506146c860008301886135c1565b6146d560208301876146a4565b81810360408301526146e7818661447e565b90506146f660608301856136cf565b61470360808301846135c1565b9695505050505050565b6000614718826133bc565b9150614723836133bc565b92508282101561473657614735613965565b5b828203905092915050565b600060c08201905061475660008301896136cf565b61476360208301886135c1565b61477060408301876146a4565b61477d60608301866146a4565b61478a60808301856136cf565b61479760a08301846135c1565b979650505050505050565b6000806000606084860312156147bb576147ba6133b2565b5b60006147c986828701613fcc565b93505060206147da86828701613fcc565b92505060406147eb86828701613fcc565b9150509250925092565b600081905092915050565b50565b60006148106000836147f5565b915061481b82614800565b600082019050919050565b600061483182614803565b9150819050919050565b7f7472616e7366657220746f20206465762077616c6c6574206661696c65640000600082015250565b6000614871601e8361343d565b915061487c8261483b565b602082019050919050565b600060208201905081810360008301526148a081614864565b9050919050565b7f6d617857616c6c6574206c696d69742065786365656465640000000000000000600082015250565b60006148dd60188361343d565b91506148e8826148a7565b602082019050919050565b6000602082019050818103600083015261490c816148d0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061494960148361343d565b915061495482614913565b602082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149db60218361343d565b91506149e68261497f565b604082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a6d60228361343d565b9150614a7882614a11565b604082019050919050565b60006020820190508181036000830152614a9c81614a60565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ad960108361343d565b9150614ae482614aa3565b602082019050919050565b60006020820190508181036000830152614b0881614acc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b6b60258361343d565b9150614b7682614b0f565b604082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bfd60238361343d565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c8f60268361343d565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b905091905056fea26469706673582212202ef9123692fa8c0b9d12db68d8c60dd08abeacf5f3c83dd3cc4d249bc42b421b64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000957656e204c616d626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c414d424f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063cba0e996116100a0578063dd62ed3e1161006f578063dd62ed3e146106dc578063f2fde38b14610719578063f8b45b0514610742578063f9d0831a1461076d578063fe575a871461079657610204565b8063cba0e99614610636578063ced695a414610673578063cfefd79e1461068a578063d01dc84b146106b357610204565b806395d89b41116100dc57806395d89b4114610568578063a457c2d714610593578063a9059cbb146105d0578063abe4f11d1461060d57610204565b8063715018a6146104e6578063717a8651146104fd5780638456cb59146105265780638da5cb5b1461053d57610204565b8063313ce567116101905780634febf53d1161015f5780634febf53d1461041557806353eb3bcf1461043e5780635c975abb146104555780635d0044ca1461048057806370a08231146104a957610204565b8063313ce5671461036d57806339509351146103985780633f4ba83a146103d557806342966c68146103ec57610204565b806323a38a38116101cc57806323a38a38146102c557806323b872dd146102f0578063247b912d1461032d5780632c32abc21461035657610204565b806305a1f36d1461020957806306fdde0314610232578063095ea7b31461025d57806318160ddd1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133f2565b6107d3565b005b34801561023e57600080fd5b50610247610895565b60405161025491906134cb565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f919061354b565b610927565b60405161029191906135a6565b60405180910390f35b3480156102a657600080fd5b506102af610945565b6040516102bc91906135d0565b60405180910390f35b3480156102d157600080fd5b506102da61094f565b6040516102e791906135a6565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906135eb565b610962565b60405161032491906135a6565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906133f2565b610a5a565b005b34801561036257600080fd5b5061036b610b1c565b005b34801561037957600080fd5b50610382610bca565b60405161038f919061365a565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba919061354b565b610bd3565b6040516103cc91906135a6565b60405180910390f35b3480156103e157600080fd5b506103ea610c7f565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613675565b610d4c565b005b34801561042157600080fd5b5061043c600480360381019061043791906136a2565b610dd5565b005b34801561044a57600080fd5b50610453610ef5565b005b34801561046157600080fd5b5061046a610fde565b60405161047791906135a6565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613675565b610ff5565b005b3480156104b557600080fd5b506104d060048036038101906104cb91906136a2565b6110d2565b6040516104dd91906135d0565b60405180910390f35b3480156104f257600080fd5b506104fb61111a565b005b34801561050957600080fd5b50610524600480360381019061051f91906136a2565b6111a2565b005b34801561053257600080fd5b5061053b611306565b005b34801561054957600080fd5b506105526113d4565b60405161055f91906136de565b60405180910390f35b34801561057457600080fd5b5061057d6113fe565b60405161058a91906134cb565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061354b565b611490565b6040516105c791906135a6565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f2919061354b565b61157b565b60405161060491906135a6565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906136a2565b611599565b005b34801561064257600080fd5b5061065d600480360381019061065891906136a2565b6116b8565b60405161066a91906135a6565b60405180910390f35b34801561067f57600080fd5b5061068861170e565b005b34801561069657600080fd5b506106b160048036038101906106ac91906136a2565b6117f6565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906136a2565b611959565b005b3480156106e857600080fd5b5061070360048036038101906106fe91906136f9565b611a33565b60405161071091906135d0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906136a2565b611aba565b005b34801561074e57600080fd5b50610757611bb2565b60405161076491906135d0565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906136a2565b611bb8565b005b3480156107a257600080fd5b506107bd60048036038101906107b891906136a2565b611de9565b6040516107ca91906135a6565b60405180910390f35b6107db611e3f565b73ffffffffffffffffffffffffffffffffffffffff166107f96113d4565b73ffffffffffffffffffffffffffffffffffffffff161461084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690613785565b60405180910390fd5b81601260405161085e906137fc565b90815260200160405180910390208190555080601260405161087f9061385d565b9081526020016040518091039020819055505050565b6060600380546108a4906138a1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906138a1565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093b610934611e3f565b8484611e47565b6001905092915050565b6000600254905090565b601560009054906101000a900460ff1681565b600061096f848484612012565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ba611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613945565b60405180910390fd5b610a4e85610a46611e3f565b858403611e47565b60019150509392505050565b610a62611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610a806113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613785565b60405180910390fd5b816013604051610ae5906137fc565b908152602001604051809103902081905550806013604051610b069061385d565b9081526020016040518091039020819055505050565b610b24611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610b426113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613785565b60405180910390fd5b610bc76000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000612168565b50565b60006012905090565b6000610c75610be0611e3f565b848460016000610bee611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c709190613994565b611e47565b6001905092915050565b610c87611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610ca56113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290613785565b60405180910390fd5b610d03610fde565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613a36565b60405180910390fd5b610d4a612d3b565b565b610d54611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610d726113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613785565b60405180910390fd5b610dd23382612ddd565b50565b610ddd611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610dfb6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613785565b60405180910390fd5b610e5a816116b8565b15610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613ac8565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610efd611e3f565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613785565b60405180910390fd5b601560009054906101000a900460ff1615610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b34565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b6000600560149054906101000a900460ff16905090565b610ffd611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661101b6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613785565b60405180910390fd5b61271081116110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613ba0565b60405180910390fd5b670de0b6b3a7640000816110c99190613bc0565b600d8190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611122611e3f565b73ffffffffffffffffffffffffffffffffffffffff166111406113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613785565b60405180910390fd5b6111a06000612fb4565b565b6111aa611e3f565b73ffffffffffffffffffffffffffffffffffffffff166111c86113d4565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613785565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613c8c565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61130e611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661132c6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613785565b60405180910390fd5b61138a610fde565b156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613d1e565b60405180910390fd5b6113d261307a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461140d906138a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611439906138a1565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b5050505050905090565b6000806001600061149f611e3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613db0565b60405180910390fd5b611570611567611e3f565b85858403611e47565b600191505092915050565b600061158f611588611e3f565b8484612012565b6001905092915050565b6115a1611e3f565b73ffffffffffffffffffffffffffffffffffffffff166115bf6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613785565b60405180910390fd5b61161e816116b8565b61165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613e1c565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611716611e3f565b73ffffffffffffffffffffffffffffffffffffffff166117346113d4565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613785565b60405180910390fd5b601560009054906101000a900460ff166117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613e88565b60405180910390fd5b6000601560006101000a81548160ff021916908315150217905550565b6117fe611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661181c6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613785565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613f1a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611961611e3f565b73ffffffffffffffffffffffffffffffffffffffff1661197f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613785565b60405180910390fd5b8060146040516119e4906137fc565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ac2611e3f565b73ffffffffffffffffffffffffffffffffffffffff16611ae06113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90613785565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613fac565b60405180910390fd5b611baf81612fb4565b50565b600d5481565b611bc0611e3f565b73ffffffffffffffffffffffffffffffffffffffff16611bde6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90613785565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbc57611c716113d4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cb6573d6000803e3d6000fd5b50611de6565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611cfc91906136de565b60206040518083038186803b158015611d1457600080fd5b505afa158015611d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4c9190613fe1565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611d726113d4565b836040518363ffffffff1660e01b8152600401611d9092919061400e565b602060405180830381600087803b158015611daa57600080fd5b505af1158015611dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de29190614063565b5050505b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614194565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161200591906135d0565b60405180910390a3505050565b61201a610fde565b1561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614226565b60405180910390fd5b61206333611de9565b156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a90614292565b60405180910390fd5b6120ac82611de9565b156120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e3906142fe565b60405180910390fd5b6120f532611de9565b15612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614292565b60405180910390fd5b601560009054906101000a900460ff161561215857612155838383612168565b90505b61216383838361311d565b505050565b600080600267ffffffffffffffff8111156121865761218561431e565b5b6040519080825280602002602001820160405280156121b45781602001602082028036833780820191505090505b50905030816000815181106121cc576121cb61434d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561226e57600080fd5b505afa158015612282573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a69190614391565b816001815181106122ba576122b961434d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122fd856116b8565b158015612310575061230e846116b8565b155b15612d2f576000806007548561232691906143ed565b9050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16141561248257601260405161238c906137fc565b908152602001604051809103902054816123a69190613bc0565b826123b19190613994565b915060126040516123c19061385d565b908152602001604051809103902054816123db9190613bc0565b826123e69190613994565b915060008211156123fd576123fc873084612012565b5b601260405161240b906137fc565b908152602001604051809103902054816124259190613bc0565b601860008282546124369190613994565b92505081905550601260405161244b9061385d565b908152602001604051809103902054816124659190613bc0565b601960008282546124769190613994565b92505081905550612c70565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612c6f5760136040516124e6906137fc565b908152602001604051809103902054816125009190613bc0565b8261250b9190613994565b9150601360405161251b9061385d565b908152602001604051809103902054816125359190613bc0565b826125409190613994565b9150600082111561255757612556873084612012565b5b6013604051612565906137fc565b9081526020016040518091039020548161257f9190613bc0565b601860008282546125909190613994565b9250508190555060136040516125a59061385d565b908152602001604051809103902054816125bf9190613bc0565b601960008282546125d09190613994565b9250508190555060006019546018546125e99190613994565b905060008114156126005785945050505050612d34565b6000601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f6019546018546126509190613994565b876040518363ffffffff1660e01b815260040161266e9291906144dc565b60006040518083038186803b15801561268657600080fd5b505afa15801561269a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906126c39190614625565b6001815181106126d6576126d561434d565b5b602002602001015190506008548110612c6c576000479050600060026019546126ff91906143ed565b60185461270c9190613994565b905061273b30601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e47565b601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58260008a30426040518663ffffffff1660e01b815260040161279f9594939291906146b3565b600060405180830381600087803b1580156127b957600080fd5b505af11580156127cd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906127f69190614625565b5060008247612805919061470d565b90506000600260195461281891906143ed565b90506000670de0b6b3a764000087670de0b6b3a7640000600260195461283e91906143ed565b6128489190613bc0565b61285291906143ed565b8461285d9190613bc0565b61286791906143ed565b90506000670de0b6b3a764000088670de0b6b3a764000060185461288b9190613bc0565b61289591906143ed565b856128a09190613bc0565b6128aa91906143ed565b90506128d930601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611e47565b601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719833086600080601460405161292b9061385d565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161297c96959493929190614741565b6060604051808303818588803b15801561299557600080fd5b505af11580156129a9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129ce91906147a2565b505050600083866129df9190613994565b6019546018546129ef9190613994565b6129f9919061470d565b90506000811115612a4c57612a4b306014604051612a16906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612012565b5b60006014604051612a5c906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612aae90614826565b60006040518083038185875af1925050503d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b5050905080612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614887565b60405180910390fd5b60008484612b429190613994565b87612b4d919061470d565b1115612c535760006014604051612b63906137fc565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585612bb49190613994565b88612bbf919061470d565b604051612bcb90614826565b60006040518083038185875af1925050503d8060008114612c08576040519150601f19603f3d011682016040523d82523d6000602084013e612c0d565b606091505b5050905080612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890614887565b60405180910390fd5b505b6000601881905550600060198190555050505050505050505b50505b5b8185612c7c919061470d565b9450601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614612d2c57600d5485612ce0886110d2565b612cea9190613994565b1115612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d22906148f3565b60405180910390fd5b5b50505b829150505b9392505050565b612d43610fde565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d799061495f565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612dc6611e3f565b604051612dd391906136de565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906149f1565b60405180910390fd5b612e598260008361339e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed690614a83565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612f36919061470d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f9b91906135d0565b60405180910390a3612faf836000846133a3565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613082610fde565b156130c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b990614aef565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613106611e3f565b60405161311391906136de565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490614b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f490614c13565b60405180910390fd5b61320883838361339e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614ca5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133219190613994565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161338591906135d0565b60405180910390a36133988484846133a3565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6133cf816133bc565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b60008060408385031215613409576134086133b2565b5b6000613417858286016133dd565b9250506020613428858286016133dd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561346c578082015181840152602081019050613451565b8381111561347b576000848401525b50505050565b6000601f19601f8301169050919050565b600061349d82613432565b6134a7818561343d565b93506134b781856020860161344e565b6134c081613481565b840191505092915050565b600060208201905081810360008301526134e58184613492565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613518826134ed565b9050919050565b6135288161350d565b811461353357600080fd5b50565b6000813590506135458161351f565b92915050565b60008060408385031215613562576135616133b2565b5b600061357085828601613536565b9250506020613581858286016133dd565b9150509250929050565b60008115159050919050565b6135a08161358b565b82525050565b60006020820190506135bb6000830184613597565b92915050565b6135ca816133bc565b82525050565b60006020820190506135e560008301846135c1565b92915050565b600080600060608486031215613604576136036133b2565b5b600061361286828701613536565b935050602061362386828701613536565b9250506040613634868287016133dd565b9150509250925092565b600060ff82169050919050565b6136548161363e565b82525050565b600060208201905061366f600083018461364b565b92915050565b60006020828403121561368b5761368a6133b2565b5b6000613699848285016133dd565b91505092915050565b6000602082840312156136b8576136b76133b2565b5b60006136c684828501613536565b91505092915050565b6136d88161350d565b82525050565b60006020820190506136f360008301846136cf565b92915050565b600080604083850312156137105761370f6133b2565b5b600061371e85828601613536565b925050602061372f85828601613536565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061376f60208361343d565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b600081905092915050565b7f6465760000000000000000000000000000000000000000000000000000000000600082015250565b60006137e66003836137a5565b91506137f1826137b0565b600382019050919050565b6000613807826137d9565b9150819050919050565b7f6c69717569646974790000000000000000000000000000000000000000000000600082015250565b60006138476009836137a5565b915061385282613811565b600982019050919050565b60006138688261383a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b957607f821691505b602082108114156138cd576138cc613872565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061392f60288361343d565b915061393a826138d3565b604082019050919050565b6000602082019050818103600083015261395e81613922565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061399f826133bc565b91506139aa836133bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139df576139de613965565b5b828201905092915050565b7f45524332303a20436f6e7472616374206973206e6f7420706175736564000000600082015250565b6000613a20601d8361343d565b9150613a2b826139ea565b602082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f45524332303a204163636f756e7420697320616c7265616479206578636c756460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab260228361343d565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f45524332303a2054617820697320616c726561647920656e61626c6564000000600082015250565b6000613b1e601d8361343d565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f4e4f207275672070756c6c000000000000000000000000000000000000000000600082015250565b6000613b8a600b8361343d565b9150613b9582613b54565b602082019050919050565b60006020820190508181036000830152613bb981613b7d565b9050919050565b6000613bcb826133bc565b9150613bd6836133bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0f57613c0e613965565b5b828202905092915050565b7f45524332303a204163636f756e7420697320616c726561647920626c61636b6c60008201527f6973746564000000000000000000000000000000000000000000000000000000602082015250565b6000613c7660258361343d565b9150613c8182613c1a565b604082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f45524332303a20436f6e747261637420697320616c726561647920706175736560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0860218361343d565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d9a60258361343d565b9150613da582613d3e565b604082019050919050565b60006020820190508181036000830152613dc981613d8d565b9050919050565b7f45524332303a204163636f756e74206973206e6f74206578636c756465640000600082015250565b6000613e06601e8361343d565b9150613e1182613dd0565b602082019050919050565b60006020820190508181036000830152613e3581613df9565b9050919050565b7f45524332303a2054617820697320616c72656164792064697361626c65640000600082015250565b6000613e72601e8361343d565b9150613e7d82613e3c565b602082019050919050565b60006020820190508181036000830152613ea181613e65565b9050919050565b7f45524332303a204163636f756e74206973206e6f7420626c61636b6c6973746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f0460218361343d565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f9660268361343d565b9150613fa182613f3a565b604082019050919050565b60006020820190508181036000830152613fc581613f89565b9050919050565b600081519050613fdb816133c6565b92915050565b600060208284031215613ff757613ff66133b2565b5b600061400584828501613fcc565b91505092915050565b600060408201905061402360008301856136cf565b61403060208301846135c1565b9392505050565b6140408161358b565b811461404b57600080fd5b50565b60008151905061405d81614037565b92915050565b600060208284031215614079576140786133b2565b5b60006140878482850161404e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ec60248361343d565b91506140f782614090565b604082019050919050565b6000602082019050818103600083015261411b816140df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061417e60228361343d565b915061418982614122565b604082019050919050565b600060208201905081810360008301526141ad81614171565b9050919050565b7f45524332303a20746f6b656e207472616e73666572207768696c65207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061421060228361343d565b915061421b826141b4565b604082019050919050565b6000602082019050818103600083015261423f81614203565b9050919050565b7f45524332303a2073656e64657220626c61636b6c697374656400000000000000600082015250565b600061427c60198361343d565b915061428782614246565b602082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b7f45524332303a20726563697069656e7420626c61636b6c697374656400000000600082015250565b60006142e8601c8361343d565b91506142f3826142b2565b602082019050919050565b60006020820190508181036000830152614317816142db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061438b8161351f565b92915050565b6000602082840312156143a7576143a66133b2565b5b60006143b58482850161437c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143f8826133bc565b9150614403836133bc565b925082614413576144126143be565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6144538161350d565b82525050565b6000614465838361444a565b60208301905092915050565b6000602082019050919050565b60006144898261441e565b6144938185614429565b935061449e8361443a565b8060005b838110156144cf5781516144b68882614459565b97506144c183614471565b9250506001810190506144a2565b5085935050505092915050565b60006040820190506144f160008301856135c1565b8181036020830152614503818461447e565b90509392505050565b600080fd5b61451a82613481565b810181811067ffffffffffffffff821117156145395761453861431e565b5b80604052505050565b600061454c6133a8565b90506145588282614511565b919050565b600067ffffffffffffffff8211156145785761457761431e565b5b602082029050602081019050919050565b600080fd5b60006145a161459c8461455d565b614542565b905080838252602082019050602084028301858111156145c4576145c3614589565b5b835b818110156145ed57806145d98882613fcc565b8452602084019350506020810190506145c6565b5050509392505050565b600082601f83011261460c5761460b61450c565b5b815161461c84826020860161458e565b91505092915050565b60006020828403121561463b5761463a6133b2565b5b600082015167ffffffffffffffff811115614659576146586133b7565b5b614665848285016145f7565b91505092915050565b6000819050919050565b6000819050919050565b600061469d6146986146938461466e565b614678565b6133bc565b9050919050565b6146ad81614682565b82525050565b600060a0820190506146c860008301886135c1565b6146d560208301876146a4565b81810360408301526146e7818661447e565b90506146f660608301856136cf565b61470360808301846135c1565b9695505050505050565b6000614718826133bc565b9150614723836133bc565b92508282101561473657614735613965565b5b828203905092915050565b600060c08201905061475660008301896136cf565b61476360208301886135c1565b61477060408301876146a4565b61477d60608301866146a4565b61478a60808301856136cf565b61479760a08301846135c1565b979650505050505050565b6000806000606084860312156147bb576147ba6133b2565b5b60006147c986828701613fcc565b93505060206147da86828701613fcc565b92505060406147eb86828701613fcc565b9150509250925092565b600081905092915050565b50565b60006148106000836147f5565b915061481b82614800565b600082019050919050565b600061483182614803565b9150819050919050565b7f7472616e7366657220746f20206465762077616c6c6574206661696c65640000600082015250565b6000614871601e8361343d565b915061487c8261483b565b602082019050919050565b600060208201905081810360008301526148a081614864565b9050919050565b7f6d617857616c6c6574206c696d69742065786365656465640000000000000000600082015250565b60006148dd60188361343d565b91506148e8826148a7565b602082019050919050565b6000602082019050818103600083015261490c816148d0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061494960148361343d565b915061495482614913565b602082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149db60218361343d565b91506149e68261497f565b604082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a6d60228361343d565b9150614a7882614a11565b604082019050919050565b60006020820190508181036000830152614a9c81614a60565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ad960108361343d565b9150614ae482614aa3565b602082019050919050565b60006020820190508181036000830152614b0881614acc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b6b60258361343d565b9150614b7682614b0f565b604082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bfd60238361343d565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c8f60268361343d565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b905091905056fea26469706673582212202ef9123692fa8c0b9d12db68d8c60dd08abeacf5f3c83dd3cc4d249bc42b421b64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000957656e204c616d626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c414d424f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Wen Lambo
Arg [1] : _tokenSymbol (string): LAMBO
Arg [2] : _supply (uint256): 1000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 57656e204c616d626f0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4c414d424f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24249:11255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33688:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2627:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4166:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3119:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25136:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4817:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33911:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31626:106;;;;;;;;;;;;;:::i;:::-;;2961:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5718:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32005:126;;;;;;;;;;;;;:::i;:::-;;32438:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33190:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34686:136;;;;;;;;;;;;;:::i;:::-;;15100:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32207:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3290:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13487:94;;;;;;;;;;;;;:::i;:::-;;32651:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31806:127;;;;;;;;;;;;;:::i;:::-;;12836:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2846:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6436:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3630:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33449:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35350:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34888:138;;;;;;;;;;;;;:::i;:::-;;32926:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34145:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3868:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13736:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24713:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34258:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35134:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33688:160;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33784:3:::1;33766:8;:15;;;;;:::i;:::-;;;;;;;;;;;;;:21;;;;33822:9;33798:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;:33;;;;33688:160:::0;;:::o;2627:100::-;2681:13;2714:5;2707:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:100;:::o;4166:169::-;4249:4;4266:39;4275:12;:10;:12::i;:::-;4289:7;4298:6;4266:8;:39::i;:::-;4323:4;4316:11;;4166:169;;;;:::o;3119:108::-;3180:7;3207:12;;3200:19;;3119:108;:::o;25136:28::-;;;;;;;;;;;;;:::o;4817:492::-;4957:4;4974:36;4984:6;4992:9;5003:6;4974:9;:36::i;:::-;5023:24;5050:11;:19;5062:6;5050:19;;;;;;;;;;;;;;;:33;5070:12;:10;:12::i;:::-;5050:33;;;;;;;;;;;;;;;;5023:60;;5122:6;5102:16;:26;;5094:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5209:57;5218:6;5226:12;:10;:12::i;:::-;5259:6;5240:16;:25;5209:8;:57::i;:::-;5297:4;5290:11;;;4817:492;;;;;:::o;33911:167::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34012:3:::1;33993:9;:16;;;;;:::i;:::-;;;;;;;;;;;;;:22;;;;34051:9;34026;:22;;;;;:::i;:::-;;;;;;;;;;;;;:34;;;;33911:167:::0;;:::o;31626:106::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31676:48:::1;31694:1;31706:13;;;;;;;;;;;31722:1;31676:9;:48::i;:::-;;31626:106::o:0;2961:93::-;3019:5;3044:2;3037:9;;2961:93;:::o;5718:215::-;5806:4;5823:80;5832:12;:10;:12::i;:::-;5846:7;5892:10;5855:11;:25;5867:12;:10;:12::i;:::-;5855:25;;;;;;;;;;;;;;;:34;5881:7;5855:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5823:8;:80::i;:::-;5921:4;5914:11;;5718:215;;;;:::o;32005:126::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32060:8:::1;:6;:8::i;:::-;32052:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;32113:10;:8;:10::i;:::-;32005:126::o:0;32438:91::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32496:25:::1;32502:10;32514:6;32496:5;:25::i;:::-;32438:91:::0;:::o;33190:175::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33261:19:::1;33272:7;33261:10;:19::i;:::-;33260:20;33252:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33353:4;33330:11;:20;33342:7;33330:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33190:175:::0;:::o;34686:136::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34744:9:::1;;;;;;;;;;;34743:10;34735:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;34810:4;34798:9;;:16;;;;;;;;;;;;;;;;;;34686:136::o:0;15100:86::-;15147:4;15171:7;;;;;;;;;;;15164:14;;15100:86;:::o;32207:154::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32294:5:::1;32285:6;:14;32276:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;32347:6;32338;:15;;;;:::i;:::-;32326:9;:27;;;;32207:154:::0;:::o;3290:127::-;3364:7;3391:9;:18;3401:7;3391:18;;;;;;;;;;;;;;;;3384:25;;3290:127;;;:::o;13487:94::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13552:21:::1;13570:1;13552:9;:21::i;:::-;13487:94::o:0;32651:183::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32730:9:::1;:18;32740:7;32730:18;;;;;;;;;;;;;;;;;;;;;;;;;32729:19;32721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;32822:4;32801:9;:18;32811:7;32801:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;32651:183:::0;:::o;31806:127::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31860:8:::1;:6;:8::i;:::-;31859:9;31851:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31917:8;:6;:8::i;:::-;31806:127::o:0;12836:87::-;12882:7;12909:6;;;;;;;;;;;12902:13;;12836:87;:::o;2846:104::-;2902:13;2935:7;2928:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2846:104;:::o;6436:413::-;6529:4;6546:24;6573:11;:25;6585:12;:10;:12::i;:::-;6573:25;;;;;;;;;;;;;;;:34;6599:7;6573:34;;;;;;;;;;;;;;;;6546:61;;6646:15;6626:16;:35;;6618:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6739:67;6748:12;:10;:12::i;:::-;6762:7;6790:15;6771:16;:34;6739:8;:67::i;:::-;6837:4;6830:11;;;6436:413;;;;:::o;3630:175::-;3716:4;3733:42;3743:12;:10;:12::i;:::-;3757:9;3768:6;3733:9;:42::i;:::-;3793:4;3786:11;;3630:175;;;;:::o;33449:177::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:19:::1;33536:7;33525:10;:19::i;:::-;33517:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33613:5;33590:11;:20;33602:7;33590:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33449:177:::0;:::o;35350:110::-;35408:4;35432:11;:20;35444:7;35432:20;;;;;;;;;;;;;;;;;;;;;;;;;35425:27;;35350:110;;;:::o;34888:138::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34946:9:::1;;;;;;;;;;;34938:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;35013:5;35001:9;;:17;;;;;;;;;;;;;;;;;;34888:138::o:0;32926:180::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33005:9:::1;:18;33015:7;33005:18;;;;;;;;;;;;;;;;;;;;;;;;;32997:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33093:5;33072:9;:18;33082:7;33072:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;32926:180:::0;:::o;34145:105::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34229:3:::1;34209:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;34145:105:::0;:::o;3868:151::-;3957:7;3984:11;:18;3996:5;3984:18;;;;;;;;;;;;;;;:27;4003:7;3984:27;;;;;;;;;;;;;;;;3977:34;;3868:151;;;;:::o;13736:192::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13845:1:::1;13825:22;;:8;:22;;;;13817:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13901:19;13911:8;13901:9;:19::i;:::-;13736:192:::0;:::o;24713:24::-;;;;:::o;34258:363::-;13067:12;:10;:12::i;:::-;13056:23;;:7;:5;:7::i;:::-;:23;;;13048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34355:3:::1;34337:22;;:6;:22;;;34333:124;;;34384:7;:5;:7::i;:::-;34376:25;;:48;34402:21;34376:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;34439:7;;34333:124;34467:17;34494:6;34467:34;;34512:15;34530:10;:20;;;34559:4;34530:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34512:53;;34576:10;:19;;;34596:7;:5;:7::i;:::-;34605;34576:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34319:302;;13127:1;34258:363:::0;:::o;35134:111::-;35195:4;35219:9;:18;35229:7;35219:18;;;;;;;;;;;;;;;;;;;;;;;;;35212:25;;35134:111;;;:::o;1940:98::-;1993:7;2020:10;2013:17;;1940:98;:::o;10120:380::-;10273:1;10256:19;;:5;:19;;;;10248:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10354:1;10335:21;;:7;:21;;;;10327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10438:6;10408:11;:18;10420:5;10408:18;;;;;;;;;;;;;;;:27;10427:7;10408:27;;;;;;;;;;;;;;;:36;;;;10476:7;10460:32;;10469:5;10460:32;;;10485:6;10460:32;;;;;;:::i;:::-;;;;;;;;10120:380;;;:::o;30948:595::-;31098:8;:6;:8::i;:::-;31097:9;31089:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;31165:25;31179:10;31165:13;:25::i;:::-;31164:26;31156:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31240:24;31254:9;31240:13;:24::i;:::-;31239:25;31231:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31317:24;31331:9;31317:13;:24::i;:::-;31316:25;31308:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31395:9;;;;;;;;;;;31392:89;;;31430:36;31440:6;31448:9;31459:6;31430:9;:36::i;:::-;31421:45;;31392:89;31493:42;31509:6;31517:9;31528:6;31493:15;:42::i;:::-;30948:595;;;:::o;26475:4461::-;26553:7;26573:25;26615:1;26601:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26573:44;;26650:4;26628:8;26637:1;26628:11;;;;;;;;:::i;:::-;;;;;;;:27;;;;;;;;;;;26680:17;;;;;;;;;;;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26666:8;26675:1;26666:11;;;;;;;;:::i;:::-;;;;;;;:38;;;;;;;;;;;26729:16;26740:4;26729:10;:16::i;:::-;26728:17;:36;;;;;26750:14;26761:2;26750:10;:14::i;:::-;26749:15;26728:36;26725:4170;;;26781:11;26807:16;26835:11;;26826:6;:20;;;;:::i;:::-;26807:39;;26880:13;;;;;;;;;;;26864:30;;:4;:30;;;26861:3814;;;26933:8;:15;;;;;:::i;:::-;;;;;;;;;;;;;;26922:8;:26;;;;:::i;:::-;26915:33;;;;;:::i;:::-;;;26985:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;;26974:8;:32;;;;:::i;:::-;26967:39;;;;;:::i;:::-;;;27069:1;27063:3;:7;27060:93;;;27095:35;27105:4;27119;27126:3;27095:9;:35::i;:::-;27060:93;27231:8;:15;;;;;:::i;:::-;;;;;;;;;;;;;;27220:8;:26;;;;:::i;:::-;27207:9;;:39;;;;;;;:::i;:::-;;;;;;;;27295:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;;27284:8;:32;;;;:::i;:::-;27265:15;;:51;;;;;;;:::i;:::-;;;;;;;;26861:3814;;;27357:13;;;;;;;;;;;27343:28;;:2;:28;;;27340:3335;;;27428:9;:16;;;;;:::i;:::-;;;;;;;;;;;;;;27417:8;:27;;;;:::i;:::-;27410:34;;;;;:::i;:::-;;;27481:9;:22;;;;;:::i;:::-;;;;;;;;;;;;;;27470:8;:33;;;;:::i;:::-;27463:40;;;;;:::i;:::-;;;27567:1;27561:3;:7;27558:93;;;27593:35;27603:4;27617;27624:3;27593:9;:35::i;:::-;27558:93;27728:9;:16;;;;;:::i;:::-;;;;;;;;;;;;;;27717:8;:27;;;;:::i;:::-;27704:9;;:40;;;;;;;:::i;:::-;;;;;;;;27793:9;:22;;;;;:::i;:::-;;;;;;;;;;;;;;27782:8;:33;;;;:::i;:::-;27763:15;;:52;;;;;;;:::i;:::-;;;;;;;;27870:14;27900:15;;27888:9;;:27;;;;:::i;:::-;27870:45;;27965:1;27955:6;:11;27952:29;;;27975:6;27968:13;;;;;;;;27952:29;28018:16;28037:17;;;;;;;;;;;:31;;;28082:15;;28070:9;;:27;;;;:::i;:::-;28099:8;28037:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28109:1;28037:74;;;;;;;;:::i;:::-;;;;;;;;28018:93;;28163:13;;28151:8;:25;28148:2494;;28201:20;28224:21;28201:44;;28270:14;28317:1;28299:15;;:19;;;;:::i;:::-;28287:9;;:31;;;;:::i;:::-;28270:48;;28364:59;28381:4;28396:17;;;;;;;;;;;28416:6;28364:8;:59::i;:::-;28460:17;;;;;;;;;;;:39;;;28526:6;28559:1;28587:8;28630:4;28662:15;28460:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28745:17;28789:12;28765:21;:36;;;;:::i;:::-;28745:56;;28846:22;28889:1;28871:15;;:19;;;;:::i;:::-;28846:44;;28913:20;28994:6;28983;28973;28969:1;28951:15;;:19;;;;:::i;:::-;:28;;;;:::i;:::-;28950:39;;;;:::i;:::-;28937:9;:53;;;;:::i;:::-;28936:64;;;;:::i;:::-;28913:87;;29067:14;29132:6;29121;29111;29099:9;;:18;;;;:::i;:::-;29098:29;;;;:::i;:::-;29085:9;:43;;;;:::i;:::-;29084:54;;;;:::i;:::-;29067:71;;29204:67;29221:4;29236:17;;;;;;;;;;;29256:14;29204:8;:67::i;:::-;29316:17;;;;;;;;;;;:33;;;29357:12;29405:4;29437:14;29478:1;29506;29534:10;:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29584:15;29316:306;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29667:23;29735:14;29726:6;:23;;;;:::i;:::-;29706:15;;29694:9;;:27;;;;:::i;:::-;29693:57;;;;:::i;:::-;29667:83;;29816:1;29798:15;:19;29795:135;;;29846:60;29864:4;29871:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29890:15;29846:9;:60::i;:::-;29795:135;29996:12;30013:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:22;;30043:6;30013:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29995:59;;;30084:7;30076:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;30235:1;30219:12;30210:6;:21;;;;:::i;:::-;30196:9;:36;;;;:::i;:::-;:40;30193:262;;;30265:13;30283:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:22;;30335:12;30326:6;:21;;;;:::i;:::-;30313:9;:35;;;;:::i;:::-;30283:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30264:89;;;30388:8;30380:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;30238:217;30193:262;30557:1;30545:9;:13;;;;30599:1;30581:15;:19;;;;28178:2464;;;;;;;;28148:2494;27373:3302;;27340:3335;26861:3814;30713:3;30703:13;;;;;:::i;:::-;;;30749;;;;;;;;;;;30735:28;;:2;:28;;;30731:140;;30817:9;;30807:6;30791:13;30801:2;30791:9;:13::i;:::-;:22;;;;:::i;:::-;:35;;30783:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;30731:140;26766:4129;;26725:4170;30922:6;30915:13;;;26475:4461;;;;;;:::o;16159:120::-;15703:8;:6;:8::i;:::-;15695:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;16228:5:::1;16218:7;;:15;;;;;;;;;;;;;;;;;;16249:22;16258:12;:10;:12::i;:::-;16249:22;;;;;;:::i;:::-;;;;;;;;16159:120::o:0;9091:591::-;9194:1;9175:21;;:7;:21;;;;9167:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9247:49;9268:7;9285:1;9289:6;9247:20;:49::i;:::-;9309:22;9334:9;:18;9344:7;9334:18;;;;;;;;;;;;;;;;9309:43;;9389:6;9371:14;:24;;9363:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9508:6;9491:14;:23;9470:9;:18;9480:7;9470:18;;;;;;;;;;;;;;;:44;;;;9552:6;9536:12;;:22;;;;;;;:::i;:::-;;;;;;;;9602:1;9576:37;;9585:7;9576:37;;;9606:6;9576:37;;;;;;:::i;:::-;;;;;;;;9626:48;9646:7;9663:1;9667:6;9626:19;:48::i;:::-;9156:526;9091:591;;:::o;13936:174::-;13993:16;14012:6;;;;;;;;;;;13993:25;;14038:8;14029:6;;:17;;;;;;;;;;;;;;;;;;14093:8;14062:40;;14083:8;14062:40;;;;;;;;;;;;13982:128;13936:174;:::o;15900:118::-;15426:8;:6;:8::i;:::-;15425:9;15417:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;15970:4:::1;15960:7;;:14;;;;;;;;;;;;;;;;;;15990:20;15997:12;:10;:12::i;:::-;15990:20;;;;;;:::i;:::-;;;;;;;;15900:118::o:0;7339:733::-;7497:1;7479:20;;:6;:20;;;;7471:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7581:1;7560:23;;:9;:23;;;;7552:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7636:47;7657:6;7665:9;7676:6;7636:20;:47::i;:::-;7696:21;7720:9;:17;7730:6;7720:17;;;;;;;;;;;;;;;;7696:41;;7773:6;7756:13;:23;;7748:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7894:6;7878:13;:22;7858:9;:17;7868:6;7858:17;;;;;;;;;;;;;;;:42;;;;7946:6;7922:9;:20;7932:9;7922:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7987:9;7970:35;;7979:6;7970:35;;;7998:6;7970:35;;;;;;:::i;:::-;;;;;;;;8018:46;8038:6;8046:9;8057:6;8018:19;:46::i;:::-;7460:612;7339:733;;;:::o;11100:125::-;;;;:::o;11829:124::-;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:118::-;4061:24;4079:5;4061:24;:::i;:::-;4056:3;4049:37;3974:118;;:::o;4098:222::-;4191:4;4229:2;4218:9;4214:18;4206:26;;4242:71;4310:1;4299:9;4295:17;4286:6;4242:71;:::i;:::-;4098:222;;;;:::o;4326:619::-;4403:6;4411;4419;4468:2;4456:9;4447:7;4443:23;4439:32;4436:119;;;4474:79;;:::i;:::-;4436:119;4594:1;4619:53;4664:7;4655:6;4644:9;4640:22;4619:53;:::i;:::-;4609:63;;4565:117;4721:2;4747:53;4792:7;4783:6;4772:9;4768:22;4747:53;:::i;:::-;4737:63;;4692:118;4849:2;4875:53;4920:7;4911:6;4900:9;4896:22;4875:53;:::i;:::-;4865:63;;4820:118;4326:619;;;;;:::o;4951:86::-;4986:7;5026:4;5019:5;5015:16;5004:27;;4951:86;;;:::o;5043:112::-;5126:22;5142:5;5126:22;:::i;:::-;5121:3;5114:35;5043:112;;:::o;5161:214::-;5250:4;5288:2;5277:9;5273:18;5265:26;;5301:67;5365:1;5354:9;5350:17;5341:6;5301:67;:::i;:::-;5161:214;;;;:::o;5381:329::-;5440:6;5489:2;5477:9;5468:7;5464:23;5460:32;5457:119;;;5495:79;;:::i;:::-;5457:119;5615:1;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5586:117;5381:329;;;;:::o;5716:::-;5775:6;5824:2;5812:9;5803:7;5799:23;5795:32;5792:119;;;5830:79;;:::i;:::-;5792:119;5950:1;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5921:117;5716:329;;;;:::o;6051:118::-;6138:24;6156:5;6138:24;:::i;:::-;6133:3;6126:37;6051:118;;:::o;6175:222::-;6268:4;6306:2;6295:9;6291:18;6283:26;;6319:71;6387:1;6376:9;6372:17;6363:6;6319:71;:::i;:::-;6175:222;;;;:::o;6403:474::-;6471:6;6479;6528:2;6516:9;6507:7;6503:23;6499:32;6496:119;;;6534:79;;:::i;:::-;6496:119;6654:1;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6625:117;6781:2;6807:53;6852:7;6843:6;6832:9;6828:22;6807:53;:::i;:::-;6797:63;;6752:118;6403:474;;;;;:::o;6883:182::-;7023:34;7019:1;7011:6;7007:14;7000:58;6883:182;:::o;7071:366::-;7213:3;7234:67;7298:2;7293:3;7234:67;:::i;:::-;7227:74;;7310:93;7399:3;7310:93;:::i;:::-;7428:2;7423:3;7419:12;7412:19;;7071:366;;;:::o;7443:419::-;7609:4;7647:2;7636:9;7632:18;7624:26;;7696:9;7690:4;7686:20;7682:1;7671:9;7667:17;7660:47;7724:131;7850:4;7724:131;:::i;:::-;7716:139;;7443:419;;;:::o;7868:148::-;7970:11;8007:3;7992:18;;7868:148;;;;:::o;8022:153::-;8162:5;8158:1;8150:6;8146:14;8139:29;8022:153;:::o;8181:400::-;8341:3;8362:84;8444:1;8439:3;8362:84;:::i;:::-;8355:91;;8455:93;8544:3;8455:93;:::i;:::-;8573:1;8568:3;8564:11;8557:18;;8181:400;;;:::o;8587:381::-;8772:3;8794:148;8938:3;8794:148;:::i;:::-;8787:155;;8959:3;8952:10;;8587:381;;;:::o;8974:159::-;9114:11;9110:1;9102:6;9098:14;9091:35;8974:159;:::o;9139:400::-;9299:3;9320:84;9402:1;9397:3;9320:84;:::i;:::-;9313:91;;9413:93;9502:3;9413:93;:::i;:::-;9531:1;9526:3;9522:11;9515:18;;9139:400;;;:::o;9545:381::-;9730:3;9752:148;9896:3;9752:148;:::i;:::-;9745:155;;9917:3;9910:10;;9545:381;;;:::o;9932:180::-;9980:77;9977:1;9970:88;10077:4;10074:1;10067:15;10101:4;10098:1;10091:15;10118:320;10162:6;10199:1;10193:4;10189:12;10179:22;;10246:1;10240:4;10236:12;10267:18;10257:81;;10323:4;10315:6;10311:17;10301:27;;10257:81;10385:2;10377:6;10374:14;10354:18;10351:38;10348:84;;;10404:18;;:::i;:::-;10348:84;10169:269;10118:320;;;:::o;10444:227::-;10584:34;10580:1;10572:6;10568:14;10561:58;10653:10;10648:2;10640:6;10636:15;10629:35;10444:227;:::o;10677:366::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:419::-;11215:4;11253:2;11242:9;11238:18;11230:26;;11302:9;11296:4;11292:20;11288:1;11277:9;11273:17;11266:47;11330:131;11456:4;11330:131;:::i;:::-;11322:139;;11049:419;;;:::o;11474:180::-;11522:77;11519:1;11512:88;11619:4;11616:1;11609:15;11643:4;11640:1;11633:15;11660:305;11700:3;11719:20;11737:1;11719:20;:::i;:::-;11714:25;;11753:20;11771:1;11753:20;:::i;:::-;11748:25;;11907:1;11839:66;11835:74;11832:1;11829:81;11826:107;;;11913:18;;:::i;:::-;11826:107;11957:1;11954;11950:9;11943:16;;11660:305;;;;:::o;11971:179::-;12111:31;12107:1;12099:6;12095:14;12088:55;11971:179;:::o;12156:366::-;12298:3;12319:67;12383:2;12378:3;12319:67;:::i;:::-;12312:74;;12395:93;12484:3;12395:93;:::i;:::-;12513:2;12508:3;12504:12;12497:19;;12156:366;;;:::o;12528:419::-;12694:4;12732:2;12721:9;12717:18;12709:26;;12781:9;12775:4;12771:20;12767:1;12756:9;12752:17;12745:47;12809:131;12935:4;12809:131;:::i;:::-;12801:139;;12528:419;;;:::o;12953:221::-;13093:34;13089:1;13081:6;13077:14;13070:58;13162:4;13157:2;13149:6;13145:15;13138:29;12953:221;:::o;13180:366::-;13322:3;13343:67;13407:2;13402:3;13343:67;:::i;:::-;13336:74;;13419:93;13508:3;13419:93;:::i;:::-;13537:2;13532:3;13528:12;13521:19;;13180:366;;;:::o;13552:419::-;13718:4;13756:2;13745:9;13741:18;13733:26;;13805:9;13799:4;13795:20;13791:1;13780:9;13776:17;13769:47;13833:131;13959:4;13833:131;:::i;:::-;13825:139;;13552:419;;;:::o;13977:179::-;14117:31;14113:1;14105:6;14101:14;14094:55;13977:179;:::o;14162:366::-;14304:3;14325:67;14389:2;14384:3;14325:67;:::i;:::-;14318:74;;14401:93;14490:3;14401:93;:::i;:::-;14519:2;14514:3;14510:12;14503:19;;14162:366;;;:::o;14534:419::-;14700:4;14738:2;14727:9;14723:18;14715:26;;14787:9;14781:4;14777:20;14773:1;14762:9;14758:17;14751:47;14815:131;14941:4;14815:131;:::i;:::-;14807:139;;14534:419;;;:::o;14959:161::-;15099:13;15095:1;15087:6;15083:14;15076:37;14959:161;:::o;15126:366::-;15268:3;15289:67;15353:2;15348:3;15289:67;:::i;:::-;15282:74;;15365:93;15454:3;15365:93;:::i;:::-;15483:2;15478:3;15474:12;15467:19;;15126:366;;;:::o;15498:419::-;15664:4;15702:2;15691:9;15687:18;15679:26;;15751:9;15745:4;15741:20;15737:1;15726:9;15722:17;15715:47;15779:131;15905:4;15779:131;:::i;:::-;15771:139;;15498:419;;;:::o;15923:348::-;15963:7;15986:20;16004:1;15986:20;:::i;:::-;15981:25;;16020:20;16038:1;16020:20;:::i;:::-;16015:25;;16208:1;16140:66;16136:74;16133:1;16130:81;16125:1;16118:9;16111:17;16107:105;16104:131;;;16215:18;;:::i;:::-;16104:131;16263:1;16260;16256:9;16245:20;;15923:348;;;;:::o;16277:224::-;16417:34;16413:1;16405:6;16401:14;16394:58;16486:7;16481:2;16473:6;16469:15;16462:32;16277:224;:::o;16507:366::-;16649:3;16670:67;16734:2;16729:3;16670:67;:::i;:::-;16663:74;;16746:93;16835:3;16746:93;:::i;:::-;16864:2;16859:3;16855:12;16848:19;;16507:366;;;:::o;16879:419::-;17045:4;17083:2;17072:9;17068:18;17060:26;;17132:9;17126:4;17122:20;17118:1;17107:9;17103:17;17096:47;17160:131;17286:4;17160:131;:::i;:::-;17152:139;;16879:419;;;:::o;17304:220::-;17444:34;17440:1;17432:6;17428:14;17421:58;17513:3;17508:2;17500:6;17496:15;17489:28;17304:220;:::o;17530:366::-;17672:3;17693:67;17757:2;17752:3;17693:67;:::i;:::-;17686:74;;17769:93;17858:3;17769:93;:::i;:::-;17887:2;17882:3;17878:12;17871:19;;17530:366;;;:::o;17902:419::-;18068:4;18106:2;18095:9;18091:18;18083:26;;18155:9;18149:4;18145:20;18141:1;18130:9;18126:17;18119:47;18183:131;18309:4;18183:131;:::i;:::-;18175:139;;17902:419;;;:::o;18327:224::-;18467:34;18463:1;18455:6;18451:14;18444:58;18536:7;18531:2;18523:6;18519:15;18512:32;18327:224;:::o;18557:366::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:419::-;19095:4;19133:2;19122:9;19118:18;19110:26;;19182:9;19176:4;19172:20;19168:1;19157:9;19153:17;19146:47;19210:131;19336:4;19210:131;:::i;:::-;19202:139;;18929:419;;;:::o;19354:180::-;19494:32;19490:1;19482:6;19478:14;19471:56;19354:180;:::o;19540:366::-;19682:3;19703:67;19767:2;19762:3;19703:67;:::i;:::-;19696:74;;19779:93;19868:3;19779:93;:::i;:::-;19897:2;19892:3;19888:12;19881:19;;19540:366;;;:::o;19912:419::-;20078:4;20116:2;20105:9;20101:18;20093:26;;20165:9;20159:4;20155:20;20151:1;20140:9;20136:17;20129:47;20193:131;20319:4;20193:131;:::i;:::-;20185:139;;19912:419;;;:::o;20337:180::-;20477:32;20473:1;20465:6;20461:14;20454:56;20337:180;:::o;20523:366::-;20665:3;20686:67;20750:2;20745:3;20686:67;:::i;:::-;20679:74;;20762:93;20851:3;20762:93;:::i;:::-;20880:2;20875:3;20871:12;20864:19;;20523:366;;;:::o;20895:419::-;21061:4;21099:2;21088:9;21084:18;21076:26;;21148:9;21142:4;21138:20;21134:1;21123:9;21119:17;21112:47;21176:131;21302:4;21176:131;:::i;:::-;21168:139;;20895:419;;;:::o;21320:220::-;21460:34;21456:1;21448:6;21444:14;21437:58;21529:3;21524:2;21516:6;21512:15;21505:28;21320:220;:::o;21546:366::-;21688:3;21709:67;21773:2;21768:3;21709:67;:::i;:::-;21702:74;;21785:93;21874:3;21785:93;:::i;:::-;21903:2;21898:3;21894:12;21887:19;;21546:366;;;:::o;21918:419::-;22084:4;22122:2;22111:9;22107:18;22099:26;;22171:9;22165:4;22161:20;22157:1;22146:9;22142:17;22135:47;22199:131;22325:4;22199:131;:::i;:::-;22191:139;;21918:419;;;:::o;22343:225::-;22483:34;22479:1;22471:6;22467:14;22460:58;22552:8;22547:2;22539:6;22535:15;22528:33;22343:225;:::o;22574:366::-;22716:3;22737:67;22801:2;22796:3;22737:67;:::i;:::-;22730:74;;22813:93;22902:3;22813:93;:::i;:::-;22931:2;22926:3;22922:12;22915:19;;22574:366;;;:::o;22946:419::-;23112:4;23150:2;23139:9;23135:18;23127:26;;23199:9;23193:4;23189:20;23185:1;23174:9;23170:17;23163:47;23227:131;23353:4;23227:131;:::i;:::-;23219:139;;22946:419;;;:::o;23371:143::-;23428:5;23459:6;23453:13;23444:22;;23475:33;23502:5;23475:33;:::i;:::-;23371:143;;;;:::o;23520:351::-;23590:6;23639:2;23627:9;23618:7;23614:23;23610:32;23607:119;;;23645:79;;:::i;:::-;23607:119;23765:1;23790:64;23846:7;23837:6;23826:9;23822:22;23790:64;:::i;:::-;23780:74;;23736:128;23520:351;;;;:::o;23877:332::-;23998:4;24036:2;24025:9;24021:18;24013:26;;24049:71;24117:1;24106:9;24102:17;24093:6;24049:71;:::i;:::-;24130:72;24198:2;24187:9;24183:18;24174:6;24130:72;:::i;:::-;23877:332;;;;;:::o;24215:116::-;24285:21;24300:5;24285:21;:::i;:::-;24278:5;24275:32;24265:60;;24321:1;24318;24311:12;24265:60;24215:116;:::o;24337:137::-;24391:5;24422:6;24416:13;24407:22;;24438:30;24462:5;24438:30;:::i;:::-;24337:137;;;;:::o;24480:345::-;24547:6;24596:2;24584:9;24575:7;24571:23;24567:32;24564:119;;;24602:79;;:::i;:::-;24564:119;24722:1;24747:61;24800:7;24791:6;24780:9;24776:22;24747:61;:::i;:::-;24737:71;;24693:125;24480:345;;;;:::o;24831:223::-;24971:34;24967:1;24959:6;24955:14;24948:58;25040:6;25035:2;25027:6;25023:15;25016:31;24831:223;:::o;25060:366::-;25202:3;25223:67;25287:2;25282:3;25223:67;:::i;:::-;25216:74;;25299:93;25388:3;25299:93;:::i;:::-;25417:2;25412:3;25408:12;25401:19;;25060:366;;;:::o;25432:419::-;25598:4;25636:2;25625:9;25621:18;25613:26;;25685:9;25679:4;25675:20;25671:1;25660:9;25656:17;25649:47;25713:131;25839:4;25713:131;:::i;:::-;25705:139;;25432:419;;;:::o;25857:221::-;25997:34;25993:1;25985:6;25981:14;25974:58;26066:4;26061:2;26053:6;26049:15;26042:29;25857:221;:::o;26084:366::-;26226:3;26247:67;26311:2;26306:3;26247:67;:::i;:::-;26240:74;;26323:93;26412:3;26323:93;:::i;:::-;26441:2;26436:3;26432:12;26425:19;;26084:366;;;:::o;26456:419::-;26622:4;26660:2;26649:9;26645:18;26637:26;;26709:9;26703:4;26699:20;26695:1;26684:9;26680:17;26673:47;26737:131;26863:4;26737:131;:::i;:::-;26729:139;;26456:419;;;:::o;26881:221::-;27021:34;27017:1;27009:6;27005:14;26998:58;27090:4;27085:2;27077:6;27073:15;27066:29;26881:221;:::o;27108:366::-;27250:3;27271:67;27335:2;27330:3;27271:67;:::i;:::-;27264:74;;27347:93;27436:3;27347:93;:::i;:::-;27465:2;27460:3;27456:12;27449:19;;27108:366;;;:::o;27480:419::-;27646:4;27684:2;27673:9;27669:18;27661:26;;27733:9;27727:4;27723:20;27719:1;27708:9;27704:17;27697:47;27761:131;27887:4;27761:131;:::i;:::-;27753:139;;27480:419;;;:::o;27905:175::-;28045:27;28041:1;28033:6;28029:14;28022:51;27905:175;:::o;28086:366::-;28228:3;28249:67;28313:2;28308:3;28249:67;:::i;:::-;28242:74;;28325:93;28414:3;28325:93;:::i;:::-;28443:2;28438:3;28434:12;28427:19;;28086:366;;;:::o;28458:419::-;28624:4;28662:2;28651:9;28647:18;28639:26;;28711:9;28705:4;28701:20;28697:1;28686:9;28682:17;28675:47;28739:131;28865:4;28739:131;:::i;:::-;28731:139;;28458:419;;;:::o;28883:178::-;29023:30;29019:1;29011:6;29007:14;29000:54;28883:178;:::o;29067:366::-;29209:3;29230:67;29294:2;29289:3;29230:67;:::i;:::-;29223:74;;29306:93;29395:3;29306:93;:::i;:::-;29424:2;29419:3;29415:12;29408:19;;29067:366;;;:::o;29439:419::-;29605:4;29643:2;29632:9;29628:18;29620:26;;29692:9;29686:4;29682:20;29678:1;29667:9;29663:17;29656:47;29720:131;29846:4;29720:131;:::i;:::-;29712:139;;29439:419;;;:::o;29864:180::-;29912:77;29909:1;29902:88;30009:4;30006:1;29999:15;30033:4;30030:1;30023:15;30050:180;30098:77;30095:1;30088:88;30195:4;30192:1;30185:15;30219:4;30216:1;30209:15;30236:143;30293:5;30324:6;30318:13;30309:22;;30340:33;30367:5;30340:33;:::i;:::-;30236:143;;;;:::o;30385:351::-;30455:6;30504:2;30492:9;30483:7;30479:23;30475:32;30472:119;;;30510:79;;:::i;:::-;30472:119;30630:1;30655:64;30711:7;30702:6;30691:9;30687:22;30655:64;:::i;:::-;30645:74;;30601:128;30385:351;;;;:::o;30742:180::-;30790:77;30787:1;30780:88;30887:4;30884:1;30877:15;30911:4;30908:1;30901:15;30928:185;30968:1;30985:20;31003:1;30985:20;:::i;:::-;30980:25;;31019:20;31037:1;31019:20;:::i;:::-;31014:25;;31058:1;31048:35;;31063:18;;:::i;:::-;31048:35;31105:1;31102;31098:9;31093:14;;30928:185;;;;:::o;31119:114::-;31186:6;31220:5;31214:12;31204:22;;31119:114;;;:::o;31239:184::-;31338:11;31372:6;31367:3;31360:19;31412:4;31407:3;31403:14;31388:29;;31239:184;;;;:::o;31429:132::-;31496:4;31519:3;31511:11;;31549:4;31544:3;31540:14;31532:22;;31429:132;;;:::o;31567:108::-;31644:24;31662:5;31644:24;:::i;:::-;31639:3;31632:37;31567:108;;:::o;31681:179::-;31750:10;31771:46;31813:3;31805:6;31771:46;:::i;:::-;31849:4;31844:3;31840:14;31826:28;;31681:179;;;;:::o;31866:113::-;31936:4;31968;31963:3;31959:14;31951:22;;31866:113;;;:::o;32015:732::-;32134:3;32163:54;32211:5;32163:54;:::i;:::-;32233:86;32312:6;32307:3;32233:86;:::i;:::-;32226:93;;32343:56;32393:5;32343:56;:::i;:::-;32422:7;32453:1;32438:284;32463:6;32460:1;32457:13;32438:284;;;32539:6;32533:13;32566:63;32625:3;32610:13;32566:63;:::i;:::-;32559:70;;32652:60;32705:6;32652:60;:::i;:::-;32642:70;;32498:224;32485:1;32482;32478:9;32473:14;;32438:284;;;32442:14;32738:3;32731:10;;32139:608;;;32015:732;;;;:::o;32753:483::-;32924:4;32962:2;32951:9;32947:18;32939:26;;32975:71;33043:1;33032:9;33028:17;33019:6;32975:71;:::i;:::-;33093:9;33087:4;33083:20;33078:2;33067:9;33063:18;33056:48;33121:108;33224:4;33215:6;33121:108;:::i;:::-;33113:116;;32753:483;;;;;:::o;33242:117::-;33351:1;33348;33341:12;33365:281;33448:27;33470:4;33448:27;:::i;:::-;33440:6;33436:40;33578:6;33566:10;33563:22;33542:18;33530:10;33527:34;33524:62;33521:88;;;33589:18;;:::i;:::-;33521:88;33629:10;33625:2;33618:22;33408:238;33365:281;;:::o;33652:129::-;33686:6;33713:20;;:::i;:::-;33703:30;;33742:33;33770:4;33762:6;33742:33;:::i;:::-;33652:129;;;:::o;33787:311::-;33864:4;33954:18;33946:6;33943:30;33940:56;;;33976:18;;:::i;:::-;33940:56;34026:4;34018:6;34014:17;34006:25;;34086:4;34080;34076:15;34068:23;;33787:311;;;:::o;34104:117::-;34213:1;34210;34203:12;34244:732;34351:5;34376:81;34392:64;34449:6;34392:64;:::i;:::-;34376:81;:::i;:::-;34367:90;;34477:5;34506:6;34499:5;34492:21;34540:4;34533:5;34529:16;34522:23;;34593:4;34585:6;34581:17;34573:6;34569:30;34622:3;34614:6;34611:15;34608:122;;;34641:79;;:::i;:::-;34608:122;34756:6;34739:231;34773:6;34768:3;34765:15;34739:231;;;34848:3;34877:48;34921:3;34909:10;34877:48;:::i;:::-;34872:3;34865:61;34955:4;34950:3;34946:14;34939:21;;34815:155;34799:4;34794:3;34790:14;34783:21;;34739:231;;;34743:21;34357:619;;34244:732;;;;;:::o;34999:385::-;35081:5;35130:3;35123:4;35115:6;35111:17;35107:27;35097:122;;35138:79;;:::i;:::-;35097:122;35248:6;35242:13;35273:105;35374:3;35366:6;35359:4;35351:6;35347:17;35273:105;:::i;:::-;35264:114;;35087:297;34999:385;;;;:::o;35390:554::-;35485:6;35534:2;35522:9;35513:7;35509:23;35505:32;35502:119;;;35540:79;;:::i;:::-;35502:119;35681:1;35670:9;35666:17;35660:24;35711:18;35703:6;35700:30;35697:117;;;35733:79;;:::i;:::-;35697:117;35838:89;35919:7;35910:6;35899:9;35895:22;35838:89;:::i;:::-;35828:99;;35631:306;35390:554;;;;:::o;35950:85::-;35995:7;36024:5;36013:16;;35950:85;;;:::o;36041:60::-;36069:3;36090:5;36083:12;;36041:60;;;:::o;36107:158::-;36165:9;36198:61;36216:42;36225:32;36251:5;36225:32;:::i;:::-;36216:42;:::i;:::-;36198:61;:::i;:::-;36185:74;;36107:158;;;:::o;36271:147::-;36366:45;36405:5;36366:45;:::i;:::-;36361:3;36354:58;36271:147;;:::o;36424:831::-;36687:4;36725:3;36714:9;36710:19;36702:27;;36739:71;36807:1;36796:9;36792:17;36783:6;36739:71;:::i;:::-;36820:80;36896:2;36885:9;36881:18;36872:6;36820:80;:::i;:::-;36947:9;36941:4;36937:20;36932:2;36921:9;36917:18;36910:48;36975:108;37078:4;37069:6;36975:108;:::i;:::-;36967:116;;37093:72;37161:2;37150:9;37146:18;37137:6;37093:72;:::i;:::-;37175:73;37243:3;37232:9;37228:19;37219:6;37175:73;:::i;:::-;36424:831;;;;;;;;:::o;37261:191::-;37301:4;37321:20;37339:1;37321:20;:::i;:::-;37316:25;;37355:20;37373:1;37355:20;:::i;:::-;37350:25;;37394:1;37391;37388:8;37385:34;;;37399:18;;:::i;:::-;37385:34;37444:1;37441;37437:9;37429:17;;37261:191;;;;:::o;37458:807::-;37707:4;37745:3;37734:9;37730:19;37722:27;;37759:71;37827:1;37816:9;37812:17;37803:6;37759:71;:::i;:::-;37840:72;37908:2;37897:9;37893:18;37884:6;37840:72;:::i;:::-;37922:80;37998:2;37987:9;37983:18;37974:6;37922:80;:::i;:::-;38012;38088:2;38077:9;38073:18;38064:6;38012:80;:::i;:::-;38102:73;38170:3;38159:9;38155:19;38146:6;38102:73;:::i;:::-;38185;38253:3;38242:9;38238:19;38229:6;38185:73;:::i;:::-;37458:807;;;;;;;;;:::o;38271:663::-;38359:6;38367;38375;38424:2;38412:9;38403:7;38399:23;38395:32;38392:119;;;38430:79;;:::i;:::-;38392:119;38550:1;38575:64;38631:7;38622:6;38611:9;38607:22;38575:64;:::i;:::-;38565:74;;38521:128;38688:2;38714:64;38770:7;38761:6;38750:9;38746:22;38714:64;:::i;:::-;38704:74;;38659:129;38827:2;38853:64;38909:7;38900:6;38889:9;38885:22;38853:64;:::i;:::-;38843:74;;38798:129;38271:663;;;;;:::o;38940:147::-;39041:11;39078:3;39063:18;;38940:147;;;;:::o;39093:114::-;;:::o;39213:398::-;39372:3;39393:83;39474:1;39469:3;39393:83;:::i;:::-;39386:90;;39485:93;39574:3;39485:93;:::i;:::-;39603:1;39598:3;39594:11;39587:18;;39213:398;;;:::o;39617:379::-;39801:3;39823:147;39966:3;39823:147;:::i;:::-;39816:154;;39987:3;39980:10;;39617:379;;;:::o;40002:180::-;40142:32;40138:1;40130:6;40126:14;40119:56;40002:180;:::o;40188:366::-;40330:3;40351:67;40415:2;40410:3;40351:67;:::i;:::-;40344:74;;40427:93;40516:3;40427:93;:::i;:::-;40545:2;40540:3;40536:12;40529:19;;40188:366;;;:::o;40560:419::-;40726:4;40764:2;40753:9;40749:18;40741:26;;40813:9;40807:4;40803:20;40799:1;40788:9;40784:17;40777:47;40841:131;40967:4;40841:131;:::i;:::-;40833:139;;40560:419;;;:::o;40985:174::-;41125:26;41121:1;41113:6;41109:14;41102:50;40985:174;:::o;41165:366::-;41307:3;41328:67;41392:2;41387:3;41328:67;:::i;:::-;41321:74;;41404:93;41493:3;41404:93;:::i;:::-;41522:2;41517:3;41513:12;41506:19;;41165:366;;;:::o;41537:419::-;41703:4;41741:2;41730:9;41726:18;41718:26;;41790:9;41784:4;41780:20;41776:1;41765:9;41761:17;41754:47;41818:131;41944:4;41818:131;:::i;:::-;41810:139;;41537:419;;;:::o;41962:170::-;42102:22;42098:1;42090:6;42086:14;42079:46;41962:170;:::o;42138:366::-;42280:3;42301:67;42365:2;42360:3;42301:67;:::i;:::-;42294:74;;42377:93;42466:3;42377:93;:::i;:::-;42495:2;42490:3;42486:12;42479:19;;42138:366;;;:::o;42510:419::-;42676:4;42714:2;42703:9;42699:18;42691:26;;42763:9;42757:4;42753:20;42749:1;42738:9;42734:17;42727:47;42791:131;42917:4;42791:131;:::i;:::-;42783:139;;42510:419;;;:::o;42935:220::-;43075:34;43071:1;43063:6;43059:14;43052:58;43144:3;43139:2;43131:6;43127:15;43120:28;42935:220;:::o;43161:366::-;43303:3;43324:67;43388:2;43383:3;43324:67;:::i;:::-;43317:74;;43400:93;43489:3;43400:93;:::i;:::-;43518:2;43513:3;43509:12;43502:19;;43161:366;;;:::o;43533:419::-;43699:4;43737:2;43726:9;43722:18;43714:26;;43786:9;43780:4;43776:20;43772:1;43761:9;43757:17;43750:47;43814:131;43940:4;43814:131;:::i;:::-;43806:139;;43533:419;;;:::o;43958:221::-;44098:34;44094:1;44086:6;44082:14;44075:58;44167:4;44162:2;44154:6;44150:15;44143:29;43958:221;:::o;44185:366::-;44327:3;44348:67;44412:2;44407:3;44348:67;:::i;:::-;44341:74;;44424:93;44513:3;44424:93;:::i;:::-;44542:2;44537:3;44533:12;44526:19;;44185:366;;;:::o;44557:419::-;44723:4;44761:2;44750:9;44746:18;44738:26;;44810:9;44804:4;44800:20;44796:1;44785:9;44781:17;44774:47;44838:131;44964:4;44838:131;:::i;:::-;44830:139;;44557:419;;;:::o;44982:166::-;45122:18;45118:1;45110:6;45106:14;45099:42;44982:166;:::o;45154:366::-;45296:3;45317:67;45381:2;45376:3;45317:67;:::i;:::-;45310:74;;45393:93;45482:3;45393:93;:::i;:::-;45511:2;45506:3;45502:12;45495:19;;45154:366;;;:::o;45526:419::-;45692:4;45730:2;45719:9;45715:18;45707:26;;45779:9;45773:4;45769:20;45765:1;45754:9;45750:17;45743:47;45807:131;45933:4;45807:131;:::i;:::-;45799:139;;45526:419;;;:::o;45951:224::-;46091:34;46087:1;46079:6;46075:14;46068:58;46160:7;46155:2;46147:6;46143:15;46136:32;45951:224;:::o;46181:366::-;46323:3;46344:67;46408:2;46403:3;46344:67;:::i;:::-;46337:74;;46420:93;46509:3;46420:93;:::i;:::-;46538:2;46533:3;46529:12;46522:19;;46181:366;;;:::o;46553:419::-;46719:4;46757:2;46746:9;46742:18;46734:26;;46806:9;46800:4;46796:20;46792:1;46781:9;46777:17;46770:47;46834:131;46960:4;46834:131;:::i;:::-;46826:139;;46553:419;;;:::o;46978:222::-;47118:34;47114:1;47106:6;47102:14;47095:58;47187:5;47182:2;47174:6;47170:15;47163:30;46978:222;:::o;47206:366::-;47348:3;47369:67;47433:2;47428:3;47369:67;:::i;:::-;47362:74;;47445:93;47534:3;47445:93;:::i;:::-;47563:2;47558:3;47554:12;47547:19;;47206:366;;;:::o;47578:419::-;47744:4;47782:2;47771:9;47767:18;47759:26;;47831:9;47825:4;47821:20;47817:1;47806:9;47802:17;47795:47;47859:131;47985:4;47859:131;:::i;:::-;47851:139;;47578:419;;;:::o;48003:225::-;48143:34;48139:1;48131:6;48127:14;48120:58;48212:8;48207:2;48199:6;48195:15;48188:33;48003:225;:::o;48234:366::-;48376:3;48397:67;48461:2;48456:3;48397:67;:::i;:::-;48390:74;;48473:93;48562:3;48473:93;:::i;:::-;48591:2;48586:3;48582:12;48575:19;;48234:366;;;:::o;48606:419::-;48772:4;48810:2;48799:9;48795:18;48787:26;;48859:9;48853:4;48849:20;48845:1;48834:9;48830:17;48823:47;48887:131;49013:4;48887:131;:::i;:::-;48879:139;;48606:419;;;:::o

Swarm Source

ipfs://2ef9123692fa8c0b9d12db68d8c60dd08abeacf5f3c83dd3cc4d249bc42b421b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.