ETH Price: $3,261.91 (-0.40%)
Gas: 1 Gwei

Token

DeFi Forge (Forge)
 

Overview

Max Total Supply

10,000,000 Forge

Holders

529

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50.000000000000001007 Forge

Value
$0.00
0x4ae684bc98cf525e7ad0f185320dbb416955186e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Forge

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Forge.sol
//SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

pragma solidity ^0.8.8;

interface DexFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract Forge is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
        uint256 liquidityTax;
    }

    uint256 private constant _totalSupply = 1e7 * 1e18;
    mapping(address => uint256) private _balances;

    //Router
    DexRouter public uniswapRouter;
    address public pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(3, 2);
    Tax public sellTaxes = Tax(3, 2);
    uint256 public totalBuyFees = 5;
    uint256 public totalSellFees = 5;

    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    uint256 public maxWallet = (_totalSupply * 3) / 100;
    bool public tradingStatus = false;

    //Wallets
    address public MarketingWallet = 0x3076867a85f67F5c3d1459BA8c140a735DfaE23f;
    address public stakingVault = 0x510a972852f9Ca32Ed0292F501B3aC4679db9c9A;
    address public stakingContract;

    constructor(address _stakingContract) ERC20("DeFi Forge", "Forge") {
        //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test
        //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet
        //LFT swap on ETH 0x4f381d5fF61ad1D0eC355fEd2Ac4000eA1e67854
        //UniswapV2 on ETHMain net 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // do not whitelist liquidity pool, otherwise there wont be any taxes
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;
        whitelisted[stakingVault] = true;

        stakingContract = _stakingContract;
        uint256 stakingVaultportion = (_totalSupply * 12) / 100;
        _mint(stakingVault, stakingVaultportion);
        _approve(stakingVault, stakingContract, ~uint256(0));
        _mint(msg.sender, _totalSupply - stakingVaultportion);
    }

    function initializePair(address _pairAddress) external onlyOwner{
        pairAddress = _pairAddress;
        tradingStatus = true;
    }

    function setMarketingWallet(address _newMarketing) external onlyOwner {
        require(MarketingWallet != address(0), "new marketing wallet can not be dead address!");
        MarketingWallet = _newMarketing;
    }

    function setMaxWallet(uint256 tokensCount) external onlyOwner {
        maxWallet = tokensCount;
    }

    function setBuyFees(
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        buyTaxes.liquidityTax = _lpTax;
        totalBuyFees = _lpTax + _marketingTax;
    }

    function setSellFees(
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        sellTaxes.liquidityTax = _lpTax;
        totalSellFees = _lpTax + _marketingTax;
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(_newAmount > 0, "Radiate : Minimum swap amount must be greater than 0!");
        swapTokensAtAmount = _newAmount;
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true;
    }

    function setWhitelistStatus(address _wallet, bool _status) external onlyOwner {
        whitelisted[_wallet] = _status;
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }
        require(tradingStatus, "Trading is not enabled yet!");
        uint256 totalTax = 0;
        if (_to == pairAddress) {
            totalTax = totalSellFees;
        } else if (_from == pairAddress) {
            totalTax = totalBuyFees;
            require(balanceOf(_to) + _amount <= maxWallet, "Can not buy more than max wallet!");
        }
        uint256 tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
        return (_amount - tax);
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        require(_from != address(0), "transfer from address zero");
        require(_to != address(0), "transfer to address zero");
        uint256 toTransfer = _takeTax(_from, _to, _amount);

        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (
            swapAndLiquifyEnabled &&
            pairAddress == _to &&
            canSwap &&
            !whitelisted[_from] &&
            !whitelisted[_to] &&
            !isSwapping
        ) {
            isSwapping = true;
            manageTaxes();
            isSwapping = false;
        }
        super._transfer(_from, _to, toTransfer);
    }

    function manageTaxes() internal {
        uint256 taxAmount = balanceOf(address(this));

        //Getting total Fee Percentages And Caclculating Portinos for each tax type
        Tax memory bt = buyTaxes;
        Tax memory st = sellTaxes;
        uint256 totalTaxes = totalBuyFees + totalSellFees;

        if(totalTaxes == 0){
            return;
        }
        
        uint256 totalMarketingTax = bt.marketingTax + st.marketingTax;
        uint256 totalLPTax = bt.liquidityTax + st.liquidityTax;
        
        //Calculating portions for each type of tax (marketing, burn, liquidity, rewards)
        uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes;
        uint256 marketingPortion = (taxAmount * totalMarketingTax) / totalTaxes;

        //Add Liquidty taxes to liqudity pool
        if(lpPortion > 0){
            swapAndLiquify(lpPortion);
        }
        
        //sending to marketing wallet
        if(marketingPortion > 0){
            swapToETH(balanceOf(address(this)));
            (bool success, ) = MarketingWallet.call{value : address(this).balance}("");
        }
    }

    function swapAndLiquify(uint256 _amount) internal {
        uint256 firstHalf = _amount / 2;
        uint256 otherHalf = _amount - firstHalf;
        uint256 initialETHBalance = address(this).balance;

        //Swapping first half to ETH
        swapToETH(firstHalf);
        uint256 received = address(this).balance - initialETHBalance;
        addLiquidity(otherHalf, received);
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private {
        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            address(this),
            block.timestamp
        );
    }

    function updateDexRouter(address _newDex) external onlyOwner {
        uniswapRouter = DexRouter(_newDex);
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
    }

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "transfering ETH failed");
    }

    function withdrawStuckTokens(address erc20_token) external onlyOwner {
        bool success = IERC20(erc20_token).transfer(
            msg.sender,
            IERC20(erc20_token).balanceOf(address(this))
        );
        require(success, "trasfering tokens failed!");
    }

    receive() external payable {}
    
}

File 2 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 3 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 5 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev 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 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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 7 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stakingContract","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":"MarketingWallet","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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensCount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180604001604052806003815260200160028152506009600082015181600001556020820151816001015550506040518060400160405280600381526020016002815250600b600082015181600001556020820151816001015550506005600d556005600e55620186a06a084595161401484a00000062000088919062000b05565b6010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550606460036a084595161401484a000000620000dd919062000b3d565b620000e9919062000b05565b6012556000601360006101000a81548160ff021916908315150217905550733076867a85f67f5c3d1459ba8c140a735dfae23f601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073510a972852f9ca32ed0292f501b3ac4679db9c9a601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001be57600080fd5b5060405162004860380380620048608339818101604052810190620001e4919062000c08565b6040518060400160405280600a81526020017f4465466920466f726765000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f466f726765000000000000000000000000000000000000000000000000000000815250816003908051906020019062000268929190620009ed565b50806004908051906020019062000281929190620009ed565b505050620002a462000298620005c960201b60201c565b620005d160201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006064600c6a084595161401484a000000620004fc919062000b3d565b62000508919062000b05565b90506200053e601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200069760201b60201c565b62000597601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196200081060201b60201c565b620005c133826a084595161401484a000000620005b5919062000c3a565b6200069760201b60201c565b505062000f18565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200070a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007019062000cd6565b60405180910390fd5b6200071e60008383620009e360201b60201c565b806002600082825462000732919062000cf8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000789919062000cf8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007f0919062000d66565b60405180910390a36200080c60008383620009e860201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000883576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087a9062000df9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ed9062000e91565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620009d6919062000d66565b60405180910390a3505050565b505050565b505050565b828054620009fb9062000ee2565b90600052602060002090601f01602090048101928262000a1f576000855562000a6b565b82601f1062000a3a57805160ff191683800117855562000a6b565b8280016001018555821562000a6b579182015b8281111562000a6a57825182559160200191906001019062000a4d565b5b50905062000a7a919062000a7e565b5090565b5b8082111562000a9957600081600090555060010162000a7f565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b128262000a9d565b915062000b1f8362000a9d565b92508262000b325762000b3162000aa7565b5b828204905092915050565b600062000b4a8262000a9d565b915062000b578362000a9d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b935762000b9262000ad6565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bd08262000ba3565b9050919050565b62000be28162000bc3565b811462000bee57600080fd5b50565b60008151905062000c028162000bd7565b92915050565b60006020828403121562000c215762000c2062000b9e565b5b600062000c318482850162000bf1565b91505092915050565b600062000c478262000a9d565b915062000c548362000a9d565b92508282101562000c6a5762000c6962000ad6565b5b828203905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cbe601f8362000c75565b915062000ccb8262000c86565b602082019050919050565b6000602082019050818103600083015262000cf18162000caf565b9050919050565b600062000d058262000a9d565b915062000d128362000a9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d4a5762000d4962000ad6565b5b828201905092915050565b62000d608162000a9d565b82525050565b600060208201905062000d7d600083018462000d55565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000de160248362000c75565b915062000dee8262000d83565b604082019050919050565b6000602082019050818103600083015262000e148162000dd2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e7960228362000c75565b915062000e868262000e1b565b604082019050919050565b6000602082019050818103600083015262000eac8162000e6a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000efb57607f821691505b6020821081141562000f125762000f1162000eb3565b5b50919050565b6139388062000f286000396000f3fe60806040526004361061023f5760003560e01c806395d89b411161012e578063d0a39814116100ab578063ef586f711161006f578063ef586f7114610897578063f2fde38b146108ae578063f5648a4f146108d7578063f66895a3146108ee578063f8b45b051461091a57610246565b8063d0a39814146107ae578063d4fb9a01146107d9578063dd62ed3e14610804578063e2f4560514610841578063ee99205c1461086c57610246565b8063afa4f3b2116100f2578063afa4f3b2146106dd578063b2d8f20814610706578063b88631151461072f578063b9e937001461075a578063cb9637281461078557610246565b806395d89b41146105e45780639fd8234e1461060f578063a457c2d714610638578063a8b0898214610675578063a9059cbb146106a057610246565b806339509351116101bc578063714f75e011610180578063714f75e014610522578063715018a61461054b578063735de9f714610562578063864701a51461058d5780638da5cb5b146105b957610246565b8063395093511461042b5780634a74bb02146104685780635d0044ca146104935780635d098b38146104bc57806370a08231146104e557610246565b806323b872dd1161020357806323b872dd1461034457806324e7964a146103815780632598cdb2146103ac5780632a55fc2a146103d7578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b3146102765780630c424284146102b357806318160ddd146102dc5780631950c2181461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610945565b60405161026d91906126cb565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612786565b6109d7565b6040516102aa91906127e1565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612828565b6109fa565b005b3480156102e857600080fd5b506102f1610a5d565b6040516102fe9190612877565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612892565b610a67565b60405161033b91906127e1565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906128bf565b610abd565b60405161037891906127e1565b60405180910390f35b34801561038d57600080fd5b50610396610aec565b6040516103a39190612921565b60405180910390f35b3480156103b857600080fd5b506103c1610b12565b6040516103ce9190612921565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612892565b610b38565b005b34801561040c57600080fd5b50610415610b9f565b6040516104229190612958565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612786565b610ba8565b60405161045f91906127e1565b60405180910390f35b34801561047457600080fd5b5061047d610bdf565b60405161048a91906127e1565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612973565b610bf2565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612892565b610c04565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612892565b610ce2565b6040516105199190612877565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612892565b610d2a565b005b34801561055757600080fd5b50610560610f81565b005b34801561056e57600080fd5b50610577610f95565b60405161058491906129ff565b60405180910390f35b34801561059957600080fd5b506105a2610fbb565b6040516105b0929190612a1a565b60405180910390f35b3480156105c557600080fd5b506105ce610fcd565b6040516105db9190612921565b60405180910390f35b3480156105f057600080fd5b506105f9610ff7565b60405161060691906126cb565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612a43565b611089565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612786565b6110bb565b60405161066c91906127e1565b60405180910390f35b34801561068157600080fd5b5061068a611132565b6040516106979190612921565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612786565b611158565b6040516106d491906127e1565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612973565b61117b565b005b34801561071257600080fd5b5061072d60048036038101906107289190612a43565b6111d0565b005b34801561073b57600080fd5b50610744611202565b60405161075191906127e1565b60405180910390f35b34801561076657600080fd5b5061076f611215565b60405161077c9190612877565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612892565b61121b565b005b3480156107ba57600080fd5b506107c3611380565b6040516107d09190612877565b60405180910390f35b3480156107e557600080fd5b506107ee611386565b6040516107fb91906127e1565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190612a83565b611399565b6040516108389190612877565b60405180910390f35b34801561084d57600080fd5b50610856611420565b6040516108639190612877565b60405180910390f35b34801561087857600080fd5b50610881611426565b60405161088e9190612921565b60405180910390f35b3480156108a357600080fd5b506108ac61144c565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190612892565b611494565b005b3480156108e357600080fd5b506108ec611518565b005b3480156108fa57600080fd5b506109036115cf565b604051610911929190612a1a565b60405180910390f35b34801561092657600080fd5b5061092f6115e1565b60405161093c9190612877565b60405180910390f35b60606003805461095490612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612af2565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b6000806109e26115e7565b90506109ef8185856115ef565b600191505092915050565b610a026117ba565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610ac86115e7565b9050610ad5858285611838565b610ae08585856118c4565b60019150509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b406117ba565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610bb36115e7565b9050610bd4818585610bc58589611399565b610bcf9190612b53565b6115ef565b600191505092915050565b601160009054906101000a900460ff1681565b610bfa6117ba565b8060128190555050565b610c0c6117ba565b600073ffffffffffffffffffffffffffffffffffffffff16601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590612c1b565b60405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d326117ba565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ddb57600080fd5b505afa158015610def573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e139190612c50565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9757600080fd5b505afa158015610eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecf9190612c50565b6040518363ffffffff1660e01b8152600401610eec929190612c7d565b602060405180830381600087803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3e9190612c50565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f896117ba565b610f936000611b52565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461100690612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461103290612af2565b801561107f5780601f106110545761010080835404028352916020019161107f565b820191906000526020600020905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b6110916117ba565b80600b6000018190555081600b6001018190555080826110b19190612b53565b600e819055505050565b6000806110c66115e7565b905060006110d48286611399565b905083811015611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612d18565b60405180910390fd5b61112682868684036115ef565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111636115e7565b90506111708185856118c4565b600191505092915050565b6111836117ba565b600081116111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90612daa565b60405180910390fd5b8060108190555050565b6111d86117ba565b806009600001819055508160096001018190555080826111f89190612b53565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b6112236117ba565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161127b9190612921565b60206040518083038186803b15801561129357600080fd5b505afa1580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb9190612ddf565b6040518363ffffffff1660e01b81526004016112e8929190612e0c565b602060405180830381600087803b15801561130257600080fd5b505af1158015611316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133a9190612e4a565b90508061137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612ec3565b60405180910390fd5b5050565b600e5481565b601360009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114546117ba565b60011515601160009054906101000a900460ff16151514611476576001611479565b60005b601160006101000a81548160ff021916908315150217905550565b61149c6117ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612f55565b60405180910390fd5b61151581611b52565b50565b6115206117ba565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161154690612fa6565b60006040518083038185875af1925050503d8060008114611583576040519150601f19603f3d011682016040523d82523d6000602084013e611588565b606091505b50509050806115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613007565b60405180910390fd5b50565b600b8060000154908060010154905082565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c69061312b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117ad9190612877565b60405180910390a3505050565b6117c26115e7565b73ffffffffffffffffffffffffffffffffffffffff166117e0610fcd565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613197565b60405180910390fd5b565b60006118448484611399565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118be57818110156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790613203565b60405180910390fd5b6118bd84848484036115ef565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061326f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b906132db565b60405180910390fd5b60006119b1848484611c18565b905060006010546119c130610ce2565b10159050601160009054906101000a900460ff168015611a2e57508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015611a375750805b8015611a8d5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ae35750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611afc5750601160019054906101000a900460ff16155b15611b40576001601160016101000a81548160ff021916908315150217905550611b24611e6d565b6000601160016101000a81548160ff0219169083151502179055505b611b4b858584612018565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cbb5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611cc857819050611e66565b601360009054906101000a900460ff16611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613347565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7957600e549050611e2e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e2d57600d54905060125483611de186610ce2565b611deb9190612b53565b1115611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906133d9565b60405180910390fd5b5b5b600060648285611e3e91906133f9565b611e489190613482565b9050611e55863083612018565b8084611e6191906134b3565b925050505b9392505050565b6000611e7830610ce2565b9050600060096040518060400160405290816000820154815260200160018201548152505090506000600b6040518060400160405290816000820154815260200160018201548152505090506000600e54600d54611ed69190612b53565b90506000811415611eea5750505050612016565b600082600001518460000151611f009190612b53565b9050600083602001518560200151611f189190612b53565b90506000838288611f2991906133f9565b611f339190613482565b90506000848489611f4491906133f9565b611f4e9190613482565b90506000821115611f6357611f6282612299565b5b600081111561200d57611f7d611f7830610ce2565b6122e9565b6000601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611fc590612fa6565b60006040518083038185875af1925050503d8060008114612002576040519150601f19603f3d011682016040523d82523d6000602084013e612007565b606091505b50509050505b50505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef906135eb565b60405180910390fd5b61210383838361253b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061367d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221c9190612b53565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122809190612877565b60405180910390a3612293848484612540565b50505050565b60006002826122a89190613482565b9050600081836122b891906134b3565b905060004790506122c8836122e9565b600081476122d691906134b3565b90506122e28382612545565b5050505050565b6000600267ffffffffffffffff8111156123065761230561369d565b5b6040519080825280602002602001820160405280156123345781602001602082028036833780820191505090505b509050308160008151811061234c5761234b6136cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124269190612c50565b8160018151811061243a576124396136cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124a130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115ef565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125059594939291906137f4565b600060405180830381600087803b15801561251f57600080fd5b505af1158015612533573d6000803e3d6000fd5b505050505050565b505050565b505050565b61257230600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115ef565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016125d99695949392919061384e565b6060604051808303818588803b1580156125f257600080fd5b505af1158015612606573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061262b91906138af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561266c578082015181840152602081019050612651565b8381111561267b576000848401525b50505050565b6000601f19601f8301169050919050565b600061269d82612632565b6126a7818561263d565b93506126b781856020860161264e565b6126c081612681565b840191505092915050565b600060208201905081810360008301526126e58184612692565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061271d826126f2565b9050919050565b61272d81612712565b811461273857600080fd5b50565b60008135905061274a81612724565b92915050565b6000819050919050565b61276381612750565b811461276e57600080fd5b50565b6000813590506127808161275a565b92915050565b6000806040838503121561279d5761279c6126ed565b5b60006127ab8582860161273b565b92505060206127bc85828601612771565b9150509250929050565b60008115159050919050565b6127db816127c6565b82525050565b60006020820190506127f660008301846127d2565b92915050565b612805816127c6565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e6126ed565b5b600061284d8582860161273b565b925050602061285e85828601612813565b9150509250929050565b61287181612750565b82525050565b600060208201905061288c6000830184612868565b92915050565b6000602082840312156128a8576128a76126ed565b5b60006128b68482850161273b565b91505092915050565b6000806000606084860312156128d8576128d76126ed565b5b60006128e68682870161273b565b93505060206128f78682870161273b565b925050604061290886828701612771565b9150509250925092565b61291b81612712565b82525050565b60006020820190506129366000830184612912565b92915050565b600060ff82169050919050565b6129528161293c565b82525050565b600060208201905061296d6000830184612949565b92915050565b600060208284031215612989576129886126ed565b5b600061299784828501612771565b91505092915050565b6000819050919050565b60006129c56129c06129bb846126f2565b6129a0565b6126f2565b9050919050565b60006129d7826129aa565b9050919050565b60006129e9826129cc565b9050919050565b6129f9816129de565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b6000604082019050612a2f6000830185612868565b612a3c6020830184612868565b9392505050565b60008060408385031215612a5a57612a596126ed565b5b6000612a6885828601612771565b9250506020612a7985828601612771565b9150509250929050565b60008060408385031215612a9a57612a996126ed565b5b6000612aa88582860161273b565b9250506020612ab98582860161273b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b0a57607f821691505b60208210811415612b1e57612b1d612ac3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5e82612750565b9150612b6983612750565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b9e57612b9d612b24565b5b828201905092915050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000612c05602d8361263d565b9150612c1082612ba9565b604082019050919050565b60006020820190508181036000830152612c3481612bf8565b9050919050565b600081519050612c4a81612724565b92915050565b600060208284031215612c6657612c656126ed565b5b6000612c7484828501612c3b565b91505092915050565b6000604082019050612c926000830185612912565b612c9f6020830184612912565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d0260258361263d565b9150612d0d82612ca6565b604082019050919050565b60006020820190508181036000830152612d3181612cf5565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b6000612d9460358361263d565b9150612d9f82612d38565b604082019050919050565b60006020820190508181036000830152612dc381612d87565b9050919050565b600081519050612dd98161275a565b92915050565b600060208284031215612df557612df46126ed565b5b6000612e0384828501612dca565b91505092915050565b6000604082019050612e216000830185612912565b612e2e6020830184612868565b9392505050565b600081519050612e44816127fc565b92915050565b600060208284031215612e6057612e5f6126ed565b5b6000612e6e84828501612e35565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000612ead60198361263d565b9150612eb882612e77565b602082019050919050565b60006020820190508181036000830152612edc81612ea0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f3f60268361263d565b9150612f4a82612ee3565b604082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b600081905092915050565b50565b6000612f90600083612f75565b9150612f9b82612f80565b600082019050919050565b6000612fb182612f83565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ff160168361263d565b9150612ffc82612fbb565b602082019050919050565b6000602082019050818103600083015261302081612fe4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061308360248361263d565b915061308e82613027565b604082019050919050565b600060208201905081810360008301526130b281613076565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061311560228361263d565b9150613120826130b9565b604082019050919050565b6000602082019050818103600083015261314481613108565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061318160208361263d565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131ed601d8361263d565b91506131f8826131b7565b602082019050919050565b6000602082019050818103600083015261321c816131e0565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613259601a8361263d565b915061326482613223565b602082019050919050565b600060208201905081810360008301526132888161324c565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b60006132c560188361263d565b91506132d08261328f565b602082019050919050565b600060208201905081810360008301526132f4816132b8565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000613331601b8361263d565b915061333c826132fb565b602082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e206d61782077616c6c657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006133c360218361263d565b91506133ce82613367565b604082019050919050565b600060208201905081810360008301526133f2816133b6565b9050919050565b600061340482612750565b915061340f83612750565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344857613447612b24565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061348d82612750565b915061349883612750565b9250826134a8576134a7613453565b5b828204905092915050565b60006134be82612750565b91506134c983612750565b9250828210156134dc576134db612b24565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061354360258361263d565b915061354e826134e7565b604082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135d560238361263d565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061366760268361263d565b91506136728261360b565b604082019050919050565b600060208201905081810360008301526136968161365a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061372061371b613716846136fb565b6129a0565b612750565b9050919050565b61373081613705565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61376b81612712565b82525050565b600061377d8383613762565b60208301905092915050565b6000602082019050919050565b60006137a182613736565b6137ab8185613741565b93506137b683613752565b8060005b838110156137e75781516137ce8882613771565b97506137d983613789565b9250506001810190506137ba565b5085935050505092915050565b600060a0820190506138096000830188612868565b6138166020830187613727565b81810360408301526138288186613796565b90506138376060830185612912565b6138446080830184612868565b9695505050505050565b600060c0820190506138636000830189612912565b6138706020830188612868565b61387d6040830187613727565b61388a6060830186613727565b6138976080830185612912565b6138a460a0830184612868565b979650505050505050565b6000806000606084860312156138c8576138c76126ed565b5b60006138d686828701612dca565b93505060206138e786828701612dca565b92505060406138f886828701612dca565b915050925092509256fea264697066735822122091cd999e95fca00fbbde967c33b96f7d531338bc6394b0a4bcdcf54a8d541cf164736f6c63430008080033000000000000000000000000323b7f57ac8e5580b01de6e0ca17342ce2df5e89

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806395d89b411161012e578063d0a39814116100ab578063ef586f711161006f578063ef586f7114610897578063f2fde38b146108ae578063f5648a4f146108d7578063f66895a3146108ee578063f8b45b051461091a57610246565b8063d0a39814146107ae578063d4fb9a01146107d9578063dd62ed3e14610804578063e2f4560514610841578063ee99205c1461086c57610246565b8063afa4f3b2116100f2578063afa4f3b2146106dd578063b2d8f20814610706578063b88631151461072f578063b9e937001461075a578063cb9637281461078557610246565b806395d89b41146105e45780639fd8234e1461060f578063a457c2d714610638578063a8b0898214610675578063a9059cbb146106a057610246565b806339509351116101bc578063714f75e011610180578063714f75e014610522578063715018a61461054b578063735de9f714610562578063864701a51461058d5780638da5cb5b146105b957610246565b8063395093511461042b5780634a74bb02146104685780635d0044ca146104935780635d098b38146104bc57806370a08231146104e557610246565b806323b872dd1161020357806323b872dd1461034457806324e7964a146103815780632598cdb2146103ac5780632a55fc2a146103d7578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b3146102765780630c424284146102b357806318160ddd146102dc5780631950c2181461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610945565b60405161026d91906126cb565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612786565b6109d7565b6040516102aa91906127e1565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612828565b6109fa565b005b3480156102e857600080fd5b506102f1610a5d565b6040516102fe9190612877565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612892565b610a67565b60405161033b91906127e1565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906128bf565b610abd565b60405161037891906127e1565b60405180910390f35b34801561038d57600080fd5b50610396610aec565b6040516103a39190612921565b60405180910390f35b3480156103b857600080fd5b506103c1610b12565b6040516103ce9190612921565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612892565b610b38565b005b34801561040c57600080fd5b50610415610b9f565b6040516104229190612958565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612786565b610ba8565b60405161045f91906127e1565b60405180910390f35b34801561047457600080fd5b5061047d610bdf565b60405161048a91906127e1565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612973565b610bf2565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612892565b610c04565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612892565b610ce2565b6040516105199190612877565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612892565b610d2a565b005b34801561055757600080fd5b50610560610f81565b005b34801561056e57600080fd5b50610577610f95565b60405161058491906129ff565b60405180910390f35b34801561059957600080fd5b506105a2610fbb565b6040516105b0929190612a1a565b60405180910390f35b3480156105c557600080fd5b506105ce610fcd565b6040516105db9190612921565b60405180910390f35b3480156105f057600080fd5b506105f9610ff7565b60405161060691906126cb565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612a43565b611089565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612786565b6110bb565b60405161066c91906127e1565b60405180910390f35b34801561068157600080fd5b5061068a611132565b6040516106979190612921565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612786565b611158565b6040516106d491906127e1565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612973565b61117b565b005b34801561071257600080fd5b5061072d60048036038101906107289190612a43565b6111d0565b005b34801561073b57600080fd5b50610744611202565b60405161075191906127e1565b60405180910390f35b34801561076657600080fd5b5061076f611215565b60405161077c9190612877565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612892565b61121b565b005b3480156107ba57600080fd5b506107c3611380565b6040516107d09190612877565b60405180910390f35b3480156107e557600080fd5b506107ee611386565b6040516107fb91906127e1565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190612a83565b611399565b6040516108389190612877565b60405180910390f35b34801561084d57600080fd5b50610856611420565b6040516108639190612877565b60405180910390f35b34801561087857600080fd5b50610881611426565b60405161088e9190612921565b60405180910390f35b3480156108a357600080fd5b506108ac61144c565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190612892565b611494565b005b3480156108e357600080fd5b506108ec611518565b005b3480156108fa57600080fd5b506109036115cf565b604051610911929190612a1a565b60405180910390f35b34801561092657600080fd5b5061092f6115e1565b60405161093c9190612877565b60405180910390f35b60606003805461095490612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612af2565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b6000806109e26115e7565b90506109ef8185856115ef565b600191505092915050565b610a026117ba565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610ac86115e7565b9050610ad5858285611838565b610ae08585856118c4565b60019150509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b406117ba565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610bb36115e7565b9050610bd4818585610bc58589611399565b610bcf9190612b53565b6115ef565b600191505092915050565b601160009054906101000a900460ff1681565b610bfa6117ba565b8060128190555050565b610c0c6117ba565b600073ffffffffffffffffffffffffffffffffffffffff16601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590612c1b565b60405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d326117ba565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ddb57600080fd5b505afa158015610def573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e139190612c50565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9757600080fd5b505afa158015610eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecf9190612c50565b6040518363ffffffff1660e01b8152600401610eec929190612c7d565b602060405180830381600087803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3e9190612c50565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f896117ba565b610f936000611b52565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461100690612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461103290612af2565b801561107f5780601f106110545761010080835404028352916020019161107f565b820191906000526020600020905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b6110916117ba565b80600b6000018190555081600b6001018190555080826110b19190612b53565b600e819055505050565b6000806110c66115e7565b905060006110d48286611399565b905083811015611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612d18565b60405180910390fd5b61112682868684036115ef565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111636115e7565b90506111708185856118c4565b600191505092915050565b6111836117ba565b600081116111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90612daa565b60405180910390fd5b8060108190555050565b6111d86117ba565b806009600001819055508160096001018190555080826111f89190612b53565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b6112236117ba565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161127b9190612921565b60206040518083038186803b15801561129357600080fd5b505afa1580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb9190612ddf565b6040518363ffffffff1660e01b81526004016112e8929190612e0c565b602060405180830381600087803b15801561130257600080fd5b505af1158015611316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133a9190612e4a565b90508061137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612ec3565b60405180910390fd5b5050565b600e5481565b601360009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114546117ba565b60011515601160009054906101000a900460ff16151514611476576001611479565b60005b601160006101000a81548160ff021916908315150217905550565b61149c6117ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612f55565b60405180910390fd5b61151581611b52565b50565b6115206117ba565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161154690612fa6565b60006040518083038185875af1925050503d8060008114611583576040519150601f19603f3d011682016040523d82523d6000602084013e611588565b606091505b50509050806115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613007565b60405180910390fd5b50565b600b8060000154908060010154905082565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c69061312b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117ad9190612877565b60405180910390a3505050565b6117c26115e7565b73ffffffffffffffffffffffffffffffffffffffff166117e0610fcd565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613197565b60405180910390fd5b565b60006118448484611399565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118be57818110156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790613203565b60405180910390fd5b6118bd84848484036115ef565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061326f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b906132db565b60405180910390fd5b60006119b1848484611c18565b905060006010546119c130610ce2565b10159050601160009054906101000a900460ff168015611a2e57508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015611a375750805b8015611a8d5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ae35750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611afc5750601160019054906101000a900460ff16155b15611b40576001601160016101000a81548160ff021916908315150217905550611b24611e6d565b6000601160016101000a81548160ff0219169083151502179055505b611b4b858584612018565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cbb5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611cc857819050611e66565b601360009054906101000a900460ff16611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613347565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7957600e549050611e2e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e2d57600d54905060125483611de186610ce2565b611deb9190612b53565b1115611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906133d9565b60405180910390fd5b5b5b600060648285611e3e91906133f9565b611e489190613482565b9050611e55863083612018565b8084611e6191906134b3565b925050505b9392505050565b6000611e7830610ce2565b9050600060096040518060400160405290816000820154815260200160018201548152505090506000600b6040518060400160405290816000820154815260200160018201548152505090506000600e54600d54611ed69190612b53565b90506000811415611eea5750505050612016565b600082600001518460000151611f009190612b53565b9050600083602001518560200151611f189190612b53565b90506000838288611f2991906133f9565b611f339190613482565b90506000848489611f4491906133f9565b611f4e9190613482565b90506000821115611f6357611f6282612299565b5b600081111561200d57611f7d611f7830610ce2565b6122e9565b6000601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611fc590612fa6565b60006040518083038185875af1925050503d8060008114612002576040519150601f19603f3d011682016040523d82523d6000602084013e612007565b606091505b50509050505b50505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef906135eb565b60405180910390fd5b61210383838361253b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061367d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221c9190612b53565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122809190612877565b60405180910390a3612293848484612540565b50505050565b60006002826122a89190613482565b9050600081836122b891906134b3565b905060004790506122c8836122e9565b600081476122d691906134b3565b90506122e28382612545565b5050505050565b6000600267ffffffffffffffff8111156123065761230561369d565b5b6040519080825280602002602001820160405280156123345781602001602082028036833780820191505090505b509050308160008151811061234c5761234b6136cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124269190612c50565b8160018151811061243a576124396136cc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124a130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115ef565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125059594939291906137f4565b600060405180830381600087803b15801561251f57600080fd5b505af1158015612533573d6000803e3d6000fd5b505050505050565b505050565b505050565b61257230600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115ef565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016125d99695949392919061384e565b6060604051808303818588803b1580156125f257600080fd5b505af1158015612606573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061262b91906138af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561266c578082015181840152602081019050612651565b8381111561267b576000848401525b50505050565b6000601f19601f8301169050919050565b600061269d82612632565b6126a7818561263d565b93506126b781856020860161264e565b6126c081612681565b840191505092915050565b600060208201905081810360008301526126e58184612692565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061271d826126f2565b9050919050565b61272d81612712565b811461273857600080fd5b50565b60008135905061274a81612724565b92915050565b6000819050919050565b61276381612750565b811461276e57600080fd5b50565b6000813590506127808161275a565b92915050565b6000806040838503121561279d5761279c6126ed565b5b60006127ab8582860161273b565b92505060206127bc85828601612771565b9150509250929050565b60008115159050919050565b6127db816127c6565b82525050565b60006020820190506127f660008301846127d2565b92915050565b612805816127c6565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e6126ed565b5b600061284d8582860161273b565b925050602061285e85828601612813565b9150509250929050565b61287181612750565b82525050565b600060208201905061288c6000830184612868565b92915050565b6000602082840312156128a8576128a76126ed565b5b60006128b68482850161273b565b91505092915050565b6000806000606084860312156128d8576128d76126ed565b5b60006128e68682870161273b565b93505060206128f78682870161273b565b925050604061290886828701612771565b9150509250925092565b61291b81612712565b82525050565b60006020820190506129366000830184612912565b92915050565b600060ff82169050919050565b6129528161293c565b82525050565b600060208201905061296d6000830184612949565b92915050565b600060208284031215612989576129886126ed565b5b600061299784828501612771565b91505092915050565b6000819050919050565b60006129c56129c06129bb846126f2565b6129a0565b6126f2565b9050919050565b60006129d7826129aa565b9050919050565b60006129e9826129cc565b9050919050565b6129f9816129de565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b6000604082019050612a2f6000830185612868565b612a3c6020830184612868565b9392505050565b60008060408385031215612a5a57612a596126ed565b5b6000612a6885828601612771565b9250506020612a7985828601612771565b9150509250929050565b60008060408385031215612a9a57612a996126ed565b5b6000612aa88582860161273b565b9250506020612ab98582860161273b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b0a57607f821691505b60208210811415612b1e57612b1d612ac3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5e82612750565b9150612b6983612750565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b9e57612b9d612b24565b5b828201905092915050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000612c05602d8361263d565b9150612c1082612ba9565b604082019050919050565b60006020820190508181036000830152612c3481612bf8565b9050919050565b600081519050612c4a81612724565b92915050565b600060208284031215612c6657612c656126ed565b5b6000612c7484828501612c3b565b91505092915050565b6000604082019050612c926000830185612912565b612c9f6020830184612912565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d0260258361263d565b9150612d0d82612ca6565b604082019050919050565b60006020820190508181036000830152612d3181612cf5565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b6000612d9460358361263d565b9150612d9f82612d38565b604082019050919050565b60006020820190508181036000830152612dc381612d87565b9050919050565b600081519050612dd98161275a565b92915050565b600060208284031215612df557612df46126ed565b5b6000612e0384828501612dca565b91505092915050565b6000604082019050612e216000830185612912565b612e2e6020830184612868565b9392505050565b600081519050612e44816127fc565b92915050565b600060208284031215612e6057612e5f6126ed565b5b6000612e6e84828501612e35565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000612ead60198361263d565b9150612eb882612e77565b602082019050919050565b60006020820190508181036000830152612edc81612ea0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f3f60268361263d565b9150612f4a82612ee3565b604082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b600081905092915050565b50565b6000612f90600083612f75565b9150612f9b82612f80565b600082019050919050565b6000612fb182612f83565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ff160168361263d565b9150612ffc82612fbb565b602082019050919050565b6000602082019050818103600083015261302081612fe4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061308360248361263d565b915061308e82613027565b604082019050919050565b600060208201905081810360008301526130b281613076565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061311560228361263d565b9150613120826130b9565b604082019050919050565b6000602082019050818103600083015261314481613108565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061318160208361263d565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131ed601d8361263d565b91506131f8826131b7565b602082019050919050565b6000602082019050818103600083015261321c816131e0565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613259601a8361263d565b915061326482613223565b602082019050919050565b600060208201905081810360008301526132888161324c565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b60006132c560188361263d565b91506132d08261328f565b602082019050919050565b600060208201905081810360008301526132f4816132b8565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000613331601b8361263d565b915061333c826132fb565b602082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e206d61782077616c6c657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006133c360218361263d565b91506133ce82613367565b604082019050919050565b600060208201905081810360008301526133f2816133b6565b9050919050565b600061340482612750565b915061340f83612750565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344857613447612b24565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061348d82612750565b915061349883612750565b9250826134a8576134a7613453565b5b828204905092915050565b60006134be82612750565b91506134c983612750565b9250828210156134dc576134db612b24565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061354360258361263d565b915061354e826134e7565b604082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135d560238361263d565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061366760268361263d565b91506136728261360b565b604082019050919050565b600060208201905081810360008301526136968161365a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061372061371b613716846136fb565b6129a0565b612750565b9050919050565b61373081613705565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61376b81612712565b82525050565b600061377d8383613762565b60208301905092915050565b6000602082019050919050565b60006137a182613736565b6137ab8185613741565b93506137b683613752565b8060005b838110156137e75781516137ce8882613771565b97506137d983613789565b9250506001810190506137ba565b5085935050505092915050565b600060a0820190506138096000830188612868565b6138166020830187613727565b81810360408301526138288186613796565b90506138376060830185612912565b6138446080830184612868565b9695505050505050565b600060c0820190506138636000830189612912565b6138706020830188612868565b61387d6040830187613727565b61388a6060830186613727565b6138976080830185612912565b6138a460a0830184612868565b979650505050505050565b6000806000606084860312156138c8576138c76126ed565b5b60006138d686828701612dca565b93505060206138e786828701612dca565b92505060406138f886828701612dca565b915050925092509256fea264697066735822122091cd999e95fca00fbbde967c33b96f7d531338bc6394b0a4bcdcf54a8d541cf164736f6c63430008080033

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

000000000000000000000000323b7f57ac8e5580b01de6e0ca17342ce2df5e89

-----Decoded View---------------
Arg [0] : _stakingContract (address): 0x323b7F57Ac8E5580b01de6e0Ca17342cE2Df5e89

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000323b7f57ac8e5580b01de6e0ca17342ce2df5e89


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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