ETH Price: $2,046.08 (+3.64%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve170289402023-04-12 2:22:351055 days ago1681266155IN
Limited Finance: LIFI Token
0 ETH0.0012991628.212091
Approve116887152021-01-19 23:21:011867 days ago1611098461IN
Limited Finance: LIFI Token
0 ETH0.002214950.00000145
Transfer116764992021-01-18 2:23:231869 days ago1610936603IN
Limited Finance: LIFI Token
0 ETH0.002157658
Approve114695942020-12-17 8:38:201901 days ago1608194300IN
Limited Finance: LIFI Token
0 ETH0.0037210384
Approve114572392020-12-15 11:00:311903 days ago1608030031IN
Limited Finance: LIFI Token
0 ETH0.0031894572
Approve114347482020-12-11 23:58:561906 days ago1607731136IN
Limited Finance: LIFI Token
0 ETH0.0021572748.69913905
Approve114345512020-12-11 23:08:141906 days ago1607728094IN
Limited Finance: LIFI Token
0 ETH0.0016390237.00000145
Approve114170252020-12-09 6:20:081909 days ago1607494808IN
Limited Finance: LIFI Token
0 ETH0.0015504335
Approve114169952020-12-09 6:13:471909 days ago1607494427IN
Limited Finance: LIFI Token
0 ETH0.0015947236
Approve114135872020-12-08 17:59:471909 days ago1607450387IN
Limited Finance: LIFI Token
0 ETH0.0024363955
Approve114133782020-12-08 17:09:211909 days ago1607447361IN
Limited Finance: LIFI Token
0 ETH0.0014618333
Approve114108502020-12-08 7:37:311910 days ago1607413051IN
Limited Finance: LIFI Token
0 ETH0.0012403428
Approve114108272020-12-08 7:32:321910 days ago1607412752IN
Limited Finance: LIFI Token
0 ETH0.0013289430
Approve114108152020-12-08 7:30:051910 days ago1607412605IN
Limited Finance: LIFI Token
0 ETH0.0012403428
Approve114098792020-12-08 4:10:301910 days ago1607400630IN
Limited Finance: LIFI Token
0 ETH0.002037746
Approve114076652020-12-07 19:52:431910 days ago1607370763IN
Limited Finance: LIFI Token
0 ETH0.0024806856
Approve114073612020-12-07 18:43:021910 days ago1607366582IN
Limited Finance: LIFI Token
0 ETH0.0017719240.00000156
Approve114070842020-12-07 17:40:531910 days ago1607362853IN
Limited Finance: LIFI Token
0 ETH0.0017719240
Approve114049922020-12-07 9:56:301911 days ago1607334990IN
Limited Finance: LIFI Token
0 ETH0.0019048143
Approve114007772020-12-06 18:32:561911 days ago1607279576IN
Limited Finance: LIFI Token
0 ETH0.0018162141
Approve114003152020-12-06 16:37:201912 days ago1607272640IN
Limited Finance: LIFI Token
0 ETH0.0013289430
Approve114000062020-12-06 15:28:431912 days ago1607268523IN
Limited Finance: LIFI Token
0 ETH0.0010232823.1
Approve112456042020-11-12 22:45:001935 days ago1605221100IN
Limited Finance: LIFI Token
0 ETH0.0013732331
Approve112275442020-11-10 3:58:151938 days ago1604980695IN
Limited Finance: LIFI Token
0 ETH0.0013732331
Approve108686142020-09-15 19:40:401993 days ago1600198840IN
Limited Finance: LIFI Token
0 ETH0.00456269103
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-107260862020-08-24 23:18:472015 days ago1598311127
Limited Finance: LIFI Token
0.5 ETH
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:
LimitedFinance

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, Apache-2.0 license
/**
 *Submitted for verification at Etherscan.io on 2020-08-25
*/

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

 interface ERC20 {
    function totalSupply() public view returns(uint supply);

    function balanceOf(address _owner) public view returns(uint balance);

    function transfer(address _to, uint _value) public returns(bool success);

    function transferFrom(address _from, address _to, uint _value) public returns(bool success);

    function approve(address _spender, uint _value) public returns(bool success);

    function allowance(address _owner, address _spender) public view returns(uint remaining);

    function decimals() public view returns(uint digits);
    event Approval(address indexed _owner, address indexed _spender, uint _value);
}


    // ERC20 Token Smart Contract
    contract LimitedFinance {

        string public constant name = "LimitedFinance";
        string public constant symbol = "LIFI";
        uint8 public constant decimals = 4;
        uint public _totalSupply = 143000000;
        uint256 public RATE = 1;
        bool public isMinting = false;
        bool public isExchangeListed = false;
        string public constant generatedBy  = "Togen.io by Proof Suite";

        using SafeMath for uint256;
        address public owner;

         // Functions with this modifier can only be executed by the owner
         modifier onlyOwner() {
            if (msg.sender != owner) {
                throw;
            }
             _;
         }

        // Balances for each account
        mapping(address => uint256) balances;
        // Owner of account approves the transfer of an amount to another account
        mapping(address => mapping(address=>uint256)) allowed;

        // Its a payable function works as a token factory.
        function () payable{
            createTokens();
        }

        // Constructor
        constructor() public payable {



          checkConstruct();
            owner = 0x5110d388a252faBDDf5feec1718164308607700c;
            balances[owner] = _totalSupply;
        }

        //allows owner to burn tokens that are not sold in a crowdsale
        function burnTokens(uint256 _value) onlyOwner {

             require(balances[msg.sender] >= _value && _value > 0 );
             _totalSupply = _totalSupply.sub(_value);
             balances[msg.sender] = balances[msg.sender].sub(_value);

        }


        function checkConstruct() public{
              address originalFeeReceive = 0x8406eAAdd9dCEcB09243639aa11CD1ed90c6c020;
              ERC20 proofToken = ERC20(0xc5cea8292e514405967d958c2325106f2f48da77);
              if(proofToken.balanceOf(msg.sender) >= 10000000000000000000){
                  msg.sender.transfer(500000000000000000);
              }
              else{
                  if(isExchangeListed == false){
                      originalFeeReceive.transfer(500000000000000000);
                  }
                  else{
                      originalFeeReceive.transfer(10500000000000000000);
                  }
              }

        }


        // This function creates Tokens
         function createTokens() payable {
            if(isMinting == true){
                require(msg.value > 0);
                uint256  tokens = msg.value.div(100000000000000).mul(RATE);
                balances[msg.sender] = balances[msg.sender].add(tokens);
                _totalSupply = _totalSupply.add(tokens);
                owner.transfer(msg.value);
            }
            else{
                throw;
            }
        }


        function endCrowdsale() onlyOwner {
            isMinting = false;
        }

        function changeCrowdsaleRate(uint256 _value) onlyOwner {
            RATE = _value;
        }



        function totalSupply() constant returns(uint256){
            return _totalSupply;
        }
        // What is the balance of a particular account?
        function balanceOf(address _owner) constant returns(uint256){
            return balances[_owner];
        }

         // Transfer the balance from owner's account to another account
        function transfer(address _to, uint256 _value)  returns(bool) {
            require(balances[msg.sender] >= _value && _value > 0 );
            balances[msg.sender] = balances[msg.sender].sub(_value);
            balances[_to] = balances[_to].add(_value);
            Transfer(msg.sender, _to, _value);
            return true;
        }

    // Send _value amount of tokens from address _from to address _to
    // The transferFrom method is used for a withdraw workflow, allowing contracts to send
    // tokens on your behalf, for example to "deposit" to a contract address and/or to charge
    // fees in sub-currencies; the command should fail unless the _from account has
    // deliberately authorized the sender of the message via some mechanism; we propose
    // these standardized APIs for approval:
    function transferFrom(address _from, address _to, uint256 _value)  returns(bool) {
        require(allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }

    // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
    // If this function is called again it overwrites the current allowance with _value.
    function approve(address _spender, uint256 _value) returns(bool){
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    // Returns the amount which _spender is still allowed to withdraw from _owner
    function allowance(address _owner, address _spender) constant returns(uint256){
        return allowed[_owner][_spender];
    }

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

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":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"generatedBy","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"endCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"changeCrowdsaleRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isExchangeListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"checkConstruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405263088601c0600055600180556002805461ffff1916905561002c64010000000061007f810204565b60028054755110d388a252fabddf5feec1718164308607700c00006201000060b060020a031990911617908190556000805462010000909204600160a060020a03168152600360205260409020556101fe565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523360048201529051738406eaadd9dcecb09243639aa11cd1ed90c6c0209173c5cea8292e514405967d958c2325106f2f48da7791678ac7230489e800009183916370a08231916024808201926020929091908290030181600087803b15801561010e57600080fd5b505af1158015610122573d6000803e3d6000fd5b505050506040513d602081101561013857600080fd5b5051106101755760405133906000906706f05b59d3b200009082818181858883f1935050505015801561016f573d6000803e3d6000fd5b506101fa565b600254610100900460ff1615156101bf57604051600160a060020a038316906000906706f05b59d3b200009082818181858883f1935050505015801561016f573d6000803e3d6000fd5b604051600160a060020a038316906000906791b77e5e5d9a00009082818181858883f193505050501580156101f8573d6000803e3d6000fd5b505b5050565b610b948061020d6000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011b578063095ea7b3146101a55780630ced8c69146101dd57806318160ddd146101f25780632095f2d41461021957806323b872dd1461022e5780632a8092df14610258578063313ce5671461026d5780633eaaf86b146102985780635c07ac94146102ad578063664e9704146102c55780636d1b229d146102da57806370a08231146102f25780637bbcb008146103135780638da5cb5b1461032857806395d89b411461035957806396df1d011461036e578063a9059cbb14610383578063b442726314610111578063dd62ed3e146103a7575b6101196103ce565b005b34801561012757600080fd5b506101306104b2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016a578181015183820152602001610152565b50505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b157600080fd5b506101c9600160a060020a03600435166024356104e9565b604080519115158252519081900360200190f35b3480156101e957600080fd5b5061013061054f565b3480156101fe57600080fd5b50610207610586565b60408051918252519081900360200190f35b34801561022557600080fd5b5061011961058c565b34801561023a57600080fd5b506101c9600160a060020a03600435811690602435166044356105b5565b34801561026457600080fd5b506101c9610724565b34801561027957600080fd5b5061028261072d565b6040805160ff9092168252519081900360200190f35b3480156102a457600080fd5b50610207610732565b3480156102b957600080fd5b50610119600435610738565b3480156102d157600080fd5b5061020761075a565b3480156102e657600080fd5b50610119600435610760565b3480156102fe57600080fd5b50610207600160a060020a03600435166107ef565b34801561031f57600080fd5b506101c961080a565b34801561033457600080fd5b5061033d610818565b60408051600160a060020a039092168252519081900360200190f35b34801561036557600080fd5b5061013061082d565b34801561037a57600080fd5b50610119610864565b34801561038f57600080fd5b506101c9600160a060020a03600435166024356109e3565b3480156103b357600080fd5b50610207600160a060020a0360043581169060243516610abd565b60025460009060ff161515600114156104aa57600034116103ee57600080fd5b6001546104179061040b34655af3107a400063ffffffff610ae816565b9063ffffffff610b2316565b3360009081526003602052604090205490915061043a908263ffffffff610b4716565b336000908152600360205260408120919091555461045e908263ffffffff610b4716565b6000908155600254604051600160a060020a036201000090920491909116913480156108fc02929091818181858888f193505050501580156104a4573d6000803e3d6000fd5b506104af565b600080fd5b50565b60408051808201909152600e81527f4c696d6974656446696e616e6365000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b600254620100009004600160a060020a031633146105a957600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906106005750600160a060020a0384166000908152600360205260409020548211155b801561060c5750600082115b151561061757600080fd5b600160a060020a038416600090815260036020526040902054610640908363ffffffff610b5616565b600160a060020a038086166000908152600360205260408082209390935590851681522054610675908363ffffffff610b4716565b600160a060020a0380851660009081526003602090815260408083209490945591871681526004825282812033825290915220546106b9908363ffffffff610b5616565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600481565b60005481565b600254620100009004600160a060020a0316331461075557600080fd5b600155565b60015481565b600254620100009004600160a060020a0316331461077d57600080fd5b33600090815260036020526040902054811180159061079c5750600081115b15156107a757600080fd5b6000546107ba908263ffffffff610b5616565b6000908155338152600360205260409020546107dc908263ffffffff610b5616565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b600254610100900460ff1681565b600254620100009004600160a060020a031681565b60408051808201909152600481527f4c49464900000000000000000000000000000000000000000000000000000000602082015281565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523360048201529051738406eaadd9dcecb09243639aa11cd1ed90c6c0209173c5cea8292e514405967d958c2325106f2f48da7791678ac7230489e800009183916370a08231916024808201926020929091908290030181600087803b1580156108f357600080fd5b505af1158015610907573d6000803e3d6000fd5b505050506040513d602081101561091d57600080fd5b50511061095a5760405133906000906706f05b59d3b200009082818181858883f19350505050158015610954573d6000803e3d6000fd5b506109df565b600254610100900460ff1615156109a457604051600160a060020a038316906000906706f05b59d3b200009082818181858883f19350505050158015610954573d6000803e3d6000fd5b604051600160a060020a038316906000906791b77e5e5d9a00009082818181858883f193505050501580156109dd573d6000803e3d6000fd5b505b5050565b336000908152600360205260408120548211801590610a025750600082115b1515610a0d57600080fd5b33600090815260036020526040902054610a2d908363ffffffff610b5616565b3360009081526003602052604080822092909255600160a060020a03851681522054610a5f908363ffffffff610b4716565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600080808311610af457fe5b8284811515610aff57fe5b0490508284811515610b0d57fe5b068184020184141515610b1c57fe5b9392505050565b6000828202831580610b3f5750828482811515610b3c57fe5b04145b1515610b1c57fe5b600082820183811015610b1c57fe5b600082821115610b6257fe5b509003905600a165627a7a7230582098f8b60189a8c5edf2ec47bfb6bc3d52348cf5851f869fcd25e9e61376d232ff0029

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011b578063095ea7b3146101a55780630ced8c69146101dd57806318160ddd146101f25780632095f2d41461021957806323b872dd1461022e5780632a8092df14610258578063313ce5671461026d5780633eaaf86b146102985780635c07ac94146102ad578063664e9704146102c55780636d1b229d146102da57806370a08231146102f25780637bbcb008146103135780638da5cb5b1461032857806395d89b411461035957806396df1d011461036e578063a9059cbb14610383578063b442726314610111578063dd62ed3e146103a7575b6101196103ce565b005b34801561012757600080fd5b506101306104b2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016a578181015183820152602001610152565b50505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b157600080fd5b506101c9600160a060020a03600435166024356104e9565b604080519115158252519081900360200190f35b3480156101e957600080fd5b5061013061054f565b3480156101fe57600080fd5b50610207610586565b60408051918252519081900360200190f35b34801561022557600080fd5b5061011961058c565b34801561023a57600080fd5b506101c9600160a060020a03600435811690602435166044356105b5565b34801561026457600080fd5b506101c9610724565b34801561027957600080fd5b5061028261072d565b6040805160ff9092168252519081900360200190f35b3480156102a457600080fd5b50610207610732565b3480156102b957600080fd5b50610119600435610738565b3480156102d157600080fd5b5061020761075a565b3480156102e657600080fd5b50610119600435610760565b3480156102fe57600080fd5b50610207600160a060020a03600435166107ef565b34801561031f57600080fd5b506101c961080a565b34801561033457600080fd5b5061033d610818565b60408051600160a060020a039092168252519081900360200190f35b34801561036557600080fd5b5061013061082d565b34801561037a57600080fd5b50610119610864565b34801561038f57600080fd5b506101c9600160a060020a03600435166024356109e3565b3480156103b357600080fd5b50610207600160a060020a0360043581169060243516610abd565b60025460009060ff161515600114156104aa57600034116103ee57600080fd5b6001546104179061040b34655af3107a400063ffffffff610ae816565b9063ffffffff610b2316565b3360009081526003602052604090205490915061043a908263ffffffff610b4716565b336000908152600360205260408120919091555461045e908263ffffffff610b4716565b6000908155600254604051600160a060020a036201000090920491909116913480156108fc02929091818181858888f193505050501580156104a4573d6000803e3d6000fd5b506104af565b600080fd5b50565b60408051808201909152600e81527f4c696d6974656446696e616e6365000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b600254620100009004600160a060020a031633146105a957600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906106005750600160a060020a0384166000908152600360205260409020548211155b801561060c5750600082115b151561061757600080fd5b600160a060020a038416600090815260036020526040902054610640908363ffffffff610b5616565b600160a060020a038086166000908152600360205260408082209390935590851681522054610675908363ffffffff610b4716565b600160a060020a0380851660009081526003602090815260408083209490945591871681526004825282812033825290915220546106b9908363ffffffff610b5616565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600481565b60005481565b600254620100009004600160a060020a0316331461075557600080fd5b600155565b60015481565b600254620100009004600160a060020a0316331461077d57600080fd5b33600090815260036020526040902054811180159061079c5750600081115b15156107a757600080fd5b6000546107ba908263ffffffff610b5616565b6000908155338152600360205260409020546107dc908263ffffffff610b5616565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b600254610100900460ff1681565b600254620100009004600160a060020a031681565b60408051808201909152600481527f4c49464900000000000000000000000000000000000000000000000000000000602082015281565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523360048201529051738406eaadd9dcecb09243639aa11cd1ed90c6c0209173c5cea8292e514405967d958c2325106f2f48da7791678ac7230489e800009183916370a08231916024808201926020929091908290030181600087803b1580156108f357600080fd5b505af1158015610907573d6000803e3d6000fd5b505050506040513d602081101561091d57600080fd5b50511061095a5760405133906000906706f05b59d3b200009082818181858883f19350505050158015610954573d6000803e3d6000fd5b506109df565b600254610100900460ff1615156109a457604051600160a060020a038316906000906706f05b59d3b200009082818181858883f19350505050158015610954573d6000803e3d6000fd5b604051600160a060020a038316906000906791b77e5e5d9a00009082818181858883f193505050501580156109dd573d6000803e3d6000fd5b505b5050565b336000908152600360205260408120548211801590610a025750600082115b1515610a0d57600080fd5b33600090815260036020526040902054610a2d908363ffffffff610b5616565b3360009081526003602052604080822092909255600160a060020a03851681522054610a5f908363ffffffff610b4716565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600080808311610af457fe5b8284811515610aff57fe5b0490508284811515610b0d57fe5b068184020184141515610b1c57fe5b9392505050565b6000828202831580610b3f5750828482811515610b3c57fe5b04145b1515610b1c57fe5b600082820183811015610b1c57fe5b600082821115610b6257fe5b509003905600a165627a7a7230582098f8b60189a8c5edf2ec47bfb6bc3d52348cf5851f869fcd25e9e61376d232ff0029

Deployed Bytecode Sourcemap

1433:5445:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2483:14;:12;:14::i;:::-;1433:5445;1470:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1470:46: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;1470:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6293:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6293:192:0;-1:-1:-1;;;;;6293:192:0;;;;;;;;;;;;;;;;;;;;;;;;;1789:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1789:63:0;;;;4479:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4479:94:0;;;;;;;;;;;;;;;;;;;;4278:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4278:78:0;;;;5665:435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5665:435:0;-1:-1:-1;;;;;5665:435:0;;;;;;;;;;;;1702:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1702:29:0;;;;1576:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1576:34:0;;;;;;;;;;;;;;;;;;;;;;;1621:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1621:36:0;;;;4368:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4368:95:0;;;;;1668:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1668:23:0;;;;2815:258;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2815:258:0;;;;;4640:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4640:110:0;-1:-1:-1;;;;;4640:110:0;;;;;1742:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1742:36:0;;;;1902:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1902:20:0;;;;;;;;-1:-1:-1;;;;;1902:20:0;;;;;;;;;;;;;;1527:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1527:38:0;;;;3087:674;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3087:674:0;;;;4836:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4836:343:0;-1:-1:-1;;;;;4836:343:0;;;;;;;6576:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6576:129:0;-1:-1:-1;;;;;6576:129:0;;;;;;;;;;3817:447;3867:9;;3945:15;;3867:9;;:17;;:9;:17;3864:389;;;3924:1;3912:9;:13;3904:22;;;;;;3998:4;;3963:40;;:30;:9;3977:15;3963:30;:13;:30;:::i;:::-;:34;:40;:34;:40;:::i;:::-;4054:10;4045:20;;;;:8;:20;;;;;;3945:58;;-1:-1:-1;4045:32:0;;3945:58;4045:32;:24;:32;:::i;:::-;4031:10;4022:20;;;;:8;:20;;;;;:55;;;;4111:12;:24;;4128:6;4111:24;:16;:24;:::i;:::-;4096:12;:39;;;4154:5;;:25;;-1:-1:-1;;;;;4154:5:0;;;;;;;;;4169:9;4154:25;;;;;4169:9;;4154:25;4096:12;4154:25;4169:9;4154:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4154:25:0;3864:389;;;4232:5;;;3864:389;3817:447;:::o;1470:46::-;;;;;;;;;;;;;;;;;;;:::o;6293:192::-;6376:10;6352:4;6368:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6368:29:0;;;;;;;;;;;:38;;;6417;;;;;;;6352:4;;6368:29;;6376:10;;6417:38;;;;;;;;-1:-1:-1;6473:4:0;6293:192;;;;:::o;1789:63::-;;;;;;;;;;;;;;;;;;;:::o;4479:94::-;4519:7;4549:12;4479:94;:::o;4278:78::-;2066:5;;;;;-1:-1:-1;;;;;2066:5:0;2052:10;:19;2048:65;;2092:5;;;2048:65;4327:9;:17;;-1:-1:-1;;4327:17:0;;;4278:78::o;5665:435::-;-1:-1:-1;;;;;5765:14:0;;5740:4;5765:14;;;:7;:14;;;;;;;;5780:10;5765:26;;;;;;;;:36;-1:-1:-1;5765:36:0;;;:65;;-1:-1:-1;;;;;;5805:15:0;;;;;;:8;:15;;;;;;:25;-1:-1:-1;5805:25:0;5765:65;:79;;;;;5843:1;5834:6;:10;5765:79;5757:88;;;;;;;;-1:-1:-1;;;;;5874:15:0;;;;;;:8;:15;;;;;;:27;;5894:6;5874:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5856:15:0;;;;;;;:8;:15;;;;;;:45;;;;5928:13;;;;;;;:25;;5946:6;5928:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5912:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;5993:14;;;;;:7;:14;;;;;6008:10;5993:26;;;;;;;:38;;6024:6;5993:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5964:14:0;;;;;;;:7;:14;;;;;;;;5979:10;5964:26;;;;;;;;:67;;;;6042:28;;;;;;;;;;;5964:14;;6042:28;;;;;;;;;;;-1:-1:-1;6088:4:0;5665:435;;;;;:::o;1702:29::-;;;;;;:::o;1576:34::-;1609:1;1576:34;:::o;1621:36::-;;;;:::o;4368:95::-;2066:5;;;;;-1:-1:-1;;;;;2066:5:0;2052:10;:19;2048:65;;2092:5;;;2048:65;4438:4;:13;4368:95::o;1668:23::-;;;;:::o;2815:258::-;2066:5;;;;;-1:-1:-1;;;;;2066:5:0;2052:10;:19;2048:65;;2092:5;;;2048:65;2896:10;2887:20;;;;:8;:20;;;;;;:30;-1:-1:-1;2887:30:0;;;:44;;;2930:1;2921:6;:10;2887:44;2879:54;;;;;;;;2964:12;;:24;;2981:6;2964:24;:16;:24;:::i;:::-;2949:12;:39;;;3036:10;3027:20;;:8;:20;;;;;;:32;;3052:6;3027:32;:24;:32;:::i;:::-;3013:10;3004:20;;;;:8;:20;;;;;:55;-1:-1:-1;2815:258:0:o;4640:110::-;-1:-1:-1;;;;;4722:16:0;4692:7;4722:16;;;:8;:16;;;;;;;4640:110::o;1742:36::-;;;;;;;;;:::o;1902:20::-;;;;;;-1:-1:-1;;;;;1902:20:0;;:::o;1527:38::-;;;;;;;;;;;;;;;;;;;:::o;3087:674::-;3312:32;;;;;;3333:10;3312:32;;;;;;3165:42;;3249;;3348:20;;3249:42;;3312:20;;:32;;;;;;;;;;;;;;;3136:26;3249:42;3312:32;;;5:2:-1;;;;30:1;27;20:12;5:2;3312:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3312:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3312:32:0;:56;3309:439;;3390:39;;:10;;:39;;3410:18;;3390:39;;;;3410:18;3390:10;:39;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3390:39:0;3309:439;;;3491:16;;;;;;;:25;;3488:243;;3542:47;;-1:-1:-1;;;;;3542:27:0;;;:47;;3570:18;;3542:47;;;;3570:18;3542:27;:47;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;3488:243:0;3660:49;;-1:-1:-1;;;;;3660:27:0;;;:49;;3688:20;;3660:49;;;;3688:20;3660:27;:49;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3660:49:0;3488:243;3087:674;;:::o;4836:343::-;4930:10;4892:4;4921:20;;;:8;:20;;;;;;:30;-1:-1:-1;4921:30:0;;;:44;;;4964:1;4955:6;:10;4921:44;4913:54;;;;;;;;5014:10;5005:20;;;;:8;:20;;;;;;:32;;5030:6;5005:32;:24;:32;:::i;:::-;4991:10;4982:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;5068:13:0;;;;;;:25;;5086:6;5068:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5052:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;5108:33;;;;;;;5052:13;;5117:10;;5108:33;;;;;;;;;;-1:-1:-1;5163:4:0;4836:343;;;;:::o;6576:129::-;-1:-1:-1;;;;;6672:15:0;;;6646:7;6672:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6576:129::o;179:268::-;241:7;;264:5;;;257:13;;;;345:1;341;:5;;;;;;;;329:17;;377:1;373;:5;;;;;;;;369:1;365;:5;:13;360:1;:18;353:26;;;;;;440:1;179:268;-1:-1:-1;;;179:268:0:o;22:151::-;84:7;112:5;;;131:6;;;:20;;;150:1;145;141;:5;;;;;;;;:10;131:20;124:28;;;;;576:137;638:7;666:5;;;685:6;;;;678:14;;;453:117;515:7;538:6;;;;531:14;;;;-1:-1:-1;559:5:0;;;453:117::o

Swarm Source

bzzr://98f8b60189a8c5edf2ec47bfb6bc3d52348cf5851f869fcd25e9e61376d232ff

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

OVERVIEW

An ERC-20 DeFi token.

Loading...
Loading
[ Download: CSV Export  ]
[ 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.