ETH Price: $3,402.08 (-1.24%)
Gas: 3 Gwei

Token

Deutsche Bank Inu (DBI)
 

Overview

Max Total Supply

2,000,000,000 DBI

Holders

176

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
195,969.831994292403086968 DBI

Value
$0.00
0x3654a4692786b915cacc53fc41c2660378f0c46e
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:
DeutscheBankInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/MarshallRoganInu.sol
/* 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 DeutscheBankInu is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address private 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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 public buyLiquidityFee;

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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



    constructor(address wallet1) ERC20("Deutsche Bank Inu", "DBI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 50;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 70;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 2_000_000_000 * 1e18;

        maxTransactionAmount = 2_000_000_000 * 1e18;
        maxWallet = 2_000_000_000 * 1e18;
        swapTokensAtAmount = 200_000 * 1e18;

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

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

        marketingWallet = wallet1; // set as marketing wallet
        devWallet = owner();

        // 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 {

        buyMarketingFee = 890;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellMarketingFee = 500;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        tradingActive = true;
        swapEnabled = true;
    }

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


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

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

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

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

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

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

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

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

    function manualswap(uint256 amount) external {
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function iAmRyoshi() external onlyOwner {
      maxTransactionAmount = 40000000 * 1e18;
      maxWallet = 40000000 * 1e18;

      buyMarketingFee = 50;
      buyLiquidityFee = 0;
      buyTotalFees = buyMarketingFee + buyLiquidityFee;

      sellMarketingFee = 990;
      sellLiquidityFee = 0;
      sellTotalFees = sellMarketingFee + sellLiquidityFee;

    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

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

                //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(1000);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(1000);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"iAmRyoshi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162005b4938038062005b49833981810160405281019062000088919062000baa565b6040518060400160405280601181526020017f44657574736368652042616e6b20496e750000000000000000000000000000008152506040518060400160405280600381526020017f444249000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000a90565b5080600490805190602001906200012592919062000a90565b505050620001486200013c6200055060201b60201c565b6200055860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001748160016200061e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000baa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000baa565b6040518363ffffffff1660e01b8152600401620002c792919062000bed565b6020604051808303816000875af1158015620002e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030d919062000baa565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035560a05160016200061e60201b60201c565b6200036a60a05160016200070860201b60201c565b600060329050600080604690506000806b06765c793fa10079d000000090506b06765c793fa10079d00000006008819055506b06765c793fa10079d0000000600a81905550692a5a058fc295ed00000060098190555084600e8190555083600f81905550600f54600e54620003e0919062000c53565b600d81905550826011819055508160128190555060125460115462000406919062000c53565b60108190555086600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200045d620007a960201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004bf620004b1620007a960201b60201c565b6001620007d360201b60201c565b620004d2306001620007d360201b60201c565b620004e761dead6001620007d360201b60201c565b62000509620004fb620007a960201b60201c565b60016200061e60201b60201c565b6200051c3060016200061e60201b60201c565b6200053161dead60016200061e60201b60201c565b6200054333826200090d60201b60201c565b5050505050505062000e72565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200062e6200055060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000654620007a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a49062000d11565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e36200055060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000809620007a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008599062000d11565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000901919062000d50565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009779062000dbd565b60405180910390fd5b620009946000838362000a8660201b60201c565b8060026000828254620009a8919062000c53565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009ff919062000c53565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a66919062000df0565b60405180910390a362000a826000838362000a8b60201b60201c565b5050565b505050565b505050565b82805462000a9e9062000e3c565b90600052602060002090601f01602090048101928262000ac2576000855562000b0e565b82601f1062000add57805160ff191683800117855562000b0e565b8280016001018555821562000b0e579182015b8281111562000b0d57825182559160200191906001019062000af0565b5b50905062000b1d919062000b21565b5090565b5b8082111562000b3c57600081600090555060010162000b22565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b728262000b45565b9050919050565b62000b848162000b65565b811462000b9057600080fd5b50565b60008151905062000ba48162000b79565b92915050565b60006020828403121562000bc35762000bc262000b40565b5b600062000bd38482850162000b93565b91505092915050565b62000be78162000b65565b82525050565b600060408201905062000c04600083018562000bdc565b62000c13602083018462000bdc565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c608262000c1a565b915062000c6d8362000c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ca55762000ca462000c24565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000cf960208362000cb0565b915062000d068262000cc1565b602082019050919050565b6000602082019050818103600083015262000d2c8162000cea565b9050919050565b60008115159050919050565b62000d4a8162000d33565b82525050565b600060208201905062000d67600083018462000d3f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000da5601f8362000cb0565b915062000db28262000d6d565b602082019050919050565b6000602082019050818103600083015262000dd88162000d96565b9050919050565b62000dea8162000c1a565b82525050565b600060208201905062000e07600083018462000ddf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e5557607f821691505b6020821081141562000e6c5762000e6b62000e0d565b5b50919050565b60805160a051614c8762000ec26000396000818161113a015261199f015260008181610d0201528181612f84015281816130650152818161308c015281816136a301526136ca0152614c876000f3fe6080604052600436106102b25760003560e01c80637571336a11610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610a9b578063f2fde38b14610ac6578063f637434214610aef578063f8b45b0514610b1a576102b9565b8063d85ba06314610a08578063dd62ed3e14610a33578063e2f4560514610a70576102b9565b8063b62496f5146108e6578063bbc0c74214610923578063c02466681461094e578063c18bc19514610977578063c8c8ebe4146109a0578063d257b34f146109cb576102b9565b8063924de9b71161012e578063924de9b7146107c657806395d89b41146107ef5780639a7a23d61461081a578063a457c2d714610843578063a9059cbb14610880578063aacebbe3146108bd576102b9565b80637571336a146106dc57806375f0a87414610705578063881dce60146107305780638a8c523c146107595780638da5cb5b14610770578063921369131461079b576102b9565b8063313ce567116102195780636a486a8e116101d25780636a486a8e146105f05780636ddd17131461061b5780636fc3eaec1461064657806370a082311461065d578063715018a61461069a578063751039fc146106b1576102b9565b8063313ce567146104f2578063395093511461051d57806349bd5a5e1461055a5780634a62bb65146105855780635d641ee7146105b057806366ca9b83146105c7576102b9565b80631816467f1161026b5780631816467f146103e25780631a8145bb1461040b5780631f3fed8f14610436578063203e727e1461046157806323b872dd1461048a57806327c8f835146104c7576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f5780631694505e1461038c57806318160ddd146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906137d4565b610b45565b005b3480156102f357600080fd5b506102fc610c30565b60405161030991906138ad565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061392d565b610cc2565b6040516103469190613988565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906139a3565b610ce0565b6040516103839190613988565b60405180910390f35b34801561039857600080fd5b506103a1610d00565b6040516103ae9190613a2f565b60405180910390f35b3480156103c357600080fd5b506103cc610d24565b6040516103d99190613a59565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906139a3565b610d2e565b005b34801561041757600080fd5b50610420610e6a565b60405161042d9190613a59565b60405180910390f35b34801561044257600080fd5b5061044b610e70565b6040516104589190613a59565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613a74565b610e76565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613aa1565b610f85565b6040516104be9190613988565b60405180910390f35b3480156104d357600080fd5b506104dc61107d565b6040516104e99190613b03565b60405180910390f35b3480156104fe57600080fd5b50610507611083565b6040516105149190613b3a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061392d565b61108c565b6040516105519190613988565b60405180910390f35b34801561056657600080fd5b5061056f611138565b60405161057c9190613b03565b60405180910390f35b34801561059157600080fd5b5061059a61115c565b6040516105a79190613988565b60405180910390f35b3480156105bc57600080fd5b506105c561116f565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906137d4565b61125e565b005b3480156105fc57600080fd5b50610605611348565b6040516106129190613a59565b60405180910390f35b34801561062757600080fd5b5061063061134e565b60405161063d9190613988565b60405180910390f35b34801561065257600080fd5b5061065b611361565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a3565b6113f4565b6040516106919190613a59565b60405180910390f35b3480156106a657600080fd5b506106af61143c565b005b3480156106bd57600080fd5b506106c66114c4565b6040516106d39190613988565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613b81565b611564565b005b34801561071157600080fd5b5061071a61163b565b6040516107279190613b03565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613a74565b611661565b005b34801561076557600080fd5b5061076e6116c4565b005b34801561077c57600080fd5b506107856117c6565b6040516107929190613b03565b60405180910390f35b3480156107a757600080fd5b506107b06117f0565b6040516107bd9190613a59565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613bc1565b6117f6565b005b3480156107fb57600080fd5b5061080461188f565b60405161081191906138ad565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613b81565b611921565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061392d565b611a3a565b6040516108779190613988565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061392d565b611b25565b6040516108b49190613988565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139a3565b611b43565b005b3480156108f257600080fd5b5061090d600480360381019061090891906139a3565b611c7f565b60405161091a9190613988565b60405180910390f35b34801561092f57600080fd5b50610938611c9f565b6040516109459190613988565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613b81565b611cb2565b005b34801561098357600080fd5b5061099e60048036038101906109999190613a74565b611dd7565b005b3480156109ac57600080fd5b506109b5611ee6565b6040516109c29190613a59565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613a74565b611eec565b6040516109ff9190613988565b60405180910390f35b348015610a1457600080fd5b50610a1d612041565b604051610a2a9190613a59565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613bee565b612047565b604051610a679190613a59565b60405180910390f35b348015610a7c57600080fd5b50610a856120ce565b604051610a929190613a59565b60405180910390f35b348015610aa757600080fd5b50610ab06120d4565b604051610abd9190613a59565b60405180910390f35b348015610ad257600080fd5b50610aed6004803603810190610ae891906139a3565b6120da565b005b348015610afb57600080fd5b50610b046121d2565b604051610b119190613a59565b60405180910390f35b348015610b2657600080fd5b50610b2f6121d8565b604051610b3c9190613a59565b60405180910390f35b610b4d6121de565b73ffffffffffffffffffffffffffffffffffffffff16610b6b6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613c7a565b60405180910390fd5b8160118190555080601281905550601254601154610bdf9190613cc9565b60108190555061012c6010541115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613d6b565b60405180910390fd5b5050565b606060038054610c3f90613dba565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b90613dba565b8015610cb85780601f10610c8d57610100808354040283529160200191610cb8565b820191906000526020600020905b815481529060010190602001808311610c9b57829003601f168201915b5050505050905090565b6000610cd6610ccf6121de565b84846121e6565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d366121de565b73ffffffffffffffffffffffffffffffffffffffff16610d546117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613c7a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610e7e6121de565b73ffffffffffffffffffffffffffffffffffffffff16610e9c6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990613c7a565b60405180910390fd5b670de0b6b3a76400006103e86001610f08610d24565b610f129190613dec565b610f1c9190613e75565b610f269190613e75565b811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613f18565b60405180910390fd5b670de0b6b3a764000081610f7c9190613dec565b60088190555050565b6000610f928484846123b1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fdd6121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613faa565b60405180910390fd5b611071856110696121de565b8584036121e6565b60019150509392505050565b61dead81565b60006012905090565b600061112e6110996121de565b8484600160006110a76121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111299190613cc9565b6121e6565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6111776121de565b73ffffffffffffffffffffffffffffffffffffffff166111956117c6565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613c7a565b60405180910390fd5b6a21165458500521280000006008819055506a2116545850052128000000600a819055506032600e819055506000600f81905550600f54600e5461122f9190613cc9565b600d819055506103de60118190555060006012819055506012546011546112569190613cc9565b601081905550565b6112666121de565b73ffffffffffffffffffffffffffffffffffffffff166112846117c6565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613c7a565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112f89190613cc9565b600d8190555060c8600d541115611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90614016565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113a990614067565b60006040518083038185875af1925050503d80600081146113e6576040519150601f19603f3d011682016040523d82523d6000602084013e6113eb565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114446121de565b73ffffffffffffffffffffffffffffffffffffffff166114626117c6565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613c7a565b60405180910390fd5b6114c26000612e1f565b565b60006114ce6121de565b73ffffffffffffffffffffffffffffffffffffffff166114ec6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613c7a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c6121de565b73ffffffffffffffffffffffffffffffffffffffff1661158a6117c6565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613c7a565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61166a306113f4565b81111580156116795750600081115b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906140c8565b60405180910390fd5b6116c181612ee5565b50565b6116cc6121de565b73ffffffffffffffffffffffffffffffffffffffff166116ea6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613c7a565b60405180910390fd5b61037a600e819055506000600f81905550600f54600e546117619190613cc9565b600d819055506101f460118190555060006012819055506012546011546117889190613cc9565b6010819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6117fe6121de565b73ffffffffffffffffffffffffffffffffffffffff1661181c6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613c7a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461189e90613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546118ca90613dba565b80156119175780601f106118ec57610100808354040283529160200191611917565b820191906000526020600020905b8154815290600101906020018083116118fa57829003601f168201915b5050505050905090565b6119296121de565b73ffffffffffffffffffffffffffffffffffffffff166119476117c6565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613c7a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a239061415a565b60405180910390fd5b611a368282613122565b5050565b60008060016000611a496121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906141ec565b60405180910390fd5b611b1a611b116121de565b858584036121e6565b600191505092915050565b6000611b39611b326121de565b84846123b1565b6001905092915050565b611b4b6121de565b73ffffffffffffffffffffffffffffffffffffffff16611b696117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613c7a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cba6121de565b73ffffffffffffffffffffffffffffffffffffffff16611cd86117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613c7a565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dcb9190613988565b60405180910390a25050565b611ddf6121de565b73ffffffffffffffffffffffffffffffffffffffff16611dfd6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613c7a565b60405180910390fd5b670de0b6b3a76400006103e86005611e69610d24565b611e739190613dec565b611e7d9190613e75565b611e879190613e75565b811015611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec09061427e565b60405180910390fd5b670de0b6b3a764000081611edd9190613dec565b600a8190555050565b60085481565b6000611ef66121de565b73ffffffffffffffffffffffffffffffffffffffff16611f146117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190613c7a565b60405180910390fd5b620186a06001611f78610d24565b611f829190613dec565b611f8c9190613e75565b821015611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590614310565b60405180910390fd5b6103e86005611fdb610d24565b611fe59190613dec565b611fef9190613e75565b821115612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906143a2565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120e26121de565b73ffffffffffffffffffffffffffffffffffffffff166121006117c6565b73ffffffffffffffffffffffffffffffffffffffff1614612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90613c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614434565b60405180910390fd5b6121cf81612e1f565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90614558565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a49190613a59565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906145ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124889061467c565b60405180910390fd5b60008114156124ab576124a6838360006131c3565b612e1a565b600b60009054906101000a900460ff16156129a6576124c86117c6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561253657506125066117c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125a9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125c25750600560149054906101000a900460ff16155b156129a557600b60019054906101000a900460ff166126bc57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061267c5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906146e8565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561275f5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612806576008548111156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a09061477a565b60405180910390fd5b600a546127b5836113f4565b826127c09190613cc9565b1115612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906147e6565b60405180910390fd5b6129a4565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a95750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f8576008548111156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614878565b60405180910390fd5b6129a3565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a257600a54612955836113f4565b826129609190613cc9565b11156129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906147e6565b60405180910390fd5b5b5b5b5b5b60006129b1306113f4565b9050600060095482101590508080156129d65750600b60029054906101000a900460ff165b80156129ef5750600560149054906101000a900460ff16155b8015612a455750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9b5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af15750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b35576001600560146101000a81548160ff021916908315150217905550612b19613444565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612beb5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bf557600090505b60008115612e0a57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5857506000601054115b15612cf357612c866103e8612c786010548861365190919063ffffffff16565b61366790919063ffffffff16565b905060105460125482612c999190613dec565b612ca39190613e75565b60146000828254612cb49190613cc9565b9250508190555060105460115482612ccc9190613dec565b612cd69190613e75565b60136000828254612ce79190613cc9565b92505081905550612de6565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d4e57506000600d54115b15612de557612d7c6103e8612d6e600d548861365190919063ffffffff16565b61366790919063ffffffff16565b9050600d54600f5482612d8f9190613dec565b612d999190613e75565b60146000828254612daa9190613cc9565b92505081905550600d54600e5482612dc29190613dec565b612dcc9190613e75565b60136000828254612ddd9190613cc9565b925050819055505b5b6000811115612dfb57612dfa8730836131c3565b5b8085612e079190614898565b94505b612e158787876131c3565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612f0257612f016148cc565b5b604051908082528060200260200182016040528015612f305781602001602082028036833780820191505090505b5090503081600081518110612f4857612f476148fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613011919061493f565b81600181518110613025576130246148fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061308a307f0000000000000000000000000000000000000000000000000000000000000000846121e6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130ec959493929190614a65565b600060405180830381600087803b15801561310657600080fd5b505af115801561311a573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322a906145ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a9061467c565b60405180910390fd5b6132ae83838361367d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b90614b31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c79190613cc9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342b9190613a59565b60405180910390a361343e848484613682565b50505050565b600061344f306113f4565b905060006013546014546134639190613cc9565b90506000808314806134755750600082145b156134825750505061364f565b60146009546134919190613dec565b8311156134aa5760146009546134a79190613dec565b92505b6000600283601454866134bd9190613dec565b6134c79190613e75565b6134d19190613e75565b905060006134e8828661368790919063ffffffff16565b905060004790506134f882612ee5565b600061350d824761368790919063ffffffff16565b905060006135388761352a6013548561365190919063ffffffff16565b61366790919063ffffffff16565b9050600081836135489190614898565b90506000601481905550600060138190555060008611801561356a5750600081115b156135b757613579868261369d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516135ae93929190614b51565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135fd90614067565b60006040518083038185875af1925050503d806000811461363a576040519150601f19603f3d011682016040523d82523d6000602084013e61363f565b606091505b5050809750505050505050505050505b565b6000818361365f9190613dec565b905092915050565b600081836136759190613e75565b905092915050565b505050565b505050565b600081836136959190614898565b905092915050565b6136c8307f0000000000000000000000000000000000000000000000000000000000000000846121e6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161374f96959493929190614b88565b60606040518083038185885af115801561376d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137929190614bfe565b5050505050565b600080fd5b6000819050919050565b6137b18161379e565b81146137bc57600080fd5b50565b6000813590506137ce816137a8565b92915050565b600080604083850312156137eb576137ea613799565b5b60006137f9858286016137bf565b925050602061380a858286016137bf565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561384e578082015181840152602081019050613833565b8381111561385d576000848401525b50505050565b6000601f19601f8301169050919050565b600061387f82613814565b613889818561381f565b9350613899818560208601613830565b6138a281613863565b840191505092915050565b600060208201905081810360008301526138c78184613874565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138fa826138cf565b9050919050565b61390a816138ef565b811461391557600080fd5b50565b60008135905061392781613901565b92915050565b6000806040838503121561394457613943613799565b5b600061395285828601613918565b9250506020613963858286016137bf565b9150509250929050565b60008115159050919050565b6139828161396d565b82525050565b600060208201905061399d6000830184613979565b92915050565b6000602082840312156139b9576139b8613799565b5b60006139c784828501613918565b91505092915050565b6000819050919050565b60006139f56139f06139eb846138cf565b6139d0565b6138cf565b9050919050565b6000613a07826139da565b9050919050565b6000613a19826139fc565b9050919050565b613a2981613a0e565b82525050565b6000602082019050613a446000830184613a20565b92915050565b613a538161379e565b82525050565b6000602082019050613a6e6000830184613a4a565b92915050565b600060208284031215613a8a57613a89613799565b5b6000613a98848285016137bf565b91505092915050565b600080600060608486031215613aba57613ab9613799565b5b6000613ac886828701613918565b9350506020613ad986828701613918565b9250506040613aea868287016137bf565b9150509250925092565b613afd816138ef565b82525050565b6000602082019050613b186000830184613af4565b92915050565b600060ff82169050919050565b613b3481613b1e565b82525050565b6000602082019050613b4f6000830184613b2b565b92915050565b613b5e8161396d565b8114613b6957600080fd5b50565b600081359050613b7b81613b55565b92915050565b60008060408385031215613b9857613b97613799565b5b6000613ba685828601613918565b9250506020613bb785828601613b6c565b9150509250929050565b600060208284031215613bd757613bd6613799565b5b6000613be584828501613b6c565b91505092915050565b60008060408385031215613c0557613c04613799565b5b6000613c1385828601613918565b9250506020613c2485828601613918565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c6460208361381f565b9150613c6f82613c2e565b602082019050919050565b60006020820190508181036000830152613c9381613c57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd48261379e565b9150613cdf8361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1457613d13613c9a565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d55601d8361381f565b9150613d6082613d1f565b602082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd257607f821691505b60208210811415613de657613de5613d8b565b5b50919050565b6000613df78261379e565b9150613e028361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3b57613e3a613c9a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e808261379e565b9150613e8b8361379e565b925082613e9b57613e9a613e46565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f02602f8361381f565b9150613f0d82613ea6565b604082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f9460288361381f565b9150613f9f82613f38565b604082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614000601d8361381f565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b600081905092915050565b50565b6000614051600083614036565b915061405c82614041565b600082019050919050565b600061407282614044565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006140b2600c8361381f565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061414460398361381f565b915061414f826140e8565b604082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d660258361381f565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061426860248361381f565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142fa60358361381f565b91506143058261429e565b604082019050919050565b60006020820190508181036000830152614329816142ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061438c60348361381f565b915061439782614330565b604082019050919050565b600060208201905081810360008301526143bb8161437f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061441e60268361381f565b9150614429826143c2565b604082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144b060248361381f565b91506144bb82614454565b604082019050919050565b600060208201905081810360008301526144df816144a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061454260228361381f565b915061454d826144e6565b604082019050919050565b6000602082019050818103600083015261457181614535565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145d460258361381f565b91506145df82614578565b604082019050919050565b60006020820190508181036000830152614603816145c7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061466660238361381f565b91506146718261460a565b604082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146d260168361381f565b91506146dd8261469c565b602082019050919050565b60006020820190508181036000830152614701816146c5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061476460358361381f565b915061476f82614708565b604082019050919050565b6000602082019050818103600083015261479381614757565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147d060138361381f565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061486260368361381f565b915061486d82614806565b604082019050919050565b6000602082019050818103600083015261489181614855565b9050919050565b60006148a38261379e565b91506148ae8361379e565b9250828210156148c1576148c0613c9a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061493981613901565b92915050565b60006020828403121561495557614954613799565b5b60006149638482850161492a565b91505092915050565b6000819050919050565b600061499161498c6149878461496c565b6139d0565b61379e565b9050919050565b6149a181614976565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dc816138ef565b82525050565b60006149ee83836149d3565b60208301905092915050565b6000602082019050919050565b6000614a12826149a7565b614a1c81856149b2565b9350614a27836149c3565b8060005b83811015614a58578151614a3f88826149e2565b9750614a4a836149fa565b925050600181019050614a2b565b5085935050505092915050565b600060a082019050614a7a6000830188613a4a565b614a876020830187614998565b8181036040830152614a998186614a07565b9050614aa86060830185613af4565b614ab56080830184613a4a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b1b60268361381f565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000606082019050614b666000830186613a4a565b614b736020830185613a4a565b614b806040830184613a4a565b949350505050565b600060c082019050614b9d6000830189613af4565b614baa6020830188613a4a565b614bb76040830187614998565b614bc46060830186614998565b614bd16080830185613af4565b614bde60a0830184613a4a565b979650505050505050565b600081519050614bf8816137a8565b92915050565b600080600060608486031215614c1757614c16613799565b5b6000614c2586828701614be9565b9350506020614c3686828701614be9565b9250506040614c4786828701614be9565b915050925092509256fea2646970667358221220ca60be307e44084f18cb5cf3632717d7e2d791ca5efe274f713d2560997a839164736f6c634300080a003300000000000000000000000071f3dddc62b7ccbf5eb7c428156cd7252c21b057

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80637571336a11610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610a9b578063f2fde38b14610ac6578063f637434214610aef578063f8b45b0514610b1a576102b9565b8063d85ba06314610a08578063dd62ed3e14610a33578063e2f4560514610a70576102b9565b8063b62496f5146108e6578063bbc0c74214610923578063c02466681461094e578063c18bc19514610977578063c8c8ebe4146109a0578063d257b34f146109cb576102b9565b8063924de9b71161012e578063924de9b7146107c657806395d89b41146107ef5780639a7a23d61461081a578063a457c2d714610843578063a9059cbb14610880578063aacebbe3146108bd576102b9565b80637571336a146106dc57806375f0a87414610705578063881dce60146107305780638a8c523c146107595780638da5cb5b14610770578063921369131461079b576102b9565b8063313ce567116102195780636a486a8e116101d25780636a486a8e146105f05780636ddd17131461061b5780636fc3eaec1461064657806370a082311461065d578063715018a61461069a578063751039fc146106b1576102b9565b8063313ce567146104f2578063395093511461051d57806349bd5a5e1461055a5780634a62bb65146105855780635d641ee7146105b057806366ca9b83146105c7576102b9565b80631816467f1161026b5780631816467f146103e25780631a8145bb1461040b5780631f3fed8f14610436578063203e727e1461046157806323b872dd1461048a57806327c8f835146104c7576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f5780631694505e1461038c57806318160ddd146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e091906137d4565b610b45565b005b3480156102f357600080fd5b506102fc610c30565b60405161030991906138ad565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061392d565b610cc2565b6040516103469190613988565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906139a3565b610ce0565b6040516103839190613988565b60405180910390f35b34801561039857600080fd5b506103a1610d00565b6040516103ae9190613a2f565b60405180910390f35b3480156103c357600080fd5b506103cc610d24565b6040516103d99190613a59565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906139a3565b610d2e565b005b34801561041757600080fd5b50610420610e6a565b60405161042d9190613a59565b60405180910390f35b34801561044257600080fd5b5061044b610e70565b6040516104589190613a59565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613a74565b610e76565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613aa1565b610f85565b6040516104be9190613988565b60405180910390f35b3480156104d357600080fd5b506104dc61107d565b6040516104e99190613b03565b60405180910390f35b3480156104fe57600080fd5b50610507611083565b6040516105149190613b3a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061392d565b61108c565b6040516105519190613988565b60405180910390f35b34801561056657600080fd5b5061056f611138565b60405161057c9190613b03565b60405180910390f35b34801561059157600080fd5b5061059a61115c565b6040516105a79190613988565b60405180910390f35b3480156105bc57600080fd5b506105c561116f565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906137d4565b61125e565b005b3480156105fc57600080fd5b50610605611348565b6040516106129190613a59565b60405180910390f35b34801561062757600080fd5b5061063061134e565b60405161063d9190613988565b60405180910390f35b34801561065257600080fd5b5061065b611361565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a3565b6113f4565b6040516106919190613a59565b60405180910390f35b3480156106a657600080fd5b506106af61143c565b005b3480156106bd57600080fd5b506106c66114c4565b6040516106d39190613988565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613b81565b611564565b005b34801561071157600080fd5b5061071a61163b565b6040516107279190613b03565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613a74565b611661565b005b34801561076557600080fd5b5061076e6116c4565b005b34801561077c57600080fd5b506107856117c6565b6040516107929190613b03565b60405180910390f35b3480156107a757600080fd5b506107b06117f0565b6040516107bd9190613a59565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613bc1565b6117f6565b005b3480156107fb57600080fd5b5061080461188f565b60405161081191906138ad565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613b81565b611921565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061392d565b611a3a565b6040516108779190613988565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061392d565b611b25565b6040516108b49190613988565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139a3565b611b43565b005b3480156108f257600080fd5b5061090d600480360381019061090891906139a3565b611c7f565b60405161091a9190613988565b60405180910390f35b34801561092f57600080fd5b50610938611c9f565b6040516109459190613988565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613b81565b611cb2565b005b34801561098357600080fd5b5061099e60048036038101906109999190613a74565b611dd7565b005b3480156109ac57600080fd5b506109b5611ee6565b6040516109c29190613a59565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613a74565b611eec565b6040516109ff9190613988565b60405180910390f35b348015610a1457600080fd5b50610a1d612041565b604051610a2a9190613a59565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613bee565b612047565b604051610a679190613a59565b60405180910390f35b348015610a7c57600080fd5b50610a856120ce565b604051610a929190613a59565b60405180910390f35b348015610aa757600080fd5b50610ab06120d4565b604051610abd9190613a59565b60405180910390f35b348015610ad257600080fd5b50610aed6004803603810190610ae891906139a3565b6120da565b005b348015610afb57600080fd5b50610b046121d2565b604051610b119190613a59565b60405180910390f35b348015610b2657600080fd5b50610b2f6121d8565b604051610b3c9190613a59565b60405180910390f35b610b4d6121de565b73ffffffffffffffffffffffffffffffffffffffff16610b6b6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613c7a565b60405180910390fd5b8160118190555080601281905550601254601154610bdf9190613cc9565b60108190555061012c6010541115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613d6b565b60405180910390fd5b5050565b606060038054610c3f90613dba565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b90613dba565b8015610cb85780601f10610c8d57610100808354040283529160200191610cb8565b820191906000526020600020905b815481529060010190602001808311610c9b57829003601f168201915b5050505050905090565b6000610cd6610ccf6121de565b84846121e6565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d366121de565b73ffffffffffffffffffffffffffffffffffffffff16610d546117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613c7a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610e7e6121de565b73ffffffffffffffffffffffffffffffffffffffff16610e9c6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990613c7a565b60405180910390fd5b670de0b6b3a76400006103e86001610f08610d24565b610f129190613dec565b610f1c9190613e75565b610f269190613e75565b811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613f18565b60405180910390fd5b670de0b6b3a764000081610f7c9190613dec565b60088190555050565b6000610f928484846123b1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fdd6121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613faa565b60405180910390fd5b611071856110696121de565b8584036121e6565b60019150509392505050565b61dead81565b60006012905090565b600061112e6110996121de565b8484600160006110a76121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111299190613cc9565b6121e6565b6001905092915050565b7f00000000000000000000000036c08cd06ef386f1cbe43f50c4409e87335ff5ec81565b600b60009054906101000a900460ff1681565b6111776121de565b73ffffffffffffffffffffffffffffffffffffffff166111956117c6565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613c7a565b60405180910390fd5b6a21165458500521280000006008819055506a2116545850052128000000600a819055506032600e819055506000600f81905550600f54600e5461122f9190613cc9565b600d819055506103de60118190555060006012819055506012546011546112569190613cc9565b601081905550565b6112666121de565b73ffffffffffffffffffffffffffffffffffffffff166112846117c6565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613c7a565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112f89190613cc9565b600d8190555060c8600d541115611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90614016565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113a990614067565b60006040518083038185875af1925050503d80600081146113e6576040519150601f19603f3d011682016040523d82523d6000602084013e6113eb565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114446121de565b73ffffffffffffffffffffffffffffffffffffffff166114626117c6565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613c7a565b60405180910390fd5b6114c26000612e1f565b565b60006114ce6121de565b73ffffffffffffffffffffffffffffffffffffffff166114ec6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613c7a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c6121de565b73ffffffffffffffffffffffffffffffffffffffff1661158a6117c6565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613c7a565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61166a306113f4565b81111580156116795750600081115b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906140c8565b60405180910390fd5b6116c181612ee5565b50565b6116cc6121de565b73ffffffffffffffffffffffffffffffffffffffff166116ea6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613c7a565b60405180910390fd5b61037a600e819055506000600f81905550600f54600e546117619190613cc9565b600d819055506101f460118190555060006012819055506012546011546117889190613cc9565b6010819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6117fe6121de565b73ffffffffffffffffffffffffffffffffffffffff1661181c6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613c7a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461189e90613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546118ca90613dba565b80156119175780601f106118ec57610100808354040283529160200191611917565b820191906000526020600020905b8154815290600101906020018083116118fa57829003601f168201915b5050505050905090565b6119296121de565b73ffffffffffffffffffffffffffffffffffffffff166119476117c6565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613c7a565b60405180910390fd5b7f00000000000000000000000036c08cd06ef386f1cbe43f50c4409e87335ff5ec73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a239061415a565b60405180910390fd5b611a368282613122565b5050565b60008060016000611a496121de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906141ec565b60405180910390fd5b611b1a611b116121de565b858584036121e6565b600191505092915050565b6000611b39611b326121de565b84846123b1565b6001905092915050565b611b4b6121de565b73ffffffffffffffffffffffffffffffffffffffff16611b696117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613c7a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cba6121de565b73ffffffffffffffffffffffffffffffffffffffff16611cd86117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613c7a565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dcb9190613988565b60405180910390a25050565b611ddf6121de565b73ffffffffffffffffffffffffffffffffffffffff16611dfd6117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613c7a565b60405180910390fd5b670de0b6b3a76400006103e86005611e69610d24565b611e739190613dec565b611e7d9190613e75565b611e879190613e75565b811015611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec09061427e565b60405180910390fd5b670de0b6b3a764000081611edd9190613dec565b600a8190555050565b60085481565b6000611ef66121de565b73ffffffffffffffffffffffffffffffffffffffff16611f146117c6565b73ffffffffffffffffffffffffffffffffffffffff1614611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6190613c7a565b60405180910390fd5b620186a06001611f78610d24565b611f829190613dec565b611f8c9190613e75565b821015611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590614310565b60405180910390fd5b6103e86005611fdb610d24565b611fe59190613dec565b611fef9190613e75565b821115612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906143a2565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120e26121de565b73ffffffffffffffffffffffffffffffffffffffff166121006117c6565b73ffffffffffffffffffffffffffffffffffffffff1614612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90613c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614434565b60405180910390fd5b6121cf81612e1f565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906144c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90614558565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123a49190613a59565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906145ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124889061467c565b60405180910390fd5b60008114156124ab576124a6838360006131c3565b612e1a565b600b60009054906101000a900460ff16156129a6576124c86117c6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561253657506125066117c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125a9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125c25750600560149054906101000a900460ff16155b156129a557600b60019054906101000a900460ff166126bc57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061267c5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906146e8565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561275f5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612806576008548111156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a09061477a565b60405180910390fd5b600a546127b5836113f4565b826127c09190613cc9565b1115612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906147e6565b60405180910390fd5b6129a4565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a95750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f8576008548111156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614878565b60405180910390fd5b6129a3565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a257600a54612955836113f4565b826129609190613cc9565b11156129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906147e6565b60405180910390fd5b5b5b5b5b5b60006129b1306113f4565b9050600060095482101590508080156129d65750600b60029054906101000a900460ff165b80156129ef5750600560149054906101000a900460ff16155b8015612a455750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9b5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af15750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b35576001600560146101000a81548160ff021916908315150217905550612b19613444565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612beb5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bf557600090505b60008115612e0a57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5857506000601054115b15612cf357612c866103e8612c786010548861365190919063ffffffff16565b61366790919063ffffffff16565b905060105460125482612c999190613dec565b612ca39190613e75565b60146000828254612cb49190613cc9565b9250508190555060105460115482612ccc9190613dec565b612cd69190613e75565b60136000828254612ce79190613cc9565b92505081905550612de6565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d4e57506000600d54115b15612de557612d7c6103e8612d6e600d548861365190919063ffffffff16565b61366790919063ffffffff16565b9050600d54600f5482612d8f9190613dec565b612d999190613e75565b60146000828254612daa9190613cc9565b92505081905550600d54600e5482612dc29190613dec565b612dcc9190613e75565b60136000828254612ddd9190613cc9565b925050819055505b5b6000811115612dfb57612dfa8730836131c3565b5b8085612e079190614898565b94505b612e158787876131c3565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612f0257612f016148cc565b5b604051908082528060200260200182016040528015612f305781602001602082028036833780820191505090505b5090503081600081518110612f4857612f476148fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613011919061493f565b81600181518110613025576130246148fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061308a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130ec959493929190614a65565b600060405180830381600087803b15801561310657600080fd5b505af115801561311a573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322a906145ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a9061467c565b60405180910390fd5b6132ae83838361367d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b90614b31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c79190613cc9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342b9190613a59565b60405180910390a361343e848484613682565b50505050565b600061344f306113f4565b905060006013546014546134639190613cc9565b90506000808314806134755750600082145b156134825750505061364f565b60146009546134919190613dec565b8311156134aa5760146009546134a79190613dec565b92505b6000600283601454866134bd9190613dec565b6134c79190613e75565b6134d19190613e75565b905060006134e8828661368790919063ffffffff16565b905060004790506134f882612ee5565b600061350d824761368790919063ffffffff16565b905060006135388761352a6013548561365190919063ffffffff16565b61366790919063ffffffff16565b9050600081836135489190614898565b90506000601481905550600060138190555060008611801561356a5750600081115b156135b757613579868261369d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516135ae93929190614b51565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135fd90614067565b60006040518083038185875af1925050503d806000811461363a576040519150601f19603f3d011682016040523d82523d6000602084013e61363f565b606091505b5050809750505050505050505050505b565b6000818361365f9190613dec565b905092915050565b600081836136759190613e75565b905092915050565b505050565b505050565b600081836136959190614898565b905092915050565b6136c8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161374f96959493929190614b88565b60606040518083038185885af115801561376d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137929190614bfe565b5050505050565b600080fd5b6000819050919050565b6137b18161379e565b81146137bc57600080fd5b50565b6000813590506137ce816137a8565b92915050565b600080604083850312156137eb576137ea613799565b5b60006137f9858286016137bf565b925050602061380a858286016137bf565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561384e578082015181840152602081019050613833565b8381111561385d576000848401525b50505050565b6000601f19601f8301169050919050565b600061387f82613814565b613889818561381f565b9350613899818560208601613830565b6138a281613863565b840191505092915050565b600060208201905081810360008301526138c78184613874565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138fa826138cf565b9050919050565b61390a816138ef565b811461391557600080fd5b50565b60008135905061392781613901565b92915050565b6000806040838503121561394457613943613799565b5b600061395285828601613918565b9250506020613963858286016137bf565b9150509250929050565b60008115159050919050565b6139828161396d565b82525050565b600060208201905061399d6000830184613979565b92915050565b6000602082840312156139b9576139b8613799565b5b60006139c784828501613918565b91505092915050565b6000819050919050565b60006139f56139f06139eb846138cf565b6139d0565b6138cf565b9050919050565b6000613a07826139da565b9050919050565b6000613a19826139fc565b9050919050565b613a2981613a0e565b82525050565b6000602082019050613a446000830184613a20565b92915050565b613a538161379e565b82525050565b6000602082019050613a6e6000830184613a4a565b92915050565b600060208284031215613a8a57613a89613799565b5b6000613a98848285016137bf565b91505092915050565b600080600060608486031215613aba57613ab9613799565b5b6000613ac886828701613918565b9350506020613ad986828701613918565b9250506040613aea868287016137bf565b9150509250925092565b613afd816138ef565b82525050565b6000602082019050613b186000830184613af4565b92915050565b600060ff82169050919050565b613b3481613b1e565b82525050565b6000602082019050613b4f6000830184613b2b565b92915050565b613b5e8161396d565b8114613b6957600080fd5b50565b600081359050613b7b81613b55565b92915050565b60008060408385031215613b9857613b97613799565b5b6000613ba685828601613918565b9250506020613bb785828601613b6c565b9150509250929050565b600060208284031215613bd757613bd6613799565b5b6000613be584828501613b6c565b91505092915050565b60008060408385031215613c0557613c04613799565b5b6000613c1385828601613918565b9250506020613c2485828601613918565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c6460208361381f565b9150613c6f82613c2e565b602082019050919050565b60006020820190508181036000830152613c9381613c57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd48261379e565b9150613cdf8361379e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1457613d13613c9a565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d55601d8361381f565b9150613d6082613d1f565b602082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd257607f821691505b60208210811415613de657613de5613d8b565b5b50919050565b6000613df78261379e565b9150613e028361379e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3b57613e3a613c9a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e808261379e565b9150613e8b8361379e565b925082613e9b57613e9a613e46565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f02602f8361381f565b9150613f0d82613ea6565b604082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f9460288361381f565b9150613f9f82613f38565b604082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614000601d8361381f565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b600081905092915050565b50565b6000614051600083614036565b915061405c82614041565b600082019050919050565b600061407282614044565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006140b2600c8361381f565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061414460398361381f565b915061414f826140e8565b604082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d660258361381f565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061426860248361381f565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142fa60358361381f565b91506143058261429e565b604082019050919050565b60006020820190508181036000830152614329816142ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061438c60348361381f565b915061439782614330565b604082019050919050565b600060208201905081810360008301526143bb8161437f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061441e60268361381f565b9150614429826143c2565b604082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144b060248361381f565b91506144bb82614454565b604082019050919050565b600060208201905081810360008301526144df816144a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061454260228361381f565b915061454d826144e6565b604082019050919050565b6000602082019050818103600083015261457181614535565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145d460258361381f565b91506145df82614578565b604082019050919050565b60006020820190508181036000830152614603816145c7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061466660238361381f565b91506146718261460a565b604082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146d260168361381f565b91506146dd8261469c565b602082019050919050565b60006020820190508181036000830152614701816146c5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061476460358361381f565b915061476f82614708565b604082019050919050565b6000602082019050818103600083015261479381614757565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147d060138361381f565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061486260368361381f565b915061486d82614806565b604082019050919050565b6000602082019050818103600083015261489181614855565b9050919050565b60006148a38261379e565b91506148ae8361379e565b9250828210156148c1576148c0613c9a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061493981613901565b92915050565b60006020828403121561495557614954613799565b5b60006149638482850161492a565b91505092915050565b6000819050919050565b600061499161498c6149878461496c565b6139d0565b61379e565b9050919050565b6149a181614976565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149dc816138ef565b82525050565b60006149ee83836149d3565b60208301905092915050565b6000602082019050919050565b6000614a12826149a7565b614a1c81856149b2565b9350614a27836149c3565b8060005b83811015614a58578151614a3f88826149e2565b9750614a4a836149fa565b925050600181019050614a2b565b5085935050505092915050565b600060a082019050614a7a6000830188613a4a565b614a876020830187614998565b8181036040830152614a998186614a07565b9050614aa86060830185613af4565b614ab56080830184613a4a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b1b60268361381f565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000606082019050614b666000830186613a4a565b614b736020830185613a4a565b614b806040830184613a4a565b949350505050565b600060c082019050614b9d6000830189613af4565b614baa6020830188613a4a565b614bb76040830187614998565b614bc46060830186614998565b614bd16080830185613af4565b614bde60a0830184613a4a565b979650505050505050565b600081519050614bf8816137a8565b92915050565b600080600060608486031215614c1757614c16613799565b5b6000614c2586828701614be9565b9350506020614c3686828701614be9565b9250506040614c4786828701614be9565b915050925092509256fea2646970667358221220ca60be307e44084f18cb5cf3632717d7e2d791ca5efe274f713d2560997a839164736f6c634300080a0033

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

00000000000000000000000071f3dddc62b7ccbf5eb7c428156cd7252c21b057

-----Decoded View---------------
Arg [0] : wallet1 (address): 0x71F3ddDc62b7CCbF5eb7C428156Cd7252c21B057

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000071f3dddc62b7ccbf5eb7c428156cd7252c21b057


Deployed Bytecode Sourcemap

32760:15224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39296:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33972:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32845:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41325:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33790:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33750;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38034:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32948:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32903:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40017:371;;;;;;;;;;;;;:::i;:::-;;38952:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33637:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33306:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40396:174;;;;;;;;;;;;;:::i;:::-;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;37336:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38581:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33040:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39837:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36923:361;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33672:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38844:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40578:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41086:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34193:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33266:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39647:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38317:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33111:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37529:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33598:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33710:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33193:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39296:343;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39440:13:::1;39421:16;:32;;;;39483:13;39464:16;:32;;;;39542:16;;39523;;:35;;;;:::i;:::-;39507:13;:51;;;;39594:3;39577:13;;:20;;39569:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39296:343:::0;;:::o;9555:100::-;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;33972:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32845:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;41325:195::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41467:9:::1;;;;;;;;;;;41430:47;;41453:12;41430:47;;;;;;;;;;;;41500:12;41488:9;;:24;;;;;;;;;;;;;;;;;;41325:195:::0;:::o;33790:33::-;;;;:::o;33750:::-;;;;:::o;38034:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38171:4:::1;38163;38158:1;38142:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38141:26;;;;:::i;:::-;38140:35;;;;:::i;:::-;38130:6;:45;;38108:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38294:6;38284;:17;;;;:::i;:::-;38261:20;:40;;;;38034:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32948:53::-;32994:6;32948:53;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;32903:38::-;;;:::o;33226:33::-;;;;;;;;;;;;;:::o;40017:371::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40089:15:::1;40066:20;:38;;;;40125:15;40113:9;:27;;;;40169:2;40151:15;:20;;;;40198:1;40180:15;:19;;;;40241:15;;40223;;:33;;;;:::i;:::-;40208:12;:48;;;;40286:3;40267:16;:22;;;;40317:1;40298:16;:20;;;;40362:16;;40343;;:35;;;;:::i;:::-;40327:13;:51;;;;40017:371::o:0;38952:336::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39094:13:::1;39076:15;:31;;;;39136:13;39118:15;:31;;;;39193:15;;39175;;:33;;;;:::i;:::-;39160:12;:48;;;;39243:3;39227:12;;:19;;39219:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38952:336:::0;;:::o;33637:28::-;;;;:::o;33306:31::-;;;;;;;;;;;;;:::o;40396:174::-;40438:12;40483:15;;;;;;;;;;;40475:29;;40526:21;40475:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40461:101;;;;;40427:143;40396:174::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;37336:121::-;37388:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37422:5:::1;37405:14;;:22;;;;;;;;;;;;;;;;;;37445:4;37438:11;;37336:121:::0;:::o;38581:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38736:4:::1;38694:31;:39;38726:6;38694:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38581:167:::0;;:::o;33040:30::-;;;;;;;;;;;;;:::o;39837:172::-;39911:24;39929:4;39911:9;:24::i;:::-;39901:6;:34;;:48;;;;;39948:1;39939:6;:10;39901:48;39893:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39977:24;39994:6;39977:16;:24::i;:::-;39837:172;:::o;36923:361::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36998:3:::1;36980:15;:21;;;;37030:1;37012:15;:19;;;;37075:15;;37057;;:33;;;;:::i;:::-;37042:12;:48;;;;37120:3;37101:16;:22;;;;37153:1;37134:16;:20;;;;37200:16;;37181;;:35;;;;:::i;:::-;37165:13;:51;;;;37243:4;37227:13;;:20;;;;;;;;;;;;;;;;;;37272:4;37258:11;;:18;;;;;;;;;;;;;;;;;;36923:361::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33672:31::-;;;;:::o;38844:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38929:7:::1;38915:11;;:21;;;;;;;;;;;;;;;;;;38844:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40578:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40722:13:::1;40714:21;;:4;:21;;;;40692:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40833:41;40862:4;40868:5;40833:28;:41::i;:::-;40578:304:::0;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;41086:231::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41246:15:::1;;;;;;;;;;;41203:59;;41226:18;41203:59;;;;;;;;;;;;41291:18;41273:15;;:36;;;;;;;;;;;;;;;;;;41086:231:::0;:::o;34193:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33266:33::-;;;;;;;;;;;;;:::o;39647:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39763:8:::1;39732:19;:28;39752:7;39732:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39803:7;39787:34;;;39812:8;39787:34;;;;;;:::i;:::-;;;;;;;;39647:182:::0;;:::o;38317:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38457:4:::1;38449;38444:1;38428:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38427:26;;;;:::i;:::-;38426:35;;;;:::i;:::-;38416:6;:45;;38394:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38558:6;38548;:17;;;;:::i;:::-;38536:9;:29;;;;38317:256:::0;:::o;33111:35::-;;;;:::o;37529:497::-;37637:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37716:6:::1;37711:1;37695:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37694:28;;;;:::i;:::-;37681:9;:41;;37659:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37871:4;37866:1;37850:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37849:26;;;;:::i;:::-;37836:9;:39;;37814:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37987:9;37966:18;:30;;;;38014:4;38007:11;;37529:497:::0;;;:::o;33526:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;33153:33::-;;;;:::o;33598:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;33710:31::-;;;;:::o;33193:24::-;;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;41528:3788::-;41676:1;41660:18;;:4;:18;;;;41652:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41753:1;41739:16;;:2;:16;;;;41731:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41822:1;41812:6;:11;41808:93;;;41840:28;41856:4;41862:2;41866:1;41840:15;:28::i;:::-;41883:7;;41808:93;41917:14;;;;;;;;;;;41913:1694;;;41978:7;:5;:7::i;:::-;41970:15;;:4;:15;;;;:49;;;;;42012:7;:5;:7::i;:::-;42006:13;;:2;:13;;;;41970:49;:86;;;;;42054:1;42040:16;;:2;:16;;;;41970:86;:128;;;;;42091:6;42077:21;;:2;:21;;;;41970:128;:158;;;;;42120:8;;;;;;;;;;;42119:9;41970:158;41948:1648;;;42168:13;;;;;;;;;;;42163:223;;42240:19;:25;42260:4;42240:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42269:19;:23;42289:2;42269:23;;;;;;;;;;;;;;;;;;;;;;;;;42240:52;42206:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42163:223;42460:25;:31;42486:4;42460:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42517:31;:35;42549:2;42517:35;;;;;;;;;;;;;;;;;;;;;;;;;42516:36;42460:92;42434:1147;;;42639:20;;42629:6;:30;;42595:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42847:9;;42830:13;42840:2;42830:9;:13::i;:::-;42821:6;:22;;;;:::i;:::-;:35;;42787:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42434:1147;;;43025:25;:29;43051:2;43025:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43080:31;:37;43112:4;43080:37;;;;;;;;;;;;;;;;;;;;;;;;;43079:38;43025:92;42999:582;;;43204:20;;43194:6;:30;;43160:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42999:582;;;43361:31;:35;43393:2;43361:35;;;;;;;;;;;;;;;;;;;;;;;;;43356:225;;43481:9;;43464:13;43474:2;43464:9;:13::i;:::-;43455:6;:22;;;;:::i;:::-;:35;;43421:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43356:225;42999:582;42434:1147;41948:1648;41913:1694;43619:28;43650:24;43668:4;43650:9;:24::i;:::-;43619:55;;43687:12;43726:18;;43702:20;:42;;43687:57;;43775:7;:35;;;;;43799:11;;;;;;;;;;;43775:35;:61;;;;;43828:8;;;;;;;;;;;43827:9;43775:61;:110;;;;;43854:25;:31;43880:4;43854:31;;;;;;;;;;;;;;;;;;;;;;;;;43853:32;43775:110;:153;;;;;43903:19;:25;43923:4;43903:25;;;;;;;;;;;;;;;;;;;;;;;;;43902:26;43775:153;:194;;;;;43946:19;:23;43966:2;43946:23;;;;;;;;;;;;;;;;;;;;;;;;;43945:24;43775:194;43757:326;;;44007:4;43996:8;;:15;;;;;;;;;;;;;;;;;;44028:10;:8;:10::i;:::-;44066:5;44055:8;;:16;;;;;;;;;;;;;;;;;;43757:326;44095:12;44111:8;;;;;;;;;;;44110:9;44095:24;;44221:19;:25;44241:4;44221:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44250:19;:23;44270:2;44250:23;;;;;;;;;;;;;;;;;;;;;;;;;44221:52;44217:100;;;44300:5;44290:15;;44217:100;44329:12;44434:7;44430:833;;;44486:25;:29;44512:2;44486:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44535:1;44519:13;;:17;44486:50;44482:632;;;44564:35;44594:4;44564:25;44575:13;;44564:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;44557:42;;44668:13;;44648:16;;44641:4;:23;;;;:::i;:::-;44640:41;;;;:::i;:::-;44618:18;;:63;;;;;;;:::i;:::-;;;;;;;;44750:13;;44730:16;;44723:4;:23;;;;:::i;:::-;44722:41;;;;:::i;:::-;44700:18;;:63;;;;;;;:::i;:::-;;;;;;;;44482:632;;;44825:25;:31;44851:4;44825:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44875:1;44860:12;;:16;44825:51;44821:293;;;44904:34;44933:4;44904:24;44915:12;;44904:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;44897:41;;45006:12;;44987:15;;44980:4;:22;;;;:::i;:::-;44979:39;;;;:::i;:::-;44957:18;;:61;;;;;;;:::i;:::-;;;;;;;;45086:12;;45067:15;;45060:4;:22;;;;:::i;:::-;45059:39;;;;:::i;:::-;45037:18;;:61;;;;;;;:::i;:::-;;;;;;;;44821:293;44482:632;45141:1;45134:4;:8;45130:91;;;45163:42;45179:4;45193;45200;45163:15;:42::i;:::-;45130:91;45247:4;45237:14;;;;;:::i;:::-;;;44430:833;45275:33;45291:4;45297:2;45301:6;45275:15;:33::i;:::-;41641:3675;;;;41528:3788;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;45324:589::-;45450:21;45488:1;45474:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45450:40;;45519:4;45501;45506:1;45501:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45545:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45535:4;45540:1;45535:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45580:62;45597:4;45612:15;45630:11;45580:8;:62::i;:::-;45681:15;:66;;;45762:11;45788:1;45832:4;45859;45879:15;45681:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45379:534;45324:589;:::o;40890:188::-;41007:5;40973:25;:31;40999:4;40973:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41064:5;41030:40;;41058:4;41030:40;;;;;;;;;;;;40890:188;;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;46444:1535::-;46483:23;46509:24;46527:4;46509:9;:24::i;:::-;46483:50;;46544:25;46606:18;;46572;;:52;;;;:::i;:::-;46544:80;;46635:12;46683:1;46664:15;:20;:46;;;;46709:1;46688:17;:22;46664:46;46660:85;;;46727:7;;;;;46660:85;46800:2;46779:18;;:23;;;;:::i;:::-;46761:15;:41;46757:115;;;46858:2;46837:18;;:23;;;;:::i;:::-;46819:41;;46757:115;46933:23;47046:1;47013:17;46978:18;;46960:15;:36;;;;:::i;:::-;46959:71;;;;:::i;:::-;:88;;;;:::i;:::-;46933:114;;47058:26;47087:36;47107:15;47087;:19;;:36;;;;:::i;:::-;47058:65;;47136:25;47164:21;47136:49;;47198:36;47215:18;47198:16;:36::i;:::-;47247:18;47268:44;47294:17;47268:21;:25;;:44;;;;:::i;:::-;47247:65;;47325:23;47351:81;47404:17;47351:34;47366:18;;47351:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47325:107;;47445:23;47484:15;47471:10;:28;;;;:::i;:::-;47445:54;;47533:1;47512:18;:22;;;;47566:1;47545:18;:22;;;;47602:1;47584:15;:19;:42;;;;;47625:1;47607:15;:19;47584:42;47580:278;;;47643:46;47656:15;47673;47643:12;:46::i;:::-;47709:137;47742:18;47779:15;47813:18;;47709:137;;;;;;;;:::i;:::-;;;;;;;;47580:278;47892:15;;;;;;;;;;;47884:29;;47935:21;47884:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47870:101;;;;;46472:1507;;;;;;;;;46444:1535;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;45921:515::-;46069:62;46086:4;46101:15;46119:11;46069:8;:62::i;:::-;46174:15;:31;;;46213:9;46246:4;46266:11;46292:1;46335;46378:9;;;;;;;;;;;46402:15;46174:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45921:515;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:234::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:17;12836:2;12828:6;12824:15;12817:42;12632:234;:::o;12872:366::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13244:419;;;:::o;13669:227::-;13809:34;13805:1;13797:6;13793:14;13786:58;13878:10;13873:2;13865:6;13861:15;13854:35;13669:227;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:179::-;14839:31;14835:1;14827:6;14823:14;14816:55;14699:179;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;14884:366;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:147::-;15782:11;15819:3;15804:18;;15681:147;;;;:::o;15834:114::-;;:::o;15954:398::-;16113:3;16134:83;16215:1;16210:3;16134:83;:::i;:::-;16127:90;;16226:93;16315:3;16226:93;:::i;:::-;16344:1;16339:3;16335:11;16328:18;;15954:398;;;:::o;16358:379::-;16542:3;16564:147;16707:3;16564:147;:::i;:::-;16557:154;;16728:3;16721:10;;16358:379;;;:::o;16743:162::-;16883:14;16879:1;16871:6;16867:14;16860:38;16743:162;:::o;16911:366::-;17053:3;17074:67;17138:2;17133:3;17074:67;:::i;:::-;17067:74;;17150:93;17239:3;17150:93;:::i;:::-;17268:2;17263:3;17259:12;17252:19;;16911:366;;;:::o;17283:419::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17536:9;17530:4;17526:20;17522:1;17511:9;17507:17;17500:47;17564:131;17690:4;17564:131;:::i;:::-;17556:139;;17283:419;;;:::o;17708:244::-;17848:34;17844:1;17836:6;17832:14;17825:58;17917:27;17912:2;17904:6;17900:15;17893:52;17708:244;:::o;17958:366::-;18100:3;18121:67;18185:2;18180:3;18121:67;:::i;:::-;18114:74;;18197:93;18286:3;18197:93;:::i;:::-;18315:2;18310:3;18306:12;18299:19;;17958:366;;;:::o;18330:419::-;18496:4;18534:2;18523:9;18519:18;18511:26;;18583:9;18577:4;18573:20;18569:1;18558:9;18554:17;18547:47;18611:131;18737:4;18611:131;:::i;:::-;18603:139;;18330:419;;;:::o;18755:224::-;18895:34;18891:1;18883:6;18879:14;18872:58;18964:7;18959:2;18951:6;18947:15;18940:32;18755:224;:::o;18985:366::-;19127:3;19148:67;19212:2;19207:3;19148:67;:::i;:::-;19141:74;;19224:93;19313:3;19224:93;:::i;:::-;19342:2;19337:3;19333:12;19326:19;;18985:366;;;:::o;19357:419::-;19523:4;19561:2;19550:9;19546:18;19538:26;;19610:9;19604:4;19600:20;19596:1;19585:9;19581:17;19574:47;19638:131;19764:4;19638:131;:::i;:::-;19630:139;;19357:419;;;:::o;19782:223::-;19922:34;19918:1;19910:6;19906:14;19899:58;19991:6;19986:2;19978:6;19974:15;19967:31;19782:223;:::o;20011:366::-;20153:3;20174:67;20238:2;20233:3;20174:67;:::i;:::-;20167:74;;20250:93;20339:3;20250:93;:::i;:::-;20368:2;20363:3;20359:12;20352:19;;20011:366;;;:::o;20383:419::-;20549:4;20587:2;20576:9;20572:18;20564:26;;20636:9;20630:4;20626:20;20622:1;20611:9;20607:17;20600:47;20664:131;20790:4;20664:131;:::i;:::-;20656:139;;20383:419;;;:::o;20808:240::-;20948:34;20944:1;20936:6;20932:14;20925:58;21017:23;21012:2;21004:6;21000:15;20993:48;20808:240;:::o;21054:366::-;21196:3;21217:67;21281:2;21276:3;21217:67;:::i;:::-;21210:74;;21293:93;21382:3;21293:93;:::i;:::-;21411:2;21406:3;21402:12;21395:19;;21054:366;;;:::o;21426:419::-;21592:4;21630:2;21619:9;21615:18;21607:26;;21679:9;21673:4;21669:20;21665:1;21654:9;21650:17;21643:47;21707:131;21833:4;21707:131;:::i;:::-;21699:139;;21426:419;;;:::o;21851:239::-;21991:34;21987:1;21979:6;21975:14;21968:58;22060:22;22055:2;22047:6;22043:15;22036:47;21851:239;:::o;22096:366::-;22238:3;22259:67;22323:2;22318:3;22259:67;:::i;:::-;22252:74;;22335:93;22424:3;22335:93;:::i;:::-;22453:2;22448:3;22444:12;22437:19;;22096:366;;;:::o;22468:419::-;22634:4;22672:2;22661:9;22657:18;22649:26;;22721:9;22715:4;22711:20;22707:1;22696:9;22692:17;22685:47;22749:131;22875:4;22749:131;:::i;:::-;22741:139;;22468:419;;;:::o;22893:225::-;23033:34;23029:1;23021:6;23017:14;23010:58;23102:8;23097:2;23089:6;23085:15;23078:33;22893:225;:::o;23124:366::-;23266:3;23287:67;23351:2;23346:3;23287:67;:::i;:::-;23280:74;;23363:93;23452:3;23363:93;:::i;:::-;23481:2;23476:3;23472:12;23465:19;;23124:366;;;:::o;23496:419::-;23662:4;23700:2;23689:9;23685:18;23677:26;;23749:9;23743:4;23739:20;23735:1;23724:9;23720:17;23713:47;23777:131;23903:4;23777:131;:::i;:::-;23769:139;;23496:419;;;:::o;23921:223::-;24061:34;24057:1;24049:6;24045:14;24038:58;24130:6;24125:2;24117:6;24113:15;24106:31;23921:223;:::o;24150:366::-;24292:3;24313:67;24377:2;24372:3;24313:67;:::i;:::-;24306:74;;24389:93;24478:3;24389:93;:::i;:::-;24507:2;24502:3;24498:12;24491:19;;24150:366;;;:::o;24522:419::-;24688:4;24726:2;24715:9;24711:18;24703:26;;24775:9;24769:4;24765:20;24761:1;24750:9;24746:17;24739:47;24803:131;24929:4;24803:131;:::i;:::-;24795:139;;24522:419;;;:::o;24947:221::-;25087:34;25083:1;25075:6;25071:14;25064:58;25156:4;25151:2;25143:6;25139:15;25132:29;24947:221;:::o;25174:366::-;25316:3;25337:67;25401:2;25396:3;25337:67;:::i;:::-;25330:74;;25413:93;25502:3;25413:93;:::i;:::-;25531:2;25526:3;25522:12;25515:19;;25174:366;;;:::o;25546:419::-;25712:4;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25546:419;;;:::o;25971:224::-;26111:34;26107:1;26099:6;26095:14;26088:58;26180:7;26175:2;26167:6;26163:15;26156:32;25971:224;:::o;26201:366::-;26343:3;26364:67;26428:2;26423:3;26364:67;:::i;:::-;26357:74;;26440:93;26529:3;26440:93;:::i;:::-;26558:2;26553:3;26549:12;26542:19;;26201:366;;;:::o;26573:419::-;26739:4;26777:2;26766:9;26762:18;26754:26;;26826:9;26820:4;26816:20;26812:1;26801:9;26797:17;26790:47;26854:131;26980:4;26854:131;:::i;:::-;26846:139;;26573:419;;;:::o;26998:222::-;27138:34;27134:1;27126:6;27122:14;27115:58;27207:5;27202:2;27194:6;27190:15;27183:30;26998:222;:::o;27226:366::-;27368:3;27389:67;27453:2;27448:3;27389:67;:::i;:::-;27382:74;;27465:93;27554:3;27465:93;:::i;:::-;27583:2;27578:3;27574:12;27567:19;;27226:366;;;:::o;27598:419::-;27764:4;27802:2;27791:9;27787:18;27779:26;;27851:9;27845:4;27841:20;27837:1;27826:9;27822:17;27815:47;27879:131;28005:4;27879:131;:::i;:::-;27871:139;;27598:419;;;:::o;28023:172::-;28163:24;28159:1;28151:6;28147:14;28140:48;28023:172;:::o;28201:366::-;28343:3;28364:67;28428:2;28423:3;28364:67;:::i;:::-;28357:74;;28440:93;28529:3;28440:93;:::i;:::-;28558:2;28553:3;28549:12;28542:19;;28201:366;;;:::o;28573:419::-;28739:4;28777:2;28766:9;28762:18;28754:26;;28826:9;28820:4;28816:20;28812:1;28801:9;28797:17;28790:47;28854:131;28980:4;28854:131;:::i;:::-;28846:139;;28573:419;;;:::o;28998:240::-;29138:34;29134:1;29126:6;29122:14;29115:58;29207:23;29202:2;29194:6;29190:15;29183:48;28998:240;:::o;29244:366::-;29386:3;29407:67;29471:2;29466:3;29407:67;:::i;:::-;29400:74;;29483:93;29572:3;29483:93;:::i;:::-;29601:2;29596:3;29592:12;29585:19;;29244:366;;;:::o;29616:419::-;29782:4;29820:2;29809:9;29805:18;29797:26;;29869:9;29863:4;29859:20;29855:1;29844:9;29840:17;29833:47;29897:131;30023:4;29897:131;:::i;:::-;29889:139;;29616:419;;;:::o;30041:169::-;30181:21;30177:1;30169:6;30165:14;30158:45;30041:169;:::o;30216:366::-;30358:3;30379:67;30443:2;30438:3;30379:67;:::i;:::-;30372:74;;30455:93;30544:3;30455:93;:::i;:::-;30573:2;30568:3;30564:12;30557:19;;30216:366;;;:::o;30588:419::-;30754:4;30792:2;30781:9;30777:18;30769:26;;30841:9;30835:4;30831:20;30827:1;30816:9;30812:17;30805:47;30869:131;30995:4;30869:131;:::i;:::-;30861:139;;30588:419;;;:::o;31013:241::-;31153:34;31149:1;31141:6;31137:14;31130:58;31222:24;31217:2;31209:6;31205:15;31198:49;31013:241;:::o;31260:366::-;31402:3;31423:67;31487:2;31482:3;31423:67;:::i;:::-;31416:74;;31499:93;31588:3;31499:93;:::i;:::-;31617:2;31612:3;31608:12;31601:19;;31260:366;;;:::o;31632:419::-;31798:4;31836:2;31825:9;31821:18;31813:26;;31885:9;31879:4;31875:20;31871:1;31860:9;31856:17;31849:47;31913:131;32039:4;31913:131;:::i;:::-;31905:139;;31632:419;;;:::o;32057:191::-;32097:4;32117:20;32135:1;32117:20;:::i;:::-;32112:25;;32151:20;32169:1;32151:20;:::i;:::-;32146:25;;32190:1;32187;32184:8;32181:34;;;32195:18;;:::i;:::-;32181:34;32240:1;32237;32233:9;32225:17;;32057:191;;;;:::o;32254:180::-;32302:77;32299:1;32292:88;32399:4;32396:1;32389:15;32423:4;32420:1;32413:15;32440:180;32488:77;32485:1;32478:88;32585:4;32582:1;32575:15;32609:4;32606:1;32599:15;32626:143;32683:5;32714:6;32708:13;32699:22;;32730:33;32757:5;32730:33;:::i;:::-;32626:143;;;;:::o;32775:351::-;32845:6;32894:2;32882:9;32873:7;32869:23;32865:32;32862:119;;;32900:79;;:::i;:::-;32862:119;33020:1;33045:64;33101:7;33092:6;33081:9;33077:22;33045:64;:::i;:::-;33035:74;;32991:128;32775:351;;;;:::o;33132:85::-;33177:7;33206:5;33195:16;;33132:85;;;:::o;33223:158::-;33281:9;33314:61;33332:42;33341:32;33367:5;33341:32;:::i;:::-;33332:42;:::i;:::-;33314:61;:::i;:::-;33301:74;;33223:158;;;:::o;33387:147::-;33482:45;33521:5;33482:45;:::i;:::-;33477:3;33470:58;33387:147;;:::o;33540:114::-;33607:6;33641:5;33635:12;33625:22;;33540:114;;;:::o;33660:184::-;33759:11;33793:6;33788:3;33781:19;33833:4;33828:3;33824:14;33809:29;;33660:184;;;;:::o;33850:132::-;33917:4;33940:3;33932:11;;33970:4;33965:3;33961:14;33953:22;;33850:132;;;:::o;33988:108::-;34065:24;34083:5;34065:24;:::i;:::-;34060:3;34053:37;33988:108;;:::o;34102:179::-;34171:10;34192:46;34234:3;34226:6;34192:46;:::i;:::-;34270:4;34265:3;34261:14;34247:28;;34102:179;;;;:::o;34287:113::-;34357:4;34389;34384:3;34380:14;34372:22;;34287:113;;;:::o;34436:732::-;34555:3;34584:54;34632:5;34584:54;:::i;:::-;34654:86;34733:6;34728:3;34654:86;:::i;:::-;34647:93;;34764:56;34814:5;34764:56;:::i;:::-;34843:7;34874:1;34859:284;34884:6;34881:1;34878:13;34859:284;;;34960:6;34954:13;34987:63;35046:3;35031:13;34987:63;:::i;:::-;34980:70;;35073:60;35126:6;35073:60;:::i;:::-;35063:70;;34919:224;34906:1;34903;34899:9;34894:14;;34859:284;;;34863:14;35159:3;35152:10;;34560:608;;;34436:732;;;;:::o;35174:831::-;35437:4;35475:3;35464:9;35460:19;35452:27;;35489:71;35557:1;35546:9;35542:17;35533:6;35489:71;:::i;:::-;35570:80;35646:2;35635:9;35631:18;35622:6;35570:80;:::i;:::-;35697:9;35691:4;35687:20;35682:2;35671:9;35667:18;35660:48;35725:108;35828:4;35819:6;35725:108;:::i;:::-;35717:116;;35843:72;35911:2;35900:9;35896:18;35887:6;35843:72;:::i;:::-;35925:73;35993:3;35982:9;35978:19;35969:6;35925:73;:::i;:::-;35174:831;;;;;;;;:::o;36011:225::-;36151:34;36147:1;36139:6;36135:14;36128:58;36220:8;36215:2;36207:6;36203:15;36196:33;36011:225;:::o;36242:366::-;36384:3;36405:67;36469:2;36464:3;36405:67;:::i;:::-;36398:74;;36481:93;36570:3;36481:93;:::i;:::-;36599:2;36594:3;36590:12;36583:19;;36242:366;;;:::o;36614:419::-;36780:4;36818:2;36807:9;36803:18;36795:26;;36867:9;36861:4;36857:20;36853:1;36842:9;36838:17;36831:47;36895:131;37021:4;36895:131;:::i;:::-;36887:139;;36614:419;;;:::o;37039:442::-;37188:4;37226:2;37215:9;37211:18;37203:26;;37239:71;37307:1;37296:9;37292:17;37283:6;37239:71;:::i;:::-;37320:72;37388:2;37377:9;37373:18;37364:6;37320:72;:::i;:::-;37402;37470:2;37459:9;37455:18;37446:6;37402:72;:::i;:::-;37039:442;;;;;;:::o;37487:807::-;37736:4;37774:3;37763:9;37759:19;37751:27;;37788:71;37856:1;37845:9;37841:17;37832:6;37788:71;:::i;:::-;37869:72;37937:2;37926:9;37922:18;37913:6;37869:72;:::i;:::-;37951:80;38027:2;38016:9;38012:18;38003:6;37951:80;:::i;:::-;38041;38117:2;38106:9;38102:18;38093:6;38041:80;:::i;:::-;38131:73;38199:3;38188:9;38184:19;38175:6;38131:73;:::i;:::-;38214;38282:3;38271:9;38267:19;38258:6;38214:73;:::i;:::-;37487:807;;;;;;;;;:::o;38300:143::-;38357:5;38388:6;38382:13;38373:22;;38404:33;38431:5;38404:33;:::i;:::-;38300:143;;;;:::o;38449:663::-;38537:6;38545;38553;38602:2;38590:9;38581:7;38577:23;38573:32;38570:119;;;38608:79;;:::i;:::-;38570:119;38728:1;38753:64;38809:7;38800:6;38789:9;38785:22;38753:64;:::i;:::-;38743:74;;38699:128;38866:2;38892:64;38948:7;38939:6;38928:9;38924:22;38892:64;:::i;:::-;38882:74;;38837:129;39005:2;39031:64;39087:7;39078:6;39067:9;39063:22;39031:64;:::i;:::-;39021:74;;38976:129;38449:663;;;;;:::o

Swarm Source

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