ETH Price: $2,056.03 (+0.87%)

Contract

0x0Ed024d39d55e486573EE32e583bC37Eb5A6271f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve246072042026-03-07 17:56:234 days ago1772906183IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000047811.03056469
Approve242758892026-01-20 12:08:3550 days ago1768910915IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000002440.05284837
Transfer242516462026-01-17 3:02:2353 days ago1768618943IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000002270.07627687
Transfer242511762026-01-17 1:28:1153 days ago1768613291IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000104982.03143264
Approve242440982026-01-16 1:48:2354 days ago1768528103IN
0x0Ed024d3...Eb5A6271f
0 ETH0.00000230.0499475
Transfer241984332026-01-09 16:51:1161 days ago1767977471IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000002330.0783769
Approve241801832026-01-07 3:41:3563 days ago1767757295IN
0x0Ed024d3...Eb5A6271f
0 ETH0.00002470.53558837
Approve241795002026-01-07 1:24:4763 days ago1767749087IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000002490.05378573
Approve241036302025-12-27 11:20:4774 days ago1766834447IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008260.17836899
Approve240942982025-12-26 4:04:2375 days ago1766721863IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000001340.0290117
Approve240380842025-12-18 7:45:3583 days ago1766043935IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000005980.12921542
Approve239720102025-12-09 1:40:4792 days ago1765244447IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000007810.26677445
Approve239720092025-12-09 1:40:3592 days ago1765244435IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000007990.2756551
Approve239709002025-12-08 21:56:2393 days ago1765230983IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008790.30031607
Approve239708972025-12-08 21:55:4793 days ago1765230947IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008870.30620052
Approve239708052025-12-08 21:36:5993 days ago1765229819IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008690.29673813
Approve239708042025-12-08 21:36:4793 days ago1765229807IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008720.30071414
Approve239707322025-12-08 21:22:2393 days ago1765228943IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000008730.29810079
Approve239707002025-12-08 21:15:4793 days ago1765228547IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000007770.29690543
Approve239706932025-12-08 21:14:2393 days ago1765228463IN
0x0Ed024d3...Eb5A6271f
0 ETH0.00000880.30392382
Approve239699442025-12-08 18:42:3593 days ago1765219355IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000038580.83648071
Transfer239699292025-12-08 18:39:3593 days ago1765219175IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000011690.39284167
Transfer239699202025-12-08 18:37:4793 days ago1765219067IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000018030.34927116
Approve239629432025-12-07 19:07:5994 days ago1765134479IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000020120.43367566
Transfer239551572025-12-06 16:57:1195 days ago1765040231IN
0x0Ed024d3...Eb5A6271f
0 ETH0.000104592.02372306
View all transactions

View more zero value Internal Transactions in Advanced View mode

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

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

Contract Source Code Verified (Exact Match)

Contract Name:
FixedSupplyToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-10-22
*/

pragma solidity ^0.4.18;

// ----------------------------------------------------------------------------
// 'FIXED' 'Example Fixed Supply Token' token contract
//
// Symbol      : FIXED
// Name        : Example Fixed Supply Token
// Total supply: 1,000,000.000000000000000000
// Decimals    : 18
//
// Enjoy.
//
// (c) BokkyPooBah / Bok Consulting Pty Ltd 2017. The MIT Licence.
// ----------------------------------------------------------------------------


// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    function Owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and an
// initial fixed supply
// ----------------------------------------------------------------------------
contract FixedSupplyToken is ERC20Interface, Owned {
    using SafeMath for uint;

    string public symbol;
    string public  name;
    uint8 public decimals;
    uint public _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    function FixedSupplyToken() public {
        symbol = "JCD";
        name = "J Chan Dollar";
        decimals = 18;
        _totalSupply = 19860225 * 10 ** uint(decimals);
        balances[owner] = _totalSupply;
        Transfer(address(0), owner, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public constant returns (uint) {
        return _totalSupply  - balances[address(0)];
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public constant returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = balances[msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces 
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    // 
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = balances[from].sub(tokens);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account. The `spender` contract function
    // `receiveApproval(...)` is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function () public payable {
        revert();
    }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b5060008054600160a060020a031916331790556040805180820190915260038082527f4a4344000000000000000000000000000000000000000000000000000000000060209092019182526100679160029161012b565b5060408051808201909152600d8082527f4a204368616e20446f6c6c61720000000000000000000000000000000000000060209092019182526100ac9160039161012b565b5060048054601260ff19909116179081905560ff16600a0a63012f0b0102600581905560008054600160a060020a0390811682526006602090815260408084208590558354815195865290519216937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36101c6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016c57805160ff1916838001178555610199565b82800160010185558215610199579182015b8281111561019957825182559160200191906001019061017e565b506101a59291506101a9565b5090565b6101c391905b808211156101a557600081556001016101af565b90565b610ab1806101d56000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633eaaf86b1461022857806370a082311461023d57806379ba50971461025e5780638da5cb5b1461027557806395d89b41146102a6578063a9059cbb146102bb578063cae9ca51146102df578063d4ee1d9014610348578063dc39d06d1461035d578063dd62ed3e14610381578063f2fde38b146103a8575b600080fd5b3480156100f657600080fd5b506100ff6103c9565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a0360043516602435610457565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16104be565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104f0565b34801561020957600080fd5b506102126105fb565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b506101c1610604565b34801561024957600080fd5b506101c1600160a060020a036004351661060a565b34801561026a57600080fd5b50610273610625565b005b34801561028157600080fd5b5061028a6106ad565b60408051600160a060020a039092168252519081900360200190f35b3480156102b257600080fd5b506100ff6106bc565b3480156102c757600080fd5b50610198600160a060020a0360043516602435610714565b3480156102eb57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610198948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107c49650505050505050565b34801561035457600080fd5b5061028a610925565b34801561036957600080fd5b50610198600160a060020a0360043516602435610934565b34801561038d57600080fd5b506101c1600160a060020a03600435811690602435166109ef565b3480156103b457600080fd5b50610273600160a060020a0360043516610a1a565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561044f5780601f106104245761010080835404028352916020019161044f565b820191906000526020600020905b81548152906001019060200180831161043257829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005540390565b600160a060020a038316600090815260066020526040812054610519908363ffffffff610a6016565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610556908363ffffffff610a6016565b600160a060020a03808616600090815260076020908152604080832033845282528083209490945591861681526006909152205461059a908363ffffffff610a7516565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b60055481565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461063c57600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561044f5780601f106104245761010080835404028352916020019161044f565b33600090815260066020526040812054610734908363ffffffff610a6016565b3360009081526006602052604080822092909255600160a060020a03851681522054610766908363ffffffff610a7516565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b838110156108b457818101518382015260200161089c565b50505050905090810190601f1680156108e15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561090357600080fd5b505af1158015610917573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a0316331461094c57600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b1580156109bc57600080fd5b505af11580156109d0573d6000803e3d6000fd5b505050506040513d60208110156109e657600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610a3157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610a6f57600080fd5b50900390565b818101828110156104b857600080fd00a165627a7a72305820f6ba84785d7300827db94cb5f6901f1b247a786c1aaea9f6fe3aac2551d71f9b0029

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633eaaf86b1461022857806370a082311461023d57806379ba50971461025e5780638da5cb5b1461027557806395d89b41146102a6578063a9059cbb146102bb578063cae9ca51146102df578063d4ee1d9014610348578063dc39d06d1461035d578063dd62ed3e14610381578063f2fde38b146103a8575b600080fd5b3480156100f657600080fd5b506100ff6103c9565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a0360043516602435610457565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16104be565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104f0565b34801561020957600080fd5b506102126105fb565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b506101c1610604565b34801561024957600080fd5b506101c1600160a060020a036004351661060a565b34801561026a57600080fd5b50610273610625565b005b34801561028157600080fd5b5061028a6106ad565b60408051600160a060020a039092168252519081900360200190f35b3480156102b257600080fd5b506100ff6106bc565b3480156102c757600080fd5b50610198600160a060020a0360043516602435610714565b3480156102eb57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610198948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107c49650505050505050565b34801561035457600080fd5b5061028a610925565b34801561036957600080fd5b50610198600160a060020a0360043516602435610934565b34801561038d57600080fd5b506101c1600160a060020a03600435811690602435166109ef565b3480156103b457600080fd5b50610273600160a060020a0360043516610a1a565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561044f5780601f106104245761010080835404028352916020019161044f565b820191906000526020600020905b81548152906001019060200180831161043257829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005540390565b600160a060020a038316600090815260066020526040812054610519908363ffffffff610a6016565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610556908363ffffffff610a6016565b600160a060020a03808616600090815260076020908152604080832033845282528083209490945591861681526006909152205461059a908363ffffffff610a7516565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b60055481565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461063c57600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561044f5780601f106104245761010080835404028352916020019161044f565b33600090815260066020526040812054610734908363ffffffff610a6016565b3360009081526006602052604080822092909255600160a060020a03851681522054610766908363ffffffff610a7516565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b838110156108b457818101518382015260200161089c565b50505050905090810190601f1680156108e15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561090357600080fd5b505af1158015610917573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a0316331461094c57600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b1580156109bc57600080fd5b505af11580156109d0573d6000803e3d6000fd5b505050506040513d60208110156109e657600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610a3157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610a6f57600080fd5b50900390565b818101828110156104b857600080fd00a165627a7a72305820f6ba84785d7300827db94cb5f6901f1b247a786c1aaea9f6fe3aac2551d71f9b0029

Deployed Bytecode Sourcemap

3628:5434:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621:8;;;3745:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3745:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3745:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6182:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6182:203:0;-1:-1:-1;;;;;6182:203:0;;;;;;;;;;;;;;;;;;;;;;;;;4585:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4585:116:0;;;;;;;;;;;;;;;;;;;;6929:338;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6929:338:0;-1:-1:-1;;;;;6929:338:0;;;;;;;;;;;;3771:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3771:21:0;;;;;;;;;;;;;;;;;;;;;;;3799:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3799:24:0;;;;4928:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4928:124:0;-1:-1:-1;;;;;4928:124:0;;;;;3170:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3170:191:0;;;;;;2769:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2769:20:0;;;;;;;;-1:-1:-1;;;;;2769:20:0;;;;;;;;;;;;;;3718;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3718:20:0;;;;5403:262;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5403:262:0;-1:-1:-1;;;;;5403:262:0;;;;;;;8074:312;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8074:312:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8074:312:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8074:312:0;;-1:-1:-1;8074:312:0;;-1:-1:-1;;;;;;;8074:312:0;2796:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2796:23:0;;;;8875:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8875:184:0;-1:-1:-1;;;;;8875:184:0;;;;;;;7555:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7555:151:0;-1:-1:-1;;;;;7555:151:0;;;;;;;;;;3062:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3062:102:0;-1:-1:-1;;;;;3062:102:0;;;;;3745:19;;;;;;;;;;;;;;;-1:-1:-1;;3745:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6182:203::-;6278:10;6245:12;6270:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6270:28:0;;;;;;;;;;;:37;;;6318;;;;;;;6245:12;;6270:28;;6278:10;;6318:37;;;;;;;;-1:-1:-1;6373:4:0;6182:203;;;;;:::o;4585:116::-;4633:4;4673:20;;:8;:20;;;;4657:12;;:36;4585:116;:::o;6929:338::-;-1:-1:-1;;;;;7048:14:0;;7006:12;7048:14;;;:8;:14;;;;;;:26;;7067:6;7048:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;7031:14:0;;;;;;:8;:14;;;;;;;;:43;;;;7113:7;:13;;;;;7127:10;7113:25;;;;;;:37;;7143:6;7113:37;:29;:37;:::i;:::-;-1:-1:-1;;;;;7085:13:0;;;;;;;:7;:13;;;;;;;;7099:10;7085:25;;;;;;;:65;;;;7176:12;;;;;:8;:12;;;;;:24;;7193:6;7176:24;:16;:24;:::i;:::-;-1:-1:-1;;;;;7161:12:0;;;;;;;:8;:12;;;;;;;;;:39;;;;7211:26;;;;;;;7161:12;;7211:26;;;;;;;;;;;;;-1:-1:-1;7255:4:0;6929:338;;;;;:::o;3771:21::-;;;;;;:::o;3799:24::-;;;;:::o;4928:124::-;-1:-1:-1;;;;;5024:20:0;4992:12;5024:20;;;:8;:20;;;;;;;4928:124::o;3170:191::-;3237:8;;-1:-1:-1;;;;;3237:8:0;3223:10;:22;3215:31;;;;;;3285:8;;;3278:5;;3257:37;;-1:-1:-1;;;;;3285:8:0;;;;3278:5;;;;3257:37;;;3313:8;;;;3305:16;;-1:-1:-1;;3305:16:0;;;-1:-1:-1;;;;;3313:8:0;;3305:16;;;;3332:21;;;3170:191::o;2769:20::-;;;-1:-1:-1;;;;;2769:20:0;;:::o;3718:::-;;;;;;;;;;;;;;-1:-1:-1;;3718:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5403:262;5519:10;5462:12;5510:20;;;:8;:20;;;;;;:32;;5535:6;5510:32;:24;:32;:::i;:::-;5496:10;5487:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;5568:12:0;;;;;;:24;;5585:6;5568:24;:16;:24;:::i;:::-;-1:-1:-1;;;;;5553:12:0;;;;;;:8;:12;;;;;;;;;:39;;;;5603:32;;;;;;;5553:12;;5612:10;;5603:32;;;;;;;;;;-1:-1:-1;5653:4:0;5403:262;;;;:::o;8074:312::-;8189:10;8156:12;8181:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8181:28:0;;;;;;;;;;;:37;;;8229;;;;;;;8156:12;;8181:28;;8189:10;;8229:37;;;;;;;;8277:79;;;;;8325:10;8277:79;;;;;;;;;;;;8345:4;8277:79;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8277:47:0;;;;;8325:10;8337:6;;8345:4;8351;;8277:79;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8277:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8277:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;8374:4:0;;8074:312;-1:-1:-1;;;;;;;8074:312:0:o;2796:23::-;;;-1:-1:-1;;;;;2796:23:0;;:::o;8875:184::-;8967:12;3028:5;;-1:-1:-1;;;;;3028:5:0;3014:10;:19;3006:28;;;;;;9037:5;;;8999:52;;;;;;-1:-1:-1;;;;;9037:5:0;;;8999:52;;;;;;;;;;;;:37;;;;;;:52;;;;;;;;;;;;;;;;;:37;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;8999:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8999:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8999:52:0;;8875:184;-1:-1:-1;;;8875:184:0:o;7555:151::-;-1:-1:-1;;;;;7670:19:0;;;7636:14;7670:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;7555:151::o;3062:102::-;3028:5;;-1:-1:-1;;;;;3028:5:0;3014:10;:19;3006:28;;;;;;3136:8;:20;;-1:-1:-1;;3136:20:0;-1:-1:-1;;;;;3136:20:0;;;;;;;;;;3062:102::o;799:114::-;851:6;878;;;;870:15;;;;;;-1:-1:-1;900:5:0;;;799:114::o;679:::-;754:5;;;778:6;;;;770:15;;;;

Swarm Source

bzzr://f6ba84785d7300827db94cb5f6901f1b247a786c1aaea9f6fe3aac2551d71f9b

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

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