ETH Price: $2,434.01 (+6.06%)

Token

AlphaChad (ACX)
 

Overview

Max Total Supply

1,000,000,000 ACX

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
399,437.00000000003017198 ACX

Value
$0.00
0xff96d8149593b08b38f9c529e95f9122df0b2990
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AlphaChad

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/**
AlphaChad | $ACX

REALTALK CHADS, if u dont send this one Yall let the RUGGERS AND SCAMMERS WIN.
So Manny Rugs CHADS or 99 TAX BULLSHIT CHADS.
This Token is 100% safe CHADS.
Come on CHADS Look AT DEXTOOLS only RUGS!!!
Become an AlphaChad and HODL $ACX CHADS.
LOW TAX SAFE LOCK & RENOUNCE PLAY

Name: AlphaChad
Symbol: $ ACX
TAX BUY/SELL = 5/5
Total Supply = 1,000,000,000
MaxWallet - 2% (20,000,000)
MaxTrans - 2%  (20,000,000) 
Locked at Pinksale
CA Renounced
TG will be announced AlphaChads.
AlphaChadDev Will communicates on Etherscan 
Only Real CHADS Know THIS!!
Dont be a NORMIE or a BROKIE 
Just Be AlphaChad and SEND IT!
*/

pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 1; // 1 = .01%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3000 minutes;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 3000 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

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

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

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

        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 4;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 1) / 1000; // 0.1% swap wallet

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

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

        marketingWallet = address(0x42dADE00b407E6bCD5384f9cb21836Cadf6eB6Df); // set as marketing wallet
        devWallet = address(0xb7A2Cf6f2d27C1a196Ca4B69390e18d23bFc8B49); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 6, "Must keep fees at 6% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 6, "Must keep fees at 6% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff0219169083151502179055506202bf20600d556202bf20600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550348015620000ab57600080fd5b506040518060400160405280600981526020017f416c7068614368616400000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414358000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013092919062000b65565b5080600490805190602001906200014992919062000b65565b5050506200016c620001606200062560201b60201c565b6200062d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000198816001620006f360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000c7f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000c7f565b6040518363ffffffff1660e01b8152600401620002eb92919062000cc2565b6020604051808303816000875af11580156200030b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000331919062000c7f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037960a0516001620006f360201b60201c565b6200038e60a0516001620007dd60201b60201c565b600060049050600080600190506000600490506000806001905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a819055506103e8600182620003ef919062000d28565b620003fb919062000db8565b6009819055508660158190555085601681905550846017819055506017546016546015546200042b919062000df0565b62000437919062000df0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000467919062000df0565b62000473919062000df0565b6018819055507342dade00b407e6bcd5384f9cb21836cadf6eb6df600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b7a2cf6f2d27c1a196ca4b69390e18d23bfc8b49600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000545620005376200087e60201b60201c565b6001620008a860201b60201c565b62000558306001620008a860201b60201c565b6200056d61dead6001620008a860201b60201c565b620005947371b5759d73262fbb223956913ecf4ecc510576416001620008a860201b60201c565b620005b6620005a86200087e60201b60201c565b6001620006f360201b60201c565b620005c9306001620006f360201b60201c565b620005de61dead6001620006f360201b60201c565b620006057371b5759d73262fbb223956913ecf4ecc510576416001620008a860201b60201c565b620006173382620009e260201b60201c565b50505050505050506200100f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007036200062560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007296200087e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007799062000eae565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b86200062560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008de6200087e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000937576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092e9062000eae565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d6919062000eed565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4c9062000f5a565b60405180910390fd5b62000a696000838362000b5b60201b60201c565b806002600082825462000a7d919062000df0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad4919062000df0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3b919062000f8d565b60405180910390a362000b576000838362000b6060201b60201c565b5050565b505050565b505050565b82805462000b739062000fd9565b90600052602060002090601f01602090048101928262000b97576000855562000be3565b82601f1062000bb257805160ff191683800117855562000be3565b8280016001018555821562000be3579182015b8281111562000be257825182559160200191906001019062000bc5565b5b50905062000bf2919062000bf6565b5090565b5b8082111562000c1157600081600090555060010162000bf7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c478262000c1a565b9050919050565b62000c598162000c3a565b811462000c6557600080fd5b50565b60008151905062000c798162000c4e565b92915050565b60006020828403121562000c985762000c9762000c15565b5b600062000ca88482850162000c68565b91505092915050565b62000cbc8162000c3a565b82525050565b600060408201905062000cd9600083018562000cb1565b62000ce8602083018462000cb1565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d358262000cef565b915062000d428362000cef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d7e5762000d7d62000cf9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc58262000cef565b915062000dd28362000cef565b92508262000de55762000de462000d89565b5b828204905092915050565b600062000dfd8262000cef565b915062000e0a8362000cef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e425762000e4162000cf9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9660208362000e4d565b915062000ea38262000e5e565b602082019050919050565b6000602082019050818103600083015262000ec98162000e87565b9050919050565b60008115159050919050565b62000ee78162000ed0565b82525050565b600060208201905062000f04600083018462000edc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f42601f8362000e4d565b915062000f4f8262000f0a565b602082019050919050565b6000602082019050818103600083015262000f758162000f33565b9050919050565b62000f878162000cef565b82525050565b600060208201905062000fa4600083018462000f7c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff257607f821691505b6020821081141562001009576200100862000faa565b5b50919050565b60805160a051615bca62001097600039600081816113ec01528181611bfc01528181612745015281816127fc0152818161282901528181612e6d01528181613f710152818161402a0152614057015260008181610f9001528181612e15015281816141cd015281816142ae015281816142d50152818161437101526143980152615bca6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459b565b610f51565b60405161041c91906145f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614611565b610f6f565b60405161045991906145f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614611565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061470f565b61121e565b6040516105ea91906145f6565b60405180910390f35b3480156105ff57600080fd5b50610608611316565b6040516106159190614771565b60405180910390f35b34801561062a57600080fd5b5061063361131c565b60405161064091906146c7565b60405180910390f35b34801561065557600080fd5b5061065e611322565b60405161066b91906145f6565b60405180910390f35b34801561068057600080fd5b50610689611335565b60405161069691906147a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459b565b61133e565b6040516106d391906145f6565b60405180910390f35b3480156106e857600080fd5b506106f16113ea565b6040516106fe9190614771565b60405180910390f35b34801561071357600080fd5b5061071c61140e565b60405161072991906145f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614611565b611421565b60405161076691906145f6565b60405180910390f35b34801561077b57600080fd5b50610784611477565b60405161079191906146c7565b60405180910390f35b3480156107a657600080fd5b506107af61147d565b6040516107bc91906145f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614611565b611490565b6040516107f991906146c7565b60405180910390f35b34801561080e57600080fd5b506108176114d8565b005b34801561082557600080fd5b50610840600480360381019061083b91906147ef565b611560565b005b34801561084e57600080fd5b506108576116a0565b60405161086491906145f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614842565b611740565b005b3480156108a257600080fd5b506108ab611817565b6040516108b89190614771565b60405180910390f35b3480156108cd57600080fd5b506108d661183d565b6040516108e391906146c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614882565b611843565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614771565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614771565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d5565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614842565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459b565b611caf565b604051610b0a91906145f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459b565b611da0565b604051610b7291906145f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614611565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614611565b611efa565b604051610bd891906145f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614842565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614882565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e2565b612151565b005b348015610c9357600080fd5b50610c9c61225f565b604051610ca991906145f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612272565b604051610cd491906146c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e2565b612278565b604051610d1191906145f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cd565b604051610d3c91906146c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614902565b6123d3565b604051610d7991906146c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245a565b604051610da491906146c7565b60405180910390f35b348015610db957600080fd5b50610dc2612460565b604051610dcf91906145f6565b60405180910390f35b348015610de457600080fd5b50610ded612500565b604051610dfa91906146c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614611565b612506565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e2565b61260a565b604051610eb691906145f6565b60405180910390f35b606060038054610ece90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614971565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149ef565b60405180910390fd5b670de0b6b3a7640000606460016111a1610fb2565b6111ab9190614a3e565b6111b59190614ac7565b6111bf9190614ac7565b811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890614b6a565b60405180910390fd5b670de0b6b3a7640000816112159190614a3e565b60088190555050565b600061122b848484612ab5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112766128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614bfc565b60405180910390fd5b61130a856113026128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e061134b6128e2565b8484600160006113596128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113db9190614c1c565b6128ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e06128e2565b73ffffffffffffffffffffffffffffffffffffffff166114fe6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906149ef565b60405180910390fd5b61155e600061384d565b565b6115686128e2565b73ffffffffffffffffffffffffffffffffffffffff166115866119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906149ef565b60405180910390fd5b610258831015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614ce4565b60405180910390fd5b6103e88211158015611634575060008210155b611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116aa6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c86119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117486128e2565b73ffffffffffffffffffffffffffffffffffffffff166117666119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166118696119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906149ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e79190614c1c565b6118f19190614c1c565b6014819055506006601454111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de2565b60405180910390fd5b505050565b61194a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614971565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e74565b60405180910390fd5b611c938282613913565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f06565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab5565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1c565b6121009190614c1c565b6018819055506006601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614de2565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149ef565b60405180910390fd5b670de0b6b3a7640000606460016121e2610fb2565b6121ec9190614a3e565b6121f69190614ac7565b6122009190614ac7565b811015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614f98565b60405180910390fd5b670de0b6b3a7640000816122569190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122826128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a06119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906149ef565b60405180910390fd5b620186a06001612304610fb2565b61230e9190614a3e565b6123189190614ac7565b82101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061502a565b60405180910390fd5b6103e86005612367610fb2565b6123719190614a3e565b61237b9190614ac7565b8211156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906150bc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124886119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250e6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99061514e565b60405180910390fd5b6125fb8161384d565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149ef565b60405180910390fd5b600f546010546126989190614c1c565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d0906151ba565b60405180910390fd5b6103e882111561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127159061524c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127809190614771565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615281565b905060006127ec6127106127de86856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115612825576128247f000000000000000000000000000000000000000000000000000000000000000061dead836139e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906153b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa891906146c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906154d6565b60405180910390fd5b6000811415612baf57612baa838360006139e0565b613848565b601160009054906101000a900460ff161561327257612bcc6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3a5750612c0a6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc65750600560149054906101000a900460ff16155b1561327157601160019054906101000a900460ff16612dc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690615542565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8857612ddd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906155fa565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d257600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c9061568c565b60405180910390fd5b600a5461308183611490565b8261308c9190614c1c565b11156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c4906156f8565b60405180910390fd5b613270565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c4576008548111156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b69061578a565b60405180910390fd5b61326f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326e57600a5461322183611490565b8261322c9190614c1c565b111561326d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613264906156f8565b60405180910390fd5b5b5b5b5b5b600061327d30611490565b9050600060095482101590508080156132a25750601160029054906101000a900460ff165b80156132bb5750600560149054906101000a900460ff16155b80156133115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613401576001600560146101000a81548160ff0219169083151502179055506133e5613c61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347f5750600c60009054906101000a900460ff165b801561349a5750600d54600e546134969190614c1c565b4210155b80156134f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ff576134fd613f48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135bf57600090505b6000811561383857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362257506000601854115b156136ef5761364f6064613641601854886139b490919063ffffffff16565b6139ca90919063ffffffff16565b9050601854601a54826136629190614a3e565b61366c9190614ac7565b601d600082825461367d9190614c1c565b92505081905550601854601b54826136959190614a3e565b61369f9190614ac7565b601e60008282546136b09190614c1c565b92505081905550601854601954826136c89190614a3e565b6136d29190614ac7565b601c60008282546136e39190614c1c565b92505081905550613814565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374a57506000601454115b15613813576137776064613769601454886139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506014546016548261378a9190614a3e565b6137949190614ac7565b601d60008282546137a59190614c1c565b92505081905550601454601754826137bd9190614a3e565b6137c79190614ac7565b601e60008282546137d89190614c1c565b92505081905550601454601554826137f09190614a3e565b6137fa9190614ac7565b601c600082825461380b9190614c1c565b925050819055505b5b6000811115613829576138288730836139e0565b5b808561383591906157aa565b94505b6138438787876139e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c29190614a3e565b905092915050565b600081836139d89190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4790615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab7906154d6565b60405180910390fd5b613acb83838361410e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890615850565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be49190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4891906146c7565b60405180910390a3613c5b848484614113565b50505050565b6000613c6c30611490565b90506000601e54601c54601d54613c839190614c1c565b613c8d9190614c1c565b9050600080831480613c9f5750600082145b15613cac57505050613f46565b6014600954613cbb9190614a3e565b831115613cd4576014600954613cd19190614a3e565b92505b6000600283601d5486613ce79190614a3e565b613cf19190614ac7565b613cfb9190614ac7565b90506000613d12828661411890919063ffffffff16565b90506000479050613d228261412e565b6000613d37824761411890919063ffffffff16565b90506000613d6287613d54601c54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000613d8d88613d7f601e54866139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000818385613d9e91906157aa565b613da891906157aa565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e08906158a1565b60006040518083038185875af1925050503d8060008114613e45576040519150601f19603f3d011682016040523d82523d6000602084013e613e4a565b606091505b505080985050600087118015613e605750600081115b15613ead57613e6f878261436b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea4939291906158b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef3906158a1565b60006040518083038185875af1925050503d8060008114613f30576040519150601f19603f3d011682016040523d82523d6000602084013e613f35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fac9190614771565b602060405180830381865afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed9190615281565b9050600061401a61271061400c600b54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115614053576140527f000000000000000000000000000000000000000000000000000000000000000061dead836139e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c057600080fd5b505af11580156140d4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412691906157aa565b905092915050565b6000600267ffffffffffffffff81111561414b5761414a6158ed565b5b6040519080825280602002602001820160405280156141795781602001602082028036833780820191505090505b50905030816000815181106141915761419061591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425a9190615960565b8160018151811061426e5761426d61591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d3307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614335959493929190615a86565b600060405180830381600087803b15801561434f57600080fd5b505af1158015614363573d6000803e3d6000fd5b505050505050565b614396307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fd96959493929190615ae0565b60606040518083038185885af115801561441b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144409190615b41565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b282614447565b6144bc8185614452565b93506144cc818560208601614463565b6144d581614496565b840191505092915050565b600060208201905081810360008301526144fa81846144a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453282614507565b9050919050565b61454281614527565b811461454d57600080fd5b50565b60008135905061455f81614539565b92915050565b6000819050919050565b61457881614565565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b600080604083850312156145b2576145b1614502565b5b60006145c085828601614550565b92505060206145d185828601614586565b9150509250929050565b60008115159050919050565b6145f0816145db565b82525050565b600060208201905061460b60008301846145e7565b92915050565b60006020828403121561462757614626614502565b5b600061463584828501614550565b91505092915050565b6000819050919050565b600061466361465e61465984614507565b61463e565b614507565b9050919050565b600061467582614648565b9050919050565b60006146878261466a565b9050919050565b6146978161467c565b82525050565b60006020820190506146b2600083018461468e565b92915050565b6146c181614565565b82525050565b60006020820190506146dc60008301846146b8565b92915050565b6000602082840312156146f8576146f7614502565b5b600061470684828501614586565b91505092915050565b60008060006060848603121561472857614727614502565b5b600061473686828701614550565b935050602061474786828701614550565b925050604061475886828701614586565b9150509250925092565b61476b81614527565b82525050565b60006020820190506147866000830184614762565b92915050565b600060ff82169050919050565b6147a28161478c565b82525050565b60006020820190506147bd6000830184614799565b92915050565b6147cc816145db565b81146147d757600080fd5b50565b6000813590506147e9816147c3565b92915050565b60008060006060848603121561480857614807614502565b5b600061481686828701614586565b935050602061482786828701614586565b9250506040614838868287016147da565b9150509250925092565b6000806040838503121561485957614858614502565b5b600061486785828601614550565b9250506020614878858286016147da565b9150509250929050565b60008060006060848603121561489b5761489a614502565b5b60006148a986828701614586565b93505060206148ba86828701614586565b92505060406148cb86828701614586565b9150509250925092565b6000602082840312156148eb576148ea614502565b5b60006148f9848285016147da565b91505092915050565b6000806040838503121561491957614918614502565b5b600061492785828601614550565b925050602061493885828601614550565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614452565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614565565b9150614a5483614565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614565565b9150614add83614565565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614b54602d83614452565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614452565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614565565b9150614c3283614565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614452565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614452565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614dcc601c83614452565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614452565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614452565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f82602283614452565b9150614f8d82614f26565b604082019050919050565b60006020820190508181036000830152614fb181614f75565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615014603583614452565b915061501f82614fb8565b604082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a6603483614452565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615138602683614452565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a4602083614452565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615236602a83614452565b9150615241826151da565b604082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60008151905061527b8161456f565b92915050565b60006020828403121561529757615296614502565b5b60006152a58482850161526c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530a602483614452565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539c602283614452565b91506153a782615340565b604082019050919050565b600060208201905081810360008301526153cb8161538f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061542e602583614452565b9150615439826153d2565b604082019050919050565b6000602082019050818103600083015261545d81615421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c0602383614452565b91506154cb82615464565b604082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552c601683614452565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e4604983614452565b91506155ef82615562565b606082019050919050565b60006020820190508181036000830152615613816155d7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615676603583614452565b91506156818261561a565b604082019050919050565b600060208201905081810360008301526156a581615669565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e2601383614452565b91506156ed826156ac565b602082019050919050565b60006020820190508181036000830152615711816156d5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615774603683614452565b915061577f82615718565b604082019050919050565b600060208201905081810360008301526157a381615767565b9050919050565b60006157b582614565565b91506157c083614565565b9250828210156157d3576157d2614a0f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583a602683614452565b9150615845826157de565b604082019050919050565b600060208201905081810360008301526158698161582d565b9050919050565b600081905092915050565b50565b600061588b600083615870565b91506158968261587b565b600082019050919050565b60006158ac8261587e565b9150819050919050565b60006060820190506158cb60008301866146b8565b6158d860208301856146b8565b6158e560408301846146b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595a81614539565b92915050565b60006020828403121561597657615975614502565b5b60006159848482850161594b565b91505092915050565b6000819050919050565b60006159b26159ad6159a88461598d565b61463e565b614565565b9050919050565b6159c281615997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159fd81614527565b82525050565b6000615a0f83836159f4565b60208301905092915050565b6000602082019050919050565b6000615a33826159c8565b615a3d81856159d3565b9350615a48836159e4565b8060005b83811015615a79578151615a608882615a03565b9750615a6b83615a1b565b925050600181019050615a4c565b5085935050505092915050565b600060a082019050615a9b60008301886146b8565b615aa860208301876159b9565b8181036040830152615aba8186615a28565b9050615ac96060830185614762565b615ad660808301846146b8565b9695505050505050565b600060c082019050615af56000830189614762565b615b0260208301886146b8565b615b0f60408301876159b9565b615b1c60608301866159b9565b615b296080830185614762565b615b3660a08301846146b8565b979650505050505050565b600080600060608486031215615b5a57615b59614502565b5b6000615b688682870161526c565b9350506020615b798682870161526c565b9250506040615b8a8682870161526c565b915050925092509256fea264697066735822122018f233a3754581bc8f5517874f7829c629bb1af2a6daa0e2b766eb38c4ca774164736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459b565b610f51565b60405161041c91906145f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614611565b610f6f565b60405161045991906145f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614611565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061470f565b61121e565b6040516105ea91906145f6565b60405180910390f35b3480156105ff57600080fd5b50610608611316565b6040516106159190614771565b60405180910390f35b34801561062a57600080fd5b5061063361131c565b60405161064091906146c7565b60405180910390f35b34801561065557600080fd5b5061065e611322565b60405161066b91906145f6565b60405180910390f35b34801561068057600080fd5b50610689611335565b60405161069691906147a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459b565b61133e565b6040516106d391906145f6565b60405180910390f35b3480156106e857600080fd5b506106f16113ea565b6040516106fe9190614771565b60405180910390f35b34801561071357600080fd5b5061071c61140e565b60405161072991906145f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614611565b611421565b60405161076691906145f6565b60405180910390f35b34801561077b57600080fd5b50610784611477565b60405161079191906146c7565b60405180910390f35b3480156107a657600080fd5b506107af61147d565b6040516107bc91906145f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614611565b611490565b6040516107f991906146c7565b60405180910390f35b34801561080e57600080fd5b506108176114d8565b005b34801561082557600080fd5b50610840600480360381019061083b91906147ef565b611560565b005b34801561084e57600080fd5b506108576116a0565b60405161086491906145f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614842565b611740565b005b3480156108a257600080fd5b506108ab611817565b6040516108b89190614771565b60405180910390f35b3480156108cd57600080fd5b506108d661183d565b6040516108e391906146c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614882565b611843565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614771565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614771565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d5565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614842565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459b565b611caf565b604051610b0a91906145f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459b565b611da0565b604051610b7291906145f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614611565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614611565b611efa565b604051610bd891906145f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614842565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614882565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e2565b612151565b005b348015610c9357600080fd5b50610c9c61225f565b604051610ca991906145f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612272565b604051610cd491906146c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e2565b612278565b604051610d1191906145f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cd565b604051610d3c91906146c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614902565b6123d3565b604051610d7991906146c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245a565b604051610da491906146c7565b60405180910390f35b348015610db957600080fd5b50610dc2612460565b604051610dcf91906145f6565b60405180910390f35b348015610de457600080fd5b50610ded612500565b604051610dfa91906146c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614611565b612506565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e2565b61260a565b604051610eb691906145f6565b60405180910390f35b606060038054610ece90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614971565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149ef565b60405180910390fd5b670de0b6b3a7640000606460016111a1610fb2565b6111ab9190614a3e565b6111b59190614ac7565b6111bf9190614ac7565b811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890614b6a565b60405180910390fd5b670de0b6b3a7640000816112159190614a3e565b60088190555050565b600061122b848484612ab5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112766128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614bfc565b60405180910390fd5b61130a856113026128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e061134b6128e2565b8484600160006113596128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113db9190614c1c565b6128ea565b6001905092915050565b7f0000000000000000000000000156769b649f80ddc735e420062092887919d84681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e06128e2565b73ffffffffffffffffffffffffffffffffffffffff166114fe6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906149ef565b60405180910390fd5b61155e600061384d565b565b6115686128e2565b73ffffffffffffffffffffffffffffffffffffffff166115866119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906149ef565b60405180910390fd5b610258831015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614ce4565b60405180910390fd5b6103e88211158015611634575060008210155b611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116aa6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c86119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117486128e2565b73ffffffffffffffffffffffffffffffffffffffff166117666119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166118696119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906149ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e79190614c1c565b6118f19190614c1c565b6014819055506006601454111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de2565b60405180910390fd5b505050565b61194a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614971565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149ef565b60405180910390fd5b7f0000000000000000000000000156769b649f80ddc735e420062092887919d84673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e74565b60405180910390fd5b611c938282613913565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f06565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab5565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1c565b6121009190614c1c565b6018819055506006601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614de2565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149ef565b60405180910390fd5b670de0b6b3a7640000606460016121e2610fb2565b6121ec9190614a3e565b6121f69190614ac7565b6122009190614ac7565b811015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614f98565b60405180910390fd5b670de0b6b3a7640000816122569190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122826128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a06119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906149ef565b60405180910390fd5b620186a06001612304610fb2565b61230e9190614a3e565b6123189190614ac7565b82101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061502a565b60405180910390fd5b6103e86005612367610fb2565b6123719190614a3e565b61237b9190614ac7565b8211156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906150bc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124886119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250e6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99061514e565b60405180910390fd5b6125fb8161384d565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149ef565b60405180910390fd5b600f546010546126989190614c1c565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d0906151ba565b60405180910390fd5b6103e882111561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127159061524c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000156769b649f80ddc735e420062092887919d8466040518263ffffffff1660e01b81526004016127809190614771565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615281565b905060006127ec6127106127de86856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115612825576128247f0000000000000000000000000156769b649f80ddc735e420062092887919d84661dead836139e0565b5b60007f0000000000000000000000000156769b649f80ddc735e420062092887919d84690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906153b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa891906146c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906154d6565b60405180910390fd5b6000811415612baf57612baa838360006139e0565b613848565b601160009054906101000a900460ff161561327257612bcc6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3a5750612c0a6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc65750600560149054906101000a900460ff16155b1561327157601160019054906101000a900460ff16612dc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690615542565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8857612ddd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebc57507f0000000000000000000000000156769b649f80ddc735e420062092887919d84673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906155fa565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d257600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c9061568c565b60405180910390fd5b600a5461308183611490565b8261308c9190614c1c565b11156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c4906156f8565b60405180910390fd5b613270565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c4576008548111156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b69061578a565b60405180910390fd5b61326f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326e57600a5461322183611490565b8261322c9190614c1c565b111561326d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613264906156f8565b60405180910390fd5b5b5b5b5b5b600061327d30611490565b9050600060095482101590508080156132a25750601160029054906101000a900460ff165b80156132bb5750600560149054906101000a900460ff16155b80156133115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613401576001600560146101000a81548160ff0219169083151502179055506133e5613c61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347f5750600c60009054906101000a900460ff165b801561349a5750600d54600e546134969190614c1c565b4210155b80156134f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ff576134fd613f48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135bf57600090505b6000811561383857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362257506000601854115b156136ef5761364f6064613641601854886139b490919063ffffffff16565b6139ca90919063ffffffff16565b9050601854601a54826136629190614a3e565b61366c9190614ac7565b601d600082825461367d9190614c1c565b92505081905550601854601b54826136959190614a3e565b61369f9190614ac7565b601e60008282546136b09190614c1c565b92505081905550601854601954826136c89190614a3e565b6136d29190614ac7565b601c60008282546136e39190614c1c565b92505081905550613814565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374a57506000601454115b15613813576137776064613769601454886139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506014546016548261378a9190614a3e565b6137949190614ac7565b601d60008282546137a59190614c1c565b92505081905550601454601754826137bd9190614a3e565b6137c79190614ac7565b601e60008282546137d89190614c1c565b92505081905550601454601554826137f09190614a3e565b6137fa9190614ac7565b601c600082825461380b9190614c1c565b925050819055505b5b6000811115613829576138288730836139e0565b5b808561383591906157aa565b94505b6138438787876139e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c29190614a3e565b905092915050565b600081836139d89190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4790615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab7906154d6565b60405180910390fd5b613acb83838361410e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890615850565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be49190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4891906146c7565b60405180910390a3613c5b848484614113565b50505050565b6000613c6c30611490565b90506000601e54601c54601d54613c839190614c1c565b613c8d9190614c1c565b9050600080831480613c9f5750600082145b15613cac57505050613f46565b6014600954613cbb9190614a3e565b831115613cd4576014600954613cd19190614a3e565b92505b6000600283601d5486613ce79190614a3e565b613cf19190614ac7565b613cfb9190614ac7565b90506000613d12828661411890919063ffffffff16565b90506000479050613d228261412e565b6000613d37824761411890919063ffffffff16565b90506000613d6287613d54601c54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000613d8d88613d7f601e54866139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000818385613d9e91906157aa565b613da891906157aa565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e08906158a1565b60006040518083038185875af1925050503d8060008114613e45576040519150601f19603f3d011682016040523d82523d6000602084013e613e4a565b606091505b505080985050600087118015613e605750600081115b15613ead57613e6f878261436b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea4939291906158b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef3906158a1565b60006040518083038185875af1925050503d8060008114613f30576040519150601f19603f3d011682016040523d82523d6000602084013e613f35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000156769b649f80ddc735e420062092887919d8466040518263ffffffff1660e01b8152600401613fac9190614771565b602060405180830381865afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed9190615281565b9050600061401a61271061400c600b54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115614053576140527f0000000000000000000000000156769b649f80ddc735e420062092887919d84661dead836139e0565b5b60007f0000000000000000000000000156769b649f80ddc735e420062092887919d84690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c057600080fd5b505af11580156140d4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412691906157aa565b905092915050565b6000600267ffffffffffffffff81111561414b5761414a6158ed565b5b6040519080825280602002602001820160405280156141795781602001602082028036833780820191505090505b50905030816000815181106141915761419061591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425a9190615960565b8160018151811061426e5761426d61591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614335959493929190615a86565b600060405180830381600087803b15801561434f57600080fd5b505af1158015614363573d6000803e3d6000fd5b505050505050565b614396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fd96959493929190615ae0565b60606040518083038185885af115801561441b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144409190615b41565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b282614447565b6144bc8185614452565b93506144cc818560208601614463565b6144d581614496565b840191505092915050565b600060208201905081810360008301526144fa81846144a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453282614507565b9050919050565b61454281614527565b811461454d57600080fd5b50565b60008135905061455f81614539565b92915050565b6000819050919050565b61457881614565565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b600080604083850312156145b2576145b1614502565b5b60006145c085828601614550565b92505060206145d185828601614586565b9150509250929050565b60008115159050919050565b6145f0816145db565b82525050565b600060208201905061460b60008301846145e7565b92915050565b60006020828403121561462757614626614502565b5b600061463584828501614550565b91505092915050565b6000819050919050565b600061466361465e61465984614507565b61463e565b614507565b9050919050565b600061467582614648565b9050919050565b60006146878261466a565b9050919050565b6146978161467c565b82525050565b60006020820190506146b2600083018461468e565b92915050565b6146c181614565565b82525050565b60006020820190506146dc60008301846146b8565b92915050565b6000602082840312156146f8576146f7614502565b5b600061470684828501614586565b91505092915050565b60008060006060848603121561472857614727614502565b5b600061473686828701614550565b935050602061474786828701614550565b925050604061475886828701614586565b9150509250925092565b61476b81614527565b82525050565b60006020820190506147866000830184614762565b92915050565b600060ff82169050919050565b6147a28161478c565b82525050565b60006020820190506147bd6000830184614799565b92915050565b6147cc816145db565b81146147d757600080fd5b50565b6000813590506147e9816147c3565b92915050565b60008060006060848603121561480857614807614502565b5b600061481686828701614586565b935050602061482786828701614586565b9250506040614838868287016147da565b9150509250925092565b6000806040838503121561485957614858614502565b5b600061486785828601614550565b9250506020614878858286016147da565b9150509250929050565b60008060006060848603121561489b5761489a614502565b5b60006148a986828701614586565b93505060206148ba86828701614586565b92505060406148cb86828701614586565b9150509250925092565b6000602082840312156148eb576148ea614502565b5b60006148f9848285016147da565b91505092915050565b6000806040838503121561491957614918614502565b5b600061492785828601614550565b925050602061493885828601614550565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614452565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614565565b9150614a5483614565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614565565b9150614add83614565565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614b54602d83614452565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614452565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614565565b9150614c3283614565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614452565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614452565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614dcc601c83614452565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614452565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614452565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f82602283614452565b9150614f8d82614f26565b604082019050919050565b60006020820190508181036000830152614fb181614f75565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615014603583614452565b915061501f82614fb8565b604082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a6603483614452565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615138602683614452565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a4602083614452565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615236602a83614452565b9150615241826151da565b604082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60008151905061527b8161456f565b92915050565b60006020828403121561529757615296614502565b5b60006152a58482850161526c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530a602483614452565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539c602283614452565b91506153a782615340565b604082019050919050565b600060208201905081810360008301526153cb8161538f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061542e602583614452565b9150615439826153d2565b604082019050919050565b6000602082019050818103600083015261545d81615421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c0602383614452565b91506154cb82615464565b604082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552c601683614452565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e4604983614452565b91506155ef82615562565b606082019050919050565b60006020820190508181036000830152615613816155d7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615676603583614452565b91506156818261561a565b604082019050919050565b600060208201905081810360008301526156a581615669565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e2601383614452565b91506156ed826156ac565b602082019050919050565b60006020820190508181036000830152615711816156d5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615774603683614452565b915061577f82615718565b604082019050919050565b600060208201905081810360008301526157a381615767565b9050919050565b60006157b582614565565b91506157c083614565565b9250828210156157d3576157d2614a0f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583a602683614452565b9150615845826157de565b604082019050919050565b600060208201905081810360008301526158698161582d565b9050919050565b600081905092915050565b50565b600061588b600083615870565b91506158968261587b565b600082019050919050565b60006158ac8261587e565b9150819050919050565b60006060820190506158cb60008301866146b8565b6158d860208301856146b8565b6158e560408301846146b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595a81614539565b92915050565b60006020828403121561597657615975614502565b5b60006159848482850161594b565b91505092915050565b6000819050919050565b60006159b26159ad6159a88461598d565b61463e565b614565565b9050919050565b6159c281615997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159fd81614527565b82525050565b6000615a0f83836159f4565b60208301905092915050565b6000602082019050919050565b6000615a33826159c8565b615a3d81856159d3565b9350615a48836159e4565b8060005b83811015615a79578151615a608882615a03565b9750615a6b83615a1b565b925050600181019050615a4c565b5085935050505092915050565b600060a082019050615a9b60008301886146b8565b615aa860208301876159b9565b8181036040830152615aba8186615a28565b9050615ac96060830185614762565b615ad660808301846146b8565b9695505050505050565b600060c082019050615af56000830189614762565b615b0260208301886146b8565b615b0f60408301876159b9565b615b1c60608301866159b9565b615b296080830185614762565b615b3660a08301846146b8565b979650505050505050565b600080600060608486031215615b5a57615b59614502565b5b6000615b688682870161526c565b9350506020615b798682870161526c565b9250506040615b8a8682870161526c565b915050925092509256fea264697066735822122018f233a3754581bc8f5517874f7829c629bb1af2a6daa0e2b766eb38c4ca774164736f6c634300080a0033

Deployed Bytecode Sourcemap

33388:19624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10216:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12383:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35020:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33467:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11336:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42340:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34031:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34804:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34764;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39664:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13034:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33570:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33941:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33901:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11178:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13935:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33525:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34131:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42505:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34619:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34211:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11507:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3451:103;;;;;;;;;;;;;:::i;:::-;;50594:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38772:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40205:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33662:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34512;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40576:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38565:155;;;;;;;;;;;;;:::i;:::-;;2800:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33699:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34654:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40468:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10435:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41593:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34586:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34087:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34844:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34730:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14653:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33993:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11847:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42101:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35241:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34171:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41403:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40985:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39944:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34429:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33732:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39159:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34478:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12085:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33774:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38954:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34549:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3709:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34692:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33814:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51953:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10216:100;10270:13;10303:5;10296:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10216:100;:::o;12383:169::-;12466:4;12483:39;12492:12;:10;:12::i;:::-;12506:7;12515:6;12483:8;:39::i;:::-;12540:4;12533:11;;12383:169;;;;:::o;35020:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33467:51::-;;;:::o;11336:108::-;11397:7;11424:12;;11417:19;;11336:108;:::o;42340:157::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42447:9:::1;;;;;;;;;;;42419:38;;42436:9;42419:38;;;;;;;;;;;;42480:9;42468;;:21;;;;;;;;;;;;;;;;;;42340:157:::0;:::o;34031:49::-;;;;:::o;33847:35::-;;;;:::o;34804:33::-;;;;:::o;34764:::-;;;;:::o;39664:272::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39800:4:::1;39793:3;39788:1;39772:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39771:25;;;;:::i;:::-;39770:34;;;;:::i;:::-;39760:6;:44;;39738:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;39921:6;39911;:17;;;;:::i;:::-;39888:20;:40;;;;39664:272:::0;:::o;13034:492::-;13174:4;13191:36;13201:6;13209:9;13220:6;13191:9;:36::i;:::-;13240:24;13267:11;:19;13279:6;13267:19;;;;;;;;;;;;;;;:33;13287:12;:10;:12::i;:::-;13267:33;;;;;;;;;;;;;;;;13240:60;;13339:6;13319:16;:26;;13311:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13426:57;13435:6;13443:12;:10;:12::i;:::-;13476:6;13457:16;:25;13426:8;:57::i;:::-;13514:4;13507:11;;;13034:492;;;;;:::o;33570:53::-;33616:6;33570:53;:::o;33941:45::-;;;;:::o;33901:33::-;;;;;;;;;;;;;:::o;11178:93::-;11236:5;11261:2;11254:9;;11178:93;:::o;13935:215::-;14023:4;14040:80;14049:12;:10;:12::i;:::-;14063:7;14109:10;14072:11;:25;14084:12;:10;:12::i;:::-;14072:25;;;;;;;;;;;;;;;:34;14098:7;14072:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14040:8;:80::i;:::-;14138:4;14131:11;;13935:215;;;;:::o;33525:38::-;;;:::o;34131:33::-;;;;;;;;;;;;;:::o;42505:126::-;42571:4;42595:19;:28;42615:7;42595:28;;;;;;;;;;;;;;;;;;;;;;;;;42588:35;;42505:126;;;:::o;34619:28::-;;;;:::o;34211:31::-;;;;;;;;;;;;;:::o;11507:127::-;11581:7;11608:9;:18;11618:7;11608:18;;;;;;;;;;;;;;;;11601:25;;11507:127;;;:::o;3451:103::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3516:30:::1;3543:1;3516:18;:30::i;:::-;3451:103::o:0;50594:555::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50796:3:::1;50773:19;:26;;50751:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50923:4;50911:8;:16;;:33;;;;;50943:1;50931:8;:13;;50911:33;50889:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;51049:19;51031:15;:37;;;;51098:8;51079:16;:27;;;;51133:8;51117:13;;:24;;;;;;;;;;;;;;;;;;50594:555:::0;;;:::o;38772:121::-;38824:4;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38858:5:::1;38841:14;;:22;;;;;;;;;;;;;;;;;;38881:4;38874:11;;38772:121:::0;:::o;40205:167::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40360:4:::1;40318:31;:39;40350:6;40318:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40205:167:::0;;:::o;33662:30::-;;;;;;;;;;;;;:::o;34512:::-;;;;:::o;40576:401::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40744:13:::1;40726:15;:31;;;;40786:13;40768:15;:31;;;;40822:7;40810:9;:19;;;;40891:9;;40873:15;;40855;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40840:12;:60;;;;40935:1;40919:12;;:17;;40911:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40576:401:::0;;;:::o;38565:155::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38636:4:::1;38620:13;;:20;;;;;;;;;;;;;;;;;;38665:4;38651:11;;:18;;;;;;;;;;;;;;;;;;38697:15;38680:14;:32;;;;38565:155::o:0;2800:87::-;2846:7;2873:6;;;;;;;;;;;2866:13;;2800:87;:::o;33699:24::-;;;;;;;;;;;;;:::o;34654:31::-;;;;:::o;40468:100::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40553:7:::1;40539:11;;:21;;;;;;;;;;;;;;;;;;40468:100:::0;:::o;10435:104::-;10491:13;10524:7;10517:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10435:104;:::o;41593:304::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41737:13:::1;41729:21;;:4;:21;;;;41707:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41848:41;41877:4;41883:5;41848:28;:41::i;:::-;41593:304:::0;;:::o;34586:24::-;;;;:::o;34087:35::-;;;;:::o;34844:27::-;;;;:::o;34730:25::-;;;;:::o;14653:413::-;14746:4;14763:24;14790:11;:25;14802:12;:10;:12::i;:::-;14790:25;;;;;;;;;;;;;;;:34;14816:7;14790:34;;;;;;;;;;;;;;;;14763:61;;14863:15;14843:16;:35;;14835:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14956:67;14965:12;:10;:12::i;:::-;14979:7;15007:15;14988:16;:34;14956:8;:67::i;:::-;15054:4;15047:11;;;14653:413;;;;:::o;33993:29::-;;;;:::o;11847:175::-;11933:4;11950:42;11960:12;:10;:12::i;:::-;11974:9;11985:6;11950:9;:42::i;:::-;12010:4;12003:11;;11847:175;;;;:::o;42101:231::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42261:15:::1;;;;;;;;;;;42218:59;;42241:18;42218:59;;;;;;;;;;;;42306:18;42288:15;;:36;;;;;;;;;;;;;;;;;;42101:231:::0;:::o;35241:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;34171:33::-;;;;;;;;;;;;;:::o;41403:182::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41519:8:::1;41488:19;:28;41508:7;41488:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41559:7;41543:34;;;41568:8;41543:34;;;;;;:::i;:::-;;;;;;;;41403:182:::0;;:::o;40985:410::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41155:13:::1;41136:16;:32;;;;41198:13;41179:16;:32;;;;41235:7;41222:10;:20;;;;41307:10;;41288:16;;41269;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;41253:13;:64;;;;41353:1;41336:13;;:18;;41328:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;40985:410:::0;;;:::o;39944:253::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40083:4:::1;40076:3;40071:1;40055:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40054:25;;;;:::i;:::-;40053:34;;;;:::i;:::-;40043:6;:44;;40021:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40182:6;40172;:17;;;;:::i;:::-;40160:9;:29;;;;39944:253:::0;:::o;34429:40::-;;;;;;;;;;;;;:::o;33732:35::-;;;;:::o;39159:497::-;39267:4;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39346:6:::1;39341:1;39325:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39324:28;;;;:::i;:::-;39311:9;:41;;39289:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39501:4;39496:1;39480:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39479:26;;;;:::i;:::-;39466:9;:39;;39444:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39617:9;39596:18;:30;;;;39644:4;39637:11;;39159:497:::0;;;:::o;34478:27::-;;;;:::o;12085:151::-;12174:7;12201:11;:18;12213:5;12201:18;;;;;;;;;;;;;;;:27;12220:7;12201:27;;;;;;;;;;;;;;;;12194:34;;12085:151;;;;:::o;33774:33::-;;;;:::o;38954:135::-;39014:4;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39054:5:::1;39031:20;;:28;;;;;;;;;;;;;;;;;;39077:4;39070:11;;38954:135:::0;:::o;34549:30::-;;;;:::o;3709:201::-;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3818:1:::1;3798:22;;:8;:22;;;;3790:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3874:28;3893:8;3874:18;:28::i;:::-;3709:201:::0;:::o;34692:31::-;;;;:::o;33814:24::-;;;;:::o;51953:1056::-;52064:4;3031:12;:10;:12::i;:::-;3020:23;;:7;:5;:7::i;:::-;:23;;;3012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52149:19:::1;;52126:20;;:42;;;;:::i;:::-;52108:15;:60;52086:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52258:4;52247:7;:15;;52239:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52343:15;52320:20;:38;;;;52413:28;52444:4;:14;;;52459:13;52444:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52413:60;;52523:20;52546:44;52584:5;52546:33;52571:7;52546:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;52523:67;;52710:1;52695:12;:16;52691:110;;;52728:61;52744:13;52767:6;52776:12;52728:15;:61::i;:::-;52691:110;52876:19;52913:13;52876:51;;52938:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52965:14;;;;;;;;;;52997:4;52990:11;;;;;51953:1056:::0;;;:::o;1473:98::-;1526:7;1553:10;1546:17;;1473:98;:::o;18337:380::-;18490:1;18473:19;;:5;:19;;;;18465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18571:1;18552:21;;:7;:21;;;;18544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18655:6;18625:11;:18;18637:5;18625:18;;;;;;;;;;;;;;;:27;18644:7;18625:27;;;;;;;;;;;;;;;:36;;;;18693:7;18677:32;;18686:5;18677:32;;;18702:6;18677:32;;;;;;:::i;:::-;;;;;;;;18337:380;;;:::o;42689:5011::-;42837:1;42821:18;;:4;:18;;;;42813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42914:1;42900:16;;:2;:16;;;;42892:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42983:1;42973:6;:11;42969:93;;;43001:28;43017:4;43023:2;43027:1;43001:15;:28::i;:::-;43044:7;;42969:93;43078:14;;;;;;;;;;;43074:2487;;;43139:7;:5;:7::i;:::-;43131:15;;:4;:15;;;;:49;;;;;43173:7;:5;:7::i;:::-;43167:13;;:2;:13;;;;43131:49;:86;;;;;43215:1;43201:16;;:2;:16;;;;43131:86;:128;;;;;43252:6;43238:21;;:2;:21;;;;43131:128;:158;;;;;43281:8;;;;;;;;;;;43280:9;43131:158;43109:2441;;;43329:13;;;;;;;;;;;43324:223;;43401:19;:25;43421:4;43401:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43430:19;:23;43450:2;43430:23;;;;;;;;;;;;;;;;;;;;;;;;;43401:52;43367:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43324:223;43703:20;;;;;;;;;;;43699:641;;;43784:7;:5;:7::i;:::-;43778:13;;:2;:13;;;;:72;;;;;43834:15;43820:30;;:2;:30;;;;43778:72;:129;;;;;43893:13;43879:28;;:2;:28;;;;43778:129;43748:573;;;44071:12;43996:28;:39;44025:9;43996:39;;;;;;;;;;;;;;;;:87;43958:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44285:12;44243:28;:39;44272:9;44243:39;;;;;;;;;;;;;;;:54;;;;43748:573;43699:641;44414:25;:31;44440:4;44414:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44471:31;:35;44503:2;44471:35;;;;;;;;;;;;;;;;;;;;;;;;;44470:36;44414:92;44388:1147;;;44593:20;;44583:6;:30;;44549:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44801:9;;44784:13;44794:2;44784:9;:13::i;:::-;44775:6;:22;;;;:::i;:::-;:35;;44741:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44388:1147;;;44979:25;:29;45005:2;44979:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45034:31;:37;45066:4;45034:37;;;;;;;;;;;;;;;;;;;;;;;;;45033:38;44979:92;44953:582;;;45158:20;;45148:6;:30;;45114:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44953:582;;;45315:31;:35;45347:2;45315:35;;;;;;;;;;;;;;;;;;;;;;;;;45310:225;;45435:9;;45418:13;45428:2;45418:9;:13::i;:::-;45409:6;:22;;;;:::i;:::-;:35;;45375:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45310:225;44953:582;44388:1147;43109:2441;43074:2487;45573:28;45604:24;45622:4;45604:9;:24::i;:::-;45573:55;;45641:12;45680:18;;45656:20;:42;;45641:57;;45729:7;:35;;;;;45753:11;;;;;;;;;;;45729:35;:61;;;;;45782:8;;;;;;;;;;;45781:9;45729:61;:110;;;;;45808:25;:31;45834:4;45808:31;;;;;;;;;;;;;;;;;;;;;;;;;45807:32;45729:110;:153;;;;;45857:19;:25;45877:4;45857:25;;;;;;;;;;;;;;;;;;;;;;;;;45856:26;45729:153;:194;;;;;45900:19;:23;45920:2;45900:23;;;;;;;;;;;;;;;;;;;;;;;;;45899:24;45729:194;45711:326;;;45961:4;45950:8;;:15;;;;;;;;;;;;;;;;;;45982:10;:8;:10::i;:::-;46020:5;46009:8;;:16;;;;;;;;;;;;;;;;;;45711:326;46068:8;;;;;;;;;;;46067:9;:55;;;;;46093:25;:29;46119:2;46093:29;;;;;;;;;;;;;;;;;;;;;;;;;46067:55;:85;;;;;46139:13;;;;;;;;;;;46067:85;:153;;;;;46205:15;;46188:14;;:32;;;;:::i;:::-;46169:15;:51;;46067:153;:196;;;;;46238:19;:25;46258:4;46238:25;;;;;;;;;;;;;;;;;;;;;;;;;46237:26;46067:196;46049:282;;;46290:29;:27;:29::i;:::-;;46049:282;46343:12;46359:8;;;;;;;;;;;46358:9;46343:24;;46469:19;:25;46489:4;46469:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46498:19;:23;46518:2;46498:23;;;;;;;;;;;;;;;;;;;;;;;;;46469:52;46465:100;;;46548:5;46538:15;;46465:100;46577:12;46682:7;46678:969;;;46734:25;:29;46760:2;46734:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46783:1;46767:13;;:17;46734:50;46730:768;;;46812:34;46842:3;46812:25;46823:13;;46812:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46805:41;;46915:13;;46895:16;;46888:4;:23;;;;:::i;:::-;46887:41;;;;:::i;:::-;46865:18;;:63;;;;;;;:::i;:::-;;;;;;;;46985:13;;46971:10;;46964:4;:17;;;;:::i;:::-;46963:35;;;;:::i;:::-;46947:12;;:51;;;;;;;:::i;:::-;;;;;;;;47067:13;;47047:16;;47040:4;:23;;;;:::i;:::-;47039:41;;;;:::i;:::-;47017:18;;:63;;;;;;;:::i;:::-;;;;;;;;46730:768;;;47142:25;:31;47168:4;47142:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47192:1;47177:12;;:16;47142:51;47138:360;;;47221:33;47250:3;47221:24;47232:12;;47221:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47214:40;;47322:12;;47303:15;;47296:4;:22;;;;:::i;:::-;47295:39;;;;:::i;:::-;47273:18;;:61;;;;;;;:::i;:::-;;;;;;;;47390:12;;47377:9;;47370:4;:16;;;;:::i;:::-;47369:33;;;;:::i;:::-;47353:12;;:49;;;;;;;:::i;:::-;;;;;;;;47470:12;;47451:15;;47444:4;:22;;;;:::i;:::-;47443:39;;;;:::i;:::-;47421:18;;:61;;;;;;;:::i;:::-;;;;;;;;47138:360;46730:768;47525:1;47518:4;:8;47514:91;;;47547:42;47563:4;47577;47584;47547:15;:42::i;:::-;47514:91;47631:4;47621:14;;;;;:::i;:::-;;;46678:969;47659:33;47675:4;47681:2;47685:6;47659:15;:33::i;:::-;42802:4898;;;;42689:5011;;;;:::o;4070:191::-;4144:16;4163:6;;;;;;;;;;;4144:25;;4189:8;4180:6;;:17;;;;;;;;;;;;;;;;;;4244:8;4213:40;;4234:8;4213:40;;;;;;;;;;;;4133:128;4070:191;:::o;41905:188::-;42022:5;41988:25;:31;42014:4;41988:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42079:5;42045:40;;42073:4;42045:40;;;;;;;;;;;;41905:188;;:::o;23790:98::-;23848:7;23879:1;23875;:5;;;;:::i;:::-;23868:12;;23790:98;;;;:::o;24189:::-;24247:7;24278:1;24274;:5;;;;:::i;:::-;24267:12;;24189:98;;;;:::o;15556:733::-;15714:1;15696:20;;:6;:20;;;;15688:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15798:1;15777:23;;:9;:23;;;;15769:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15853:47;15874:6;15882:9;15893:6;15853:20;:47::i;:::-;15913:21;15937:9;:17;15947:6;15937:17;;;;;;;;;;;;;;;;15913:41;;15990:6;15973:13;:23;;15965:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16111:6;16095:13;:22;16075:9;:17;16085:6;16075:17;;;;;;;;;;;;;;;:42;;;;16163:6;16139:9;:20;16149:9;16139:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16204:9;16187:35;;16196:6;16187:35;;;16215:6;16187:35;;;;;;:::i;:::-;;;;;;;;16235:46;16255:6;16263:9;16274:6;16235:19;:46::i;:::-;15677:612;15556:733;;;:::o;48830:1756::-;48869:23;48895:24;48913:4;48895:9;:24::i;:::-;48869:50;;48930:25;49026:12;;48992:18;;48958;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48930:108;;49049:12;49097:1;49078:15;:20;:46;;;;49123:1;49102:17;:22;49078:46;49074:85;;;49141:7;;;;;49074:85;49214:2;49193:18;;:23;;;;:::i;:::-;49175:15;:41;49171:115;;;49272:2;49251:18;;:23;;;;:::i;:::-;49233:41;;49171:115;49347:23;49460:1;49427:17;49392:18;;49374:15;:36;;;;:::i;:::-;49373:71;;;;:::i;:::-;:88;;;;:::i;:::-;49347:114;;49472:26;49501:36;49521:15;49501;:19;;:36;;;;:::i;:::-;49472:65;;49550:25;49578:21;49550:49;;49612:36;49629:18;49612:16;:36::i;:::-;49661:18;49682:44;49708:17;49682:21;:25;;:44;;;;:::i;:::-;49661:65;;49739:23;49765:81;49818:17;49765:34;49780:18;;49765:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49739:107;;49857:17;49877:51;49910:17;49877:28;49892:12;;49877:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49857:71;;49941:23;49998:9;49980:15;49967:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49941:66;;50041:1;50020:18;:22;;;;50074:1;50053:18;:22;;;;50101:1;50086:12;:16;;;;50137:9;;;;;;;;;;;50129:23;;50160:9;50129:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50115:59;;;;;50209:1;50191:15;:19;:42;;;;;50232:1;50214:15;:19;50191:42;50187:278;;;50250:46;50263:15;50280;50250:12;:46::i;:::-;50316:137;50349:18;50386:15;50420:18;;50316:137;;;;;;;;:::i;:::-;;;;;;;;50187:278;50499:15;;;;;;;;;;;50491:29;;50542:21;50491:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50477:101;;;;;48858:1728;;;;;;;;;;48830:1756;:::o;51157:788::-;51214:4;51248:15;51231:14;:32;;;;51318:28;51349:4;:14;;;51364:13;51349:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51318:60;;51428:20;51451:77;51512:5;51451:42;51476:16;;51451:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;51428:100;;51648:1;51633:12;:16;51629:110;;;51666:61;51682:13;51705:6;51714:12;51666:15;:61::i;:::-;51629:110;51814:19;51851:13;51814:51;;51876:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51903:12;;;;;;;;;;51933:4;51926:11;;;;;51157:788;:::o;19317:125::-;;;;:::o;20046:124::-;;;;:::o;23433:98::-;23491:7;23522:1;23518;:5;;;;:::i;:::-;23511:12;;23433:98;;;;:::o;47708:589::-;47834:21;47872:1;47858:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47834:40;;47903:4;47885;47890:1;47885:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47929:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47919:4;47924:1;47919:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47964:62;47981:4;47996:15;48014:11;47964:8;:62::i;:::-;48065:15;:66;;;48146:11;48172:1;48216:4;48243;48263:15;48065:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47763:534;47708:589;:::o;48305:517::-;48453:62;48470:4;48485:15;48503:11;48453:8;:62::i;:::-;48558:15;:31;;;48597:9;48630:4;48650:11;48676:1;48719;33616:6;48788:15;48558:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48305:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:232::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:15;12307:2;12299:6;12295:15;12288:40;12103:232;:::o;12341:366::-;12483:3;12504:67;12568:2;12563:3;12504:67;:::i;:::-;12497:74;;12580:93;12669:3;12580:93;:::i;:::-;12698:2;12693:3;12689:12;12682:19;;12341:366;;;:::o;12713:419::-;12879:4;12917:2;12906:9;12902:18;12894:26;;12966:9;12960:4;12956:20;12952:1;12941:9;12937:17;12930:47;12994:131;13120:4;12994:131;:::i;:::-;12986:139;;12713:419;;;:::o;13138:227::-;13278:34;13274:1;13266:6;13262:14;13255:58;13347:10;13342:2;13334:6;13330:15;13323:35;13138:227;:::o;13371:366::-;13513:3;13534:67;13598:2;13593:3;13534:67;:::i;:::-;13527:74;;13610:93;13699:3;13610:93;:::i;:::-;13728:2;13723:3;13719:12;13712:19;;13371:366;;;:::o;13743:419::-;13909:4;13947:2;13936:9;13932:18;13924:26;;13996:9;13990:4;13986:20;13982:1;13971:9;13967:17;13960:47;14024:131;14150:4;14024:131;:::i;:::-;14016:139;;13743:419;;;:::o;14168:305::-;14208:3;14227:20;14245:1;14227:20;:::i;:::-;14222:25;;14261:20;14279:1;14261:20;:::i;:::-;14256:25;;14415:1;14347:66;14343:74;14340:1;14337:81;14334:107;;;14421:18;;:::i;:::-;14334:107;14465:1;14462;14458:9;14451:16;;14168:305;;;;:::o;14479:238::-;14619:34;14615:1;14607:6;14603:14;14596:58;14688:21;14683:2;14675:6;14671:15;14664:46;14479:238;:::o;14723:366::-;14865:3;14886:67;14950:2;14945:3;14886:67;:::i;:::-;14879:74;;14962:93;15051:3;14962:93;:::i;:::-;15080:2;15075:3;15071:12;15064:19;;14723:366;;;:::o;15095:419::-;15261:4;15299:2;15288:9;15284:18;15276:26;;15348:9;15342:4;15338:20;15334:1;15323:9;15319:17;15312:47;15376:131;15502:4;15376:131;:::i;:::-;15368:139;;15095:419;;;:::o;15520:235::-;15660:34;15656:1;15648:6;15644:14;15637:58;15729:18;15724:2;15716:6;15712:15;15705:43;15520:235;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:178::-;16698:30;16694:1;16686:6;16682:14;16675:54;16558:178;:::o;16742:366::-;16884:3;16905:67;16969:2;16964:3;16905:67;:::i;:::-;16898:74;;16981:93;17070:3;16981:93;:::i;:::-;17099:2;17094:3;17090:12;17083:19;;16742:366;;;:::o;17114:419::-;17280:4;17318:2;17307:9;17303:18;17295:26;;17367:9;17361:4;17357:20;17353:1;17342:9;17338:17;17331:47;17395:131;17521:4;17395:131;:::i;:::-;17387:139;;17114:419;;;:::o;17539:244::-;17679:34;17675:1;17667:6;17663:14;17656:58;17748:27;17743:2;17735:6;17731:15;17724:52;17539:244;:::o;17789:366::-;17931:3;17952:67;18016:2;18011:3;17952:67;:::i;:::-;17945:74;;18028:93;18117:3;18028:93;:::i;:::-;18146:2;18141:3;18137:12;18130:19;;17789:366;;;:::o;18161:419::-;18327:4;18365:2;18354:9;18350:18;18342:26;;18414:9;18408:4;18404:20;18400:1;18389:9;18385:17;18378:47;18442:131;18568:4;18442:131;:::i;:::-;18434:139;;18161:419;;;:::o;18586:224::-;18726:34;18722:1;18714:6;18710:14;18703:58;18795:7;18790:2;18782:6;18778:15;18771:32;18586:224;:::o;18816:366::-;18958:3;18979:67;19043:2;19038:3;18979:67;:::i;:::-;18972:74;;19055:93;19144:3;19055:93;:::i;:::-;19173:2;19168:3;19164:12;19157:19;;18816:366;;;:::o;19188:419::-;19354:4;19392:2;19381:9;19377:18;19369:26;;19441:9;19435:4;19431:20;19427:1;19416:9;19412:17;19405:47;19469:131;19595:4;19469:131;:::i;:::-;19461:139;;19188:419;;;:::o;19613:221::-;19753:34;19749:1;19741:6;19737:14;19730:58;19822:4;19817:2;19809:6;19805:15;19798:29;19613:221;:::o;19840:366::-;19982:3;20003:67;20067:2;20062:3;20003:67;:::i;:::-;19996:74;;20079:93;20168:3;20079:93;:::i;:::-;20197:2;20192:3;20188:12;20181:19;;19840:366;;;:::o;20212:419::-;20378:4;20416:2;20405:9;20401:18;20393:26;;20465:9;20459:4;20455:20;20451:1;20440:9;20436:17;20429:47;20493:131;20619:4;20493:131;:::i;:::-;20485:139;;20212:419;;;:::o;20637:240::-;20777:34;20773:1;20765:6;20761:14;20754:58;20846:23;20841:2;20833:6;20829:15;20822:48;20637:240;:::o;20883:366::-;21025:3;21046:67;21110:2;21105:3;21046:67;:::i;:::-;21039:74;;21122:93;21211:3;21122:93;:::i;:::-;21240:2;21235:3;21231:12;21224:19;;20883:366;;;:::o;21255:419::-;21421:4;21459:2;21448:9;21444:18;21436:26;;21508:9;21502:4;21498:20;21494:1;21483:9;21479:17;21472:47;21536:131;21662:4;21536:131;:::i;:::-;21528:139;;21255:419;;;:::o;21680:239::-;21820:34;21816:1;21808:6;21804:14;21797:58;21889:22;21884:2;21876:6;21872:15;21865:47;21680:239;:::o;21925:366::-;22067:3;22088:67;22152:2;22147:3;22088:67;:::i;:::-;22081:74;;22164:93;22253:3;22164:93;:::i;:::-;22282:2;22277:3;22273:12;22266:19;;21925:366;;;:::o;22297:419::-;22463:4;22501:2;22490:9;22486:18;22478:26;;22550:9;22544:4;22540:20;22536:1;22525:9;22521:17;22514:47;22578:131;22704:4;22578:131;:::i;:::-;22570:139;;22297:419;;;:::o;22722:225::-;22862:34;22858:1;22850:6;22846:14;22839:58;22931:8;22926:2;22918:6;22914:15;22907:33;22722:225;:::o;22953:366::-;23095:3;23116:67;23180:2;23175:3;23116:67;:::i;:::-;23109:74;;23192:93;23281:3;23192:93;:::i;:::-;23310:2;23305:3;23301:12;23294:19;;22953:366;;;:::o;23325:419::-;23491:4;23529:2;23518:9;23514:18;23506:26;;23578:9;23572:4;23568:20;23564:1;23553:9;23549:17;23542:47;23606:131;23732:4;23606:131;:::i;:::-;23598:139;;23325:419;;;:::o;23750:182::-;23890:34;23886:1;23878:6;23874:14;23867:58;23750:182;:::o;23938:366::-;24080:3;24101:67;24165:2;24160:3;24101:67;:::i;:::-;24094:74;;24177:93;24266:3;24177:93;:::i;:::-;24295:2;24290:3;24286:12;24279:19;;23938:366;;;:::o;24310:419::-;24476:4;24514:2;24503:9;24499:18;24491:26;;24563:9;24557:4;24553:20;24549:1;24538:9;24534:17;24527:47;24591:131;24717:4;24591:131;:::i;:::-;24583:139;;24310:419;;;:::o;24735:229::-;24875:34;24871:1;24863:6;24859:14;24852:58;24944:12;24939:2;24931:6;24927:15;24920:37;24735:229;:::o;24970:366::-;25112:3;25133:67;25197:2;25192:3;25133:67;:::i;:::-;25126:74;;25209:93;25298:3;25209:93;:::i;:::-;25327:2;25322:3;25318:12;25311:19;;24970:366;;;:::o;25342:419::-;25508:4;25546:2;25535:9;25531:18;25523:26;;25595:9;25589:4;25585:20;25581:1;25570:9;25566:17;25559:47;25623:131;25749:4;25623:131;:::i;:::-;25615:139;;25342:419;;;:::o;25767:143::-;25824:5;25855:6;25849:13;25840:22;;25871:33;25898:5;25871:33;:::i;:::-;25767:143;;;;:::o;25916:351::-;25986:6;26035:2;26023:9;26014:7;26010:23;26006:32;26003:119;;;26041:79;;:::i;:::-;26003:119;26161:1;26186:64;26242:7;26233:6;26222:9;26218:22;26186:64;:::i;:::-;26176:74;;26132:128;25916:351;;;;:::o;26273:223::-;26413:34;26409:1;26401:6;26397:14;26390:58;26482:6;26477:2;26469:6;26465:15;26458:31;26273:223;:::o;26502:366::-;26644:3;26665:67;26729:2;26724:3;26665:67;:::i;:::-;26658:74;;26741:93;26830:3;26741:93;:::i;:::-;26859:2;26854:3;26850:12;26843:19;;26502:366;;;:::o;26874:419::-;27040:4;27078:2;27067:9;27063:18;27055:26;;27127:9;27121:4;27117:20;27113:1;27102:9;27098:17;27091:47;27155:131;27281:4;27155:131;:::i;:::-;27147:139;;26874:419;;;:::o;27299:221::-;27439:34;27435:1;27427:6;27423:14;27416:58;27508:4;27503:2;27495:6;27491:15;27484:29;27299:221;:::o;27526:366::-;27668:3;27689:67;27753:2;27748:3;27689:67;:::i;:::-;27682:74;;27765:93;27854:3;27765:93;:::i;:::-;27883:2;27878:3;27874:12;27867:19;;27526:366;;;:::o;27898:419::-;28064:4;28102:2;28091:9;28087:18;28079:26;;28151:9;28145:4;28141:20;28137:1;28126:9;28122:17;28115:47;28179:131;28305:4;28179:131;:::i;:::-;28171:139;;27898:419;;;:::o;28323:224::-;28463:34;28459:1;28451:6;28447:14;28440:58;28532:7;28527:2;28519:6;28515:15;28508:32;28323:224;:::o;28553:366::-;28695:3;28716:67;28780:2;28775:3;28716:67;:::i;:::-;28709:74;;28792:93;28881:3;28792:93;:::i;:::-;28910:2;28905:3;28901:12;28894:19;;28553:366;;;:::o;28925:419::-;29091:4;29129:2;29118:9;29114:18;29106:26;;29178:9;29172:4;29168:20;29164:1;29153:9;29149:17;29142:47;29206:131;29332:4;29206:131;:::i;:::-;29198:139;;28925:419;;;:::o;29350:222::-;29490:34;29486:1;29478:6;29474:14;29467:58;29559:5;29554:2;29546:6;29542:15;29535:30;29350:222;:::o;29578:366::-;29720:3;29741:67;29805:2;29800:3;29741:67;:::i;:::-;29734:74;;29817:93;29906:3;29817:93;:::i;:::-;29935:2;29930:3;29926:12;29919:19;;29578:366;;;:::o;29950:419::-;30116:4;30154:2;30143:9;30139:18;30131:26;;30203:9;30197:4;30193:20;30189:1;30178:9;30174:17;30167:47;30231:131;30357:4;30231:131;:::i;:::-;30223:139;;29950:419;;;:::o;30375:172::-;30515:24;30511:1;30503:6;30499:14;30492:48;30375:172;:::o;30553:366::-;30695:3;30716:67;30780:2;30775:3;30716:67;:::i;:::-;30709:74;;30792:93;30881:3;30792:93;:::i;:::-;30910:2;30905:3;30901:12;30894:19;;30553:366;;;:::o;30925:419::-;31091:4;31129:2;31118:9;31114:18;31106:26;;31178:9;31172:4;31168:20;31164:1;31153:9;31149:17;31142:47;31206:131;31332:4;31206:131;:::i;:::-;31198:139;;30925:419;;;:::o;31350:297::-;31490:34;31486:1;31478:6;31474:14;31467:58;31559:34;31554:2;31546:6;31542:15;31535:59;31628:11;31623:2;31615:6;31611:15;31604:36;31350:297;:::o;31653:366::-;31795:3;31816:67;31880:2;31875:3;31816:67;:::i;:::-;31809:74;;31892:93;31981:3;31892:93;:::i;:::-;32010:2;32005:3;32001:12;31994:19;;31653:366;;;:::o;32025:419::-;32191:4;32229:2;32218:9;32214:18;32206:26;;32278:9;32272:4;32268:20;32264:1;32253:9;32249:17;32242:47;32306:131;32432:4;32306:131;:::i;:::-;32298:139;;32025:419;;;:::o;32450:240::-;32590:34;32586:1;32578:6;32574:14;32567:58;32659:23;32654:2;32646:6;32642:15;32635:48;32450:240;:::o;32696:366::-;32838:3;32859:67;32923:2;32918:3;32859:67;:::i;:::-;32852:74;;32935:93;33024:3;32935:93;:::i;:::-;33053:2;33048:3;33044:12;33037:19;;32696:366;;;:::o;33068:419::-;33234:4;33272:2;33261:9;33257:18;33249:26;;33321:9;33315:4;33311:20;33307:1;33296:9;33292:17;33285:47;33349:131;33475:4;33349:131;:::i;:::-;33341:139;;33068:419;;;:::o;33493:169::-;33633:21;33629:1;33621:6;33617:14;33610:45;33493:169;:::o;33668:366::-;33810:3;33831:67;33895:2;33890:3;33831:67;:::i;:::-;33824:74;;33907:93;33996:3;33907:93;:::i;:::-;34025:2;34020:3;34016:12;34009:19;;33668:366;;;:::o;34040:419::-;34206:4;34244:2;34233:9;34229:18;34221:26;;34293:9;34287:4;34283:20;34279:1;34268:9;34264:17;34257:47;34321:131;34447:4;34321:131;:::i;:::-;34313:139;;34040:419;;;:::o;34465:241::-;34605:34;34601:1;34593:6;34589:14;34582:58;34674:24;34669:2;34661:6;34657:15;34650:49;34465:241;:::o;34712:366::-;34854:3;34875:67;34939:2;34934:3;34875:67;:::i;:::-;34868:74;;34951:93;35040:3;34951:93;:::i;:::-;35069:2;35064:3;35060:12;35053:19;;34712:366;;;:::o;35084:419::-;35250:4;35288:2;35277:9;35273:18;35265:26;;35337:9;35331:4;35327:20;35323:1;35312:9;35308:17;35301:47;35365:131;35491:4;35365:131;:::i;:::-;35357:139;;35084:419;;;:::o;35509:191::-;35549:4;35569:20;35587:1;35569:20;:::i;:::-;35564:25;;35603:20;35621:1;35603:20;:::i;:::-;35598:25;;35642:1;35639;35636:8;35633:34;;;35647:18;;:::i;:::-;35633:34;35692:1;35689;35685:9;35677:17;;35509:191;;;;:::o;35706:225::-;35846:34;35842:1;35834:6;35830:14;35823:58;35915:8;35910:2;35902:6;35898:15;35891:33;35706:225;:::o;35937:366::-;36079:3;36100:67;36164:2;36159:3;36100:67;:::i;:::-;36093:74;;36176:93;36265:3;36176:93;:::i;:::-;36294:2;36289:3;36285:12;36278:19;;35937:366;;;:::o;36309:419::-;36475:4;36513:2;36502:9;36498:18;36490:26;;36562:9;36556:4;36552:20;36548:1;36537:9;36533:17;36526:47;36590:131;36716:4;36590:131;:::i;:::-;36582:139;;36309:419;;;:::o;36734:147::-;36835:11;36872:3;36857:18;;36734:147;;;;:::o;36887:114::-;;:::o;37007:398::-;37166:3;37187:83;37268:1;37263:3;37187:83;:::i;:::-;37180:90;;37279:93;37368:3;37279:93;:::i;:::-;37397:1;37392:3;37388:11;37381:18;;37007:398;;;:::o;37411:379::-;37595:3;37617:147;37760:3;37617:147;:::i;:::-;37610:154;;37781:3;37774:10;;37411:379;;;:::o;37796:442::-;37945:4;37983:2;37972:9;37968:18;37960:26;;37996:71;38064:1;38053:9;38049:17;38040:6;37996:71;:::i;:::-;38077:72;38145:2;38134:9;38130:18;38121:6;38077:72;:::i;:::-;38159;38227:2;38216:9;38212:18;38203:6;38159:72;:::i;:::-;37796:442;;;;;;:::o;38244:180::-;38292:77;38289:1;38282:88;38389:4;38386:1;38379:15;38413:4;38410:1;38403:15;38430:180;38478:77;38475:1;38468:88;38575:4;38572:1;38565:15;38599:4;38596:1;38589:15;38616:143;38673:5;38704:6;38698:13;38689:22;;38720:33;38747:5;38720:33;:::i;:::-;38616:143;;;;:::o;38765:351::-;38835:6;38884:2;38872:9;38863:7;38859:23;38855:32;38852:119;;;38890:79;;:::i;:::-;38852:119;39010:1;39035:64;39091:7;39082:6;39071:9;39067:22;39035:64;:::i;:::-;39025:74;;38981:128;38765:351;;;;:::o;39122:85::-;39167:7;39196:5;39185:16;;39122:85;;;:::o;39213:158::-;39271:9;39304:61;39322:42;39331:32;39357:5;39331:32;:::i;:::-;39322:42;:::i;:::-;39304:61;:::i;:::-;39291:74;;39213:158;;;:::o;39377:147::-;39472:45;39511:5;39472:45;:::i;:::-;39467:3;39460:58;39377:147;;:::o;39530:114::-;39597:6;39631:5;39625:12;39615:22;;39530:114;;;:::o;39650:184::-;39749:11;39783:6;39778:3;39771:19;39823:4;39818:3;39814:14;39799:29;;39650:184;;;;:::o;39840:132::-;39907:4;39930:3;39922:11;;39960:4;39955:3;39951:14;39943:22;;39840:132;;;:::o;39978:108::-;40055:24;40073:5;40055:24;:::i;:::-;40050:3;40043:37;39978:108;;:::o;40092:179::-;40161:10;40182:46;40224:3;40216:6;40182:46;:::i;:::-;40260:4;40255:3;40251:14;40237:28;;40092:179;;;;:::o;40277:113::-;40347:4;40379;40374:3;40370:14;40362:22;;40277:113;;;:::o;40426:732::-;40545:3;40574:54;40622:5;40574:54;:::i;:::-;40644:86;40723:6;40718:3;40644:86;:::i;:::-;40637:93;;40754:56;40804:5;40754:56;:::i;:::-;40833:7;40864:1;40849:284;40874:6;40871:1;40868:13;40849:284;;;40950:6;40944:13;40977:63;41036:3;41021:13;40977:63;:::i;:::-;40970:70;;41063:60;41116:6;41063:60;:::i;:::-;41053:70;;40909:224;40896:1;40893;40889:9;40884:14;;40849:284;;;40853:14;41149:3;41142:10;;40550:608;;;40426:732;;;;:::o;41164:831::-;41427:4;41465:3;41454:9;41450:19;41442:27;;41479:71;41547:1;41536:9;41532:17;41523:6;41479:71;:::i;:::-;41560:80;41636:2;41625:9;41621:18;41612:6;41560:80;:::i;:::-;41687:9;41681:4;41677:20;41672:2;41661:9;41657:18;41650:48;41715:108;41818:4;41809:6;41715:108;:::i;:::-;41707:116;;41833:72;41901:2;41890:9;41886:18;41877:6;41833:72;:::i;:::-;41915:73;41983:3;41972:9;41968:19;41959:6;41915:73;:::i;:::-;41164:831;;;;;;;;:::o;42001:807::-;42250:4;42288:3;42277:9;42273:19;42265:27;;42302:71;42370:1;42359:9;42355:17;42346:6;42302:71;:::i;:::-;42383:72;42451:2;42440:9;42436:18;42427:6;42383:72;:::i;:::-;42465:80;42541:2;42530:9;42526:18;42517:6;42465:80;:::i;:::-;42555;42631:2;42620:9;42616:18;42607:6;42555:80;:::i;:::-;42645:73;42713:3;42702:9;42698:19;42689:6;42645:73;:::i;:::-;42728;42796:3;42785:9;42781:19;42772:6;42728:73;:::i;:::-;42001:807;;;;;;;;;:::o;42814:663::-;42902:6;42910;42918;42967:2;42955:9;42946:7;42942:23;42938:32;42935:119;;;42973:79;;:::i;:::-;42935:119;43093:1;43118:64;43174:7;43165:6;43154:9;43150:22;43118:64;:::i;:::-;43108:74;;43064:128;43231:2;43257:64;43313:7;43304:6;43293:9;43289:22;43257:64;:::i;:::-;43247:74;;43202:129;43370:2;43396:64;43452:7;43443:6;43432:9;43428:22;43396:64;:::i;:::-;43386:74;;43341:129;42814:663;;;;;:::o

Swarm Source

ipfs://18f233a3754581bc8f5517874f7829c629bb1af2a6daa0e2b766eb38c4ca7741
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.