ETH Price: $2,629.43 (-0.13%)

Token

DogeFarm ZK (DOF)

Overview

Max Total Supply

98,685,187.059899840119893906 DOF

Holders

429

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DogeFarm

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-01-04
*/

// File: @openzeppelin\contracts\utils\math\SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
// SPDX-License-Identifier: UNLICENSED
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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * 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;
        }
    }
}

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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 `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin\contracts\utils\Context.sol

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 {}
}

// File: @openzeppelin\contracts\access\Ownable.sol

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

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// File: contracts\IMuteSwitchRouterDynamic.sol


pragma solidity ^0.8.0;

interface IMuteSwitchRouterDynamic {
    function WETH() external view returns (address);
    function factory() external view returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        uint feeType,
        bool stable
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        uint feeType,
        bool stable
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline, bool[] calldata stable)
    external
    payable
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline, bool[] calldata stable)
    external
    returns (uint[] memory amounts);

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external;
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external;


    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, address tokenIn, address tokenOut) external view returns (uint amountOut, bool stable, uint fee);

    function getAmountsOutExpanded(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts, bool[] memory stable, uint[] memory fees);
    function getAmountsOut(uint amountIn, address[] calldata path, bool[] calldata stable) external view returns (uint[] memory amounts, bool[] memory _stable, uint[] memory fees);
    function getPairInfo(address[] calldata path, bool stable) external view returns(address tokenA, address tokenB, address pair, uint reserveA, uint reserveB, uint fee);

}

// File: contracts\IMuteSwitchPairDynamic.sol


pragma solidity ^0.8.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function stable() external pure returns (bool);

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

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

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

    function permit(address owner, address spender, uint value, uint deadline, bytes memory sig) external;

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

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

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
    function claimFees() external returns (uint claimed0, uint claimed1);
    function claimFeesView(address recipient) external view returns (uint claimed0, uint claimed1);

    function initialize(address, address, uint, bool) external;
    function getAmountOut(uint, address) external view returns (uint);

}

// File: contracts\DogeFarm.sol

pragma solidity ^0.8.0;
contract DogeFarm is Ownable, ERC20 {
    using SafeMath for uint256;

    uint256 public initToken = 100000000 * 1e18;

    IMuteSwitchRouterDynamic public muteSwitchRouterDynamic;
    address public muteSwitchPairDynamic;
    address public treasuryAddress;
    address public airdropAddress;
    address public realYieldSharing;
    address public floorPriceFund;
    uint256 public buyFee = 3;
    uint256 public sellFee = 5;
    bool inSwap = false;

    mapping(address => bool) public isExcludedFromFee;
    uint256 public checkBot = 2000000 * 1e18;
    uint256 public numTokensSellToAddToETH = 200000 * 1e18;

    uint256 public blockBotDuration = 300;
    uint256 public blockBotTime;

    constructor(string memory name, string memory symbol, address _router) ERC20(name, symbol) {
        _mint(_msgSender(), initToken);
        IMuteSwitchRouterDynamic _muteSwitchRouterDynamic = IMuteSwitchRouterDynamic(_router);
        muteSwitchRouterDynamic = _muteSwitchRouterDynamic;
        treasuryAddress = address(0x224083993DC663E54637a8531f3Ed5814e0E87F2);
        airdropAddress = address(0x716BBb53902c870BC2E4E92c271aC6Fc76546c00);
        realYieldSharing = address(0x92179b1c11A32792A6aa34C85FfEB756919dfe0F);
        floorPriceFund = address(0x224083993DC663E54637a8531f3Ed5814e0E87F2);
        isExcludedFromFee[_msgSender()] = true;
    }

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        uint256 transferFee;
        //check fee
        if(!isExcludedFromFee[sender] && recipient == muteSwitchPairDynamic) {
            transferFee = sellFee;
        } else if(!isExcludedFromFee[recipient] && sender == muteSwitchPairDynamic) {
            transferFee = buyFee;
        }

        //checkbot
        if (
            blockBotTime > block.timestamp &&
            amount > checkBot &&
            sender != address(this) &&
            recipient != address(this) &&
            sender == muteSwitchPairDynamic
        ) {
            transferFee = 80;
        }

        //setup checkbot time
        if (blockBotTime == 0 && transferFee > 0 && amount > 0) {
            blockBotTime = block.timestamp + blockBotDuration;
        }

        if (inSwap) {
            super._transfer(sender, recipient, amount);
            return;
        }

        if (transferFee > 0 && sender != address(this) && recipient != address(this)) {
            uint256 _fee = amount.mul(transferFee).div(100);
            super._transfer(sender, address(this), _fee);
            amount = amount.sub(_fee);
        } else {
            callConvertFee();
        }

        super._transfer(sender, recipient, amount);
    }

    function callConvertFee() internal lockTheSwap {
        uint256 balanceThis = balanceOf(address(this));

        if (balanceThis > numTokensSellToAddToETH) {
            swapTokensForETH(balanceThis);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = muteSwitchRouterDynamic.WETH();

        bool[] memory stable = new bool[](1);
        stable[0] = false;

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

        muteSwitchRouterDynamic.swapExactTokensForETH(tokenAmount, 0, path, address(this), block.timestamp, stable);
        uint twentyPercent = address(this).balance / 5;
        
        payable(address(realYieldSharing)).call{value: twentyPercent}("");
        payable(address(airdropAddress)).call{value: twentyPercent}("");
        payable(address(floorPriceFund)).call{value: twentyPercent}("");
        payable(address(treasuryAddress)).call{value: address(this).balance}("");
        
    }

    function setExcludeFromFee(address _address, bool _status) external {
        require(isExcludedFromFee[_msgSender()] == true, "Caller must be isExcludedFromFee");
        require(_address != address(0), "0x is not accepted here");
        require(isExcludedFromFee[_address] != _status, "Status was set");
        
        isExcludedFromFee[_address] = _status;
    }

    function changeTreasuryWallet(address _treasuryWallet) external {
        require(_msgSender() == treasuryAddress, "Only TreasuryAddress Wallet!");
        require(_treasuryWallet != address(0), "0x is not accepted here");

        treasuryAddress = _treasuryWallet;
    }

    function changeAirdropWallet(address _airdropAddress) external {
        require(_msgSender() == airdropAddress, "Only airdropAddress Wallet!");
        require(_airdropAddress != address(0), "0x is not accepted here");

        airdropAddress = _airdropAddress;
    }

    function changeRealYieldSharingWallet(address _realYieldSharing) external {
        require(_msgSender() == realYieldSharing, "Only realYieldSharing Wallet!");
        require(_realYieldSharing != address(0), "0x is not accepted here");

        realYieldSharing = _realYieldSharing;
    }

    function changeFloorPriceFund(address _floorPriceFund) external {
        require(_msgSender() == floorPriceFund, "Only floorPriceFund Wallet!");
        require(_floorPriceFund != address(0), "0x is not accepted here");

        floorPriceFund = _floorPriceFund;
    }

    function changeNumTokensSellToAddToETH(uint256 _numTokensSellToAddToETH) external onlyOwner {
        require(_numTokensSellToAddToETH != 0, "_numTokensSellToAddToETH !=0");
        numTokensSellToAddToETH = _numTokensSellToAddToETH;
    }

    function createPair(address _pairAddress) external onlyOwner {
        muteSwitchPairDynamic = _pairAddress;
    }

    // receive eth
    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_router","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_airdropAddress","type":"address"}],"name":"changeAirdropWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_floorPriceFund","type":"address"}],"name":"changeFloorPriceFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeNumTokensSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_realYieldSharing","type":"address"}],"name":"changeRealYieldSharingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"changeTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkBot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"floorPriceFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"initToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"muteSwitchPairDynamic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"muteSwitchRouterDynamic","outputs":[{"internalType":"contract IMuteSwitchRouterDynamic","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"realYieldSharing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100038fb2a2f44e076d0edc39e7bc0e692db59c68be4bb6005847382eb12a81000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008b791913eb07c32779a16750e3868aa8495f5964000000000000000000000000000000000000000000000000000000000000000b446f67654661726d205a4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f460000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020008000000000002000000000301001900000060033002700000032e04300197000300000041035500020000000103550000032e0030019d000100000000001f0000008001000039000000400010043f00000001012001900000000005000411000000880000c13d0000000001000031000000040210008c000001110000413d0000000201000367000000000101043b000000e001100270000003430210009c000001170000613d000003440210009c0000014a0000613d000003450210009c000001680000613d000003460210009c000001800000613d000003470210009c000001ad0000613d000003480210009c000001c60000613d000003490210009c000002090000613d0000034a0210009c000002360000613d0000034b0210009c0000024e0000613d0000034c0210009c000002660000613d0000034d0210009c0000027d0000613d0000034e0210009c000002af0000613d0000034f0210009c000002d60000613d000003500210009c000002ee0000613d000003510210009c000003100000613d000003520210009c0000033d0000613d000003530210009c000003550000613d000003540210009c000003740000613d000003550210009c000003980000613d000003560210009c000003b10000613d000003570210009c000003c90000613d000003580210009c000003fe0000613d000003590210009c0000041d0000613d0000035a0210009c000004440000613d0000035b0210009c000004810000613d0000035c0210009c0000049f0000613d0000035d0210009c000004cc0000613d0000035e0210009c000004e40000613d0000035f0210009c0000051a0000613d000003600210009c000005330000613d000003610210009c0000054c0000613d000003620210009c000005650000613d000003630210009c0000057d0000613d000003640210009c000005960000613d000003650210009c000005c10000613d000003660110009c000005d20000c13d0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b000800000001001d000003310110009c000005d20000213d0cb409600000040f0000000806000029000000000160004c000006850000c13d000000400100043d0000006402100039000003670300004100000000003204350000004402100039000003680300004100000000003204350000002402100039000000260300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000700000005001d0000000001000031000800000001001d0cb408770000040f00000008080000290000001f0280018f0000000203000367000000000701001900000005018002720000009e0000613d000000000400001900000005054002100000000006570019000000000553034f000000000505043b00000000005604350000000104400039000000000514004b000000960000413d000000000420004c000000ad0000613d0000000501100210000000000313034f00000000011700190000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f00000000002104350000032f01000041000000600280008c000000000200001900000000020140190000032f03800197000000000430004c000000000100a0190000032f0330009c000000000102c019000000000110004c000005d20000c13d0000000001070433000003300210009c000005d20000213d00000000028700190000000001710019000800000002001d000600000007001d0cb4088c0000040f0000000603000029000500000001001d00000020013000390000000001010433000003300210009c000005d20000213d000000000131001900000008020000290cb4088c0000040f0000000703000029000800000001001d000000060100002900000040011000390000000001010433000600000001001d000003310110009c000005d20000213d000000000200041a0000033201200197000000000113019f000000000010041b0000032e0100004100000000030004140000032e0430009c0000000001034019000000c00110021000000333011001c700000331052001970000800d0200003900000003030000390000033404000041000400000003001d00000007060000290cb40caa0000040f00000007050000290000000101200190000005d20000613d00000005040000290000000008040433000003350180009c000006130000813d0000000407000039000000000107041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000006260000c13d000000200130008c000300000007001d000200000008001d000005d50000413d000000000070043500000020020000390000000001000019000100000003001d0cb4083b0000040f00000002080000290000000307000029000000050400002900000007050000290000001f028000390000000502200270000000200380008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000005d50000813d000000000001041b00000001011000390000010c0000013d000000000110004c000005d20000c13d0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000006260000c13d000000800010043f000000000440004c000006970000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a004006039000000800240008a0000008001000039000800000001001d0cb408ed0000040f000000400100043d000700000001001d00000008020000290cb408c50000040f00000007030000290000000002310049000000000103001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f00000024020000390000000202200367000000000302043b000000000201001900000000010004110cb4090f0000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000301000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b0000000002010019000003310110009c000005d20000213d0000000b03000039000000000403041a0000033101400197000000000115004b000006a20000c13d000800000002001d000000000120004c0000000001000019000000010100c039000700000003001d000600000004001d0cb40c990000040f000000060100002900000332011001970000000802000029000000000121019f0000000702000029000000000012041b0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000701000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000600310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000002010003670000000402100370000000000202043b000800000002001d000003310220009c000005d20000213d0000002402100370000000000202043b000600000002001d000003310220009c000005d20000213d0000004401100370000000000101043b000500000001001d000000080100002900000000001004350000000201000039000000200010043f0000004002000039000400000002001d0000000001000019000700000005001d0cb4083b0000040f00000007020000290000000000200435000000200010043f000000000100001900000004020000290cb4083b0000040f000000000101041a000000010200008a000000000221004b000007da0000613d0000000502000029000000000221004b000007d50000813d000000400100043d00000044021000390000037603000041000000000032043500000024021000390000001d0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b0000000002010019000003310110009c000005d20000213d0000000a03000039000000000403041a0000033101400197000000000115004b000006b00000c13d000800000002001d000000000120004c0000000001000019000000010100c039000700000003001d000600000004001d0cb40c990000040f000000060100002900000332011001970000000802000029000000000121019f0000000702000029000000000012041b0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000e01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000001301000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d000000400100043d00000012020000390000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d000700000005001d0cb408db0000040f000000070200002900000000002004350000000202000039000000200020043f000800000001001d0000004002000039000600000002001d00000000010000190cb4083b0000040f000000080200002900000331022001970000000000200435000000200010043f000000000100001900000006020000290cb4083b0000040f00000024020000390000000202200367000000000202043b000000000101041a0cb409010000040f0000000003010019000000070100002900000008020000290cb4090f0000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000201043b000000000150004c0000062d0000c13d000000400100043d0000006402100039000003730300004100000000003204350000004402100039000003740300004100000000003204350000002402100039000000210300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000d01000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f000003310110019700000000001004350000001001000039000000200010043f000000400200003900000000010000190cb4083b0000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b0000000002010019000003310110009c000005d20000213d0000000903000039000000000403041a0000033101400197000000000115004b000006be0000c13d000800000002001d000000000120004c0000000001000019000000010100c039000700000003001d000600000004001d0cb40c990000040f000000060100002900000332011001970000000802000029000000000121019f0000000702000029000000000012041b0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000001101000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f000003310110019700000000001004350000000101000039000000200010043f000000400200003900000000010000190cb4083b0000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb409600000040f000000000200041a0000033201200197000000000010041b0000032e0100004100000000030004140000032e0430009c0000000001034019000000c00110021000000333011001c700000331052001970000800d020000390000000303000039000003340400004100000000060000190cb40caa0000040f0000000101200190000001130000c13d000005d20000013d0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000a01000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d000000000100041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000503000039000000000203041a000000010420019000000001012002700000007f0510018f000000000701001900000000070560190000001f0570008c00000000050000190000000105002039000000000552013f0000000105500190000006260000c13d000000400100043d0000000000710435000000000440004c000006cc0000c13d000001000300008a000000000232016f00000020031000390000000000230435000000000270004c000000200200003900000000020060190000002002200039000800000001001d0cb408ed0000040f000000400100043d000700000001001d00000008020000290cb408c50000040f00000007030000290000000002310049000000000103001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f000800000001001d0cb409600000040f000000080100002900000331011001970000000802000039000000000302041a0000033203300197000000000113019f000000000012041b0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b000800000001001d0cb409600000040f0000000802000029000000000120004c0000064b0000c13d000000400100043d00000044021000390000036e03000041000000000032043500000024021000390000001c0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000002010003670000000402100370000000000202043b000800000002001d000003310220009c000005d20000213d0000002401100370000000000101043b000600000001001d00000000005004350000000201000039000000200010043f0000004002000039000500000002001d0000000001000019000700000005001d0cb4083b0000040f00000008020000290000000000200435000000200010043f000000000100001900000005020000290cb4083b0000040f0000000603000029000000000101041a000000000231004b000006d80000813d000000400100043d00000064021000390000036c03000041000000000032043500000044021000390000036d0300004100000000003204350000002402100039000000250300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f00000024020000390000000202200367000000000302043b000000000201001900000000010004110cb409730000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000200310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000004010000390000000201100367000000000101043b0000000002010019000003310110009c000005d20000213d0000000c03000039000000000403041a0000033101400197000000000115004b000006e20000c13d000800000002001d000000000120004c0000000001000019000000010100c039000700000003001d000600000004001d0cb40c990000040f000000060100002900000332011001970000000802000029000000000121019f0000000702000029000000000012041b0000000001000019000000000200001900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000001201000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d00000002010003670000000402100370000000000202043b000800000002001d000003310220009c000005d20000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000600000002001d000000000112004b000005d20000c13d00000000005004350000001001000039000700000001001d000000200010043f000000400200003900000000010000190cb4083b0000040f000000000101041a000000ff011001900000075f0000c13d000000400100043d00000044021000390000036a030000410000000000320435000003420200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000064020000390cb4086e0000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000c01000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000801000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000901000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000001401000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0000000b01000039000000000101041a0000033102100197000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000400310008c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005d20000c13d0cb408db0000040f000800000001001d0cb408e40000040f0000000802000029000003310220019700000000002004350000000202000039000000200020043f000700000001001d0000004002000039000800000002001d00000000010000190cb4083b0000040f000000070200002900000331022001970000000000200435000000200010043f000000000100001900000008020000290cb4083b0000040f000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f0000000001000416000000000110004c000005d20000c13d000000040100008a00000000011000310000032f02000041000000000310004c000000000300001900000000030240190000032f01100197000000000410004c000000000200a0190000032f0110009c00000000010300190000000001026019000000000110004c000005ed0000613d000000000100001900000000020000190cb4086e0000040f0000001f0180008c000005f40000a13d00000000007004350000002002000039000100000002001d00000000010000190cb4083b0000040f0000000109000029000000020800002900000005070000290000000705000029000000200200008a000000000228016f00000000030000190000000806000029000000000423004b0000000004790019000006010000813d0000000004040433000000000041041b000000200330003900000020099000390000000101100039000005e40000013d0000000601000039000000000201041a000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f000000000180004c00000000010000190000000806000029000005fa0000613d000000200140003900000000010104330000000302800210000000010300008a000000000223022f000000000232013f000000000221016f00000001018002100000060e0000013d000000000282004b0000060b0000813d0000000302800210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001028002100000000307000029000000000112019f000000000017041b0000000007060433000003300170009c0000061a0000a13d000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f0000000506000039000000000106041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000006510000613d000003400100004100000000001004350000002201000039000000040010043f000000240200003900000000010000190cb4086e0000040f00000000005004350000000101000039000600000001001d000000200010043f000800000002001d00000040020000390000000001000019000700000005001d0cb4083b0000040f0000000802000029000000000301041a000000000123004b000006f00000813d000000400100043d0000006402100039000003710300004100000000003204350000004402100039000003720300004100000000003204350000002402100039000000220300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f0000001201000039000000000021041b0000000001000019000000000200001900000000030000190cb408640000040f000000200130008c0000000404000029000500000006001d000300000007001d0000066e0000413d000000000060043500000020020000390000000001000019000200000003001d0cb4083b0000040f00000003070000290000000506000029000000040400002900000007050000290000001f027000390000000502200270000000200370008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b0000066e0000813d000000000001041b0000000101100039000006690000013d0000001f0170008c000007140000a13d00000000006004350000002002000039000200000002001d00000000010000190cb4083b0000040f000000020800002900000003070000290000000705000029000000200200008a000000000227016f00000000030000190000000806000029000000000423004b0000000004680019000007210000813d0000000004040433000000000041041b0000002003300039000000200880003900000001011000390000067c0000013d000000000200041a0000033201200197000000000161019f000000000010041b0000032e0100004100000000030004140000032e0430009c0000000001034019000000c00110021000000333011001c700000331052001970000800d02000039000000030300003900000334040000410cb40caa0000040f0000000101200190000001130000c13d000005d20000013d000000000030043500000378020000410000000003000019000000a004300039000000000513004b0000013d0000813d000000000502041a0000000000540435000000200330003900000001022000390000069a0000013d000000400100043d00000044021000390000037703000041000000000032043500000024021000390000001d0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f000000400100043d00000044021000390000037503000041000000000032043500000024021000390000001b0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f000000400100043d00000044021000390000037003000041000000000032043500000024021000390000001c0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f00000000003004350000036f0300004100000020041000390000000002000019000000000572004b000003f20000813d0000000005240019000000000603041a000000000065043500000020022000390000000103300039000006d00000013d0000000003310049000000070100002900000008020000290cb4090f0000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f000000400100043d00000044021000390000036b03000041000000000032043500000024021000390000001b0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f000000070100002900000000001004350000000601000029000000200010043f00000040020000390000000001000019000600000003001d0cb4083b0000040f000000080400002900000006020000290000000002420049000000000021041b0000000303000039000000000103041a0000000001410049000000000013041b000000400100043d00000000004104350000032e0200004100000000040004140000032e0540009c00000000040280190000032e0510009c00000000010280190000004001100210000000c002400210000000000112019f0000033a011001c70000800d020000390000033b04000041000000070500002900000000060000190cb40caa0000040f0000000101200190000005d20000613d000001130000013d000000000170004c000000000100001900000008020000290000071a0000613d000000200120003900000000010104330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f00000001017002100000072f0000013d000000000272004b0000072b0000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b0000000101000039000000010270021000000004040000290000000506000029000000000112019f000000000016041b00000336010000410000000602000039000000000012041b0000000d01000039000000000041041b0000000e01000039000000000061041b0000000f01000039000000000201041a000001000600008a000000000262016f000000000021041b00000337020000410000001101000039000000000021041b00000338020000410000001203000039000000000023041b0000012c020000390000001303000039000000000023041b000000000250004c000007560000c13d000000400100043d00000044021000390000034103000041000000000032043500000024021000390000001f0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f000000000204041a000003390320009c000007850000413d00000340020000410000000000200435000000040010043f000000240200003900000000010000190cb4086e0000040f0000000801000029000000000110004c0000000001000019000000010100c0390cb40c990000040f000000080100002900000000001004350000000701000029000000200010043f000000400200003900000000010000190cb4083b0000040f0000000602000029000000000220004c0000000002000019000000010200c039000000010220018f000000000101041a000000ff0110019000000000010000190000000101006039000000010110018f000000000112004b000007e40000613d000000400100043d00000044021000390000036903000041000000000032043500000024021000390000000e0300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f000800000006001d0000033601200041000000000014041b00000000005004350000000101000039000000200010043f000000400200003900000000010000190cb4083b0000040f000000000201041a0000033602200041000000000021041b0000033601000041000000400200043d00000000001204350000032e0100004100000000030004140000032e0430009c00000000030180190000032e0420009c00000000010240190000004001100210000000c002300210000000000121019f0000033a011001c70000800d020000390000033b040000410000000403000029000000000500001900000007060000290cb40caa0000040f00000007040000290000000101200190000005d20000613d000000060100002900000331011001970000000702000039000000000302041a0000033203300197000000000113019f000000000012041b0000000901000039000000000201041a00000332022001970000033c022001c7000000000021041b0000000a01000039000000000201041a00000332022001970000033d022001c7000000000021041b0000000b01000039000000000201041a00000332022001970000033e022001c7000000000021041b0000000c01000039000000000201041a00000332022001970000033c022001c7000000000021041b00000000004004350000001001000039000000200010043f0000004002000039000700000002001d00000000010000190cb4083b0000040f000000000201041a0000000803000029000000000232016f00000001022001bf000000000021041b00000020010000390000010000100443000001200000044300000100010000390000033f0300004100000007020000290cb408640000040f00000005020000290000000003210049000000080100002900000007020000290cb4090f0000040f0000000801000029000000060200002900000005030000290cb409730000040f0000000102000039000000400100043d0000000000210435000000200200003900000000030000190cb408640000040f000000080100002900000000001004350000000701000029000000200010043f000000400200003900000000010000190cb4083b0000040f000000000201041a000001000300008a000000000232016f0000000603000029000000000232019f000000000021041b0000000001000019000000000200001900000000030000190cb408640000040f0000032e050000410000032e0630009c000000000305801900000040033002100000032e0640009c00000000040580190000006004400210000000000334019f0000032e0410009c0000000001058019000000c001100210000000000113019f0cb40caa0000040f000000000301001900000060033002700001032e0030019d0003000000010355000000010120018f000000000001042d0001000000000002000100000004001d0000032e040000410000032e0530009c00000000030480190000032e0510009c0000000001048019000000c0011002100000004003300210000000000113019f00000379011001c70cb40caf0000040f0000000109000029000000000301001900000060033002700000032e03300197000000200430008c000000200500003900000000050340190000001f0450018f0000000505500272000008270000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000081f0000413d000000010220018f000000000640004c000008370000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0000032e030000410000032e0410009c000000000103801900000040011002100000032e0420009c00000000020380190000006002200210000000000112019f00000000020004140000032e0420009c0000000002038019000000c002200210000000000112019f00000333011001c700008010020000390cb40caf0000040f00000001022001900000084f0000613d000000000101043b000000000001042d000000000100001900000000020000190cb4086e0000040f00000000030100190000032e0100004100000000040004140000032e0540009c0000000001044019000000c001100210000000600220021000000000011200190000037a0110004100000000020300190cb40caf0000040f0000000102200190000008610000613d000000000101043b000000000001042d000000000100001900000000020000190cb4086e0000040f0000032e040000410000032e0510009c0000000001048019000000400110021000000000013100190000032e0320009c00000000020480190000006002200210000000000121001900000cb50001042e0000032e030000410000032e0420009c00000000020380190000032e0410009c000000000103801900000040011002100000006002200210000000000112019f00000cb6000104300000001f01100039000000200200008a000000000221016f000000400100043d0000000002210019000000000312004b00000000030000190000000103004039000003300420009c000008850000213d0000000103300190000008850000c13d000000400020043f000000000001042d000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f00030000000000020000001f051000390000032f07000041000000000325004b000000000300001900000000030740190000032f042001970000032f06500197000000000546004b00000000050000190000000005072019000000000446013f0000032f0440009c0000000003056019000000000330004c000008bb0000613d000300000002001d0000000003010433000003350230009c000200000001001d000008be0000813d0000003f01300039000000200200008a000000000121016f000100000003001d0cb408770000040f000000010600002900000000006104350000000205000029000000000265001900000020022000390000000303000029000000000232004b000008bb0000213d0000000002000019000000000362004b000008b70000813d00000020022000390000000003120019000000000452001900000000040404330000000000430435000008af0000013d000000000216001900000020022000390000000000020435000000000001042d000000000100001900000000020000190cb4086e0000040f000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000008d40000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000008cc0000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000201100367000000000101043b0000037b0210009c000008e10000813d000000000001042d000000000100001900000000020000190cb4086e0000040f00000024010000390000000201100367000000000101043b0000037b0210009c000008ea0000813d000000000001042d000000000100001900000000020000190cb4086e0000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000003300310009c000008fa0000213d0000000102200190000008fa0000c13d000000400010043f000000000001042d000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f0000000001120019000000000221004b000000000200001900000001020040390000000102200190000009080000c13d000000000001042d000003400100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190cb4086e0000040f000400000000000200000331041001980000093b0000613d000300000003001d0000033101200198000400000001001d0000094c0000613d00000000004004350000000201000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d0cb4083b0000040f00000004020000290000000000200435000000200010043f000000000100001900000001020000290cb4083b0000040f0000000302000029000000000021041b000000400100043d00000000002104350000032e0200004100000000030004140000032e0430009c00000000030280190000032e0410009c00000000010280190000004001100210000000c002300210000000000112019f0000033a011001c70000800d0200003900000003030000390000037c04000041000000020500002900000004060000290cb40caa0000040f00000001012001900000095d0000613d000000000001042d000000400100043d00000064021000390000037f0300004100000000003204350000004402100039000003800300004100000000003204350000002402100039000000240300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f000000400100043d00000064021000390000037d03000041000000000032043500000044021000390000037e0300004100000000003204350000002402100039000000220300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f000000000100001900000000020000190cb4086e0000040f000000000100041a00000331011001970000000002000411000000000121004b000009660000c13d000000000001042d000000400100043d000000440210003900000381030000410000000000320435000003420200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000064020000390cb4086e0000040f000d000000000002000b00000003001d000d00000002001d000a00000001001d0000033101100197000800000001001d00000000001004350000001001000039000000200010043f000000400200003900000000010000190cb4083b0000040f0000000d02000029000000000101041a000000ff01100190000009880000c13d0000000801000039000000000101041a000000000121013f00000331011001980000099c0000613d00000331012001970000000000100435000000400200003900000000010000190cb4083b0000040f000000000101041a000000ff01100190000c00000000001d0000099f0000c13d0000000801000039000000000101041a00000331011001970000000802000029000000000112004b000c00000000001d0000099f0000c13d0000000d01000039000000000101041a000c00000001001d0000099f0000013d0000000e01000039000000000101041a000c00000001001d0000001401000039000700000001001d000000000101041a000900000001001d000003820100004100000000001004390000800b0100003900000004020000390cb408520000040f0000000904000029000000000114004b00000000050004100000000b03000029000009c30000a13d0000001101000039000000000101041a000000000131004b000009c30000813d0000000d0100002900000331011001970000000802000029000000000252004b000009c30000613d000000000151004b000009c30000613d0000000801000039000000000101041a00000331011001970000000802000029000000000112004b000000000100001900000001010060390000000101100190000009c30000613d0000005001000039000c00000001001d000000000140004c000009dc0000c13d0000000c01000029000000000110004c000009dc0000613d000000000130004c000009dc0000613d000003820100004100000000001004390000800b010000390000000402000039000900000005001d0cb408520000040f00000009050000290000000b030000290000001302000039000000000202041a0000000001120019000000000221004b00000000020000190000000102004039000000010220019000000bc10000c13d0000000702000029000000000012041b0000000f06000039000000000106041a000000ff0210019000000bb30000c13d0000000c02000029000000000220004c000009fd0000613d0000000d0200002900000331022001970000000804000029000000000454004b000009fd0000613d000000000252004b000009fd0000613d0000000c0100002900000000213100a9000000000230004c000009f20000613d00000000323100d90000000c03000029000000000223004b00000bc10000c13d000000641310011a000c00000003001d0000000a0100002900000000020500190cb40bef0000040f0000000c020000290000000b03000029000000000132004b00000bc10000213d000000000323004900000bb30000013d000001000200008a000800000002001d000000000121016f00000001011001bf000c00000006001d000000000016041b000900000005001d00000000005004350000000101000039000700000001001d000000200010043f000000400200003900000000010000190cb4083b0000040f000000000601041a0000001201000039000000000101041a000000000116004b00000bad0000a13d000000400700043d000003830170009c00000bb70000213d0000006001700039000000400010043f00000002010000390000000000170435000000200570003900000000010000310000000201100367000000000200001900000005032002100000000004350019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c00000a1b0000413d0000000001070433000000000110004c00000bc80000613d000000090100002900000000001504350000000701000039000300000001001d000000000201041a000000400300043d000003840100004100000000001304350000000001000414000003310a2001970000000402a0008c000600000005001d000500000006001d000400000007001d00000a410000613d00000000020a0019000000000403001900020000000a001d000100000003001d0cb408080000040f0000000103000029000000020a000029000000040700002900000005060000290000000605000029000000000110004c00000bcf0000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000080000190000000108004039000003300420009c00000bb70000213d000000010480019000000bb70000c13d000000400020043f000000200110008c00000bbe0000413d0000000001030433000003310210009c00000bbe0000213d0000000002070433000000020220008c00000bc80000413d00000040027000390000000000120435000000400900043d000003850190009c00000bb70000213d0000004001900039000000400010043f00000007010000290000000000190435000000200890003900000000010000310000000201100367000000000200001900000005032002100000000004380019000000000331034f000000000303043b0000000000340435000000010220003a00000000030000190000000103006039000000010330019000000a650000c13d000200000009001d0000000001090433000000000110004c00000bc80000613d000100000008001d0000000000080435000000090100002900000000020a001900000000030600190cb4090f0000040f00000006050000290000000301000029000000000101041a000300000001001d000000400400043d0000004401400039000000c0020000390000000000210435000003860100004100000000001404350000000401400039000000050200002900000000002104350000002401400039000000000001043500000004010000290000000001010433000000c4024000390000000000120435000000e4064000390000000002000019000000000312004b00000a970000813d00000000030504330000033103300197000000000036043500000001022000390000002005500039000000200660003900000a8e0000013d000000640140003900000009020000290000000000210435000003820100004100000000001004390000800b010000390000000402000039000700000004001d000600000006001d0cb408520000040f000000060500002900000007080000290000000002850049000000040220008a000000a403800039000000000023043500000084028000390000000000120435000000020100002900000000010104330000000000150435000000000200001900000001040000290000002005500039000000000312004b00000ab90000813d0000000003040433000000000330004c0000000003000019000000010300c03900000000003504350000000102200039000000200440003900000aae0000013d000000000100041400000003020000290000033102200197000000040320008c00000ac50000613d0000000004850049000000000308001900000000050800190cb407f50000040f0000000708000029000000000110004c00000bcf0000613d000000030100036700000001020000310000001f0320018f000000050420027200000ad30000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000acb0000413d000000000530004c00000ae20000613d0000000504400210000000000141034f00000000044800190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000001f01200039000000200300008a000000000431016f0000000001840019000000000441004b00000000040000190000000104004039000003300510009c00000bb70000213d000000010440019000000bb70000c13d0000032f04000041000000200520008c000000000500001900000000050440190000032f06200197000000000760004c000000000400a0190000032f0660009c000000000405c019000000400010043f000000000440004c00000bbe0000c13d0000000005080433000003300450009c00000bbe0000213d000000000482001900000000028500190000001f052000390000032f06000041000000000745004b000000000700001900000000070680190000032f055001970000032f08400197000000000985004b0000000006008019000000000585013f0000032f0550009c00000000050700190000000005066019000000000550004c00000bbe0000c13d0000000005020433000003300650009c00000bb70000213d00000005065002100000003f07600039000000000337016f0000000003130019000003300730009c00000bb70000213d000000400030043f000000000051043500000000036200190000002003300039000000000443004b00000bbe0000213d00000009050000290000002002200039000000000432004b00000b240000813d00000000040204330000002001100039000000000041043500000b1d0000013d0000038701000041000000000010043900000004005004430000800a0100003900000024020000390cb408520000040f00000000020100190000000001000414000700000002001d000000052320011a000600000003001d0000000b02000039000000000202041a0000033104200197000000040240008c00000b4a0000613d0000000702000029000000050220008c00000b3d0000813d00000000020400190000000003000019000000000400001900000000050000190cb407f50000040f00000b4a0000013d0000032e020000410000032e0310009c0000000001028019000000c00110021000000333011001c70000800902000039000000060300002900000000050000190cb40caa0000040f000000000201001900000060022002700001032e0020019d00030000000103550cb40c630000040f00000000010004140000000a02000039000000000202041a0000033104200197000000040240008c00000b670000613d0000000702000029000000050220008c00000b5a0000813d00000000020400190000000003000019000000000400001900000000050000190cb407f50000040f00000b670000013d0000032e020000410000032e0310009c0000000001028019000000c00110021000000333011001c70000800902000039000000060300002900000000050000190cb40caa0000040f000000000201001900000060022002700001032e0020019d00030000000103550cb40c630000040f00000000010004140000000c02000039000000000202041a0000033104200197000000040240008c00000b840000613d0000000702000029000000050220008c00000b770000813d00000000020400190000000003000019000000000400001900000000050000190cb407f50000040f00000b840000013d0000032e020000410000032e0310009c0000000001028019000000c00110021000000333011001c70000800902000039000000060300002900000000050000190cb40caa0000040f000000000201001900000060022002700001032e0020019d00030000000103550cb40c630000040f0000000901000039000000000101041a000700000001001d0000000001000414000600000001001d00000387010000410000000000100439000000090100002900000004001004430000800a0100003900000024020000390cb408520000040f000000000301001900000007010000290000033104100197000000040140008c00000bac0000613d000000000130004c00000ba60000613d0000032e0100004100000006050000290000032e0250009c0000000001054019000000c00110021000000333011001c7000080090200003900000000050000190cb40caa0000040f000000000201001900000060022002700001032e0020019d000300000001035500000bac0000013d000000060100002900000000020400190000000003000019000000000400001900000000050000190cb407f50000040f0cb40c630000040f0000000c02000029000000000102041a0000000803000029000000000131016f000000000012041b0000000b030000290000000a010000290000000d020000290cb40bef0000040f000000000001042d000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f000000000100001900000000020000190cb4086e0000040f000003400100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190cb4086e0000040f000003400100004100000000001004350000003201000039000000040010043f000000240200003900000000010000190cb4086e0000040f0000000302000367000000400100043d00000001040000310000001f0340018f000000050440027200000bde0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00000bd60000413d000000000530004c00000bed0000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000310cb4086e0000040f0005000000000002000003310410019800000c2d0000613d000500000003001d0000033101200198000400000001001d00000c3e0000613d00000000004004350000000101000039000200000001001d000000200010043f00000040020000390000000001000019000300000004001d0cb4083b0000040f000000000201041a0000000501000029000100000002001d000000000112004b00000c4f0000413d000000030100002900000000001004350000000201000029000000200010043f0000004002000039000200000002001d00000000010000190cb4083b0000040f000000050300002900000001020000290000000002320049000000000021041b00000004010000290000000000100435000000000100001900000002020000290cb4083b0000040f000000000201041a00000005030000290000000002320019000000000021041b000000400100043d00000000003104350000032e0200004100000000030004140000032e0430009c00000000030280190000032e0410009c00000000010280190000004001100210000000c002300210000000000112019f0000033a011001c70000800d0200003900000003030000390000033b04000041000000030500002900000004060000290cb40caa0000040f000000010120019000000c600000613d000000000001042d000000400100043d00000064021000390000038c03000041000000000032043500000044021000390000038d0300004100000000003204350000002402100039000000250300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f000000400100043d00000064021000390000038a03000041000000000032043500000044021000390000038b0300004100000000003204350000002402100039000000230300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f000000400100043d0000006402100039000003880300004100000000003204350000004402100039000003890300004100000000003204350000002402100039000000260300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000084020000390cb4086e0000040f000000000100001900000000020000190cb4086e0000040f000000010100003200000c910000613d0000003f02100039000000200300008a000000000332016f000000400200043d0000000003320019000000000423004b00000000040000190000000104004039000003300530009c00000c920000213d000000010440019000000c920000c13d000000400030043f00000000001204350000002001200039000000030200036700000001040000310000001f0340018f000000050440027200000c820000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00000c7a0000413d000000000530004c00000c910000613d0000000504400210000000000242034f00000000014100190000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000000001042d000003400100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190cb4086e0000040f000000000110004c00000c9c0000613d000000000001042d000000400100043d00000044021000390000038e0300004100000000003204350000002402100039000000170300003900000000003204350000034202000041000000000021043500000004021000390000002003000039000000000032043500000064020000390cb4086e0000040f00000cad002104210000000102000039000000000001042d000000000200001900000cac0000013d00000cb2002104230000000102000039000000000001042d000000000200001900000cb10000013d00000cb40000043200000cb50001042e00000cb600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000001a784379d99db42000000000000000000000000000000000000000000000000002a5a058fc295ed000000ffffffffffffffffffffffffffffffffffffffffffad482d2337f32d1c0000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000224083993dc663e54637a8531f3ed5814e0e87f2000000000000000000000000716bbb53902c870bc2e4e92c271ac6fc76546c0000000000000000000000000092179b1c11a32792a6aa34c85ffeb756919dfe0f00000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001a2564bb000000000000000000000000000000000000000000000000000000002243b0030000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000290f4f20000000000000000000000000000000000000000000000000000000002b14ca56000000000000000000000000000000000000000000000000000000002c1c13e100000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000047062402000000000000000000000000000000000000000000000000000000005342acb400000000000000000000000000000000000000000000000000000000537c1ac70000000000000000000000000000000000000000000000000000000061b188d10000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000084413b65000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009ccb074400000000000000000000000000000000000000000000000000000000a39a145000000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000a927672300000000000000000000000000000000000000000000000000000000ad16a0cf00000000000000000000000000000000000000000000000000000000af9549e000000000000000000000000000000000000000000000000000000000b00d5cbb00000000000000000000000000000000000000000000000000000000baf8ae5300000000000000000000000000000000000000000000000000000000c5f956af00000000000000000000000000000000000000000000000000000000cb09c97c00000000000000000000000000000000000000000000000000000000dbe6354d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e66738cd00000000000000000000000000000000000000000000000000000000f2fde38b64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061537461747573207761732073657400000000000000000000000000000000000043616c6c6572206d7573742062652069734578636c7564656446726f6d4665654f6e6c7920666c6f6f72507269636546756e642057616c6c6574210000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f6e756d546f6b656e7353656c6c546f416464546f45544820213d3000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db04f6e6c79205472656173757279416464726573732057616c6c65742100000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265734f6e6c792061697264726f70416464726573732057616c6c657421000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000004f6e6c79207265616c5969656c6453686172696e672057616c6c6574210000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0000000000000000000000000000000000000004000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132000000000000000000000000000000000000000000000000ffffffffffffff9fad5c464800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbfacc8723d000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061643078206973206e6f742061636365707465642068657265000000000000000000

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

0x000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008b791913eb07c32779a16750e3868aa8495f5964000000000000000000000000000000000000000000000000000000000000000b446f67654661726d205a4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f460000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DogeFarm ZK
Arg [1] : symbol (string): DOF
Arg [2] : _router (address): 0x8B791913eB07C32779a16750e3868aA8495F5964

-----Encoded View---------------


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