ETH Price: $2,451.83 (-0.72%)

Token

Degen Society (DS)
 

Overview

Max Total Supply

100,000,000 DS

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
470,400 DS

Value
$0.00
0x9a6300293d2a562bc53c1894b66e88ac008ae49e
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:
DS

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

https://medium.com/@degensociety/degen-society-chasing-dopamine-260f5b3a55ee

*/

// SPDX-License-Identifier: MIT
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;
        }
    }
}

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

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

/* 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 DS 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 charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Degen Society", "DS") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 100000000 * 1e18;

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

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

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

		charityWallet = address(0xdF8D51F97cd331FcA4013d9B6Aee6EBA1973b975); // set as charity wallet
        marketingWallet = address(0xdF8D51F97cd331FcA4013d9B6Aee6EBA1973b975); // set as marketing wallet
        devWallet = address(0xdF8D51F97cd331FcA4013d9B6Aee6EBA1973b975); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                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);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_charityFee","type":"uint256"},{"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":"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":"_charityFee","type":"uint256"},{"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"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f446567656e20536f6369657479000000000000000000000000000000000000008152506040518060400160405280600281526020017f445300000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b65565b5080600490805190602001906200011b92919062000b65565b5050506200013e620001326200062560201b60201c565b6200062d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006f360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c7f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c7f565b6040518363ffffffff1660e01b8152600401620002bd92919062000cc2565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c7f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006f360201b60201c565b6200036060a0516001620007dd60201b60201c565b600080600490506000806000806004905060008060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006009819055506a01a784379d99db42000000600b81905550612710602882620003ba919062000d28565b620003c6919062000db8565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000400919062000df0565b6200040c919062000df0565b62000418919062000df0565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000452919062000df0565b6200045e919062000df0565b6200046a919062000df0565b60148190555073df8d51f97cd331fca4013d9b6aee6eba1973b975600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df8d51f97cd331fca4013d9b6aee6eba1973b975600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df8d51f97cd331fca4013d9b6aee6eba1973b975600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000591620005836200087e60201b60201c565b6001620008a860201b60201c565b620005a4306001620008a860201b60201c565b620005b961dead6001620008a860201b60201c565b620005db620005cd6200087e60201b60201c565b6001620006f360201b60201c565b620005ee306001620006f360201b60201c565b6200060361dead6001620006f360201b60201c565b620006153382620009e260201b60201c565b505050505050505050506200100f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007036200062560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007296200087e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007799062000eae565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b86200062560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008de6200087e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000937576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092e9062000eae565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d6919062000eed565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4c9062000f5a565b60405180910390fd5b62000a696000838362000b5b60201b60201c565b806002600082825462000a7d919062000df0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad4919062000df0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3b919062000f8d565b60405180910390a362000b576000838362000b6060201b60201c565b5050565b505050565b505050565b82805462000b739062000fd9565b90600052602060002090601f01602090048101928262000b97576000855562000be3565b82601f1062000bb257805160ff191683800117855562000be3565b8280016001018555821562000be3579182015b8281111562000be257825182559160200191906001019062000bc5565b5b50905062000bf2919062000bf6565b5090565b5b8082111562000c1157600081600090555060010162000bf7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c478262000c1a565b9050919050565b62000c598162000c3a565b811462000c6557600080fd5b50565b60008151905062000c798162000c4e565b92915050565b60006020828403121562000c985762000c9762000c15565b5b600062000ca88482850162000c68565b91505092915050565b62000cbc8162000c3a565b82525050565b600060408201905062000cd9600083018562000cb1565b62000ce8602083018462000cb1565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d358262000cef565b915062000d428362000cef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d7e5762000d7d62000cf9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc58262000cef565b915062000dd28362000cef565b92508262000de55762000de462000d89565b5b828204905092915050565b600062000dfd8262000cef565b915062000e0a8362000cef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e425762000e4162000cf9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9660208362000e4d565b915062000ea38262000e5e565b602082019050919050565b6000602082019050818103600083015262000ec98162000e87565b9050919050565b60008115159050919050565b62000ee78162000ed0565b82525050565b600060208201905062000f04600083018462000edc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f42601f8362000e4d565b915062000f4f8262000f0a565b602082019050919050565b6000602082019050818103600083015262000f758162000f33565b9050919050565b62000f878162000cef565b82525050565b600060208201905062000fa4600083018462000f7c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff257607f821691505b6020821081141562001009576200100862000faa565b5b50919050565b60805160a051614f2d6200106d6000396000818161121701528181611807015261262e015260008181610e47015281816125d60152818161380a015281816138eb01528181613912015281816139ae01526139d50152614f2d6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b3d565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613bf8565b610e01565b6040516103da9190613c53565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c7d565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c98565b610e25565b6040516104429190613c53565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d24565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c7d565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c7d565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c7d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d3f565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d6c565b610f8e565b6040516105549190613c53565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613dce565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613de9565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e6c565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613bf8565b611163565b6040516106109190613c53565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c7d565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613dce565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c53565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c98565b61124c565b6040516106ce9190613c53565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c7d565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c53565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613c98565b6112bb565b6040516107619190613c7d565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c53565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613eb3565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613dce565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613dce565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c7d565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613dce565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613dce565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c7d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613ef3565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b3d565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613eb3565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c7d565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c7d565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c7d565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c7d565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613bf8565b6118ba565b604051610a4b9190613c53565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613bf8565b6119a5565b604051610a889190613c53565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613c98565b6119c3565b604051610ac59190613c53565b60405180910390f35b348015610ada57600080fd5b50610ae36119e3565b604051610af09190613c53565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613eb3565b6119f6565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d3f565b611b1b565b005b348015610b5757600080fd5b50610b60611c2a565b604051610b6d9190613c53565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3d565b604051610b989190613c7d565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d3f565b611c43565b604051610bd59190613c53565b60405180910390f35b348015610bea57600080fd5b50610bf3611d98565b604051610c009190613c7d565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f20565b611d9e565b604051610c3d9190613c7d565b60405180910390f35b348015610c5257600080fd5b50610c5b611e25565b604051610c689190613c7d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613de9565b611e2b565b005b348015610ca657600080fd5b50610caf611ef9565b604051610cbc9190613c53565b60405180910390f35b348015610cd157600080fd5b50610cda611f99565b604051610ce79190613c7d565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613c98565b611f9f565b005b348015610d2557600080fd5b50610d2e612097565b604051610d3b9190613c7d565b60405180910390f35b348015610d5057600080fd5b50610d5961209d565b604051610d669190613c7d565b60405180910390f35b606060038054610d7e90613f8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613f8f565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120a3565b84846120ab565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e876120a3565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061400d565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061405c565b610f2591906140e5565b610f2f91906140e5565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614188565b60405180910390fd5b670de0b6b3a764000081610f85919061405c565b60098190555050565b6000610f9b848484612276565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061421a565b60405180910390fd5b61107a856110726120a3565b8584036120ab565b60019150509392505050565b61dead81565b6110946120a3565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061400d565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461113a919061423a565b611144919061423a565b61114e919061423a565b600f8190555050505050565b60006012905090565b60006112056111706120a3565b84846001600061117e6120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061423a565b6120ab565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061400d565b60405180910390fd5b6113896000612f76565b565b60006113956120a3565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061400d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061400d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61155c6120a3565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061400d565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116666120a3565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d19061400d565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461170690613f8f565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613f8f565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120a3565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061400d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614302565b60405180910390fd5b61189e828261303c565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006118c96120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614394565b60405180910390fd5b61199a6119916120a3565b858584036120ab565b600191505092915050565b60006119b96119b26120a3565b8484612276565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6119fe6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061400d565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0f9190613c53565b60405180910390a25050565b611b236120a3565b73ffffffffffffffffffffffffffffffffffffffff16611b41611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061400d565b60405180910390fd5b670de0b6b3a76400006103e86005611bad610e69565b611bb7919061405c565b611bc191906140e5565b611bcb91906140e5565b811015611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614426565b60405180910390fd5b670de0b6b3a764000081611c21919061405c565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611c4d6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061400d565b60405180910390fd5b620186a06001611ccf610e69565b611cd9919061405c565b611ce391906140e5565b821015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906144b8565b60405180910390fd5b6103e86005611d32610e69565b611d3c919061405c565b611d4691906140e5565b821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061454a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611e51611608565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061400d565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611ed9919061423a565b611ee3919061423a565b611eed919061423a565b60148190555050505050565b6000611f036120a3565b73ffffffffffffffffffffffffffffffffffffffff16611f21611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e9061400d565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fa76120a3565b73ffffffffffffffffffffffffffffffffffffffff16611fc5611608565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061400d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612082906145dc565b60405180910390fd5b61209481612f76565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121129061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614700565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122699190613c7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614824565b60405180910390fd5b60008114156123705761236b838360006130dd565b612f71565b600c60009054906101000a900460ff1615612a335761238d611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fb57506123cb611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561246e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124875750600560149054906101000a900460ff16155b15612a3257600c60019054906101000a900460ff1661258157601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125415750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614890565b60405180910390fd5b5b600e60009054906101000a900460ff16156127495761259e611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561262557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127485743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa90614948565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289357600954811115612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906149da565b60405180910390fd5b600b54612842836112bb565b8261284d919061423a565b111561288e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288590614a46565b60405180910390fd5b612a31565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129365750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298557600954811115612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614ad8565b60405180910390fd5b612a30565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f57600b546129e2836112bb565b826129ed919061423a565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614a46565b60405180910390fd5b5b5b5b5b5b6000612a3e306112bb565b90506000600a548210159050808015612a635750600c60029054906101000a900460ff165b8015612a7c5750600560149054906101000a900460ff16155b8015612ad25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b285750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b7e5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc2576001600560146101000a81548160ff021916908315150217905550612ba661335e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c785750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8257600090505b60008115612f6157601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce557506000601454115b15612de557612d126064612d046014548861371f90919063ffffffff16565b61373590919063ffffffff16565b905060145460155482612d25919061405c565b612d2f91906140e5565b60196000828254612d40919061423a565b9250508190555060145460175482612d58919061405c565b612d6291906140e5565b601b6000828254612d73919061423a565b9250508190555060145460185482612d8b919061405c565b612d9591906140e5565b601c6000828254612da6919061423a565b9250508190555060145460165482612dbe919061405c565b612dc891906140e5565b601a6000828254612dd9919061423a565b92505081905550612f3d565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e4057506000600f54115b15612f3c57612e6d6064612e5f600f548861371f90919063ffffffff16565b61373590919063ffffffff16565b9050600f5460105482612e80919061405c565b612e8a91906140e5565b60196000828254612e9b919061423a565b92505081905550600f5460125482612eb3919061405c565b612ebd91906140e5565b601b6000828254612ece919061423a565b92505081905550600f5460135482612ee6919061405c565b612ef091906140e5565b601c6000828254612f01919061423a565b92505081905550600f5460115482612f19919061405c565b612f2391906140e5565b601a6000828254612f34919061423a565b925050819055505b5b6000811115612f5257612f518730836130dd565b5b8085612f5e9190614af8565b94505b612f6c8787876130dd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561314d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314490614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614824565b60405180910390fd5b6131c883838361374b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590614b9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e1919061423a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133459190613c7d565b60405180910390a3613358848484613750565b50505050565b6000613369306112bb565b90506000601c54601a54601b54601954613383919061423a565b61338d919061423a565b613397919061423a565b90506000808314806133a95750600082145b156133b65750505061371d565b6014600a546133c5919061405c565b8311156133de576014600a546133db919061405c565b92505b6000600283601b54866133f1919061405c565b6133fb91906140e5565b61340591906140e5565b9050600061341c828661375590919063ffffffff16565b9050600047905061342c8261376b565b6000613441824761375590919063ffffffff16565b9050600061346c8761345e6019548561371f90919063ffffffff16565b61373590919063ffffffff16565b9050600061349788613489601a548661371f90919063ffffffff16565b61373590919063ffffffff16565b905060006134c2896134b4601c548761371f90919063ffffffff16565b61373590919063ffffffff16565b90506000818385876134d49190614af8565b6134de9190614af8565b6134e89190614af8565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161355090614bef565b60006040518083038185875af1925050503d806000811461358d576040519150601f19603f3d011682016040523d82523d6000602084013e613592565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135de90614bef565b60006040518083038185875af1925050503d806000811461361b576040519150601f19603f3d011682016040523d82523d6000602084013e613620565b606091505b5050809950506000881180156136365750600081115b156136835761364588826139a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161367a93929190614c04565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136c990614bef565b60006040518083038185875af1925050503d8060008114613706576040519150601f19603f3d011682016040523d82523d6000602084013e61370b565b606091505b50508099505050505050505050505050505b565b6000818361372d919061405c565b905092915050565b6000818361374391906140e5565b905092915050565b505050565b505050565b600081836137639190614af8565b905092915050565b6000600267ffffffffffffffff81111561378857613787614c3b565b5b6040519080825280602002602001820160405280156137b65781602001602082028036833780820191505090505b50905030816000815181106137ce576137cd614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138979190614cae565b816001815181106138ab576138aa614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613910307f0000000000000000000000000000000000000000000000000000000000000000846120ab565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613972959493929190614dd4565b600060405180830381600087803b15801561398c57600080fd5b505af11580156139a0573d6000803e3d6000fd5b505050505050565b6139d3307f0000000000000000000000000000000000000000000000000000000000000000846120ab565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a5a96959493929190614e2e565b60606040518083038185885af1158015613a78573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a9d9190614ea4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ade578082015181840152602081019050613ac3565b83811115613aed576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b0f82613aa4565b613b198185613aaf565b9350613b29818560208601613ac0565b613b3281613af3565b840191505092915050565b60006020820190508181036000830152613b578184613b04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b8f82613b64565b9050919050565b613b9f81613b84565b8114613baa57600080fd5b50565b600081359050613bbc81613b96565b92915050565b6000819050919050565b613bd581613bc2565b8114613be057600080fd5b50565b600081359050613bf281613bcc565b92915050565b60008060408385031215613c0f57613c0e613b5f565b5b6000613c1d85828601613bad565b9250506020613c2e85828601613be3565b9150509250929050565b60008115159050919050565b613c4d81613c38565b82525050565b6000602082019050613c686000830184613c44565b92915050565b613c7781613bc2565b82525050565b6000602082019050613c926000830184613c6e565b92915050565b600060208284031215613cae57613cad613b5f565b5b6000613cbc84828501613bad565b91505092915050565b6000819050919050565b6000613cea613ce5613ce084613b64565b613cc5565b613b64565b9050919050565b6000613cfc82613ccf565b9050919050565b6000613d0e82613cf1565b9050919050565b613d1e81613d03565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600060208284031215613d5557613d54613b5f565b5b6000613d6384828501613be3565b91505092915050565b600080600060608486031215613d8557613d84613b5f565b5b6000613d9386828701613bad565b9350506020613da486828701613bad565b9250506040613db586828701613be3565b9150509250925092565b613dc881613b84565b82525050565b6000602082019050613de36000830184613dbf565b92915050565b60008060008060808587031215613e0357613e02613b5f565b5b6000613e1187828801613be3565b9450506020613e2287828801613be3565b9350506040613e3387828801613be3565b9250506060613e4487828801613be3565b91505092959194509250565b600060ff82169050919050565b613e6681613e50565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b613e9081613c38565b8114613e9b57600080fd5b50565b600081359050613ead81613e87565b92915050565b60008060408385031215613eca57613ec9613b5f565b5b6000613ed885828601613bad565b9250506020613ee985828601613e9e565b9150509250929050565b600060208284031215613f0957613f08613b5f565b5b6000613f1784828501613e9e565b91505092915050565b60008060408385031215613f3757613f36613b5f565b5b6000613f4585828601613bad565b9250506020613f5685828601613bad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fa757607f821691505b60208210811415613fbb57613fba613f60565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ff7602083613aaf565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061406782613bc2565b915061407283613bc2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ab576140aa61402d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f082613bc2565b91506140fb83613bc2565b92508261410b5761410a6140b6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614172602f83613aaf565b915061417d82614116565b604082019050919050565b600060208201905081810360008301526141a181614165565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614204602883613aaf565b915061420f826141a8565b604082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b600061424582613bc2565b915061425083613bc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142855761428461402d565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ec603983613aaf565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061437e602583613aaf565b915061438982614322565b604082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614410602483613aaf565b915061441b826143b4565b604082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144a2603583613aaf565b91506144ad82614446565b604082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614534603483613aaf565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145c6602683613aaf565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613aaf565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602283613aaf565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061477c602583613aaf565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602383613aaf565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061487a601683613aaf565b915061488582614844565b602082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614932604983613aaf565b915061493d826148b0565b606082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006149c4603583613aaf565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a30601383613aaf565b9150614a3b826149fa565b602082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614ac2603683613aaf565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b6000614b0382613bc2565b9150614b0e83613bc2565b925082821015614b2157614b2061402d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613aaf565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b600081905092915050565b50565b6000614bd9600083614bbe565b9150614be482614bc9565b600082019050919050565b6000614bfa82614bcc565b9150819050919050565b6000606082019050614c196000830186613c6e565b614c266020830185613c6e565b614c336040830184613c6e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ca881613b96565b92915050565b600060208284031215614cc457614cc3613b5f565b5b6000614cd284828501614c99565b91505092915050565b6000819050919050565b6000614d00614cfb614cf684614cdb565b613cc5565b613bc2565b9050919050565b614d1081614ce5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d4b81613b84565b82525050565b6000614d5d8383614d42565b60208301905092915050565b6000602082019050919050565b6000614d8182614d16565b614d8b8185614d21565b9350614d9683614d32565b8060005b83811015614dc7578151614dae8882614d51565b9750614db983614d69565b925050600181019050614d9a565b5085935050505092915050565b600060a082019050614de96000830188613c6e565b614df66020830187614d07565b8181036040830152614e088186614d76565b9050614e176060830185613dbf565b614e246080830184613c6e565b9695505050505050565b600060c082019050614e436000830189613dbf565b614e506020830188613c6e565b614e5d6040830187614d07565b614e6a6060830186614d07565b614e776080830185613dbf565b614e8460a0830184613c6e565b979650505050505050565b600081519050614e9e81613bcc565b92915050565b600080600060608486031215614ebd57614ebc613b5f565b5b6000614ecb86828701614e8f565b9350506020614edc86828701614e8f565b9250506040614eed86828701614e8f565b915050925092509256fea2646970667358221220b1249074dfe78378b7d3f089c10ed666e620850b6103411d33356553e05c8f5464736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b3d565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613bf8565b610e01565b6040516103da9190613c53565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c7d565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c98565b610e25565b6040516104429190613c53565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d24565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c7d565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c7d565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c7d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d3f565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d6c565b610f8e565b6040516105549190613c53565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613dce565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613de9565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e6c565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613bf8565b611163565b6040516106109190613c53565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c7d565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613dce565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c53565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c98565b61124c565b6040516106ce9190613c53565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c7d565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c53565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613c98565b6112bb565b6040516107619190613c7d565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c53565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613eb3565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613dce565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613dce565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c7d565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613dce565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613dce565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c7d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613ef3565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b3d565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613eb3565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c7d565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c7d565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c7d565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c7d565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613bf8565b6118ba565b604051610a4b9190613c53565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613bf8565b6119a5565b604051610a889190613c53565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613c98565b6119c3565b604051610ac59190613c53565b60405180910390f35b348015610ada57600080fd5b50610ae36119e3565b604051610af09190613c53565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613eb3565b6119f6565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d3f565b611b1b565b005b348015610b5757600080fd5b50610b60611c2a565b604051610b6d9190613c53565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3d565b604051610b989190613c7d565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d3f565b611c43565b604051610bd59190613c53565b60405180910390f35b348015610bea57600080fd5b50610bf3611d98565b604051610c009190613c7d565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f20565b611d9e565b604051610c3d9190613c7d565b60405180910390f35b348015610c5257600080fd5b50610c5b611e25565b604051610c689190613c7d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613de9565b611e2b565b005b348015610ca657600080fd5b50610caf611ef9565b604051610cbc9190613c53565b60405180910390f35b348015610cd157600080fd5b50610cda611f99565b604051610ce79190613c7d565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613c98565b611f9f565b005b348015610d2557600080fd5b50610d2e612097565b604051610d3b9190613c7d565b60405180910390f35b348015610d5057600080fd5b50610d5961209d565b604051610d669190613c7d565b60405180910390f35b606060038054610d7e90613f8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613f8f565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120a3565b84846120ab565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e876120a3565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061400d565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061405c565b610f2591906140e5565b610f2f91906140e5565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614188565b60405180910390fd5b670de0b6b3a764000081610f85919061405c565b60098190555050565b6000610f9b848484612276565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061421a565b60405180910390fd5b61107a856110726120a3565b8584036120ab565b60019150509392505050565b61dead81565b6110946120a3565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061400d565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461113a919061423a565b611144919061423a565b61114e919061423a565b600f8190555050505050565b60006012905090565b60006112056111706120a3565b84846001600061117e6120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061423a565b6120ab565b6001905092915050565b60195481565b7f0000000000000000000000001fb3453c88bb171b92d606c7f9bbbaf8c0b0428e81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061400d565b60405180910390fd5b6113896000612f76565b565b60006113956120a3565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061400d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061400d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61155c6120a3565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061400d565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116666120a3565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d19061400d565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461170690613f8f565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613f8f565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120a3565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061400d565b60405180910390fd5b7f0000000000000000000000001fb3453c88bb171b92d606c7f9bbbaf8c0b0428e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614302565b60405180910390fd5b61189e828261303c565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006118c96120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614394565b60405180910390fd5b61199a6119916120a3565b858584036120ab565b600191505092915050565b60006119b96119b26120a3565b8484612276565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6119fe6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061400d565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0f9190613c53565b60405180910390a25050565b611b236120a3565b73ffffffffffffffffffffffffffffffffffffffff16611b41611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061400d565b60405180910390fd5b670de0b6b3a76400006103e86005611bad610e69565b611bb7919061405c565b611bc191906140e5565b611bcb91906140e5565b811015611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614426565b60405180910390fd5b670de0b6b3a764000081611c21919061405c565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611c4d6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061400d565b60405180910390fd5b620186a06001611ccf610e69565b611cd9919061405c565b611ce391906140e5565b821015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906144b8565b60405180910390fd5b6103e86005611d32610e69565b611d3c919061405c565b611d4691906140e5565b821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061454a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611e51611608565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061400d565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611ed9919061423a565b611ee3919061423a565b611eed919061423a565b60148190555050505050565b6000611f036120a3565b73ffffffffffffffffffffffffffffffffffffffff16611f21611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e9061400d565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fa76120a3565b73ffffffffffffffffffffffffffffffffffffffff16611fc5611608565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061400d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612082906145dc565b60405180910390fd5b61209481612f76565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121129061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614700565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122699190613c7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614824565b60405180910390fd5b60008114156123705761236b838360006130dd565b612f71565b600c60009054906101000a900460ff1615612a335761238d611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fb57506123cb611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561246e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124875750600560149054906101000a900460ff16155b15612a3257600c60019054906101000a900460ff1661258157601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125415750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614890565b60405180910390fd5b5b600e60009054906101000a900460ff16156127495761259e611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561262557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267d57507f0000000000000000000000001fb3453c88bb171b92d606c7f9bbbaf8c0b0428e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127485743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa90614948565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289357600954811115612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906149da565b60405180910390fd5b600b54612842836112bb565b8261284d919061423a565b111561288e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288590614a46565b60405180910390fd5b612a31565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129365750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298557600954811115612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614ad8565b60405180910390fd5b612a30565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f57600b546129e2836112bb565b826129ed919061423a565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614a46565b60405180910390fd5b5b5b5b5b5b6000612a3e306112bb565b90506000600a548210159050808015612a635750600c60029054906101000a900460ff165b8015612a7c5750600560149054906101000a900460ff16155b8015612ad25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b285750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b7e5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc2576001600560146101000a81548160ff021916908315150217905550612ba661335e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c785750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8257600090505b60008115612f6157601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce557506000601454115b15612de557612d126064612d046014548861371f90919063ffffffff16565b61373590919063ffffffff16565b905060145460155482612d25919061405c565b612d2f91906140e5565b60196000828254612d40919061423a565b9250508190555060145460175482612d58919061405c565b612d6291906140e5565b601b6000828254612d73919061423a565b9250508190555060145460185482612d8b919061405c565b612d9591906140e5565b601c6000828254612da6919061423a565b9250508190555060145460165482612dbe919061405c565b612dc891906140e5565b601a6000828254612dd9919061423a565b92505081905550612f3d565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e4057506000600f54115b15612f3c57612e6d6064612e5f600f548861371f90919063ffffffff16565b61373590919063ffffffff16565b9050600f5460105482612e80919061405c565b612e8a91906140e5565b60196000828254612e9b919061423a565b92505081905550600f5460125482612eb3919061405c565b612ebd91906140e5565b601b6000828254612ece919061423a565b92505081905550600f5460135482612ee6919061405c565b612ef091906140e5565b601c6000828254612f01919061423a565b92505081905550600f5460115482612f19919061405c565b612f2391906140e5565b601a6000828254612f34919061423a565b925050819055505b5b6000811115612f5257612f518730836130dd565b5b8085612f5e9190614af8565b94505b612f6c8787876130dd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561314d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314490614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614824565b60405180910390fd5b6131c883838361374b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590614b9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e1919061423a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133459190613c7d565b60405180910390a3613358848484613750565b50505050565b6000613369306112bb565b90506000601c54601a54601b54601954613383919061423a565b61338d919061423a565b613397919061423a565b90506000808314806133a95750600082145b156133b65750505061371d565b6014600a546133c5919061405c565b8311156133de576014600a546133db919061405c565b92505b6000600283601b54866133f1919061405c565b6133fb91906140e5565b61340591906140e5565b9050600061341c828661375590919063ffffffff16565b9050600047905061342c8261376b565b6000613441824761375590919063ffffffff16565b9050600061346c8761345e6019548561371f90919063ffffffff16565b61373590919063ffffffff16565b9050600061349788613489601a548661371f90919063ffffffff16565b61373590919063ffffffff16565b905060006134c2896134b4601c548761371f90919063ffffffff16565b61373590919063ffffffff16565b90506000818385876134d49190614af8565b6134de9190614af8565b6134e89190614af8565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161355090614bef565b60006040518083038185875af1925050503d806000811461358d576040519150601f19603f3d011682016040523d82523d6000602084013e613592565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135de90614bef565b60006040518083038185875af1925050503d806000811461361b576040519150601f19603f3d011682016040523d82523d6000602084013e613620565b606091505b5050809950506000881180156136365750600081115b156136835761364588826139a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161367a93929190614c04565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136c990614bef565b60006040518083038185875af1925050503d8060008114613706576040519150601f19603f3d011682016040523d82523d6000602084013e61370b565b606091505b50508099505050505050505050505050505b565b6000818361372d919061405c565b905092915050565b6000818361374391906140e5565b905092915050565b505050565b505050565b600081836137639190614af8565b905092915050565b6000600267ffffffffffffffff81111561378857613787614c3b565b5b6040519080825280602002602001820160405280156137b65781602001602082028036833780820191505090505b50905030816000815181106137ce576137cd614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138979190614cae565b816001815181106138ab576138aa614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613910307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ab565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613972959493929190614dd4565b600060405180830381600087803b15801561398c57600080fd5b505af11580156139a0573d6000803e3d6000fd5b505050505050565b6139d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ab565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a5a96959493929190614e2e565b60606040518083038185885af1158015613a78573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a9d9190614ea4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ade578082015181840152602081019050613ac3565b83811115613aed576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b0f82613aa4565b613b198185613aaf565b9350613b29818560208601613ac0565b613b3281613af3565b840191505092915050565b60006020820190508181036000830152613b578184613b04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b8f82613b64565b9050919050565b613b9f81613b84565b8114613baa57600080fd5b50565b600081359050613bbc81613b96565b92915050565b6000819050919050565b613bd581613bc2565b8114613be057600080fd5b50565b600081359050613bf281613bcc565b92915050565b60008060408385031215613c0f57613c0e613b5f565b5b6000613c1d85828601613bad565b9250506020613c2e85828601613be3565b9150509250929050565b60008115159050919050565b613c4d81613c38565b82525050565b6000602082019050613c686000830184613c44565b92915050565b613c7781613bc2565b82525050565b6000602082019050613c926000830184613c6e565b92915050565b600060208284031215613cae57613cad613b5f565b5b6000613cbc84828501613bad565b91505092915050565b6000819050919050565b6000613cea613ce5613ce084613b64565b613cc5565b613b64565b9050919050565b6000613cfc82613ccf565b9050919050565b6000613d0e82613cf1565b9050919050565b613d1e81613d03565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600060208284031215613d5557613d54613b5f565b5b6000613d6384828501613be3565b91505092915050565b600080600060608486031215613d8557613d84613b5f565b5b6000613d9386828701613bad565b9350506020613da486828701613bad565b9250506040613db586828701613be3565b9150509250925092565b613dc881613b84565b82525050565b6000602082019050613de36000830184613dbf565b92915050565b60008060008060808587031215613e0357613e02613b5f565b5b6000613e1187828801613be3565b9450506020613e2287828801613be3565b9350506040613e3387828801613be3565b9250506060613e4487828801613be3565b91505092959194509250565b600060ff82169050919050565b613e6681613e50565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b613e9081613c38565b8114613e9b57600080fd5b50565b600081359050613ead81613e87565b92915050565b60008060408385031215613eca57613ec9613b5f565b5b6000613ed885828601613bad565b9250506020613ee985828601613e9e565b9150509250929050565b600060208284031215613f0957613f08613b5f565b5b6000613f1784828501613e9e565b91505092915050565b60008060408385031215613f3757613f36613b5f565b5b6000613f4585828601613bad565b9250506020613f5685828601613bad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fa757607f821691505b60208210811415613fbb57613fba613f60565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ff7602083613aaf565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061406782613bc2565b915061407283613bc2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ab576140aa61402d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f082613bc2565b91506140fb83613bc2565b92508261410b5761410a6140b6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614172602f83613aaf565b915061417d82614116565b604082019050919050565b600060208201905081810360008301526141a181614165565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614204602883613aaf565b915061420f826141a8565b604082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b600061424582613bc2565b915061425083613bc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142855761428461402d565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ec603983613aaf565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061437e602583613aaf565b915061438982614322565b604082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614410602483613aaf565b915061441b826143b4565b604082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144a2603583613aaf565b91506144ad82614446565b604082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614534603483613aaf565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145c6602683613aaf565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613aaf565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602283613aaf565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061477c602583613aaf565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602383613aaf565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061487a601683613aaf565b915061488582614844565b602082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614932604983613aaf565b915061493d826148b0565b606082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006149c4603583613aaf565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a30601383613aaf565b9150614a3b826149fa565b602082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614ac2603683613aaf565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b6000614b0382613bc2565b9150614b0e83613bc2565b925082821015614b2157614b2061402d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613aaf565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b600081905092915050565b50565b6000614bd9600083614bbe565b9150614be482614bc9565b600082019050919050565b6000614bfa82614bcc565b9150819050919050565b6000606082019050614c196000830186613c6e565b614c266020830185613c6e565b614c336040830184613c6e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ca881613b96565b92915050565b600060208284031215614cc457614cc3613b5f565b5b6000614cd284828501614c99565b91505092915050565b6000819050919050565b6000614d00614cfb614cf684614cdb565b613cc5565b613bc2565b9050919050565b614d1081614ce5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d4b81613b84565b82525050565b6000614d5d8383614d42565b60208301905092915050565b6000602082019050919050565b6000614d8182614d16565b614d8b8185614d21565b9350614d9683614d32565b8060005b83811015614dc7578151614dae8882614d51565b9750614db983614d69565b925050600181019050614d9a565b5085935050505092915050565b600060a082019050614de96000830188613c6e565b614df66020830187614d07565b8181036040830152614e088186614d76565b9050614e176060830185613dbf565b614e246080830184613c6e565b9695505050505050565b600060c082019050614e436000830189613dbf565b614e506020830188613c6e565b614e5d6040830187614d07565b614e6a6060830186614d07565b614e776080830185613dbf565b614e8460a0830184613c6e565b979650505050505050565b600081519050614e9e81613bcc565b92915050565b600080600060608486031215614ebd57614ebc613b5f565b5b6000614ecb86828701614e8f565b9350506020614edc86828701614e8f565b9250506040614eed86828701614e8f565b915050925092509256fea2646970667358221220b1249074dfe78378b7d3f089c10ed666e620850b6103411d33356553e05c8f5464736f6c634300080a0033

Deployed Bytecode Sourcemap

32720:16309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11815:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33755:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34192:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32792:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33936;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38581:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12466:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32895:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39500:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10610:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13367:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32850:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33204:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41033:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33723:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33284:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10939:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2883:103;;;;;;;;;;;;;:::i;:::-;;37689:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39129:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33019:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32984:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33616:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37525:112;;;;;;;;;;;;;:::i;:::-;;2232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33056:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33791:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39392:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40525:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33690:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34016:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33867:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33581:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14085:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11279:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34413:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33244:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40335:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38864:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33502:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33089:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38076:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33550:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33131:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39913:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37871:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33653:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33829:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33171:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:100;9702:13;9735:5;9728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;:::o;11815:169::-;11898:4;11915:39;11924:12;:10;:12::i;:::-;11938:7;11947:6;11915:8;:39::i;:::-;11972:4;11965:11;;11815:169;;;;:::o;33755:29::-;;;;:::o;34192:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32792:51::-;;;:::o;10768:108::-;10829:7;10856:12;;10849:19;;10768:108;:::o;33976:33::-;;;;:::o;33936:::-;;;;:::o;38581:275::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38718:4:::1;38710;38705:1;38689:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38688:26;;;;:::i;:::-;38687:35;;;;:::i;:::-;38677:6;:45;;38655:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38841:6;38831;:17;;;;:::i;:::-;38808:20;:40;;;;38581:275:::0;:::o;12466:492::-;12606:4;12623:36;12633:6;12641:9;12652:6;12623:9;:36::i;:::-;12672:24;12699:11;:19;12711:6;12699:19;;;;;;;;;;;;;;;:33;12719:12;:10;:12::i;:::-;12699:33;;;;;;;;;;;;;;;;12672:60;;12771:6;12751:16;:26;;12743:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12858:57;12867:6;12875:12;:10;:12::i;:::-;12908:6;12889:16;:25;12858:8;:57::i;:::-;12946:4;12939:11;;;12466:492;;;;;:::o;32895:53::-;32941:6;32895:53;:::o;39500:405::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39684:11:::1;39668:13;:27;;;;39724:13;39706:15;:31;;;;39766:13;39748:15;:31;;;;39802:7;39790:9;:19;;;;39887:9;;39869:15;;39851;;39835:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39820:12;:76;;;;39500:405:::0;;;;:::o;10610:93::-;10668:5;10693:2;10686:9;;10610:93;:::o;13367:215::-;13455:4;13472:80;13481:12;:10;:12::i;:::-;13495:7;13541:10;13504:11;:25;13516:12;:10;:12::i;:::-;13504:25;;;;;;;;;;;;;;;:34;13530:7;13504:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13472:8;:80::i;:::-;13570:4;13563:11;;13367:215;;;;:::o;33898:31::-;;;;:::o;32850:38::-;;;:::o;33204:33::-;;;;;;;;;;;;;:::o;41033:126::-;41099:4;41123:19;:28;41143:7;41123:28;;;;;;;;;;;;;;;;;;;;;;;;;41116:35;;41033:126;;;:::o;33723:28::-;;;;:::o;33284:31::-;;;;;;;;;;;;;:::o;10939:127::-;11013:7;11040:9;:18;11050:7;11040:18;;;;;;;;;;;;;;;;11033:25;;10939:127;;;:::o;2883:103::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2948:30:::1;2975:1;2948:18;:30::i;:::-;2883:103::o:0;37689:121::-;37741:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37775:5:::1;37758:14;;:22;;;;;;;;;;;;;;;;;;37798:4;37791:11;;37689:121:::0;:::o;39129:167::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39284:4:::1;39242:31;:39;39274:6;39242:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39129:167:::0;;:::o;33019:30::-;;;;;;;;;;;;;:::o;32984:28::-;;;;;;;;;;;;;:::o;33616:30::-;;;;:::o;37525:112::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37596:4:::1;37580:13;;:20;;;;;;;;;;;;;;;;;;37625:4;37611:11;;:18;;;;;;;;;;;;;;;;;;37525:112::o:0;2232:87::-;2278:7;2305:6;;;;;;;;;;;2298:13;;2232:87;:::o;33056:24::-;;;;;;;;;;;;;:::o;33791:31::-;;;;:::o;39392:100::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39477:7:::1;39463:11;;:21;;;;;;;;;;;;;;;;;;39392:100:::0;:::o;9867:104::-;9923:13;9956:7;9949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9867:104;:::o;40525:304::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40669:13:::1;40661:21;;:4;:21;;;;40639:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40780:41;40809:4;40815:5;40780:28;:41::i;:::-;40525:304:::0;;:::o;33690:24::-;;;;:::o;34016:27::-;;;;:::o;33867:25::-;;;;:::o;33581:28::-;;;;:::o;14085:413::-;14178:4;14195:24;14222:11;:25;14234:12;:10;:12::i;:::-;14222:25;;;;;;;;;;;;;;;:34;14248:7;14222:34;;;;;;;;;;;;;;;;14195:61;;14295:15;14275:16;:35;;14267:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14388:67;14397:12;:10;:12::i;:::-;14411:7;14439:15;14420:16;:34;14388:8;:67::i;:::-;14486:4;14479:11;;;14085:413;;;;:::o;11279:175::-;11365:4;11382:42;11392:12;:10;:12::i;:::-;11406:9;11417:6;11382:9;:42::i;:::-;11442:4;11435:11;;11279:175;;;;:::o;34413:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33244:33::-;;;;;;;;;;;;;:::o;40335:182::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40451:8:::1;40420:19;:28;40440:7;40420:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40491:7;40475:34;;;40500:8;40475:34;;;;;;:::i;:::-;;;;;;;;40335:182:::0;;:::o;38864:256::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39004:4:::1;38996;38991:1;38975:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38974:26;;;;:::i;:::-;38973:35;;;;:::i;:::-;38963:6;:45;;38941:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39105:6;39095;:17;;;;:::i;:::-;39083:9;:29;;;;38864:256:::0;:::o;33502:39::-;;;;;;;;;;;;;:::o;33089:35::-;;;;:::o;38076:497::-;38184:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38263:6:::1;38258:1;38242:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38241:28;;;;:::i;:::-;38228:9;:41;;38206:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38418:4;38413:1;38397:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38396:26;;;;:::i;:::-;38383:9;:39;;38361:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38534:9;38513:18;:30;;;;38561:4;38554:11;;38076:497:::0;;;:::o;33550:27::-;;;;:::o;11517:151::-;11606:7;11633:11;:18;11645:5;11633:18;;;;;;;;;;;;;;;:27;11652:7;11633:27;;;;;;;;;;;;;;;;11626:34;;11517:151;;;;:::o;33131:33::-;;;;:::o;39913:414::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40099:11:::1;40082:14;:28;;;;40140:13;40121:16;:32;;;;40183:13;40164:16;:32;;;;40220:7;40207:10;:20;;;;40309:10;;40290:16;;40271;;40254:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40238:13;:81;;;;39913:414:::0;;;;:::o;37871:135::-;37931:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37971:5:::1;37948:20;;:28;;;;;;;;;;;;;;;;;;37994:4;37987:11;;37871:135:::0;:::o;33653:30::-;;;;:::o;3141:201::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3250:1:::1;3230:22;;:8;:22;;;;3222:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3306:28;3325:8;3306:18;:28::i;:::-;3141:201:::0;:::o;33829:31::-;;;;:::o;33171:24::-;;;;:::o;905:98::-;958:7;985:10;978:17;;905:98;:::o;17769:380::-;17922:1;17905:19;;:5;:19;;;;17897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18003:1;17984:21;;:7;:21;;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18087:6;18057:11;:18;18069:5;18057:18;;;;;;;;;;;;;;;:27;18076:7;18057:27;;;;;;;;;;;;;;;:36;;;;18125:7;18109:32;;18118:5;18109:32;;;18134:6;18109:32;;;;;;:::i;:::-;;;;;;;;17769:380;;;:::o;41167:4847::-;41315:1;41299:18;;:4;:18;;;;41291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41392:1;41378:16;;:2;:16;;;;41370:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41461:1;41451:6;:11;41447:93;;;41479:28;41495:4;41501:2;41505:1;41479:15;:28::i;:::-;41522:7;;41447:93;41556:14;;;;;;;;;;;41552:2487;;;41617:7;:5;:7::i;:::-;41609:15;;:4;:15;;;;:49;;;;;41651:7;:5;:7::i;:::-;41645:13;;:2;:13;;;;41609:49;:86;;;;;41693:1;41679:16;;:2;:16;;;;41609:86;:128;;;;;41730:6;41716:21;;:2;:21;;;;41609:128;:158;;;;;41759:8;;;;;;;;;;;41758:9;41609:158;41587:2441;;;41807:13;;;;;;;;;;;41802:223;;41879:19;:25;41899:4;41879:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41908:19;:23;41928:2;41908:23;;;;;;;;;;;;;;;;;;;;;;;;;41879:52;41845:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41802:223;42181:20;;;;;;;;;;;42177:641;;;42262:7;:5;:7::i;:::-;42256:13;;:2;:13;;;;:72;;;;;42312:15;42298:30;;:2;:30;;;;42256:72;:129;;;;;42371:13;42357:28;;:2;:28;;;;42256:129;42226:573;;;42549:12;42474:28;:39;42503:9;42474:39;;;;;;;;;;;;;;;;:87;42436:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42763:12;42721:28;:39;42750:9;42721:39;;;;;;;;;;;;;;;:54;;;;42226:573;42177:641;42892:25;:31;42918:4;42892:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42949:31;:35;42981:2;42949:35;;;;;;;;;;;;;;;;;;;;;;;;;42948:36;42892:92;42866:1147;;;43071:20;;43061:6;:30;;43027:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43279:9;;43262:13;43272:2;43262:9;:13::i;:::-;43253:6;:22;;;;:::i;:::-;:35;;43219:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42866:1147;;;43457:25;:29;43483:2;43457:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43512:31;:37;43544:4;43512:37;;;;;;;;;;;;;;;;;;;;;;;;;43511:38;43457:92;43431:582;;;43636:20;;43626:6;:30;;43592:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43431:582;;;43793:31;:35;43825:2;43793:35;;;;;;;;;;;;;;;;;;;;;;;;;43788:225;;43913:9;;43896:13;43906:2;43896:9;:13::i;:::-;43887:6;:22;;;;:::i;:::-;:35;;43853:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43788:225;43431:582;42866:1147;41587:2441;41552:2487;44051:28;44082:24;44100:4;44082:9;:24::i;:::-;44051:55;;44119:12;44158:18;;44134:20;:42;;44119:57;;44207:7;:35;;;;;44231:11;;;;;;;;;;;44207:35;:61;;;;;44260:8;;;;;;;;;;;44259:9;44207:61;:110;;;;;44286:25;:31;44312:4;44286:31;;;;;;;;;;;;;;;;;;;;;;;;;44285:32;44207:110;:153;;;;;44335:19;:25;44355:4;44335:25;;;;;;;;;;;;;;;;;;;;;;;;;44334:26;44207:153;:194;;;;;44378:19;:23;44398:2;44378:23;;;;;;;;;;;;;;;;;;;;;;;;;44377:24;44207:194;44189:326;;;44439:4;44428:8;;:15;;;;;;;;;;;;;;;;;;44460:10;:8;:10::i;:::-;44498:5;44487:8;;:16;;;;;;;;;;;;;;;;;;44189:326;44527:12;44543:8;;;;;;;;;;;44542:9;44527:24;;44653:19;:25;44673:4;44653:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44682:19;:23;44702:2;44682:23;;;;;;;;;;;;;;;;;;;;;;;;;44653:52;44649:100;;;44732:5;44722:15;;44649:100;44761:12;44866:7;44862:1099;;;44918:25;:29;44944:2;44918:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44967:1;44951:13;;:17;44918:50;44914:898;;;44996:34;45026:3;44996:25;45007:13;;44996:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44989:41;;45083:13;;45065:14;;45058:4;:21;;;;:::i;:::-;45057:39;;;;:::i;:::-;45037:16;;:59;;;;;;;:::i;:::-;;;;;;;;45165:13;;45145:16;;45138:4;:23;;;;:::i;:::-;45137:41;;;;:::i;:::-;45115:18;;:63;;;;;;;:::i;:::-;;;;;;;;45235:13;;45221:10;;45214:4;:17;;;;:::i;:::-;45213:35;;;;:::i;:::-;45197:12;;:51;;;;;;;:::i;:::-;;;;;;;;45317:13;;45297:16;;45290:4;:23;;;;:::i;:::-;45289:41;;;;:::i;:::-;45267:18;;:63;;;;;;;:::i;:::-;;;;;;;;44914:898;;;45392:25;:31;45418:4;45392:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45442:1;45427:12;;:16;45392:51;45388:424;;;45471:33;45500:3;45471:24;45482:12;;45471:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45464:40;;45556:12;;45539:13;;45532:4;:20;;;;:::i;:::-;45531:37;;;;:::i;:::-;45511:16;;:57;;;;;;;:::i;:::-;;;;;;;;45636:12;;45617:15;;45610:4;:22;;;;:::i;:::-;45609:39;;;;:::i;:::-;45587:18;;:61;;;;;;;:::i;:::-;;;;;;;;45704:12;;45691:9;;45684:4;:16;;;;:::i;:::-;45683:33;;;;:::i;:::-;45667:12;;:49;;;;;;;:::i;:::-;;;;;;;;45784:12;;45765:15;;45758:4;:22;;;;:::i;:::-;45757:39;;;;:::i;:::-;45735:18;;:61;;;;;;;:::i;:::-;;;;;;;;45388:424;44914:898;45839:1;45832:4;:8;45828:91;;;45861:42;45877:4;45891;45898;45861:15;:42::i;:::-;45828:91;45945:4;45935:14;;;;;:::i;:::-;;;44862:1099;45973:33;45989:4;45995:2;45999:6;45973:15;:33::i;:::-;41280:4734;;;;41167:4847;;;;:::o;3502:191::-;3576:16;3595:6;;;;;;;;;;;3576:25;;3621:8;3612:6;;:17;;;;;;;;;;;;;;;;;;3676:8;3645:40;;3666:8;3645:40;;;;;;;;;;;;3565:128;3502:191;:::o;40837:188::-;40954:5;40920:25;:31;40946:4;40920:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41011:5;40977:40;;41005:4;40977:40;;;;;;;;;;;;40837:188;;:::o;14988:733::-;15146:1;15128:20;;:6;:20;;;;15120:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15230:1;15209:23;;:9;:23;;;;15201:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15285:47;15306:6;15314:9;15325:6;15285:20;:47::i;:::-;15345:21;15369:9;:17;15379:6;15369:17;;;;;;;;;;;;;;;;15345:41;;15422:6;15405:13;:23;;15397:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15543:6;15527:13;:22;15507:9;:17;15517:6;15507:17;;;;;;;;;;;;;;;:42;;;;15595:6;15571:9;:20;15581:9;15571:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15636:9;15619:35;;15628:6;15619:35;;;15647:6;15619:35;;;;;;:::i;:::-;;;;;;;;15667:46;15687:6;15695:9;15706:6;15667:19;:46::i;:::-;15109:612;14988:733;;;:::o;47142:1882::-;47181:23;47207:24;47225:4;47207:9;:24::i;:::-;47181:50;;47242:25;47331:12;;47310:18;;47289;;47270:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47242:101;;47354:12;47402:1;47383:15;:20;:46;;;;47428:1;47407:17;:22;47383:46;47379:85;;;47446:7;;;;;47379:85;47519:2;47498:18;;:23;;;;:::i;:::-;47480:15;:41;47476:115;;;47577:2;47556:18;;:23;;;;:::i;:::-;47538:41;;47476:115;47652:23;47739:1;47719:17;47697:18;;47679:15;:36;;;;:::i;:::-;47678:58;;;;:::i;:::-;:62;;;;:::i;:::-;47652:88;;47751:26;47780:36;47800:15;47780;:19;;:36;;;;:::i;:::-;47751:65;;47829:25;47857:21;47829:49;;47891:36;47908:18;47891:16;:36::i;:::-;47940:18;47961:44;47987:17;47961:21;:25;;:44;;;;:::i;:::-;47940:65;;48012:21;48036:55;48073:17;48036:32;48051:16;;48036:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48012:79;;48102:23;48128:57;48167:17;48128:34;48143:18;;48128:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48102:83;;48196:17;48216:51;48249:17;48216:28;48231:12;;48216:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48196:71;;48280:23;48353:9;48335:15;48319:13;48306:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48280:82;;48396:1;48375:18;:22;;;;48421:1;48402:16;:20;;;;48454:1;48433:18;:22;;;;48481:1;48466:12;:16;;;;48517:9;;;;;;;;;;;48509:23;;48540:9;48509:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48495:59;;;;;48587:15;;;;;;;;;;;48579:29;;48616:15;48579:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48565:71;;;;;48673:1;48655:15;:19;:42;;;;;48696:1;48678:15;:19;48655:42;48651:278;;;48714:46;48727:15;48744;48714:12;:46::i;:::-;48780:137;48813:18;48850:15;48884:18;;48780:137;;;;;;;;:::i;:::-;;;;;;;;48651:278;48963:13;;;;;;;;;;;48955:27;;48990:21;48955:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48941:75;;;;;47170:1854;;;;;;;;;;;47142:1882;:::o;23222:98::-;23280:7;23311:1;23307;:5;;;;:::i;:::-;23300:12;;23222:98;;;;:::o;23621:::-;23679:7;23710:1;23706;:5;;;;:::i;:::-;23699:12;;23621:98;;;;:::o;18749:125::-;;;;:::o;19478:124::-;;;;:::o;22865:98::-;22923:7;22954:1;22950;:5;;;;:::i;:::-;22943:12;;22865:98;;;;:::o;46022:589::-;46148:21;46186:1;46172:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46148:40;;46217:4;46199;46204:1;46199:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46243:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46233:4;46238:1;46233:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46278:62;46295:4;46310:15;46328:11;46278:8;:62::i;:::-;46379:15;:66;;;46460:11;46486:1;46530:4;46557;46577:15;46379:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46077:534;46022:589;:::o;46619:515::-;46767:62;46784:4;46799:15;46817:11;46767:8;:62::i;:::-;46872:15;:31;;;46911:9;46944:4;46964:11;46990:1;47033;47076:9;;;;;;;;;;;47100:15;46872:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46619:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287: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:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::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:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:244::-;14148:34;14144:1;14136:6;14132:14;14125:58;14217:27;14212:2;14204:6;14200:15;14193:52;14008:244;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:224::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:7;15259:2;15251:6;15247:15;15240:32;15055:224;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:419::-;15823:4;15861:2;15850:9;15846:18;15838:26;;15910:9;15904:4;15900:20;15896:1;15885:9;15881:17;15874:47;15938:131;16064:4;15938:131;:::i;:::-;15930:139;;15657:419;;;:::o;16082:223::-;16222:34;16218:1;16210:6;16206:14;16199:58;16291:6;16286:2;16278:6;16274:15;16267:31;16082:223;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o;17108:240::-;17248:34;17244:1;17236:6;17232:14;17225:58;17317:23;17312:2;17304:6;17300:15;17293:48;17108:240;:::o;17354:366::-;17496:3;17517:67;17581:2;17576:3;17517:67;:::i;:::-;17510:74;;17593:93;17682:3;17593:93;:::i;:::-;17711:2;17706:3;17702:12;17695:19;;17354:366;;;:::o;17726:419::-;17892:4;17930:2;17919:9;17915:18;17907:26;;17979:9;17973:4;17969:20;17965:1;17954:9;17950:17;17943:47;18007:131;18133:4;18007:131;:::i;:::-;17999:139;;17726:419;;;:::o;18151:239::-;18291:34;18287:1;18279:6;18275:14;18268:58;18360:22;18355:2;18347:6;18343:15;18336:47;18151:239;:::o;18396:366::-;18538:3;18559:67;18623:2;18618:3;18559:67;:::i;:::-;18552:74;;18635:93;18724:3;18635:93;:::i;:::-;18753:2;18748:3;18744:12;18737:19;;18396:366;;;:::o;18768:419::-;18934:4;18972:2;18961:9;18957:18;18949:26;;19021:9;19015:4;19011:20;19007:1;18996:9;18992:17;18985:47;19049:131;19175:4;19049:131;:::i;:::-;19041:139;;18768:419;;;:::o;19193:225::-;19333:34;19329:1;19321:6;19317:14;19310:58;19402:8;19397:2;19389:6;19385:15;19378:33;19193:225;:::o;19424:366::-;19566:3;19587:67;19651:2;19646:3;19587:67;:::i;:::-;19580:74;;19663:93;19752:3;19663:93;:::i;:::-;19781:2;19776:3;19772:12;19765:19;;19424:366;;;:::o;19796:419::-;19962:4;20000:2;19989:9;19985:18;19977:26;;20049:9;20043:4;20039:20;20035:1;20024:9;20020:17;20013:47;20077:131;20203:4;20077:131;:::i;:::-;20069:139;;19796:419;;;:::o;20221:223::-;20361:34;20357:1;20349:6;20345:14;20338:58;20430:6;20425:2;20417:6;20413:15;20406:31;20221:223;:::o;20450:366::-;20592:3;20613:67;20677:2;20672:3;20613:67;:::i;:::-;20606:74;;20689:93;20778:3;20689:93;:::i;:::-;20807:2;20802:3;20798:12;20791:19;;20450:366;;;:::o;20822:419::-;20988:4;21026:2;21015:9;21011:18;21003:26;;21075:9;21069:4;21065:20;21061:1;21050:9;21046:17;21039:47;21103:131;21229:4;21103:131;:::i;:::-;21095:139;;20822:419;;;:::o;21247:221::-;21387:34;21383:1;21375:6;21371:14;21364:58;21456:4;21451:2;21443:6;21439:15;21432:29;21247:221;:::o;21474:366::-;21616:3;21637:67;21701:2;21696:3;21637:67;:::i;:::-;21630:74;;21713:93;21802:3;21713:93;:::i;:::-;21831:2;21826:3;21822:12;21815:19;;21474:366;;;:::o;21846:419::-;22012:4;22050:2;22039:9;22035:18;22027:26;;22099:9;22093:4;22089:20;22085:1;22074:9;22070:17;22063:47;22127:131;22253:4;22127:131;:::i;:::-;22119:139;;21846:419;;;:::o;22271:224::-;22411:34;22407:1;22399:6;22395:14;22388:58;22480:7;22475:2;22467:6;22463:15;22456:32;22271:224;:::o;22501:366::-;22643:3;22664:67;22728:2;22723:3;22664:67;:::i;:::-;22657:74;;22740:93;22829:3;22740:93;:::i;:::-;22858:2;22853:3;22849:12;22842:19;;22501:366;;;:::o;22873:419::-;23039:4;23077:2;23066:9;23062:18;23054:26;;23126:9;23120:4;23116:20;23112:1;23101:9;23097:17;23090:47;23154:131;23280:4;23154:131;:::i;:::-;23146:139;;22873:419;;;:::o;23298:222::-;23438:34;23434:1;23426:6;23422:14;23415:58;23507:5;23502:2;23494:6;23490:15;23483:30;23298:222;:::o;23526:366::-;23668:3;23689:67;23753:2;23748:3;23689:67;:::i;:::-;23682:74;;23765:93;23854:3;23765:93;:::i;:::-;23883:2;23878:3;23874:12;23867:19;;23526:366;;;:::o;23898:419::-;24064:4;24102:2;24091:9;24087:18;24079:26;;24151:9;24145:4;24141:20;24137:1;24126:9;24122:17;24115:47;24179:131;24305:4;24179:131;:::i;:::-;24171:139;;23898:419;;;:::o;24323:172::-;24463:24;24459:1;24451:6;24447:14;24440:48;24323:172;:::o;24501:366::-;24643:3;24664:67;24728:2;24723:3;24664:67;:::i;:::-;24657:74;;24740:93;24829:3;24740:93;:::i;:::-;24858:2;24853:3;24849:12;24842:19;;24501:366;;;:::o;24873:419::-;25039:4;25077:2;25066:9;25062:18;25054:26;;25126:9;25120:4;25116:20;25112:1;25101:9;25097:17;25090:47;25154:131;25280:4;25154:131;:::i;:::-;25146:139;;24873:419;;;:::o;25298:297::-;25438:34;25434:1;25426:6;25422:14;25415:58;25507:34;25502:2;25494:6;25490:15;25483:59;25576:11;25571:2;25563:6;25559:15;25552:36;25298:297;:::o;25601:366::-;25743:3;25764:67;25828:2;25823:3;25764:67;:::i;:::-;25757:74;;25840:93;25929:3;25840:93;:::i;:::-;25958:2;25953:3;25949:12;25942:19;;25601:366;;;:::o;25973:419::-;26139:4;26177:2;26166:9;26162:18;26154:26;;26226:9;26220:4;26216:20;26212:1;26201:9;26197:17;26190:47;26254:131;26380:4;26254:131;:::i;:::-;26246:139;;25973:419;;;:::o;26398:240::-;26538:34;26534:1;26526:6;26522:14;26515:58;26607:23;26602:2;26594:6;26590:15;26583:48;26398:240;:::o;26644:366::-;26786:3;26807:67;26871:2;26866:3;26807:67;:::i;:::-;26800:74;;26883:93;26972:3;26883:93;:::i;:::-;27001:2;26996:3;26992:12;26985:19;;26644:366;;;:::o;27016:419::-;27182:4;27220:2;27209:9;27205:18;27197:26;;27269:9;27263:4;27259:20;27255:1;27244:9;27240:17;27233:47;27297:131;27423:4;27297:131;:::i;:::-;27289:139;;27016:419;;;:::o;27441:169::-;27581:21;27577:1;27569:6;27565:14;27558:45;27441:169;:::o;27616:366::-;27758:3;27779:67;27843:2;27838:3;27779:67;:::i;:::-;27772:74;;27855:93;27944:3;27855:93;:::i;:::-;27973:2;27968:3;27964:12;27957:19;;27616:366;;;:::o;27988:419::-;28154:4;28192:2;28181:9;28177:18;28169:26;;28241:9;28235:4;28231:20;28227:1;28216:9;28212:17;28205:47;28269:131;28395:4;28269:131;:::i;:::-;28261:139;;27988:419;;;:::o;28413:241::-;28553:34;28549:1;28541:6;28537:14;28530:58;28622:24;28617:2;28609:6;28605:15;28598:49;28413:241;:::o;28660:366::-;28802:3;28823:67;28887:2;28882:3;28823:67;:::i;:::-;28816:74;;28899:93;28988:3;28899:93;:::i;:::-;29017:2;29012:3;29008:12;29001:19;;28660:366;;;:::o;29032:419::-;29198:4;29236:2;29225:9;29221:18;29213:26;;29285:9;29279:4;29275:20;29271:1;29260:9;29256:17;29249:47;29313:131;29439:4;29313:131;:::i;:::-;29305:139;;29032:419;;;:::o;29457:191::-;29497:4;29517:20;29535:1;29517:20;:::i;:::-;29512:25;;29551:20;29569:1;29551:20;:::i;:::-;29546:25;;29590:1;29587;29584:8;29581:34;;;29595:18;;:::i;:::-;29581:34;29640:1;29637;29633:9;29625:17;;29457:191;;;;:::o;29654:225::-;29794:34;29790:1;29782:6;29778:14;29771:58;29863:8;29858:2;29850:6;29846:15;29839:33;29654:225;:::o;29885:366::-;30027:3;30048:67;30112:2;30107:3;30048:67;:::i;:::-;30041:74;;30124:93;30213:3;30124:93;:::i;:::-;30242:2;30237:3;30233:12;30226:19;;29885:366;;;:::o;30257:419::-;30423:4;30461:2;30450:9;30446:18;30438:26;;30510:9;30504:4;30500:20;30496:1;30485:9;30481:17;30474:47;30538:131;30664:4;30538:131;:::i;:::-;30530:139;;30257:419;;;:::o;30682:147::-;30783:11;30820:3;30805:18;;30682:147;;;;:::o;30835:114::-;;:::o;30955:398::-;31114:3;31135:83;31216:1;31211:3;31135:83;:::i;:::-;31128:90;;31227:93;31316:3;31227:93;:::i;:::-;31345:1;31340:3;31336:11;31329:18;;30955:398;;;:::o;31359:379::-;31543:3;31565:147;31708:3;31565:147;:::i;:::-;31558:154;;31729:3;31722:10;;31359:379;;;:::o;31744:442::-;31893:4;31931:2;31920:9;31916:18;31908:26;;31944:71;32012:1;32001:9;31997:17;31988:6;31944:71;:::i;:::-;32025:72;32093:2;32082:9;32078:18;32069:6;32025:72;:::i;:::-;32107;32175:2;32164:9;32160:18;32151:6;32107:72;:::i;:::-;31744:442;;;;;;:::o;32192:180::-;32240:77;32237:1;32230:88;32337:4;32334:1;32327:15;32361:4;32358:1;32351:15;32378:180;32426:77;32423:1;32416:88;32523:4;32520:1;32513:15;32547:4;32544:1;32537:15;32564:143;32621:5;32652:6;32646:13;32637:22;;32668:33;32695:5;32668:33;:::i;:::-;32564:143;;;;:::o;32713:351::-;32783:6;32832:2;32820:9;32811:7;32807:23;32803:32;32800:119;;;32838:79;;:::i;:::-;32800:119;32958:1;32983:64;33039:7;33030:6;33019:9;33015:22;32983:64;:::i;:::-;32973:74;;32929:128;32713:351;;;;:::o;33070:85::-;33115:7;33144:5;33133:16;;33070:85;;;:::o;33161:158::-;33219:9;33252:61;33270:42;33279:32;33305:5;33279:32;:::i;:::-;33270:42;:::i;:::-;33252:61;:::i;:::-;33239:74;;33161:158;;;:::o;33325:147::-;33420:45;33459:5;33420:45;:::i;:::-;33415:3;33408:58;33325:147;;:::o;33478:114::-;33545:6;33579:5;33573:12;33563:22;;33478:114;;;:::o;33598:184::-;33697:11;33731:6;33726:3;33719:19;33771:4;33766:3;33762:14;33747:29;;33598:184;;;;:::o;33788:132::-;33855:4;33878:3;33870:11;;33908:4;33903:3;33899:14;33891:22;;33788:132;;;:::o;33926:108::-;34003:24;34021:5;34003:24;:::i;:::-;33998:3;33991:37;33926:108;;:::o;34040:179::-;34109:10;34130:46;34172:3;34164:6;34130:46;:::i;:::-;34208:4;34203:3;34199:14;34185:28;;34040:179;;;;:::o;34225:113::-;34295:4;34327;34322:3;34318:14;34310:22;;34225:113;;;:::o;34374:732::-;34493:3;34522:54;34570:5;34522:54;:::i;:::-;34592:86;34671:6;34666:3;34592:86;:::i;:::-;34585:93;;34702:56;34752:5;34702:56;:::i;:::-;34781:7;34812:1;34797:284;34822:6;34819:1;34816:13;34797:284;;;34898:6;34892:13;34925:63;34984:3;34969:13;34925:63;:::i;:::-;34918:70;;35011:60;35064:6;35011:60;:::i;:::-;35001:70;;34857:224;34844:1;34841;34837:9;34832:14;;34797:284;;;34801:14;35097:3;35090:10;;34498:608;;;34374:732;;;;:::o;35112:831::-;35375:4;35413:3;35402:9;35398:19;35390:27;;35427:71;35495:1;35484:9;35480:17;35471:6;35427:71;:::i;:::-;35508:80;35584:2;35573:9;35569:18;35560:6;35508:80;:::i;:::-;35635:9;35629:4;35625:20;35620:2;35609:9;35605:18;35598:48;35663:108;35766:4;35757:6;35663:108;:::i;:::-;35655:116;;35781:72;35849:2;35838:9;35834:18;35825:6;35781:72;:::i;:::-;35863:73;35931:3;35920:9;35916:19;35907:6;35863:73;:::i;:::-;35112:831;;;;;;;;:::o;35949:807::-;36198:4;36236:3;36225:9;36221:19;36213:27;;36250:71;36318:1;36307:9;36303:17;36294:6;36250:71;:::i;:::-;36331:72;36399:2;36388:9;36384:18;36375:6;36331:72;:::i;:::-;36413:80;36489:2;36478:9;36474:18;36465:6;36413:80;:::i;:::-;36503;36579:2;36568:9;36564:18;36555:6;36503:80;:::i;:::-;36593:73;36661:3;36650:9;36646:19;36637:6;36593:73;:::i;:::-;36676;36744:3;36733:9;36729:19;36720:6;36676:73;:::i;:::-;35949:807;;;;;;;;;:::o;36762:143::-;36819:5;36850:6;36844:13;36835:22;;36866:33;36893:5;36866:33;:::i;:::-;36762:143;;;;:::o;36911:663::-;36999:6;37007;37015;37064:2;37052:9;37043:7;37039:23;37035:32;37032:119;;;37070:79;;:::i;:::-;37032:119;37190:1;37215:64;37271:7;37262:6;37251:9;37247:22;37215:64;:::i;:::-;37205:74;;37161:128;37328:2;37354:64;37410:7;37401:6;37390:9;37386:22;37354:64;:::i;:::-;37344:74;;37299:129;37467:2;37493:64;37549:7;37540:6;37529:9;37525:22;37493:64;:::i;:::-;37483:74;;37438:129;36911:663;;;;;:::o

Swarm Source

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