Contract 0xc69f25ddfffef1dda1bfb69b2338245743a0e7d3

 
 
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0x543ba837af587d0354a6c5d522d947b0ef18ba81d5434cd20998b52ae6205679Transfer331311182022-09-15 9:26:42263 days 4 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.002092819088 43.845200051
0xf47234e3908b7661f2eb98bc2f5c65fb6f02a1c5196e6f3a28fbe8beb244d098Approve326077802022-09-02 18:48:04275 days 19 hrs ago0x9b016b92f6a9cbc05dc9da5105154456b1f2104d IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.00141579 30.000000012
0xe823c34dd86577961a446e67a04fc3ef23e3793af41acae24e2068566f5f3ce4Approve326076922022-09-02 18:45:04275 days 19 hrs ago0x4f0e2747a8fc1ee1bcc39db371dd75d4444f649a IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.00141909351 30.07
0xf4ce4cd891c3c502a26e2179418ad3a78ac50019c057db6dfe9b09c3e144a497Approve320869822022-08-19 21:49:11289 days 16 hrs ago0x4658f26eeaa68a4f7d4657d0b1016633bb52b402 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.002548269126 53.996760668
0x4a5245fda9ab0ede73afec5e77a7636d447ecb5bdeeb8360c547509ffc8a3479Approve320866092022-08-19 21:36:07289 days 16 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.001807260815 38.295103418
0xf7f100d8a34b85bed2a518c3d0e3528fde93dd55520fee2302f5fd2a168dd6dbTransfer320865892022-08-19 21:35:23289 days 16 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.001804771258 34.355654806
0x7e13b0ac47be595ca05117b2ec379d50630c4ccc6ea5ab059cd999f43083d0dbApprove320864522022-08-19 21:30:41289 days 16 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.002081673793 44.109800041
0x0c3c08cf6bcd32049f9f1e660977b9b21eed7cad3a1372e495a121d7a463478dTransfer320862442022-08-19 21:23:33289 days 17 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  0xc69f25ddfffef1dda1bfb69b2338245743a0e7d30 MATIC0.002115666341 40.458700016
0x2f93102943bb6f8eaac1f859d4c9ae1334d1e8eb994ef1cba7defc34bacd29a80x60806040320862162022-08-19 21:22:37289 days 17 hrs ago0x812ed7983da1db1b4eef38784d7b39a6bfd40530 IN  Create: PUMApassToken0 MATIC0.051548389648 40.875800016
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PUMApassToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at polygonscan.com on 2022-08-19
*/

// SPDX-License-Identifier: MIT


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


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: @openzeppelin/contracts/token/ERC20/extensions/PUMApass.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface PUMApass 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 (uint256);
}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, PUMApass {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @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 (uint256) {
        return _decimals;
    }

    /**
     * @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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


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


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

        emit Transfer(sender, recipient, amount);
    }



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

}





pragma solidity ^0.8.0;




contract PUMApassToken is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"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"}]

608060405260405162001b3e38038062001b3e8339818101604052810190620000299190620002f8565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b5081600a6200006f9190620004b0565b836200007c9190620005ed565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620003d1565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b50505050505050620007f4565b8280546200019f90620006d6565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b600062000258620002528462000422565b620003ee565b9050828152602081018484840111156200027157600080fd5b6200027e848285620006a0565b509392505050565b6000815190506200029781620007a6565b92915050565b600081519050620002ae81620007c0565b92915050565b600082601f830112620002c657600080fd5b8151620002d884826020860162000241565b91505092915050565b600081519050620002f281620007da565b92915050565b60008060008060008060c087890312156200031257600080fd5b600087015167ffffffffffffffff8111156200032d57600080fd5b6200033b89828a01620002b4565b965050602087015167ffffffffffffffff8111156200035957600080fd5b6200036789828a01620002b4565b95505060406200037a89828a01620002e1565b94505060606200038d89828a01620002e1565b9350506080620003a089828a0162000286565b92505060a0620003b389828a016200029d565b9150509295509295509295565b620003cb8162000696565b82525050565b6000602082019050620003e86000830184620003c0565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200041857620004176200076a565b5b8060405250919050565b600067ffffffffffffffff82111562000440576200043f6200076a565b5b601f19601f8301169050602081019050919050565b6000808291508390505b6001851115620004a7578086048111156200047f576200047e6200070c565b5b60018516156200048f5780820291505b80810290506200049f8562000799565b94506200045f565b94509492505050565b6000620004bd8262000696565b9150620004ca8362000696565b9250620004f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000501565b905092915050565b600082620005135760019050620005e6565b81620005235760009050620005e6565b81600181146200053c576002811462000547576200057d565b6001915050620005e6565b60ff8411156200055c576200055b6200070c565b5b8360020a9150848211156200057657620005756200070c565b5b50620005e6565b5060208310610133831016604e8410600b8410161715620005b75782820a905083811115620005b157620005b06200070c565b5b620005e6565b620005c6848484600162000455565b92509050818404811115620005e057620005df6200070c565b5b81810290505b9392505050565b6000620005fa8262000696565b9150620006078362000696565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200064357620006426200070c565b5b828202905092915050565b60006200065b8262000676565b9050919050565b60006200066f8262000676565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006c0578082015181840152602081019050620006a3565b83811115620006d0576000848401525b50505050565b60006002820490506001821680620006ef57607f821691505b602082108114156200070657620007056200073b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620007b1816200064e565b8114620007bd57600080fd5b50565b620007cb8162000662565b8114620007d757600080fd5b50565b620007e58162000696565b8114620007f157600080fd5b50565b61133a80620008046000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea2646970667358221220018ea4b3ec1e58ab09d3ad675b0277ea74f83519bdb19ce858b3e5b5fd52493664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000812ed7983da1db1b4eef38784d7b39a6bfd40530000000000000000000000000be3341952bd87a7c589a90c32e3554d94ad10c0e000000000000000000000000000000000000000000000000000000000000000e50554d41204e6974726f50617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000850554d4170617373000000000000000000000000000000000000000000000000

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000812ed7983da1db1b4eef38784d7b39a6bfd40530000000000000000000000000be3341952bd87a7c589a90c32e3554d94ad10c0e000000000000000000000000000000000000000000000000000000000000000e50554d41204e6974726f50617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000850554d4170617373000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PUMA NitroPass
Arg [1] : symbol_ (string): PUMApass
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 10000000000000000
Arg [4] : tokenOwner_ (address): 0x812ed7983da1db1b4eef38784d7b39a6bfd40530
Arg [5] : feeReceiver_ (address): 0xbe3341952bd87a7c589a90c32e3554d94ad10c0e

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [4] : 000000000000000000000000812ed7983da1db1b4eef38784d7b39a6bfd40530
Arg [5] : 000000000000000000000000be3341952bd87a7c589a90c32e3554d94ad10c0e
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 50554d41204e6974726f50617373000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 50554d4170617373000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

10828:382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5111:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7287:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6240:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7938:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6073:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8769:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6411:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5330:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9487:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6751:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6989:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5111:100;5165:13;5198:5;5191:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5111:100;:::o;7287:169::-;7370:4;7387:39;7396:12;:10;:12::i;:::-;7410:7;7419:6;7387:8;:39::i;:::-;7444:4;7437:11;;7287:169;;;;:::o;6240:108::-;6301:7;6328:12;;6321:19;;6240:108;:::o;7938:422::-;8044:4;8061:36;8071:6;8079:9;8090:6;8061:9;:36::i;:::-;8110:24;8137:11;:19;8149:6;8137:19;;;;;;;;;;;;;;;:33;8157:12;:10;:12::i;:::-;8137:33;;;;;;;;;;;;;;;;8110:60;;8209:6;8189:16;:26;;8181:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8271:57;8280:6;8288:12;:10;:12::i;:::-;8321:6;8302:16;:25;;;;:::i;:::-;8271:8;:57::i;:::-;8348:4;8341:11;;;7938:422;;;;;:::o;6073:102::-;6131:7;6158:9;;6151:16;;6073:102;:::o;8769:215::-;8857:4;8874:80;8883:12;:10;:12::i;:::-;8897:7;8943:10;8906:11;:25;8918:12;:10;:12::i;:::-;8906:25;;;;;;;;;;;;;;;:34;8932:7;8906:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8874:8;:80::i;:::-;8972:4;8965:11;;8769:215;;;;:::o;6411:127::-;6485:7;6512:9;:18;6522:7;6512:18;;;;;;;;;;;;;;;;6505:25;;6411:127;;;:::o;5330:104::-;5386:13;5419:7;5412:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5330:104;:::o;9487:377::-;9580:4;9597:24;9624:11;:25;9636:12;:10;:12::i;:::-;9624:25;;;;;;;;;;;;;;;:34;9650:7;9624:34;;;;;;;;;;;;;;;;9597:61;;9697:15;9677:16;:35;;9669:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9765:67;9774:12;:10;:12::i;:::-;9788:7;9816:15;9797:16;:34;;;;:::i;:::-;9765:8;:67::i;:::-;9852:4;9845:11;;;9487:377;;;;:::o;6751:175::-;6837:4;6854:42;6864:12;:10;:12::i;:::-;6878:9;6889:6;6854:9;:42::i;:::-;6914:4;6907:11;;6751:175;;;;:::o;6989:151::-;7078:7;7105:11;:18;7117:5;7105:18;;;;;;;;;;;;;;;:27;7124:7;7105:27;;;;;;;;;;;;;;;;7098:34;;6989:151;;;;:::o;3605:98::-;3658:7;3685:10;3678:17;;3605:98;:::o;10432:346::-;10551:1;10534:19;;:5;:19;;;;10526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10632:1;10613:21;;:7;:21;;;;10605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:6;10686:11;:18;10698:5;10686:18;;;;;;;;;;;;;;;:27;10705:7;10686:27;;;;;;;;;;;;;;;:36;;;;10754:7;10738:32;;10747:5;10738:32;;;10763:6;10738:32;;;;;;:::i;:::-;;;;;;;;10432:346;;;:::o;9874:546::-;9998:1;9980:20;;:6;:20;;;;9972:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10082:1;10061:23;;:9;:23;;;;10053:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10139:21;10163:9;:17;10173:6;10163:17;;;;;;;;;;;;;;;;10139:41;;10216:6;10199:13;:23;;10191:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10312:6;10296:13;:22;;;;:::i;:::-;10276:9;:17;10286:6;10276:17;;;;;;;;;;;;;;;:42;;;;10353:6;10329:9;:20;10339:9;10329:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10394:9;10377:35;;10386:6;10377:35;;;10405:6;10377:35;;;;;;:::i;:::-;;;;;;;;9874:546;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:370::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:34;3435:1;3430:3;3426:11;3419:55;3505:8;3500:2;3495:3;3491:12;3484:30;3540:2;3535:3;3531:12;3524:19;;3325:224;;;:::o;3555:372::-;;3718:67;3782:2;3777:3;3718:67;:::i;:::-;3711:74;;3815:34;3811:1;3806:3;3802:11;3795:55;3881:10;3876:2;3871:3;3867:12;3860:32;3918:2;3913:3;3909:12;3902:19;;3701:226;;;:::o;3933:369::-;;4096:67;4160:2;4155:3;4096:67;:::i;:::-;4089:74;;4193:34;4189:1;4184:3;4180:11;4173:55;4259:7;4254:2;4249:3;4245:12;4238:29;4293:2;4288:3;4284:12;4277:19;;4079:223;;;:::o;4308:368::-;;4471:67;4535:2;4530:3;4471:67;:::i;:::-;4464:74;;4568:34;4564:1;4559:3;4555:11;4548:55;4634:6;4629:2;4624:3;4620:12;4613:28;4667:2;4662:3;4658:12;4651:19;;4454:222;;;:::o;4682:369::-;;4845:67;4909:2;4904:3;4845:67;:::i;:::-;4838:74;;4942:34;4938:1;4933:3;4929:11;4922:55;5008:7;5003:2;4998:3;4994:12;4987:29;5042:2;5037:3;5033:12;5026:19;;4828:223;;;:::o;5057:118::-;5144:24;5162:5;5144:24;:::i;:::-;5139:3;5132:37;5122:53;;:::o;5181:210::-;;5306:2;5295:9;5291:18;5283:26;;5319:65;5381:1;5370:9;5366:17;5357:6;5319:65;:::i;:::-;5273:118;;;;:::o;5397:313::-;;5548:2;5537:9;5533:18;5525:26;;5597:9;5591:4;5587:20;5583:1;5572:9;5568:17;5561:47;5625:78;5698:4;5689:6;5625:78;:::i;:::-;5617:86;;5515:195;;;;:::o;5716:419::-;;5920:2;5909:9;5905:18;5897:26;;5969:9;5963:4;5959:20;5955:1;5944:9;5940:17;5933:47;5997:131;6123:4;5997:131;:::i;:::-;5989:139;;5887:248;;;:::o;6141:419::-;;6345:2;6334:9;6330:18;6322:26;;6394:9;6388:4;6384:20;6380:1;6369:9;6365:17;6358:47;6422:131;6548:4;6422:131;:::i;:::-;6414:139;;6312:248;;;:::o;6566:419::-;;6770:2;6759:9;6755:18;6747:26;;6819:9;6813:4;6809:20;6805:1;6794:9;6790:17;6783:47;6847:131;6973:4;6847:131;:::i;:::-;6839:139;;6737:248;;;:::o;6991:419::-;;7195:2;7184:9;7180:18;7172:26;;7244:9;7238:4;7234:20;7230:1;7219:9;7215:17;7208:47;7272:131;7398:4;7272:131;:::i;:::-;7264:139;;7162:248;;;:::o;7416:419::-;;7620:2;7609:9;7605:18;7597:26;;7669:9;7663:4;7659:20;7655:1;7644:9;7640:17;7633:47;7697:131;7823:4;7697:131;:::i;:::-;7689:139;;7587:248;;;:::o;7841:419::-;;8045:2;8034:9;8030:18;8022:26;;8094:9;8088:4;8084:20;8080:1;8069:9;8065:17;8058:47;8122:131;8248:4;8122:131;:::i;:::-;8114:139;;8012:248;;;:::o;8266:419::-;;8470:2;8459:9;8455:18;8447:26;;8519:9;8513:4;8509:20;8505:1;8494:9;8490:17;8483:47;8547:131;8673:4;8547:131;:::i;:::-;8539:139;;8437:248;;;:::o;8691:222::-;;8822:2;8811:9;8807:18;8799:26;;8835:71;8903:1;8892:9;8888:17;8879:6;8835:71;:::i;:::-;8789:124;;;;:::o;8919:99::-;;9005:5;8999:12;8989:22;;8978:40;;;:::o;9024:169::-;;9142:6;9137:3;9130:19;9182:4;9177:3;9173:14;9158:29;;9120:73;;;;:::o;9199:305::-;;9258:20;9276:1;9258:20;:::i;:::-;9253:25;;9292:20;9310:1;9292:20;:::i;:::-;9287:25;;9446:1;9378:66;9374:74;9371:1;9368:81;9365:2;;;9452:18;;:::i;:::-;9365:2;9496:1;9493;9489:9;9482:16;;9243:261;;;;:::o;9510:191::-;;9570:20;9588:1;9570:20;:::i;:::-;9565:25;;9604:20;9622:1;9604:20;:::i;:::-;9599:25;;9643:1;9640;9637:8;9634:2;;;9648:18;;:::i;:::-;9634:2;9693:1;9690;9686:9;9678:17;;9555:146;;;;:::o;9707:96::-;;9773:24;9791:5;9773:24;:::i;:::-;9762:35;;9752:51;;;:::o;9809:90::-;;9886:5;9879:13;9872:21;9861:32;;9851:48;;;:::o;9905:126::-;;9982:42;9975:5;9971:54;9960:65;;9950:81;;;:::o;10037:77::-;;10103:5;10092:16;;10082:32;;;:::o;10120:307::-;10188:1;10198:113;10212:6;10209:1;10206:13;10198:113;;;10297:1;10292:3;10288:11;10282:18;10278:1;10273:3;10269:11;10262:39;10234:2;10231:1;10227:10;10222:15;;10198:113;;;10329:6;10326:1;10323:13;10320:2;;;10409:1;10400:6;10395:3;10391:16;10384:27;10320:2;10169:258;;;;:::o;10433:320::-;;10514:1;10508:4;10504:12;10494:22;;10561:1;10555:4;10551:12;10582:18;10572:2;;10638:4;10630:6;10626:17;10616:27;;10572:2;10700;10692:6;10689:14;10669:18;10666:38;10663:2;;;10719:18;;:::i;:::-;10663:2;10484:269;;;;:::o;10759:180::-;10807:77;10804:1;10797:88;10904:4;10901:1;10894:15;10928:4;10925:1;10918:15;10945:180;10993:77;10990:1;10983:88;11090:4;11087:1;11080:15;11114:4;11111:1;11104:15;11131:102;;11223:2;11219:7;11214:2;11207:5;11203:14;11199:28;11189:38;;11179:54;;;:::o;11239:122::-;11312:24;11330:5;11312:24;:::i;:::-;11305:5;11302:35;11292:2;;11351:1;11348;11341:12;11292:2;11282:79;:::o;11367:122::-;11440:24;11458:5;11440:24;:::i;:::-;11433:5;11430:35;11420:2;;11479:1;11476;11469:12;11420:2;11410:79;:::o

Swarm Source

ipfs://018ea4b3ec1e58ab09d3ad675b0277ea74f83519bdb19ce858b3e5b5fd524936
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.