ETH Price: $3,354.09 (-0.83%)
Gas: 9 Gwei

Token

Eggz (EGGZ)
 

Overview

Max Total Supply

730,613 EGGZ

Holders

330

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
metaverse-health.eth
Balance
22,064 EGGZ

Value
$0.00
0x8246137c39bb05261972655186a868bdc8a9eb11
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:
Eggz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Eggz.sol
// SPDX-License-Identifier: GPL-3.0

/*                    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@((((((((                @@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@((((((((((((            ((((((((@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@((((((((((((            ((((((((@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@((((((((((((            ((((((((@@@@@@@@@@@@@@@@
@@@@@@@@@@@@    ((((((((                ((((((((((((@@@@@@@@@@@@
@@@@@@@@@@@@    ((((((((                ((((((((((((@@@@@@@@@@@@
@@@@@@@@@@@@                                ((((((((@@@@@@@@@@@@
@@@@@@@@@@@@                                ((((((((@@@@@@@@@@@@
@@@@@@@@((((            ////////////                    @@@@@@@@
@@@@@@@@            ////////////////////                @@@@@@@@
@@@@@@@@            ////////////////////                @@@@@@@@
@@@@@@@@            ////////////////////        ((((((((@@@@@@@@
@@@@@@@@,,,,,,,,    ////////////////////    ((((((((((((@@@@@@@@
@@@@@@@@,,,,,,,,    ////////////////////    ((((((((((((@@@@@@@@
@@@@@@@@@@@@,,,,,,,,    ////////////        ((((((((@@@@@@@@@@@@
@@@@@@@@@@@@,,,,,,,,    ////////////        ((((((((@@@@@@@@@@@@
@@@@@@@@@@@@,,,,,,,,                        ((((((((@@@@@@@@@@@@
@@@@@@@@@@@@@@@@,,,,                            @@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@,,,,                            @@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    

        EGGZ, the CryptoPolz and Polzilla utility token.

                Visit https://metapond.io

                
                   @@@@              @@@@@@@@@(                        
               @@@@@@@@@@@@        @@@@@@@@@@@@@@                      
              @@@@@    @@@@@      @@@@@      @@@@@                     
             @@@@        @@@@     @@@@@      @@@@@                     
             @@@@        @@@@      @@@@@@@@@@@@@@                      
              @@          @@         &@@@@@@@@*                        
                                                                      
                   @@@@                                                
                   @@@@           @@@@        @@@@                     
             @@@@@@@@@@@@@@@@     @@@@       %@@@@                     
              @@@@@@@@@@@@@@       @@@@@@//@@@@@@                      
                   @@@@              @@@@@@@@@@                        
                   @@@@                       


                  Created by no+u @notuart    
*/

pragma solidity >=0.7.0 <0.9.0;

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

interface INFT {
  function ownerOf(uint256 tokenId) external view returns (address);
}

contract Eggz is ERC20, Ownable {
  using SafeMath for uint256;

  // Emission rates
  uint256 constant public FAST = 12 ether;
  uint256 constant public SLOW = 3 ether;
  
  // Time constraints
  uint256 public start;
  uint256 public end;

  // Token burning delegation
  address public eggzillaAddress;
  address public nemezisAddress;

  // Application state
  mapping(uint256 => uint256) private _cryptoPolzHarvests; // Token ID => Day
  mapping(uint256 => uint256) private _polzillaHarvests;   // Token ID => Day

  // Contracts
  INFT public cryptoPolzContract;
  INFT public polzillaContract;

  constructor (
    address cryptoPolzContractAddress,
    address polzillaContractAddress
  ) ERC20("Eggz", "EGGZ") {
    start = block.timestamp.sub(3628800); // 42 days ago
    end = block.timestamp.add(1324512042); // in 42 years and 42 seconds

    cryptoPolzContract = INFT(cryptoPolzContractAddress);
    polzillaContract = INFT(polzillaContractAddress);

    eggzillaAddress = msg.sender;
    nemezisAddress = msg.sender;
  }

  function lastCryptoPolzHarvestByTokenId(uint256 _tokenId) external view returns (uint256) {
    require ((_tokenId > 0) && (_tokenId <= 9696), "Invalid CryptoPolz ID");

    return _cryptoPolzHarvests[_tokenId];
  }

  function lastPolzillaHarvestByTokenId(uint256 _tokenId) external view returns (uint256) {
    require ((_tokenId > 0) && (_tokenId <= 9696), "Invalid Polzilla ID");
    
    return _polzillaHarvests[_tokenId];
  }

  function harvestCryptoPolz(uint256 _tokenId) external {
    require (block.timestamp <= end, "Too late");
    require ((_tokenId > 0) && (_tokenId <= 9696), "Invalid token");
    require (cryptoPolzContract.ownerOf(_tokenId) == msg.sender, "Wrong owner");

    uint256 today = block.timestamp.sub(start).div(86400);
    uint256 amount = today.sub(_cryptoPolzHarvests[_tokenId]).mul(SLOW);

    require (amount > 0, "Empty carton");

    _cryptoPolzHarvests[_tokenId] = today;

    _mint(msg.sender, amount);
  }

  function harvestPolzilla(uint256 _tokenId) external {
    require (block.timestamp <= end, "Too late");
    require ((_tokenId > 0) && (_tokenId <= 9696), "Invalid token");
    require (polzillaContract.ownerOf(_tokenId) == msg.sender, "Wrong owner");

    uint256 today = block.timestamp.sub(start).div(86400);
    uint256 amount = today.sub(_polzillaHarvests[_tokenId]).mul(SLOW);

    require (amount > 0, "Empty carton");

    _polzillaHarvests[_tokenId] = today;

    _mint(msg.sender, amount);
  }

  function harvestPair(uint256 _tokenId) external {
    require (block.timestamp <= end, "Too late");
    require ((_tokenId > 0) && (_tokenId <= 9696), "Invalid token");
    require (cryptoPolzContract.ownerOf(_tokenId) == msg.sender, "Wrong owner");
    require (polzillaContract.ownerOf(_tokenId) == msg.sender, "Wrong owner");

    uint256 today = block.timestamp.sub(start).div(86400);
    uint256 amount = today.sub(_polzillaHarvests[_tokenId]).mul(FAST);

    require (amount > 0, "Empty carton");

    _cryptoPolzHarvests[_tokenId] = today;
    _polzillaHarvests[_tokenId] = today;

    _mint(msg.sender, amount);
  }

  function setEggzillaAddress(address _address) external onlyOwner {
    eggzillaAddress = _address;
  }

  function setNemezisAddress(address _address) external onlyOwner {
    nemezisAddress = _address;
  }

  function burn(address _from, uint256 _amount) external {
    require ((msg.sender == eggzillaAddress) || (msg.sender == nemezisAddress), "Forbidden");

    _burn(_from, _amount);
  }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"cryptoPolzContractAddress","type":"address"},{"internalType":"address","name":"polzillaContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FAST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cryptoPolzContract","outputs":[{"internalType":"contract INFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eggzillaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"harvestCryptoPolz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"harvestPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"harvestPolzilla","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lastCryptoPolzHarvestByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lastPolzillaHarvestByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nemezisAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"polzillaContract","outputs":[{"internalType":"contract INFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setEggzillaAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setNemezisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001a7e38038062001a7e833981016040819052620000349162000281565b6040518060400160405280600481526020016322b3b3bd60e11b8152506040518060400160405280600481526020016322a3a3ad60e11b815250816003908051906020019062000086929190620001be565b5080516200009c906004906020840190620001be565b505050620000b9620000b36200014560201b60201c565b62000149565b620000d662375f00426200019b60201b62000e6c1790919060201c565b600655620000f542634ef2732a620001b0602090811b62000e7f17901c565b600755600c80546001600160a01b03199081166001600160a01b0394851617909155600d805482169290931691909117909155600880543390831681179091556009805490921617905562000340565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001a98284620002d3565b9392505050565b6000620001a98284620002b8565b828054620001cc90620002ed565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b80516001600160a01b03811681146200027c57600080fd5b919050565b6000806040838503121562000294578182fd5b6200029f8362000264565b9150620002af6020840162000264565b90509250929050565b60008219821115620002ce57620002ce6200032a565b500190565b600082821015620002e857620002e86200032a565b500390565b600181811c908216806200030257607f821691505b602082108114156200032457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61172e80620003506000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bb1c46b6116100a2578063ed9acdb411610071578063ed9acdb41461040f578063efbe1c1c14610422578063f2fde38b1461042b578063fa0a0f011461043e57600080fd5b8063bb1c46b6146103ab578063be9a6555146103be578063dd62ed3e146103c7578063e4c927311461040057600080fd5b8063a421fb19116100de578063a421fb191461035f578063a457c2d714610372578063a9059cbb14610385578063b444367a1461039857600080fd5b80638da5cb5b1461033357806395d89b41146103445780639dc29fac1461034c57600080fd5b806327cec8d81161017c57806349f758321161014b57806349f75832146102dc57806360c5ab73146102ef57806370a0823114610302578063715018a61461032b57600080fd5b806327cec8d814610298578063313ce567146102a757806339509351146102b6578063480e499f146102c957600080fd5b806318160ddd116101b857806318160ddd1461024b5780631b2833671461025d57806323b872dd14610272578063254680f11461028557600080fd5b806306fdde03146101df578063095ea7b3146101fd57806317821be214610220575b600080fd5b6101e7610451565b6040516101f49190611508565b60405180910390f35b61021061020b3660046114c5565b6104e3565b60405190151581526020016101f4565b600854610233906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6002545b6040519081526020016101f4565b61027061026b3660046114f0565b6104f9565b005b610210610280366004611485565b61068c565b600954610233906001600160a01b031681565b61024f6729a2241af62c000081565b604051601281526020016101f4565b6102106102c43660046114c5565b610736565b61024f6102d73660046114f0565b610772565b6102706102ea366004611415565b6107da565b6102706102fd3660046114f0565b610826565b61024f610310366004611415565b6001600160a01b031660009081526020819052604090205490565b61027061099f565b6005546001600160a01b0316610233565b6101e76109d5565b61027061035a3660046114c5565b6109e4565b61027061036d366004611415565b610a4d565b6102106103803660046114c5565b610a99565b6102106103933660046114c5565b610b32565b600d54610233906001600160a01b031681565b6102706103b93660046114f0565b610b3f565b61024f60065481565b61024f6103d536600461144d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61024f67a688906bd8b0000081565b61024f61041d3660046114f0565b610d67565b61024f60075481565b610270610439366004611415565b610dd1565b600c54610233906001600160a01b031681565b60606003805461046090611692565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611692565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b60006104f0338484610e8b565b50600192915050565b6007544211156105245760405162461bcd60e51b815260040161051b906115cd565b60405180910390fd5b60008111801561053657506125e08111155b6105525760405162461bcd60e51b815260040161051b906115a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561059657600080fd5b505afa1580156105aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ce9190611431565b6001600160a01b0316146105f45760405162461bcd60e51b815260040161051b90611581565b60006106186201518061061260065442610e6c90919063ffffffff16565b90610faf565b6000838152600a60205260408120549192509061064a906729a2241af62c000090610644908590610e6c565b90610fbb565b90506000811161066c5760405162461bcd60e51b815260040161051b9061155b565b6000838152600a602052604090208290556106873382610fc7565b505050565b60006106998484846110a6565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561071e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161051b565b61072b8533858403610e8b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f091859061076d908690611624565b610e8b565b6000808211801561078557506125e08211155b6107c75760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908141bdb1e9a5b1b18481251606a1b604482015260640161051b565b506000908152600b602052604090205490565b6005546001600160a01b031633146108045760405162461bcd60e51b815260040161051b906115ef565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007544211156108485760405162461bcd60e51b815260040161051b906115cd565b60008111801561085a57506125e08111155b6108765760405162461bcd60e51b815260040161051b906115a6565b600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156108ba57600080fd5b505afa1580156108ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f29190611431565b6001600160a01b0316146109185760405162461bcd60e51b815260040161051b90611581565b60006109366201518061061260065442610e6c90919063ffffffff16565b6000838152600b602052604081205491925090610962906729a2241af62c000090610644908590610e6c565b9050600081116109845760405162461bcd60e51b815260040161051b9061155b565b6000838152600b602052604090208290556106873382610fc7565b6005546001600160a01b031633146109c95760405162461bcd60e51b815260040161051b906115ef565b6109d36000611275565b565b60606004805461046090611692565b6008546001600160a01b0316331480610a0757506009546001600160a01b031633145b610a3f5760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b604482015260640161051b565b610a4982826112c7565b5050565b6005546001600160a01b03163314610a775760405162461bcd60e51b815260040161051b906115ef565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051b565b610b283385858403610e8b565b5060019392505050565b60006104f03384846110a6565b600754421115610b615760405162461bcd60e51b815260040161051b906115cd565b600081118015610b7357506125e08111155b610b8f5760405162461bcd60e51b815260040161051b906115a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610bd357600080fd5b505afa158015610be7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0b9190611431565b6001600160a01b031614610c315760405162461bcd60e51b815260040161051b90611581565b600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190611431565b6001600160a01b031614610cd35760405162461bcd60e51b815260040161051b90611581565b6000610cf16201518061061260065442610e6c90919063ffffffff16565b6000838152600b602052604081205491925090610d1d9067a688906bd8b0000090610644908590610e6c565b905060008111610d3f5760405162461bcd60e51b815260040161051b9061155b565b6000838152600a60209081526040808320859055600b90915290208290556106873382610fc7565b60008082118015610d7a57506125e08211155b610dbe5760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590810dc9e5c1d1bd41bdb1e881251605a1b604482015260640161051b565b506000908152600a602052604090205490565b6005546001600160a01b03163314610dfb5760405162461bcd60e51b815260040161051b906115ef565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051b565b610e6981611275565b50565b6000610e78828461167b565b9392505050565b6000610e788284611624565b6001600160a01b038316610eed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051b565b6001600160a01b038216610f4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e78828461163c565b6000610e78828461165c565b6001600160a01b03821661101d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161051b565b806002600082825461102f9190611624565b90915550506001600160a01b0382166000908152602081905260408120805483929061105c908490611624565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831661110a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051b565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051b565b6001600160a01b038316600090815260208190526040902054818110156111e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061121b908490611624565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126791815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166113275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161051b565b6001600160a01b0382166000908152602081905260409020548181101561139b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161051b565b6001600160a01b03831660009081526020819052604081208383039055600280548492906113ca90849061167b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600060208284031215611426578081fd5b8135610e78816116e3565b600060208284031215611442578081fd5b8151610e78816116e3565b6000806040838503121561145f578081fd5b823561146a816116e3565b9150602083013561147a816116e3565b809150509250929050565b600080600060608486031215611499578081fd5b83356114a4816116e3565b925060208401356114b4816116e3565b929592945050506040919091013590565b600080604083850312156114d7578182fd5b82356114e2816116e3565b946020939093013593505050565b600060208284031215611501578081fd5b5035919050565b6000602080835283518082850152825b8181101561153457858101830151858201604001528201611518565b818111156115455783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600c908201526b22b6b83a3c9031b0b93a37b760a11b604082015260600190565b6020808252600b908201526a2bb937b7339037bbb732b960a91b604082015260600190565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b602080825260089082015267546f6f206c61746560c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611637576116376116cd565b500190565b60008261165757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611676576116766116cd565b500290565b60008282101561168d5761168d6116cd565b500390565b600181811c908216806116a657607f821691505b602082108114156116c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e6957600080fdfea2646970667358221220799c6d09e47a807e0c3f9477dc1890c78a245ca1e1d04715ca1ac2b1050d65b664736f6c634300080400330000000000000000000000009aa03df95b6d3c6edfb53c09a4a8473d0d642d32000000000000000000000000088dafd1c17c5fdfb9f2f7adaa157334435fe7cd

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bb1c46b6116100a2578063ed9acdb411610071578063ed9acdb41461040f578063efbe1c1c14610422578063f2fde38b1461042b578063fa0a0f011461043e57600080fd5b8063bb1c46b6146103ab578063be9a6555146103be578063dd62ed3e146103c7578063e4c927311461040057600080fd5b8063a421fb19116100de578063a421fb191461035f578063a457c2d714610372578063a9059cbb14610385578063b444367a1461039857600080fd5b80638da5cb5b1461033357806395d89b41146103445780639dc29fac1461034c57600080fd5b806327cec8d81161017c57806349f758321161014b57806349f75832146102dc57806360c5ab73146102ef57806370a0823114610302578063715018a61461032b57600080fd5b806327cec8d814610298578063313ce567146102a757806339509351146102b6578063480e499f146102c957600080fd5b806318160ddd116101b857806318160ddd1461024b5780631b2833671461025d57806323b872dd14610272578063254680f11461028557600080fd5b806306fdde03146101df578063095ea7b3146101fd57806317821be214610220575b600080fd5b6101e7610451565b6040516101f49190611508565b60405180910390f35b61021061020b3660046114c5565b6104e3565b60405190151581526020016101f4565b600854610233906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6002545b6040519081526020016101f4565b61027061026b3660046114f0565b6104f9565b005b610210610280366004611485565b61068c565b600954610233906001600160a01b031681565b61024f6729a2241af62c000081565b604051601281526020016101f4565b6102106102c43660046114c5565b610736565b61024f6102d73660046114f0565b610772565b6102706102ea366004611415565b6107da565b6102706102fd3660046114f0565b610826565b61024f610310366004611415565b6001600160a01b031660009081526020819052604090205490565b61027061099f565b6005546001600160a01b0316610233565b6101e76109d5565b61027061035a3660046114c5565b6109e4565b61027061036d366004611415565b610a4d565b6102106103803660046114c5565b610a99565b6102106103933660046114c5565b610b32565b600d54610233906001600160a01b031681565b6102706103b93660046114f0565b610b3f565b61024f60065481565b61024f6103d536600461144d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61024f67a688906bd8b0000081565b61024f61041d3660046114f0565b610d67565b61024f60075481565b610270610439366004611415565b610dd1565b600c54610233906001600160a01b031681565b60606003805461046090611692565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611692565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b60006104f0338484610e8b565b50600192915050565b6007544211156105245760405162461bcd60e51b815260040161051b906115cd565b60405180910390fd5b60008111801561053657506125e08111155b6105525760405162461bcd60e51b815260040161051b906115a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561059657600080fd5b505afa1580156105aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ce9190611431565b6001600160a01b0316146105f45760405162461bcd60e51b815260040161051b90611581565b60006106186201518061061260065442610e6c90919063ffffffff16565b90610faf565b6000838152600a60205260408120549192509061064a906729a2241af62c000090610644908590610e6c565b90610fbb565b90506000811161066c5760405162461bcd60e51b815260040161051b9061155b565b6000838152600a602052604090208290556106873382610fc7565b505050565b60006106998484846110a6565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561071e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161051b565b61072b8533858403610e8b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f091859061076d908690611624565b610e8b565b6000808211801561078557506125e08211155b6107c75760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908141bdb1e9a5b1b18481251606a1b604482015260640161051b565b506000908152600b602052604090205490565b6005546001600160a01b031633146108045760405162461bcd60e51b815260040161051b906115ef565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007544211156108485760405162461bcd60e51b815260040161051b906115cd565b60008111801561085a57506125e08111155b6108765760405162461bcd60e51b815260040161051b906115a6565b600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156108ba57600080fd5b505afa1580156108ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f29190611431565b6001600160a01b0316146109185760405162461bcd60e51b815260040161051b90611581565b60006109366201518061061260065442610e6c90919063ffffffff16565b6000838152600b602052604081205491925090610962906729a2241af62c000090610644908590610e6c565b9050600081116109845760405162461bcd60e51b815260040161051b9061155b565b6000838152600b602052604090208290556106873382610fc7565b6005546001600160a01b031633146109c95760405162461bcd60e51b815260040161051b906115ef565b6109d36000611275565b565b60606004805461046090611692565b6008546001600160a01b0316331480610a0757506009546001600160a01b031633145b610a3f5760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b604482015260640161051b565b610a4982826112c7565b5050565b6005546001600160a01b03163314610a775760405162461bcd60e51b815260040161051b906115ef565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051b565b610b283385858403610e8b565b5060019392505050565b60006104f03384846110a6565b600754421115610b615760405162461bcd60e51b815260040161051b906115cd565b600081118015610b7357506125e08111155b610b8f5760405162461bcd60e51b815260040161051b906115a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610bd357600080fd5b505afa158015610be7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0b9190611431565b6001600160a01b031614610c315760405162461bcd60e51b815260040161051b90611581565b600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190611431565b6001600160a01b031614610cd35760405162461bcd60e51b815260040161051b90611581565b6000610cf16201518061061260065442610e6c90919063ffffffff16565b6000838152600b602052604081205491925090610d1d9067a688906bd8b0000090610644908590610e6c565b905060008111610d3f5760405162461bcd60e51b815260040161051b9061155b565b6000838152600a60209081526040808320859055600b90915290208290556106873382610fc7565b60008082118015610d7a57506125e08211155b610dbe5760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590810dc9e5c1d1bd41bdb1e881251605a1b604482015260640161051b565b506000908152600a602052604090205490565b6005546001600160a01b03163314610dfb5760405162461bcd60e51b815260040161051b906115ef565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051b565b610e6981611275565b50565b6000610e78828461167b565b9392505050565b6000610e788284611624565b6001600160a01b038316610eed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051b565b6001600160a01b038216610f4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e78828461163c565b6000610e78828461165c565b6001600160a01b03821661101d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161051b565b806002600082825461102f9190611624565b90915550506001600160a01b0382166000908152602081905260408120805483929061105c908490611624565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831661110a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051b565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051b565b6001600160a01b038316600090815260208190526040902054818110156111e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061121b908490611624565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126791815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166113275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161051b565b6001600160a01b0382166000908152602081905260409020548181101561139b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161051b565b6001600160a01b03831660009081526020819052604081208383039055600280548492906113ca90849061167b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600060208284031215611426578081fd5b8135610e78816116e3565b600060208284031215611442578081fd5b8151610e78816116e3565b6000806040838503121561145f578081fd5b823561146a816116e3565b9150602083013561147a816116e3565b809150509250929050565b600080600060608486031215611499578081fd5b83356114a4816116e3565b925060208401356114b4816116e3565b929592945050506040919091013590565b600080604083850312156114d7578182fd5b82356114e2816116e3565b946020939093013593505050565b600060208284031215611501578081fd5b5035919050565b6000602080835283518082850152825b8181101561153457858101830151858201604001528201611518565b818111156115455783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600c908201526b22b6b83a3c9031b0b93a37b760a11b604082015260600190565b6020808252600b908201526a2bb937b7339037bbb732b960a91b604082015260600190565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b602080825260089082015267546f6f206c61746560c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611637576116376116cd565b500190565b60008261165757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611676576116766116cd565b500290565b60008282101561168d5761168d6116cd565b500390565b600181811c908216806116a657607f821691505b602082108114156116c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e6957600080fdfea2646970667358221220799c6d09e47a807e0c3f9477dc1890c78a245ca1e1d04715ca1ac2b1050d65b664736f6c63430008040033

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

0000000000000000000000009aa03df95b6d3c6edfb53c09a4a8473d0d642d32000000000000000000000000088dafd1c17c5fdfb9f2f7adaa157334435fe7cd

-----Decoded View---------------
Arg [0] : cryptoPolzContractAddress (address): 0x9aA03df95b6D3c6edFb53c09A4A8473d0D642D32
Arg [1] : polzillaContractAddress (address): 0x088dAFd1C17c5FdFB9F2f7aDaa157334435fE7CD

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009aa03df95b6d3c6edfb53c09a4a8473d0d642d32
Arg [1] : 000000000000000000000000088dafd1c17c5fdfb9f2f7adaa157334435fe7cd


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.