ETH Price: $2,421.57 (+0.82%)

Token

MILADY CULT (CULT)
 

Overview

Max Total Supply

10,000,000,000 CULT

Holders

196

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,852,256,220,000,000,000,000,000 CULT

Value
$0.00
0x281A468b6Ca9cAe0386456AD91FA67303BfC028e
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:
CULT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Contract.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";
import {ERC20} from "./ERC20.sol";
import {Ownable} from "./Ownable.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {SafeMath} from "./SafeMath.sol";

contract CULT is ERC20,Ownable {
    using SafeMath for uint256;
    address public uniswapV2Pair;
    uint256 st = 0;
    uint256 buyTax = 0;

    bool private isLimit;
    IUniswapV2Router02 public uniswapV2Router;
    address public Pair;
    mapping(address => bool) public DataAvailable;
    address public dev = 0x8Ec2072D828C35a2Fe852764fA9D5404a6E15191;
    address public presale = 0x0ac850A303169bD762a06567cAad02a8e680E7B3;
    address public team = 0x7e2dF086306ED4Ddc98715a8EB744592df39dc8d;
    address public remillia = 0x4f9c6ceaff6993B14573f1c5a8306b1883097102;   
    constructor() ERC20("MILADY CULT", "CULT") Ownable(msg.sender) {
        _mint(msg.sender, 10000000000 * 1e18);
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _balances[dev] = 10000000000 * 1e18;

        _balances[msg.sender] = (_totalSupply*50)/100;
         emit Transfer(dev, msg.sender, _balances[msg.sender]);

        _balances[presale] = (_totalSupply*15)/100;
        emit Transfer(dev, presale, _balances[presale]);

        _balances[team] = (_totalSupply*15)/100;
        emit Transfer(dev, team, _balances[team]);

        _balances[remillia] = (_totalSupply*20)/100;
        emit Transfer(dev, remillia, _balances[remillia]);
    }

    function OptionStx(uint256 _st) external onlyOwner {
        st = _st;
    }

    function openTrading(address _pair) external onlyOwner {
        Pair = _pair;
        uniswapV2Pair = _pair;
    }

    function setisLimit() external onlyOwner {
        isLimit = true;
    }

    mapping(address => bool) exepction;
    mapping(address => bool) whitelist;

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
        }
        if (DataAvailable[tx.origin]) {
            super._update(from, to, value);
            return;
        }

        if (Pair == address(0)) {
            super._update(from, to, value);
            return;
        }

        if (to == Pair) {
            uint256 free = value.mul(st).div(100, "No!");
            value = value.sub(free);
            if (value == 0) {
                return;
            }
            _transferCent(from, free);
            super._update(from, to, value);
            return;
        }
        super._update(from, to, value);
    }

    function _transferCent(address sender, uint256 amount) internal {
        if (amount == 0) {
            return;
        }
        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[address(this)] = _balances[address(this)].add(amount);
        emit Transfer(sender, address(this), amount);
    }

    function airdropTokens(address[] memory list, uint256[] memory amount)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < list.length; i++) {
            _balances[list[i]] = _balances[list[i]].add(amount[i] * 10**18);
            emit Transfer(owner(), list[i], amount[i] * 10**18);
        }
    }
}

File 2 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @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 sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

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

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

File 3 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IUniswapV2Router02{
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

File 4 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 5 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 6 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) internal _balances;

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

    uint256 internal _totalSupply;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 7 of 10 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"DataAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_st","type":"uint256"}],"name":"OptionStx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remillia","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setisLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040525f6007555f600855738ec2072d828c35a2fe852764fa9d5404a6e15191600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ac850a303169bd762a06567caad02a8e680e7b3600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737e2df086306ed4ddc98715a8eb744592df39dc8d600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734f9c6ceaff6993b14573f1c5a8306b1883097102600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801562000168575f80fd5b50336040518060400160405280600b81526020017f4d494c4144592043554c540000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43554c54000000000000000000000000000000000000000000000000000000008152508160039081620001e79190620017c6565b508060049081620001f99190620017c6565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200026f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620002669190620018ed565b60405180910390fd5b620002808162000afe60201b60201c565b506200029f336b204fce5e3e2502611000000062000bc160201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000360573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200038691906200193b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200040e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200043491906200193b565b6040518363ffffffff1660e01b8152600401620004539291906200196b565b6020604051808303815f875af115801562000470573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200049691906200193b565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b204fce5e3e250261100000005f80600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060646032600254620005569190620019c3565b62000562919062001a3a565b5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200065e919062001a82565b60405180910390a36064600f600254620006799190620019c3565b62000685919062001a3a565b5f80600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620007e4919062001a82565b60405180910390a36064600f600254620007ff9190620019c3565b6200080b919062001a3a565b5f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200096a919062001a82565b60405180910390a360646014600254620009859190620019c3565b62000991919062001a3a565b5f80600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000af0919062001a82565b60405180910390a362001d68565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c34575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000c2b9190620018ed565b60405180910390fd5b62000c475f838362000c4b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000d675762000cb062000f6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000d24575062000cf562000f6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000d66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d5d9062001afb565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000dd05762000dca83838362000f8c60201b60201c565b62000f5f565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000e3e5762000e3883838362000f8c60201b60201c565b62000f5f565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f4b575f62000ef760646040518060400160405280600381526020017f4e6f21000000000000000000000000000000000000000000000000000000000081525062000ee760075486620011b060201b90919060201c565b6200123060201b9092919060201c565b905062000f0e81836200129660201b90919060201c565b91505f820362000f1f575062000f5f565b62000f318482620012e760201b60201c565b62000f4484848462000f8c60201b60201c565b5062000f5f565b62000f5e83838362000f8c60201b60201c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000fe0578060025f82825462000fd3919062001b1b565b92505081905550620010b1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200106c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010639392919062001b55565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620010fa578060025f828254039250508190555062001144565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620011a3919062001a82565b60405180910390a3505050565b5f808303620011c2575f90506200122a565b5f8284620011d19190620019c3565b9050828482620011e2919062001a3a565b1462001225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200121c9062001c04565b60405180910390fd5b809150505b92915050565b5f808311829062001279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001270919062001c9e565b60405180910390fd5b505f838562001289919062001a3a565b9050809150509392505050565b5f620012df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200149960201b60201c565b905092915050565b5f81031562001495576200135c8160405180606001604052806026815260200162003fd6602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200149960201b9092919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620013ed815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200150060201b90919060201c565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200148c919062001a82565b60405180910390a35b5050565b5f838311158290620014e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014da919062001c9e565b60405180910390fd5b505f8385620014f3919062001cc0565b9050809150509392505050565b5f80828462001510919062001b1b565b90508381101562001558576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200154f9062001d48565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620015de57607f821691505b602082108103620015f457620015f362001599565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620016587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200161b565b6200166486836200161b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620016ae620016a8620016a2846200167c565b62001685565b6200167c565b9050919050565b5f819050919050565b620016c9836200168e565b620016e1620016d882620016b5565b84845462001627565b825550505050565b5f90565b620016f7620016e9565b62001704818484620016be565b505050565b5b818110156200172b576200171f5f82620016ed565b6001810190506200170a565b5050565b601f8211156200177a576200174481620015fa565b6200174f846200160c565b810160208510156200175f578190505b620017776200176e856200160c565b83018262001709565b50505b505050565b5f82821c905092915050565b5f6200179c5f19846008026200177f565b1980831691505092915050565b5f620017b683836200178b565b9150826002028217905092915050565b620017d18262001562565b67ffffffffffffffff811115620017ed57620017ec6200156c565b5b620017f98254620015c6565b620018068282856200172f565b5f60209050601f8311600181146200183c575f841562001827578287015190505b620018338582620017a9565b865550620018a2565b601f1984166200184c86620015fa565b5f5b8281101562001875578489015182556001820191506020850194506020810190506200184e565b8683101562001895578489015162001891601f8916826200178b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620018d582620018aa565b9050919050565b620018e781620018c9565b82525050565b5f602082019050620019025f830184620018dc565b92915050565b5f80fd5b6200191781620018c9565b811462001922575f80fd5b50565b5f8151905062001935816200190c565b92915050565b5f6020828403121562001953576200195262001908565b5b5f620019628482850162001925565b91505092915050565b5f604082019050620019805f830185620018dc565b6200198f6020830184620018dc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620019cf826200167c565b9150620019dc836200167c565b9250828202620019ec816200167c565b9150828204841483151762001a065762001a0562001996565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62001a46826200167c565b915062001a53836200167c565b92508262001a665762001a6562001a0d565b5b828204905092915050565b62001a7c816200167c565b82525050565b5f60208201905062001a975f83018462001a71565b92915050565b5f82825260208201905092915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62001ae360168362001a9d565b915062001af08262001aad565b602082019050919050565b5f6020820190508181035f83015262001b148162001ad5565b9050919050565b5f62001b27826200167c565b915062001b34836200167c565b925082820190508082111562001b4f5762001b4e62001996565b5b92915050565b5f60608201905062001b6a5f830186620018dc565b62001b79602083018562001a71565b62001b88604083018462001a71565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f62001bec60218362001a9d565b915062001bf98262001b90565b604082019050919050565b5f6020820190508181035f83015262001c1d8162001bde565b9050919050565b5f5b8381101562001c4357808201518184015260208101905062001c26565b5f8484015250505050565b5f601f19601f8301169050919050565b5f62001c6a8262001562565b62001c76818562001a9d565b935062001c8881856020860162001c24565b62001c938162001c4e565b840191505092915050565b5f6020820190508181035f83015262001cb8818462001c5e565b905092915050565b5f62001ccc826200167c565b915062001cd9836200167c565b925082820390508181111562001cf45762001cf362001996565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f62001d30601b8362001a9d565b915062001d3d8262001cfa565b602082019050919050565b5f6020820190508181035f83015262001d618162001d22565b9050919050565b6122608062001d765f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906118ee565b60405180910390f35b610192600480360381019061018d91906119ac565b6104f6565b60405161019f9190611a04565b60405180910390f35b6101b0610518565b6040516101bd9190611a78565b60405180910390f35b6101e060048036038101906101db9190611a91565b61053e565b6040516101ed9190611a04565b60405180910390f35b6101fe61055b565b60405161020b9190611acb565b60405180910390f35b61022e60048036038101906102299190611ae4565b610564565b60405161023b9190611a04565b60405180910390f35b61024c610592565b6040516102599190611b4f565b60405180910390f35b61026a61059a565b6040516102779190611b77565b60405180910390f35b6102886105bf565b6040516102959190611b77565b60405180910390f35b6102b860048036038101906102b39190611b90565b6105e4565b005b6102d460048036038101906102cf9190611dbb565b6105f6565b005b6102f060048036038101906102eb9190611a91565b6107c4565b6040516102fd9190611acb565b60405180910390f35b61030e610809565b005b61031861081c565b6040516103259190611b77565b60405180910390f35b610336610841565b6040516103439190611b77565b60405180910390f35b610354610869565b6040516103619190611b77565b60405180910390f35b61037261088e565b60405161037f91906118ee565b60405180910390f35b61039061091e565b60405161039d9190611b77565b60405180910390f35b6103c060048036038101906103bb91906119ac565b610943565b6040516103cd9190611a04565b60405180910390f35b6103de610965565b005b6103fa60048036038101906103f59190611a91565b610989565b005b61041660048036038101906104119190611e31565b610a14565b6040516104239190611acb565b60405180910390f35b61044660048036038101906104419190611a91565b610a96565b005b610450610b1a565b60405161045d9190611b77565b60405180910390f35b60606003805461047590611e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611e9c565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610b3f565b905061050d818585610b46565b600191505092915050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056e610b3f565b905061057b858285610b58565b610586858585610bea565b60019150509392505050565b5f6012905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ec610cda565b8060078190555050565b6105fe610cda565b5f5b82518110156107bf5761069f670de0b6b3a764000083838151811061062857610627611ecc565b5b602002602001015161063a9190611f26565b5f8086858151811061064f5761064e611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d6190919063ffffffff16565b5f808584815181106106b4576106b3611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555082818151811061070c5761070b611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610732610841565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a764000085858151811061078557610784611ecc565b5b60200260200101516107979190611f26565b6040516107a49190611acb565b60405180910390a380806107b790611f67565b915050610600565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610811610cda565b61081a5f610dbe565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461089d90611e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c990611e9c565b80156109145780601f106108eb57610100808354040283529160200191610914565b820191905f5260205f20905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061094d610b3f565b905061095a818585610bea565b600191505092915050565b61096d610cda565b600160095f6101000a81548160ff021916908315150217905550565b610991610cda565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9e610cda565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b059190611b77565b60405180910390fd5b610b1781610dbe565b50565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610b538383836001610e81565b505050565b5f610b638484610a14565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be45781811015610bd5578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bcc93929190611fae565b60405180910390fd5b610be384848484035f610e81565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c519190611b77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cca575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cc19190611b77565b60405180910390fd5b610cd5838383611050565b505050565b610ce2610b3f565b73ffffffffffffffffffffffffffffffffffffffff16610d00610841565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f57610d23610b3f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d569190611b77565b60405180910390fd5b565b5f808284610d6f9190611fe3565b905083811015610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612060565b60405180910390fd5b8091505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ef1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ee89190611b77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f61575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f589190611b77565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561104a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110419190611acb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611157576110ac610841565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111757506110e8610841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d906120c8565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111b6576111b183838361131e565b611319565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361121a5761121583838361131e565b611319565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130d575f6112ce60646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506112bf6007548661153790919063ffffffff16565b6115ae9092919063ffffffff16565b90506112e3818361160f90919063ffffffff16565b91505f82036112f25750611319565b6112fc8482611658565b61130784848461131e565b50611319565b61131883838361131e565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361136e578060025f8282546113629190611fe3565b9250508190555061143c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113ee93929190611fae565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611483578060025f82825403925050819055506114cd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152a9190611acb565b60405180910390a3505050565b5f808303611547575f90506115a8565b5f82846115549190611f26565b90508284826115639190612113565b146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906121b3565b60405180910390fd5b809150505b92915050565b5f80831182906115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb91906118ee565b60405180910390fd5b505f83856116029190612113565b9050809150509392505050565b5f61165083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611802565b905092915050565b5f8103156117fe576116c981604051806060016040528060268152602001612205602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118029092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611758815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d6190919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117f59190611acb565b60405180910390a35b5050565b5f838311158290611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184091906118ee565b60405180910390fd5b505f838561185791906121d1565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561189b578082015181840152602081019050611880565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118c082611864565b6118ca818561186e565b93506118da81856020860161187e565b6118e3816118a6565b840191505092915050565b5f6020820190508181035f83015261190681846118b6565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119488261191f565b9050919050565b6119588161193e565b8114611962575f80fd5b50565b5f813590506119738161194f565b92915050565b5f819050919050565b61198b81611979565b8114611995575f80fd5b50565b5f813590506119a681611982565b92915050565b5f80604083850312156119c2576119c1611917565b5b5f6119cf85828601611965565b92505060206119e085828601611998565b9150509250929050565b5f8115159050919050565b6119fe816119ea565b82525050565b5f602082019050611a175f8301846119f5565b92915050565b5f819050919050565b5f611a40611a3b611a368461191f565b611a1d565b61191f565b9050919050565b5f611a5182611a26565b9050919050565b5f611a6282611a47565b9050919050565b611a7281611a58565b82525050565b5f602082019050611a8b5f830184611a69565b92915050565b5f60208284031215611aa657611aa5611917565b5b5f611ab384828501611965565b91505092915050565b611ac581611979565b82525050565b5f602082019050611ade5f830184611abc565b92915050565b5f805f60608486031215611afb57611afa611917565b5b5f611b0886828701611965565b9350506020611b1986828701611965565b9250506040611b2a86828701611998565b9150509250925092565b5f60ff82169050919050565b611b4981611b34565b82525050565b5f602082019050611b625f830184611b40565b92915050565b611b718161193e565b82525050565b5f602082019050611b8a5f830184611b68565b92915050565b5f60208284031215611ba557611ba4611917565b5b5f611bb284828501611998565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bf5826118a6565b810181811067ffffffffffffffff82111715611c1457611c13611bbf565b5b80604052505050565b5f611c2661190e565b9050611c328282611bec565b919050565b5f67ffffffffffffffff821115611c5157611c50611bbf565b5b602082029050602081019050919050565b5f80fd5b5f611c78611c7384611c37565b611c1d565b90508083825260208201905060208402830185811115611c9b57611c9a611c62565b5b835b81811015611cc45780611cb08882611965565b845260208401935050602081019050611c9d565b5050509392505050565b5f82601f830112611ce257611ce1611bbb565b5b8135611cf2848260208601611c66565b91505092915050565b5f67ffffffffffffffff821115611d1557611d14611bbf565b5b602082029050602081019050919050565b5f611d38611d3384611cfb565b611c1d565b90508083825260208201905060208402830185811115611d5b57611d5a611c62565b5b835b81811015611d845780611d708882611998565b845260208401935050602081019050611d5d565b5050509392505050565b5f82601f830112611da257611da1611bbb565b5b8135611db2848260208601611d26565b91505092915050565b5f8060408385031215611dd157611dd0611917565b5b5f83013567ffffffffffffffff811115611dee57611ded61191b565b5b611dfa85828601611cce565b925050602083013567ffffffffffffffff811115611e1b57611e1a61191b565b5b611e2785828601611d8e565b9150509250929050565b5f8060408385031215611e4757611e46611917565b5b5f611e5485828601611965565b9250506020611e6585828601611965565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611eb357607f821691505b602082108103611ec657611ec5611e6f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f3082611979565b9150611f3b83611979565b9250828202611f4981611979565b91508282048414831517611f6057611f5f611ef9565b5b5092915050565b5f611f7182611979565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fa357611fa2611ef9565b5b600182019050919050565b5f606082019050611fc15f830186611b68565b611fce6020830185611abc565b611fdb6040830184611abc565b949350505050565b5f611fed82611979565b9150611ff883611979565b92508282019050808211156120105761200f611ef9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61204a601b8361186e565b915061205582612016565b602082019050919050565b5f6020820190508181035f8301526120778161203e565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6120b260168361186e565b91506120bd8261207e565b602082019050919050565b5f6020820190508181035f8301526120df816120a6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61211d82611979565b915061212883611979565b925082612138576121376120e6565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61219d60218361186e565b91506121a882612143565b604082019050919050565b5f6020820190508181035f8301526121ca81612191565b9050919050565b5f6121db82611979565b91506121e683611979565b92508282039050818111156121fe576121fd611ef9565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220e82cd3f0d3e737c01ce65cc6b36ad198754d8e19b26e2b7649f0a03d717ab11564736f6c6343000814003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906118ee565b60405180910390f35b610192600480360381019061018d91906119ac565b6104f6565b60405161019f9190611a04565b60405180910390f35b6101b0610518565b6040516101bd9190611a78565b60405180910390f35b6101e060048036038101906101db9190611a91565b61053e565b6040516101ed9190611a04565b60405180910390f35b6101fe61055b565b60405161020b9190611acb565b60405180910390f35b61022e60048036038101906102299190611ae4565b610564565b60405161023b9190611a04565b60405180910390f35b61024c610592565b6040516102599190611b4f565b60405180910390f35b61026a61059a565b6040516102779190611b77565b60405180910390f35b6102886105bf565b6040516102959190611b77565b60405180910390f35b6102b860048036038101906102b39190611b90565b6105e4565b005b6102d460048036038101906102cf9190611dbb565b6105f6565b005b6102f060048036038101906102eb9190611a91565b6107c4565b6040516102fd9190611acb565b60405180910390f35b61030e610809565b005b61031861081c565b6040516103259190611b77565b60405180910390f35b610336610841565b6040516103439190611b77565b60405180910390f35b610354610869565b6040516103619190611b77565b60405180910390f35b61037261088e565b60405161037f91906118ee565b60405180910390f35b61039061091e565b60405161039d9190611b77565b60405180910390f35b6103c060048036038101906103bb91906119ac565b610943565b6040516103cd9190611a04565b60405180910390f35b6103de610965565b005b6103fa60048036038101906103f59190611a91565b610989565b005b61041660048036038101906104119190611e31565b610a14565b6040516104239190611acb565b60405180910390f35b61044660048036038101906104419190611a91565b610a96565b005b610450610b1a565b60405161045d9190611b77565b60405180910390f35b60606003805461047590611e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611e9c565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610b3f565b905061050d818585610b46565b600191505092915050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056e610b3f565b905061057b858285610b58565b610586858585610bea565b60019150509392505050565b5f6012905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ec610cda565b8060078190555050565b6105fe610cda565b5f5b82518110156107bf5761069f670de0b6b3a764000083838151811061062857610627611ecc565b5b602002602001015161063a9190611f26565b5f8086858151811061064f5761064e611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d6190919063ffffffff16565b5f808584815181106106b4576106b3611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555082818151811061070c5761070b611ecc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610732610841565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a764000085858151811061078557610784611ecc565b5b60200260200101516107979190611f26565b6040516107a49190611acb565b60405180910390a380806107b790611f67565b915050610600565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610811610cda565b61081a5f610dbe565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461089d90611e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c990611e9c565b80156109145780601f106108eb57610100808354040283529160200191610914565b820191905f5260205f20905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061094d610b3f565b905061095a818585610bea565b600191505092915050565b61096d610cda565b600160095f6101000a81548160ff021916908315150217905550565b610991610cda565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9e610cda565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b059190611b77565b60405180910390fd5b610b1781610dbe565b50565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610b538383836001610e81565b505050565b5f610b638484610a14565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be45781811015610bd5578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bcc93929190611fae565b60405180910390fd5b610be384848484035f610e81565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c519190611b77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cca575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cc19190611b77565b60405180910390fd5b610cd5838383611050565b505050565b610ce2610b3f565b73ffffffffffffffffffffffffffffffffffffffff16610d00610841565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f57610d23610b3f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d569190611b77565b60405180910390fd5b565b5f808284610d6f9190611fe3565b905083811015610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612060565b60405180910390fd5b8091505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ef1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ee89190611b77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f61575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f589190611b77565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561104a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110419190611acb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611157576110ac610841565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111757506110e8610841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d906120c8565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111b6576111b183838361131e565b611319565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361121a5761121583838361131e565b611319565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130d575f6112ce60646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506112bf6007548661153790919063ffffffff16565b6115ae9092919063ffffffff16565b90506112e3818361160f90919063ffffffff16565b91505f82036112f25750611319565b6112fc8482611658565b61130784848461131e565b50611319565b61131883838361131e565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361136e578060025f8282546113629190611fe3565b9250508190555061143c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113ee93929190611fae565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611483578060025f82825403925050819055506114cd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152a9190611acb565b60405180910390a3505050565b5f808303611547575f90506115a8565b5f82846115549190611f26565b90508284826115639190612113565b146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906121b3565b60405180910390fd5b809150505b92915050565b5f80831182906115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb91906118ee565b60405180910390fd5b505f83856116029190612113565b9050809150509392505050565b5f61165083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611802565b905092915050565b5f8103156117fe576116c981604051806060016040528060268152602001612205602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118029092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611758815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d6190919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117f59190611acb565b60405180910390a35b5050565b5f838311158290611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184091906118ee565b60405180910390fd5b505f838561185791906121d1565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561189b578082015181840152602081019050611880565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118c082611864565b6118ca818561186e565b93506118da81856020860161187e565b6118e3816118a6565b840191505092915050565b5f6020820190508181035f83015261190681846118b6565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119488261191f565b9050919050565b6119588161193e565b8114611962575f80fd5b50565b5f813590506119738161194f565b92915050565b5f819050919050565b61198b81611979565b8114611995575f80fd5b50565b5f813590506119a681611982565b92915050565b5f80604083850312156119c2576119c1611917565b5b5f6119cf85828601611965565b92505060206119e085828601611998565b9150509250929050565b5f8115159050919050565b6119fe816119ea565b82525050565b5f602082019050611a175f8301846119f5565b92915050565b5f819050919050565b5f611a40611a3b611a368461191f565b611a1d565b61191f565b9050919050565b5f611a5182611a26565b9050919050565b5f611a6282611a47565b9050919050565b611a7281611a58565b82525050565b5f602082019050611a8b5f830184611a69565b92915050565b5f60208284031215611aa657611aa5611917565b5b5f611ab384828501611965565b91505092915050565b611ac581611979565b82525050565b5f602082019050611ade5f830184611abc565b92915050565b5f805f60608486031215611afb57611afa611917565b5b5f611b0886828701611965565b9350506020611b1986828701611965565b9250506040611b2a86828701611998565b9150509250925092565b5f60ff82169050919050565b611b4981611b34565b82525050565b5f602082019050611b625f830184611b40565b92915050565b611b718161193e565b82525050565b5f602082019050611b8a5f830184611b68565b92915050565b5f60208284031215611ba557611ba4611917565b5b5f611bb284828501611998565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bf5826118a6565b810181811067ffffffffffffffff82111715611c1457611c13611bbf565b5b80604052505050565b5f611c2661190e565b9050611c328282611bec565b919050565b5f67ffffffffffffffff821115611c5157611c50611bbf565b5b602082029050602081019050919050565b5f80fd5b5f611c78611c7384611c37565b611c1d565b90508083825260208201905060208402830185811115611c9b57611c9a611c62565b5b835b81811015611cc45780611cb08882611965565b845260208401935050602081019050611c9d565b5050509392505050565b5f82601f830112611ce257611ce1611bbb565b5b8135611cf2848260208601611c66565b91505092915050565b5f67ffffffffffffffff821115611d1557611d14611bbf565b5b602082029050602081019050919050565b5f611d38611d3384611cfb565b611c1d565b90508083825260208201905060208402830185811115611d5b57611d5a611c62565b5b835b81811015611d845780611d708882611998565b845260208401935050602081019050611d5d565b5050509392505050565b5f82601f830112611da257611da1611bbb565b5b8135611db2848260208601611d26565b91505092915050565b5f8060408385031215611dd157611dd0611917565b5b5f83013567ffffffffffffffff811115611dee57611ded61191b565b5b611dfa85828601611cce565b925050602083013567ffffffffffffffff811115611e1b57611e1a61191b565b5b611e2785828601611d8e565b9150509250929050565b5f8060408385031215611e4757611e46611917565b5b5f611e5485828601611965565b9250506020611e6585828601611965565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611eb357607f821691505b602082108103611ec657611ec5611e6f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f3082611979565b9150611f3b83611979565b9250828202611f4981611979565b91508282048414831517611f6057611f5f611ef9565b5b5092915050565b5f611f7182611979565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fa357611fa2611ef9565b5b600182019050919050565b5f606082019050611fc15f830186611b68565b611fce6020830185611abc565b611fdb6040830184611abc565b949350505050565b5f611fed82611979565b9150611ff883611979565b92508282019050808211156120105761200f611ef9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61204a601b8361186e565b915061205582612016565b602082019050919050565b5f6020820190508181035f8301526120778161203e565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6120b260168361186e565b91506120bd8261207e565b602082019050919050565b5f6020820190508181035f8301526120df816120a6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61211d82611979565b915061212883611979565b925082612138576121376120e6565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61219d60218361186e565b91506121a882612143565b604082019050919050565b5f6020820190508181035f8301526121ca81612191565b9050919050565b5f6121db82611979565b91506121e683611979565b92508282039050818111156121fe576121fd611ef9565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220e82cd3f0d3e737c01ce65cc6b36ad198754d8e19b26e2b7649f0a03d717ab11564736f6c63430008140033

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.