ETH Price: $3,391.45 (-1.61%)
Gas: 1 Gwei

Contract

0x8ACee0fCeE91cedAD1c5013F031762C814740587
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Value
Approve201886502024-06-28 7:19:5918 hrs ago1719559199IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.00008933.67113727
Approve201726122024-06-26 1:35:113 days ago1719365711IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000149533.20831985
Transfer201449852024-06-22 4:52:596 days ago1719031979IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000067862.22772026
Transfer201449852024-06-22 4:52:596 days ago1719031979IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000122352.22772026
Transfer201449842024-06-22 4:52:476 days ago1719031967IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000110384.07951334
Transfer201445422024-06-22 3:23:356 days ago1719026615IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000222834.05621063
Approve201071852024-06-16 21:58:1112 days ago1718575091IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000210124.50825461
Approve200813602024-06-13 7:17:3515 days ago1718263055IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000502710.85827227
Approve200687572024-06-11 13:03:1117 days ago1718110991IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.0009040119.52648196
Approve200434132024-06-08 0:04:5921 days ago1717805099IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000171397.04596508
Transfer199534812024-05-26 10:33:2333 days ago1716719603IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000238194.33672034
Approve199392912024-05-24 10:57:3535 days ago1716548255IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000293846.30451705
Approve199288072024-05-22 23:49:1137 days ago1716421751IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000184956.9405676
Approve199287982024-05-22 23:47:2337 days ago1716421643IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000350897.53818254
Approve199225182024-05-22 2:41:3537 days ago1716345695IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.00040898.82080494
Approve198948292024-05-18 5:44:1141 days ago1716011051IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000168093.60638516
Approve198817562024-05-16 9:51:1143 days ago1715853071IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000204684.39160765
Transfer198755982024-05-15 13:11:4744 days ago1715778707IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.0005554310.11054441
Approve198702762024-05-14 19:22:1145 days ago1715714531IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000396748.55850295
Approve198605112024-05-13 10:30:4746 days ago1715596247IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000274635.8998971
Approve198229582024-05-08 4:27:4751 days ago1715142467IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000097064
Approve198140242024-05-06 22:28:3553 days ago1715034515IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.000304686.5371348
Approve197223262024-04-24 2:41:1165 days ago1713926471IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.0005695112.21906699
Approve196597222024-04-15 8:27:4774 days ago1713169667IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.0004926310.62689923
Transfer196361542024-04-12 1:09:1178 days ago1712884151IN
SAUDI PEPE: SAUDIPEPE Token
0 ETH0.0006042911
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SAUDIPEPE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

// SAUDI PEPE
// Telegram: https://t.me/SAUDIPEPECOIN
// Web: https://saudipepecoin.com/
// Twitter: https://twitter.com/SAUDIPEPECOIN

// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.19;

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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


// 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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/SAUDIPEPE.sol


pragma solidity 0.8.19;

contract SAUDIPEPE is Context, IERC20, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    IUniswapV2Router02 private immutable uniswapRouter;
    address private immutable uniswapPair;

    uint256 public totalChargedFees;

    uint256 public buyFee;
    uint256 public sellFee;
    mapping(address => bool) public whitelist;

    string private _name;
    string private _symbol;
    uint8 private _decimals = 18;
    uint256 private _totalSupply;

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

    constructor(
        string memory _tokenName,
        string memory _tokensymbol,
        uint256 initialSupply,
        address _uniswapRouter
    ) {
        _name = _tokenName;
        _symbol = _tokensymbol;

        _totalSupply = initialSupply.mul(10**_decimals);
        _balances[_msgSender()] = _totalSupply;

        uniswapRouter = IUniswapV2Router02(_uniswapRouter);
        uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());

        buyFee = 0;
        sellFee = 0;

        whitelist[_msgSender()] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    event TokenChargedFees(address indexed sender, uint256 amount, uint256 timestamp);

    function name() external view returns (string memory) {
        return _name;
    }

    function symbol() external view returns (string memory) {
        return _symbol;
    }

    function decimals() external view returns (uint8) {
        return _decimals;
    }

    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance.sub(amount));
        return true;
    }

    function allowance(address owner, address spender) external view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance.sub(subtractedValue));
        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        uint256 senderBalance = this.balanceOf(sender);
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        uint256 chargeAmount = 0;
        uint256 transferAmount = amount;

        // Check if sender or recipient is not in the whitelist
        if (!whitelist[sender] && !whitelist[recipient]) {
            // Buy
            if (sender == uniswapPair && buyFee > 0) {
                chargeAmount = amount.mul(buyFee).div(100);
            // Sell
            } else if (recipient == uniswapPair && sellFee > 0) {
                chargeAmount = amount.mul(sellFee).div(100);
            // Regular transfers (no fee)
            } else {
                chargeAmount = 0;
            }

            if (chargeAmount > 0) {
                transferAmount = transferAmount.sub(chargeAmount);
                totalChargedFees = totalChargedFees.add(chargeAmount);
                _balances[owner()] = _balances[owner()].add(chargeAmount);
                emit TokenChargedFees(sender, chargeAmount, block.timestamp);
            }
        }

        _balances[sender] = senderBalance.sub(amount);
        _balances[recipient] = _balances[recipient].add(transferAmount);

        emit Transfer(sender, recipient, transferAmount);
    }

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

    function setBuyFee(uint256 newBuyFee) external onlyOwner {        
        buyFee = newBuyFee;
    }

    function setSellFee(uint256 newSellFee) external onlyOwner {        
        sellFee = newSellFee;
    }

    function updateWallet(address account, bool status) external onlyOwner {
        whitelist[account] = status;
    }

    function getTotalChargedFees() public view returns (uint256) {
        return totalChargedFees;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokensymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswapRouter","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokenChargedFees","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":[{"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTotalChargedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalChargedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040526008805460ff191660121790553480156200001e57600080fd5b50604051620016f9380380620016f98339810160408190526200004191620003d4565b6200004c336200028b565b6001805560066200005e8582620004e9565b5060076200006d8482620004e9565b506008546200008e90620000869060ff16600a620006c8565b8390620002db565b6009819055336000908152600a6020908152604091829020929092556001600160a01b0383166080819052815163c45a015560e01b81529151909263c45a015592600480820193918290030181865afa158015620000f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001169190620006d9565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000166573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018c9190620006d9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002009190620006d9565b6001600160a01b031660a0526000600381905560048190553380825260056020526040909120805460ff191660011790556001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200027991815260200190565b60405180910390a35050505062000711565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620002e98284620006f7565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031a57600080fd5b81516001600160401b0380821115620003375762000337620002f2565b604051601f8301601f19908116603f01168101908282118183101715620003625762000362620002f2565b816040528381526020925086838588010111156200037f57600080fd5b600091505b83821015620003a3578582018301518183018401529082019062000384565b600093810190920192909252949350505050565b80516001600160a01b0381168114620003cf57600080fd5b919050565b60008060008060808587031215620003eb57600080fd5b84516001600160401b03808211156200040357600080fd5b620004118883890162000308565b955060208701519150808211156200042857600080fd5b50620004378782880162000308565b935050604085015191506200044f60608601620003b7565b905092959194509250565b600181811c908216806200046f57607f821691505b6020821081036200049057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004e457600081815260208120601f850160051c81016020861015620004bf5750805b601f850160051c820191505b81811015620004e057828155600101620004cb565b5050505b505050565b81516001600160401b03811115620005055762000505620002f2565b6200051d816200051684546200045a565b8462000496565b602080601f8311600181146200055557600084156200053c5750858301515b600019600386901b1c1916600185901b178555620004e0565b600085815260208120601f198616915b82811015620005865788860151825594840194600190910190840162000565565b5085821015620005a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200060c578160001904821115620005f057620005f0620005b5565b80851615620005fe57918102915b93841c9390800290620005d0565b509250929050565b6000826200062557506001620002ec565b816200063457506000620002ec565b81600181146200064d5760028114620006585762000678565b6001915050620002ec565b60ff8411156200066c576200066c620005b5565b50506001821b620002ec565b5060208310610133831016604e8410600b84101617156200069d575081810a620002ec565b620006a98383620005cb565b8060001904821115620006c057620006c0620005b5565b029392505050565b6000620002e960ff84168362000614565b600060208284031215620006ec57600080fd5b620002e982620003b7565b8082028115828204841417620002ec57620002ec620005b5565b60805160a051610fbe6200073b60003960008181610a780152610ae7015260005050610fbe6000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b411461027f5780639b19251a14610287578063a457c2d7146102aa578063a9059cbb146102bd578063dd62ed3e146102d0578063f2fde38b1461030957600080fd5b8063715018a61461022d57806381fd69e2146102355780638a11f1e0146102485780638b4cee08146102515780638da5cb5b1461026457600080fd5b806323b872dd1161010a57806323b872dd146101b75780632b14ca56146101ca578063313ce567146101d357806339509351146101e857806347062402146101fb57806370a082311461020457600080fd5b806306fdde0314610147578063074f1c8314610165578063095ea7b3146101775780630cc835a31461019a57806318160ddd146101af575b600080fd5b61014f61031c565b60405161015c9190610d4d565b60405180910390f35b6002545b60405190815260200161015c565b61018a610185366004610db7565b6103ae565b604051901515815260200161015c565b6101ad6101a8366004610de1565b6103c5565b005b600954610169565b61018a6101c5366004610dfa565b6103d2565b61016960045481565b60085460405160ff909116815260200161015c565b61018a6101f6366004610db7565b610494565b61016960035481565b610169610212366004610e36565b6001600160a01b03166000908152600a602052604090205490565b6101ad6104ca565b6101ad610243366004610e51565b6104de565b61016960025481565b6101ad61025f366004610de1565b610511565b6000546040516001600160a01b03909116815260200161015c565b61014f61051e565b61018a610295366004610e36565b60056020526000908152604090205460ff1681565b61018a6102b8366004610db7565b61052d565b61018a6102cb366004610db7565b6105c8565b6101696102de366004610e8d565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6101ad610317366004610e36565b6105e9565b60606006805461032b90610ec0565b80601f016020809104026020016040519081016040528092919081815260200182805461035790610ec0565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103bb338484610662565b5060015b92915050565b6103cd610786565b600355565b60006103dc6107e0565b6103e7848484610839565b6001600160a01b0384166000908152600b60209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61048585336104808487610ccd565b610662565b505060018080555b9392505050565b336000818152600b602090815260408083206001600160a01b038716845290915281205490916103bb9185906104809086610cd9565b6104d2610786565b6104dc6000610ce5565b565b6104e6610786565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b610519610786565b600455565b60606007805461032b90610ec0565b336000908152600b602090815260408083206001600160a01b0386168452909152812054828110156105af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610468565b6105be33856104808487610ccd565b5060019392505050565b60006105d26107e0565b6105dd338484610839565b5060016103bf60018055565b6105f1610786565b6001600160a01b0381166106565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61065f81610ce5565b50565b6001600160a01b0383166106c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166107255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610468565b6002600154036108325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610468565b6002600155565b6001600160a01b03831661089d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b0382166108ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b600081116109615760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610468565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa1580156109a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cc9190610efa565b905081811015610a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b038416600090815260056020526040812054839060ff16158015610a7157506001600160a01b03851660009081526005602052604090205460ff16155b15610c30577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610ab957506000600354115b15610ae557610ade6064610ad860035487610d3590919063ffffffff16565b90610d41565b9150610b4c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316148015610b2857506000600454115b15610b4757610ade6064610ad860045487610d3590919063ffffffff16565b600091505b8115610c3057610b5c8183610ccd565b600254909150610b6c9083610cd9565b600255610ba982600a6000610b896000546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205490610cd9565b600a6000610bbf6000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610c27929190918252602082015260400190565b60405180910390a25b610c3a8385610ccd565b6001600160a01b038088166000908152600a60205260408082209390935590871681522054610c699082610cd9565b6001600160a01b038087166000818152600a602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cbd9085815260200190565b60405180910390a3505050505050565b600061048d8284610f29565b600061048d8284610f3c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061048d8284610f4f565b600061048d8284610f66565b600060208083528351808285015260005b81811015610d7a57858101830151858201604001528201610d5e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610db257600080fd5b919050565b60008060408385031215610dca57600080fd5b610dd383610d9b565b946020939093013593505050565b600060208284031215610df357600080fd5b5035919050565b600080600060608486031215610e0f57600080fd5b610e1884610d9b565b9250610e2660208501610d9b565b9150604084013590509250925092565b600060208284031215610e4857600080fd5b61048d82610d9b565b60008060408385031215610e6457600080fd5b610e6d83610d9b565b915060208301358015158114610e8257600080fd5b809150509250929050565b60008060408385031215610ea057600080fd5b610ea983610d9b565b9150610eb760208401610d9b565b90509250929050565b600181811c90821680610ed457607f821691505b602082108103610ef457634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610f0c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103bf576103bf610f13565b808201808211156103bf576103bf610f13565b80820281158282048414176103bf576103bf610f13565b600082610f8357634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122033b2e39d931107c50d44c7ec433f0a51cae5531f795518eea4ce23b0fe6d03d764736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000a534155444920504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095341554449504550450000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b411461027f5780639b19251a14610287578063a457c2d7146102aa578063a9059cbb146102bd578063dd62ed3e146102d0578063f2fde38b1461030957600080fd5b8063715018a61461022d57806381fd69e2146102355780638a11f1e0146102485780638b4cee08146102515780638da5cb5b1461026457600080fd5b806323b872dd1161010a57806323b872dd146101b75780632b14ca56146101ca578063313ce567146101d357806339509351146101e857806347062402146101fb57806370a082311461020457600080fd5b806306fdde0314610147578063074f1c8314610165578063095ea7b3146101775780630cc835a31461019a57806318160ddd146101af575b600080fd5b61014f61031c565b60405161015c9190610d4d565b60405180910390f35b6002545b60405190815260200161015c565b61018a610185366004610db7565b6103ae565b604051901515815260200161015c565b6101ad6101a8366004610de1565b6103c5565b005b600954610169565b61018a6101c5366004610dfa565b6103d2565b61016960045481565b60085460405160ff909116815260200161015c565b61018a6101f6366004610db7565b610494565b61016960035481565b610169610212366004610e36565b6001600160a01b03166000908152600a602052604090205490565b6101ad6104ca565b6101ad610243366004610e51565b6104de565b61016960025481565b6101ad61025f366004610de1565b610511565b6000546040516001600160a01b03909116815260200161015c565b61014f61051e565b61018a610295366004610e36565b60056020526000908152604090205460ff1681565b61018a6102b8366004610db7565b61052d565b61018a6102cb366004610db7565b6105c8565b6101696102de366004610e8d565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6101ad610317366004610e36565b6105e9565b60606006805461032b90610ec0565b80601f016020809104026020016040519081016040528092919081815260200182805461035790610ec0565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103bb338484610662565b5060015b92915050565b6103cd610786565b600355565b60006103dc6107e0565b6103e7848484610839565b6001600160a01b0384166000908152600b60209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61048585336104808487610ccd565b610662565b505060018080555b9392505050565b336000818152600b602090815260408083206001600160a01b038716845290915281205490916103bb9185906104809086610cd9565b6104d2610786565b6104dc6000610ce5565b565b6104e6610786565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b610519610786565b600455565b60606007805461032b90610ec0565b336000908152600b602090815260408083206001600160a01b0386168452909152812054828110156105af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610468565b6105be33856104808487610ccd565b5060019392505050565b60006105d26107e0565b6105dd338484610839565b5060016103bf60018055565b6105f1610786565b6001600160a01b0381166106565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61065f81610ce5565b50565b6001600160a01b0383166106c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166107255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610468565b6002600154036108325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610468565b6002600155565b6001600160a01b03831661089d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b0382166108ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b600081116109615760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610468565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa1580156109a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cc9190610efa565b905081811015610a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b038416600090815260056020526040812054839060ff16158015610a7157506001600160a01b03851660009081526005602052604090205460ff16155b15610c30577f00000000000000000000000072ba7acf0ecbeeef08802bac3b2fe3e9544fcf0e6001600160a01b0316866001600160a01b0316148015610ab957506000600354115b15610ae557610ade6064610ad860035487610d3590919063ffffffff16565b90610d41565b9150610b4c565b7f00000000000000000000000072ba7acf0ecbeeef08802bac3b2fe3e9544fcf0e6001600160a01b0316856001600160a01b0316148015610b2857506000600454115b15610b4757610ade6064610ad860045487610d3590919063ffffffff16565b600091505b8115610c3057610b5c8183610ccd565b600254909150610b6c9083610cd9565b600255610ba982600a6000610b896000546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205490610cd9565b600a6000610bbf6000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610c27929190918252602082015260400190565b60405180910390a25b610c3a8385610ccd565b6001600160a01b038088166000908152600a60205260408082209390935590871681522054610c699082610cd9565b6001600160a01b038087166000818152600a602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cbd9085815260200190565b60405180910390a3505050505050565b600061048d8284610f29565b600061048d8284610f3c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061048d8284610f4f565b600061048d8284610f66565b600060208083528351808285015260005b81811015610d7a57858101830151858201604001528201610d5e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610db257600080fd5b919050565b60008060408385031215610dca57600080fd5b610dd383610d9b565b946020939093013593505050565b600060208284031215610df357600080fd5b5035919050565b600080600060608486031215610e0f57600080fd5b610e1884610d9b565b9250610e2660208501610d9b565b9150604084013590509250925092565b600060208284031215610e4857600080fd5b61048d82610d9b565b60008060408385031215610e6457600080fd5b610e6d83610d9b565b915060208301358015158114610e8257600080fd5b809150509250929050565b60008060408385031215610ea057600080fd5b610ea983610d9b565b9150610eb760208401610d9b565b90509250929050565b600181811c90821680610ed457607f821691505b602082108103610ef457634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610f0c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103bf576103bf610f13565b808201808211156103bf576103bf610f13565b80820281158282048414176103bf576103bf610f13565b600082610f8357634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122033b2e39d931107c50d44c7ec433f0a51cae5531f795518eea4ce23b0fe6d03d764736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000a534155444920504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095341554449504550450000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): SAUDI PEPE
Arg [1] : _tokensymbol (string): SAUDIPEPE
Arg [2] : initialSupply (uint256): 10000000000
Arg [3] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 5341554449205045504500000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 5341554449504550450000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23294:5896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24671:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29084:103;29163:16;;29084:103;;;713:25:1;;;701:2;686:18;29084:103:0;567:177:1;25968:163:0;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:1;;1344:22;1326:41;;1314:2;1299:18;25968:163:0;1186:187:1;28735:102:0;;;;;;:::i;:::-;;:::i;:::-;;24954;25036:12;;24954:102;;25381:426;;;;;;:::i;:::-;;:::i;23571:22::-;;;;;;24861:85;24929:9;;24861:85;;24929:9;;;;2038:36:1;;2026:2;2011:18;24861:85:0;1896:184:1;26139:210:0;;;;;;:::i;:::-;;:::i;23543:21::-;;;;;;25064:121;;;;;;:::i;:::-;-1:-1:-1;;;;;25159:18:0;25132:7;25159:18;;;:9;:18;;;;;;;25064:121;18798:103;;;:::i;28959:117::-;;;;;;:::i;:::-;;:::i;23503:31::-;;;;;;28845:106;;;;;;:::i;:::-;;:::i;18150:87::-;18196:7;18223:6;18150:87;;-1:-1:-1;;;;;18223:6:0;;;2774:51:1;;2762:2;2747:18;18150:87:0;2628:203:1;24764:89:0;;;:::i;23600:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26357:378;;;;;;:::i;:::-;;:::i;25193:180::-;;;;;;:::i;:::-;;:::i;25815:145::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25925:18:0;;;25898:7;25925:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25815:145;19056:201;;;;;;:::i;:::-;;:::i;24671:85::-;24710:13;24743:5;24736:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24671:85;:::o;25968:163::-;26045:4;26062:39;16781:10;26085:7;26094:6;26062:8;:39::i;:::-;-1:-1:-1;26119:4:0;25968:163;;;;;:::o;28735:102::-;18036:13;:11;:13::i;:::-;28811:6:::1;:18:::0;28735:102::o;25381:426::-;25492:4;15421:21;:19;:21::i;:::-;25509:36:::1;25519:6;25527:9;25538:6;25509:9;:36::i;:::-;-1:-1:-1::0;;;;;25583:19:0;::::1;25556:24;25583:19:::0;;;:11:::1;:19;::::0;;;;;;;16781:10;25583:33;;;;;;;;25635:26;;::::1;;25627:79;;;::::0;-1:-1:-1;;;25627:79:0;;3688:2:1;25627:79:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;3766:34;3746:18;;;3739:62;-1:-1:-1;;;3817:18:1;;;3810:38;3865:19;;25627:79:0::1;;;;;;;;;25717:60;25726:6:::0;16781:10;25748:28:::1;:16:::0;25769:6;25748:20:::1;:28::i;:::-;25717:8;:60::i;:::-;-1:-1:-1::0;;25795:4:0::1;15985:22:::0;;;15465:20;25381:426;;;;;:::o;26139:210::-;16781:10;26227:4;26272:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26272:34:0;;;;;;;;;;26227:4;;26240:83;;26263:7;;26272:50;;26311:10;26272:38;:50::i;18798:103::-;18036:13;:11;:13::i;:::-;18863:30:::1;18890:1;18863:18;:30::i;:::-;18798:103::o:0;28959:117::-;18036:13;:11;:13::i;:::-;-1:-1:-1;;;;;29041:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:27;;-1:-1:-1;;29041:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28959:117::o;28845:106::-;18036:13;:11;:13::i;:::-;28923:7:::1;:20:::0;28845:106::o;24764:89::-;24805:13;24838:7;24831:14;;;;;:::i;26357:378::-;16781:10;26450:4;26494:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26494:34:0;;;;;;;;;;26547:35;;;;26539:85;;;;-1:-1:-1;;;26539:85:0;;4097:2:1;26539:85:0;;;4079:21:1;4136:2;4116:18;;;4109:30;4175:34;4155:18;;;4148:62;-1:-1:-1;;;4226:18:1;;;4219:35;4271:19;;26539:85:0;3895:401:1;26539:85:0;26635:70;16781:10;26658:7;26667:37;:16;26688:15;26667:20;:37::i;26635:70::-;-1:-1:-1;26723:4:0;;26357:378;-1:-1:-1;;;26357:378:0:o;25193:180::-;25284:4;15421:21;:19;:21::i;:::-;25301:42:::1;16781:10:::0;25325:9:::1;25336:6;25301:9;:42::i;:::-;-1:-1:-1::0;25361:4:0::1;15465:20:::0;14859:1;15985:22;;15802:213;19056:201;18036:13;:11;:13::i;:::-;-1:-1:-1;;;;;19145:22:0;::::1;19137:73;;;::::0;-1:-1:-1;;;19137:73:0;;4503:2:1;19137:73:0::1;::::0;::::1;4485:21:1::0;4542:2;4522:18;;;4515:30;4581:34;4561:18;;;4554:62;-1:-1:-1;;;4632:18:1;;;4625:36;4678:19;;19137:73:0::1;4301:402:1::0;19137:73:0::1;19221:28;19240:8;19221:18;:28::i;:::-;19056:201:::0;:::o;28381:346::-;-1:-1:-1;;;;;28483:19:0;;28475:68;;;;-1:-1:-1;;;28475:68:0;;4910:2:1;28475:68:0;;;4892:21:1;4949:2;4929:18;;;4922:30;4988:34;4968:18;;;4961:62;-1:-1:-1;;;5039:18:1;;;5032:34;5083:19;;28475:68:0;4708:400:1;28475:68:0;-1:-1:-1;;;;;28562:21:0;;28554:68;;;;-1:-1:-1;;;28554:68:0;;5315:2:1;28554:68:0;;;5297:21:1;5354:2;5334:18;;;5327:30;5393:34;5373:18;;;5366:62;-1:-1:-1;;;5444:18:1;;;5437:32;5486:19;;28554:68:0;5113:398:1;28554:68:0;-1:-1:-1;;;;;28635:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28687:32;;713:25:1;;;28687:32:0;;686:18:1;28687:32:0;;;;;;;28381:346;;;:::o;18315:132::-;18196:7;18223:6;-1:-1:-1;;;;;18223:6:0;16781:10;18379:23;18371:68;;;;-1:-1:-1;;;18371:68:0;;5718:2:1;18371:68:0;;;5700:21:1;;;5737:18;;;5730:30;5796:34;5776:18;;;5769:62;5848:18;;18371:68:0;5516:356:1;15501:293:0;14903:1;15635:7;;:19;15627:63;;;;-1:-1:-1;;;15627:63:0;;6079:2:1;15627:63:0;;;6061:21:1;6118:2;6098:18;;;6091:30;6157:33;6137:18;;;6130:61;6208:18;;15627:63:0;5877:355:1;15627:63:0;14903:1;15768:7;:18;15501:293::o;26743:1630::-;-1:-1:-1;;;;;26841:20:0;;26833:70;;;;-1:-1:-1;;;26833:70:0;;6439:2:1;26833:70:0;;;6421:21:1;6478:2;6458:18;;;6451:30;6517:34;6497:18;;;6490:62;-1:-1:-1;;;6568:18:1;;;6561:35;6613:19;;26833:70:0;6237:401:1;26833:70:0;-1:-1:-1;;;;;26922:23:0;;26914:71;;;;-1:-1:-1;;;26914:71:0;;6845:2:1;26914:71:0;;;6827:21:1;6884:2;6864:18;;;6857:30;6923:34;6903:18;;;6896:62;-1:-1:-1;;;6974:18:1;;;6967:33;7017:19;;26914:71:0;6643:399:1;26914:71:0;27013:1;27004:6;:10;26996:64;;;;-1:-1:-1;;;26996:64:0;;7249:2:1;26996:64:0;;;7231:21:1;7288:2;7268:18;;;7261:30;7327:34;7307:18;;;7300:62;-1:-1:-1;;;7378:18:1;;;7371:39;7427:19;;26996:64:0;7047:405:1;26996:64:0;27097:22;;-1:-1:-1;;;27097:22:0;;-1:-1:-1;;;;;2792:32:1;;27097:22:0;;;2774:51:1;27073:21:0;;27097:4;;:14;;2747:18:1;;27097:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27073:46;;27155:6;27138:13;:23;;27130:74;;;;-1:-1:-1;;;27130:74:0;;7848:2:1;27130:74:0;;;7830:21:1;7887:2;7867:18;;;7860:30;7926:34;7906:18;;;7899:62;-1:-1:-1;;;7977:18:1;;;7970:36;8023:19;;27130:74:0;7646:402:1;27130:74:0;-1:-1:-1;;;;;27366:17:0;;27217:20;27366:17;;;:9;:17;;;;;;27277:6;;27366:17;;27365:18;:43;;;;-1:-1:-1;;;;;;27388:20:0;;;;;;:9;:20;;;;;;;;27387:21;27365:43;27361:812;;;27459:11;-1:-1:-1;;;;;27449:21:0;:6;-1:-1:-1;;;;;27449:21:0;;:35;;;;;27483:1;27474:6;;:10;27449:35;27445:368;;;27520:27;27543:3;27520:18;27531:6;;27520;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;27505:42;;27445:368;;;27607:11;-1:-1:-1;;;;;27594:24:0;:9;-1:-1:-1;;;;;27594:24:0;;:39;;;;;27632:1;27622:7;;:11;27594:39;27590:223;;;27669:28;27693:3;27669:19;27680:7;;27669:6;:10;;:19;;;;:::i;27590:223::-;27796:1;27781:16;;27590:223;27833:16;;27829:333;;27887:32;:14;27906:12;27887:18;:32::i;:::-;27957:16;;27870:49;;-1:-1:-1;27957:34:0;;27978:12;27957:20;:34::i;:::-;27938:16;:53;28031:36;28054:12;28031:9;:18;28041:7;18196;18223:6;-1:-1:-1;;;;;18223:6:0;;18150:87;28041:7;-1:-1:-1;;;;;28031:18:0;;;;;;;;;;;;-1:-1:-1;28031:18:0;;;:22;:36::i;:::-;28010:9;:18;28020:7;18196;18223:6;-1:-1:-1;;;;;18223:6:0;;18150:87;28020:7;-1:-1:-1;;;;;28010:18:0;-1:-1:-1;;;;;28010:18:0;;;;;;;;;;;;:57;;;;28108:6;-1:-1:-1;;;;;28091:55:0;;28116:12;28130:15;28091:55;;;;;;8227:25:1;;;8283:2;8268:18;;8261:34;8215:2;8200:18;;8053:248;28091:55:0;;;;;;;;27829:333;28205:25;:13;28223:6;28205:17;:25::i;:::-;-1:-1:-1;;;;;28185:17:0;;;;;;;:9;:17;;;;;;:45;;;;28264:20;;;;;;;:40;;28289:14;28264:24;:40::i;:::-;-1:-1:-1;;;;;28241:20:0;;;;;;;:9;:20;;;;;;;:63;;;;28322:43;;;;;;;;;;28350:14;713:25:1;;701:2;686:18;;567:177;28322:43:0;;;;;;;;26822:1551;;;26743:1630;;;:::o;9292:98::-;9350:7;9377:5;9381:1;9377;:5;:::i;8911:98::-;8969:7;8996:5;9000:1;8996;:5;:::i;19417:191::-;19491:16;19510:6;;-1:-1:-1;;;;;19527:17:0;;;-1:-1:-1;;;;;;19527:17:0;;;;;;19560:40;;19510:6;;;;;;;19560:40;;19491:16;19560:40;19480:128;19417:191;:::o;9649:98::-;9707:7;9734:5;9738:1;9734;:5;:::i;10048:98::-;10106:7;10133:5;10137:1;10133;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:1;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927:254:1:o;1378:180::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;-1:-1:-1;1529:23:1;;1378:180;-1:-1:-1;1378:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;2276:347::-;2341:6;2349;2402:2;2390:9;2381:7;2377:23;2373:32;2370:52;;;2418:1;2415;2408:12;2370:52;2441:29;2460:9;2441:29;:::i;:::-;2431:39;;2520:2;2509:9;2505:18;2492:32;2567:5;2560:13;2553:21;2546:5;2543:32;2533:60;;2589:1;2586;2579:12;2533:60;2612:5;2602:15;;;2276:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;7457:184::-;7527:6;7580:2;7568:9;7559:7;7555:23;7551:32;7548:52;;;7596:1;7593;7586:12;7548:52;-1:-1:-1;7619:16:1;;7457:184;-1:-1:-1;7457:184:1:o;8306:127::-;8367:10;8362:3;8358:20;8355:1;8348:31;8398:4;8395:1;8388:15;8422:4;8419:1;8412:15;8438:128;8505:9;;;8526:11;;;8523:37;;;8540:18;;:::i;8571:125::-;8636:9;;;8657:10;;;8654:36;;;8670:18;;:::i;8701:168::-;8774:9;;;8805;;8822:15;;;8816:22;;8802:37;8792:71;;8843:18;;:::i;8874:217::-;8914:1;8940;8930:132;;8984:10;8979:3;8975:20;8972:1;8965:31;9019:4;9016:1;9009:15;9047:4;9044:1;9037:15;8930:132;-1:-1:-1;9076:9:1;;8874:217::o

Swarm Source

ipfs://33b2e39d931107c50d44c7ec433f0a51cae5531f795518eea4ce23b0fe6d03d7

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

$SAUDIPEPE is destined to become one of the biggest memecoins and join the elite league. Be part of the incredible journey and feel the power of the Saudis!

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.