Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 13 from a total of 13 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 11458409 | 1912 days ago | IN | 0 ETH | 0.00325371 | ||||
| Approve | 11065008 | 1972 days ago | IN | 0 ETH | 0.00264054 | ||||
| Transfer | 10852771 | 2005 days ago | IN | 0 ETH | 0.00471483 | ||||
| Transfer | 10818502 | 2010 days ago | IN | 0 ETH | 0.00450528 | ||||
| Transfer | 10818324 | 2011 days ago | IN | 0 ETH | 0.00413857 | ||||
| Transfer | 10768045 | 2018 days ago | IN | 0 ETH | 0.01142036 | ||||
| Transfer | 10734081 | 2023 days ago | IN | 0 ETH | 0.00412023 | ||||
| Set Sale Agent | 10733774 | 2023 days ago | IN | 0 ETH | 0.0018843 | ||||
| Transfer | 10733755 | 2023 days ago | IN | 0 ETH | 0.00330038 | ||||
| Transfer | 10733750 | 2023 days ago | IN | 0 ETH | 0.00330113 | ||||
| Transfer | 10733738 | 2023 days ago | IN | 0 ETH | 0.00330189 | ||||
| Mint | 10733721 | 2023 days ago | IN | 0 ETH | 0.00445137 | ||||
| Set Sale Agent | 10733699 | 2023 days ago | IN | 0 ETH | 0.00266682 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Transfer From | 11065008 | 1972 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MekasToken
Compiler Version
v0.4.18+commit.9cf6e910
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-08-26
*/
pragma solidity ^0.4.18;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public constant returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure 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 pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b; assert(c >= a);
return c;
}
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[msg.sender]);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public constant returns (uint256 balance) {
return balances[_owner];
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
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;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/**
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined) * From MonolithDAO Token.sol
*/
function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function () public payable {
revert();
}
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner public {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
address public saleAgent;
function setSaleAgent(address newSaleAgnet) public {
require(msg.sender == saleAgent || msg.sender == owner);
saleAgent = newSaleAgnet;
}
function mint(address _to, uint256 _amount) public returns (bool) {
require(msg.sender == saleAgent && !mintingFinished);
totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() public returns (bool) {
require((msg.sender == saleAgent || msg.sender == owner) && !mintingFinished);
mintingFinished = true;
MintFinished();
return true;
}
}
contract MekasToken is MintableToken {
string public constant name = "Mekas Stable Token";
string public constant symbol = "MEKAS";
uint32 public constant decimals = 18;
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":false,"inputs":[{"name":"newSaleAgnet","type":"address"}],"name":"setSaleAgent","outputs":[],"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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]Contract Creation Code
606060405260038054600160a860020a03191633600160a060020a0316179055610bfc8061002e6000396000f3006060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610127578063095ea7b3146101b157806314133a7c146101d357806318160ddd146101f457806323b872dd14610219578063313ce5671461024157806340c10f191461026d578063661884631461028f57806370a08231146102b15780637d64bcb4146102d05780638da5cb5b146102e357806395d89b4114610312578063a9059cbb14610325578063b1d6a2f014610347578063d73dd6231461035a578063dd62ed3e1461037c578063f2fde38b146103a1575b600080fd5b341561010b57600080fd5b6101136103c0565b604051901515815260200160405180910390f35b341561013257600080fd5b61013a6103d0565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017657808201518382015260200161015e565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101bc57600080fd5b610113600160a060020a0360043516602435610407565b34156101de57600080fd5b6101f2600160a060020a0360043516610473565b005b34156101ff57600080fd5b6102076104d8565b60405190815260200160405180910390f35b341561022457600080fd5b610113600160a060020a03600435811690602435166044356104de565b341561024c57600080fd5b610254610660565b60405163ffffffff909116815260200160405180910390f35b341561027857600080fd5b610113600160a060020a0360043516602435610665565b341561029a57600080fd5b610113600160a060020a0360043516602435610734565b34156102bc57600080fd5b610207600160a060020a036004351661082e565b34156102db57600080fd5b610113610849565b34156102ee57600080fd5b6102f66108ee565b604051600160a060020a03909116815260200160405180910390f35b341561031d57600080fd5b61013a6108fd565b341561033057600080fd5b610113600160a060020a0360043516602435610934565b341561035257600080fd5b6102f6610a2f565b341561036557600080fd5b610113600160a060020a0360043516602435610a3e565b341561038757600080fd5b610207600160a060020a0360043581169060243516610ae2565b34156103ac57600080fd5b6101f2600160a060020a0360043516610b0d565b60035460a060020a900460ff1681565b60408051908101604052601281527f4d656b617320537461626c6520546f6b656e0000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045433600160a060020a039081169116148061049e575060035433600160a060020a039081169116145b15156104a957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b6000600160a060020a03831615156104f557600080fd5b600160a060020a03841660009081526001602052604090205482111561051a57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561054d57600080fd5b600160a060020a038416600090815260016020526040902054610576908363ffffffff610ba816565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105ab908363ffffffff610bba16565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546105f3908363ffffffff610ba816565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b60045460009033600160a060020a039081169116148015610690575060035460a060020a900460ff16155b151561069b57600080fd5b6000546106ae908363ffffffff610bba16565b6000908155600160a060020a0384168152600160205260409020546106d9908363ffffffff610bba16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a250600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561079157600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107c8565b6107a1818463ffffffff610ba816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60045460009033600160a060020a0390811691161480610877575060035433600160a060020a039081169116145b801561088d575060035460a060020a900460ff16155b151561089857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60408051908101604052600581527f4d454b4153000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561094b57600080fd5b600160a060020a03331660009081526001602052604090205482111561097057600080fd5b600160a060020a033316600090815260016020526040902054610999908363ffffffff610ba816565b600160a060020a0333811660009081526001602052604080822093909355908516815220546109ce908363ffffffff610bba16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a76908363ffffffff610bba16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610b2857600080fd5b600160a060020a0381161515610b3d57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bb457fe5b50900390565b600082820183811015610bc957fe5b93925050505600a165627a7a72305820e6cffd93e329007cf9fbc5f2785058f365f59c5a32debeb813ac5bdcb8e1909b0029
Deployed Bytecode
0x6060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610127578063095ea7b3146101b157806314133a7c146101d357806318160ddd146101f457806323b872dd14610219578063313ce5671461024157806340c10f191461026d578063661884631461028f57806370a08231146102b15780637d64bcb4146102d05780638da5cb5b146102e357806395d89b4114610312578063a9059cbb14610325578063b1d6a2f014610347578063d73dd6231461035a578063dd62ed3e1461037c578063f2fde38b146103a1575b600080fd5b341561010b57600080fd5b6101136103c0565b604051901515815260200160405180910390f35b341561013257600080fd5b61013a6103d0565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017657808201518382015260200161015e565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101bc57600080fd5b610113600160a060020a0360043516602435610407565b34156101de57600080fd5b6101f2600160a060020a0360043516610473565b005b34156101ff57600080fd5b6102076104d8565b60405190815260200160405180910390f35b341561022457600080fd5b610113600160a060020a03600435811690602435166044356104de565b341561024c57600080fd5b610254610660565b60405163ffffffff909116815260200160405180910390f35b341561027857600080fd5b610113600160a060020a0360043516602435610665565b341561029a57600080fd5b610113600160a060020a0360043516602435610734565b34156102bc57600080fd5b610207600160a060020a036004351661082e565b34156102db57600080fd5b610113610849565b34156102ee57600080fd5b6102f66108ee565b604051600160a060020a03909116815260200160405180910390f35b341561031d57600080fd5b61013a6108fd565b341561033057600080fd5b610113600160a060020a0360043516602435610934565b341561035257600080fd5b6102f6610a2f565b341561036557600080fd5b610113600160a060020a0360043516602435610a3e565b341561038757600080fd5b610207600160a060020a0360043581169060243516610ae2565b34156103ac57600080fd5b6101f2600160a060020a0360043516610b0d565b60035460a060020a900460ff1681565b60408051908101604052601281527f4d656b617320537461626c6520546f6b656e0000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045433600160a060020a039081169116148061049e575060035433600160a060020a039081169116145b15156104a957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b6000600160a060020a03831615156104f557600080fd5b600160a060020a03841660009081526001602052604090205482111561051a57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561054d57600080fd5b600160a060020a038416600090815260016020526040902054610576908363ffffffff610ba816565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105ab908363ffffffff610bba16565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546105f3908363ffffffff610ba816565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b60045460009033600160a060020a039081169116148015610690575060035460a060020a900460ff16155b151561069b57600080fd5b6000546106ae908363ffffffff610bba16565b6000908155600160a060020a0384168152600160205260409020546106d9908363ffffffff610bba16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a250600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561079157600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107c8565b6107a1818463ffffffff610ba816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60045460009033600160a060020a0390811691161480610877575060035433600160a060020a039081169116145b801561088d575060035460a060020a900460ff16155b151561089857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60408051908101604052600581527f4d454b4153000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561094b57600080fd5b600160a060020a03331660009081526001602052604090205482111561097057600080fd5b600160a060020a033316600090815260016020526040902054610999908363ffffffff610ba816565b600160a060020a0333811660009081526001602052604080822093909355908516815220546109ce908363ffffffff610bba16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a76908363ffffffff610bba16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610b2857600080fd5b600160a060020a0381161515610b3d57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bb457fe5b50900390565b600082820183811015610bc957fe5b93925050505600a165627a7a72305820e6cffd93e329007cf9fbc5f2785058f365f59c5a32debeb813ac5bdcb8e1909b0029
Deployed Bytecode Sourcemap
8542:211:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6221:8;;;7707:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8592:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4579:191:0;;;;;;;;;;-1:-1:-1;;;;;4579:191:0;;;;;;;7780:150;;;;;;;;;;-1:-1:-1;;;;;7780:150:0;;;;;;;186:26;;;;;;;;;;;;;;;;;;;;;;;;;;;3490:453;;;;;;;;;;-1:-1:-1;;;;;3490:453:0;;;;;;;;;;;;8707:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7936:268;;;;;;;;;;-1:-1:-1;;;;;7936:268:0;;;;;;;5764:417;;;;;;;;;;-1:-1:-1;;;;;5764:417:0;;;;;;;2684:115;;;;;;;;;;-1:-1:-1;;;;;2684:115:0;;;;;8324:205;;;;;;;;;;;;6461:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;6461:20:0;;;;;;;;;;;;;;8655:39;;;;;;;;;;;;2073:392;;;;;;;;;;-1:-1:-1;;;;;2073:392:0;;;;;;;7749:24;;;;;;;;;;;;5486:272;;;;;;;;;;-1:-1:-1;;;;;5486:272:0;;;;;;;5097:144;;;;;;;;;;-1:-1:-1;;;;;5097:144:0;;;;;;;;;;7085:173;;;;;;;;;;-1:-1:-1;;;;;7085:173:0;;;;;7707:35;;;-1:-1:-1;;;7707:35:0;;;;;:::o;8592:50::-;;;;;;;;;;;;;;;;;;:::o;4579:191::-;-1:-1:-1;;;;;4668:10:0;4660:19;;4646:4;4660:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;4646:4;;4660:29;:19;4706:38;;4692:6;;4706:38;;;;;;;;;;;;;-1:-1:-1;4759:4:0;4579:191;;;;:::o;7780:150::-;7860:9;;7846:10;-1:-1:-1;;;;;7846:23:0;;;7860:9;;7846:23;;:46;;-1:-1:-1;7887:5:0;;7873:10;-1:-1:-1;;;;;7873:19:0;;;7887:5;;7873:19;7846:46;7838:55;;;;;;;;7900:9;:24;;-1:-1:-1;;7900:24:0;-1:-1:-1;;;;;7900:24:0;;;;;;;;;;7780:150::o;186:26::-;;;;:::o;3490:453::-;3572:4;-1:-1:-1;;;;;3593:17:0;;;;3585:26;;;;;;-1:-1:-1;;;;;3636:15:0;;;;;;:8;:15;;;;;;3626:25;;;3618:34;;;;;;-1:-1:-1;;;;;3677:14:0;;;;;;;:7;:14;;;;;;;;3692:10;3677:26;;;;;;;;;;3667:36;;;3659:45;;;;;;-1:-1:-1;;;;;3730:15:0;;;;;;:8;:15;;;;;;:27;;3750:6;3730:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3712:15:0;;;;;;;:8;:15;;;;;;:45;;;;3781:13;;;;;;;:25;;3799:6;3781:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3765:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;3843:14;;;;;:7;:14;;;;;3858:10;3843:26;;;;;;;;;;;:38;;3874:6;3843:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;3814:14:0;;;;;;;:7;:14;;;;;;;;3829:10;3814:26;;;;;;;;;;;:67;;;;3889:28;;;;;;3910:6;;3889:28;;;;;;;;;;;;;-1:-1:-1;3932:4:0;3490:453;;;;;:::o;8707:36::-;8741:2;8707:36;:::o;7936:268::-;8031:9;;7996:4;;8017:10;-1:-1:-1;;;;;8017:23:0;;;8031:9;;8017:23;:43;;;;-1:-1:-1;8045:15:0;;-1:-1:-1;;;8045:15:0;;;;8044:16;8017:43;8009:52;;;;;;;;8082:11;;:24;;8098:7;8082:24;:15;:24;:::i;:::-;8068:11;:38;;;-1:-1:-1;;;;;8129:13:0;;;;:8;:13;;;;;;:26;;8147:7;8129:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8113:13:0;;;;;;:8;:13;;;;;;;:42;;;;:13;8162:18;;8172:7;;8162:18;;;;;;;;;;;;;-1:-1:-1;8194:4:0;7936:268;;;;:::o;5764:417::-;-1:-1:-1;;;;;5893:10:0;5885:19;;5848:12;5885:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;5926:27;;;5922:168;;;-1:-1:-1;;;;;5972:10:0;5964:19;;5996:1;5964:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;5922:168;;;6052:30;:8;6065:16;6052:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;6028:10:0;6020:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;5922:168;-1:-1:-1;;;;;6105:10:0;6096:61;;6127:19;;;;:7;:19;;;;;;;;6096:61;;;6127:29;;;;;;;;;;;;6096:61;;;;;;;;;;;;;;;-1:-1:-1;6171:4:0;;5764:417;-1:-1:-1;;;5764:417:0:o;2684:115::-;-1:-1:-1;;;;;2776:16:0;2744:15;2776:16;;;:8;:16;;;;;;;2684:115::o;8324:205::-;8401:9;;8365:4;;8387:10;-1:-1:-1;;;;;8387:23:0;;;8401:9;;8387:23;;:46;;-1:-1:-1;8428:5:0;;8414:10;-1:-1:-1;;;;;8414:19:0;;;8428:5;;8414:19;8387:46;8386:68;;;;-1:-1:-1;8439:15:0;;-1:-1:-1;;;8439:15:0;;;;8438:16;8386:68;8378:77;;;;;;;;8462:15;:22;;-1:-1:-1;;8462:22:0;-1:-1:-1;;;8462:22:0;;;8491:14;;;;;;;;;;-1:-1:-1;8519:4:0;8324:205;:::o;6461:20::-;;;-1:-1:-1;;;;;6461:20:0;;:::o;8655:39::-;;;;;;;;;;;;;;;;;;:::o;2073:392::-;2136:4;-1:-1:-1;;;;;2157:17:0;;;;2149:26;;;;;;-1:-1:-1;;;;;2209:10:0;2200:20;;;;;:8;:20;;;;;;2190:30;;;2182:39;;;;;;-1:-1:-1;;;;;2326:10:0;2317:20;;;;;:8;:20;;;;;;:32;;2342:6;2317:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;2303:10:0;2294:20;;;;;;:8;:20;;;;;;:55;;;;2373:13;;;;;;;:25;;2391:6;2373:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2357:13:0;;;;;;;:8;:13;;;;;;;:41;;;;:13;2415:10;2406:33;;;;;;2432:6;;2406:33;;;;;;;;;;;;;-1:-1:-1;2454:4:0;2073:392;;;;:::o;7749:24::-;;;-1:-1:-1;;;;;7749:24:0;;:::o;5486:272::-;-1:-1:-1;;;;;5626:10:0;5618:19;;5565:12;5618:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;5652:11;5618:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;5594:10:0;5586:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;5671:61;;5586:78;5671:61;;;;;;;;;;;;;-1:-1:-1;5747:4:0;5486:272;;;;:::o;5097:144::-;-1:-1:-1;;;;;5209:15:0;;;5175:17;5209:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5097:144::o;7085:173::-;6896:5;;6882:10;-1:-1:-1;;;;;6882:19:0;;;6896:5;;6882:19;6874:28;;;;;;-1:-1:-1;;;;;7162:22:0;;;;7154:31;;;;;;7213:5;;-1:-1:-1;;;;;7192:37:0;;;;7213:5;7192:37;;;;;;;;;;7236:5;:16;;-1:-1:-1;;7236:16:0;-1:-1:-1;;;;;7236:16:0;;;;;;;;;;7085:173::o;1447:115::-;1505:7;1528:6;;;;1521:14;;;;-1:-1:-1;1550:5:0;;;1447:115::o;1571:129::-;1629:7;1658:5;;;1672:6;;;;1665:14;;;;1693:1;1571:129;-1:-1:-1;;;1571:129:0:o
Swarm Source
bzzr://e6cffd93e329007cf9fbc5f2785058f365f59c5a32debeb813ac5bdcb8e1909b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.