More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 25 from a total of 562 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Payout | 5114253 | 2585 days ago | IN | 0 ETH | 0.00128965 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.54131158 ETH | 0.0004543 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.54131158 ETH | 0.00226168 | ||||
Purchase | 5111680 | 2585 days ago | IN | 4.01396311 ETH | 0.0028234 | ||||
Purchase | 5111680 | 2585 days ago | IN | 3.14136243 ETH | 0.0009124 | ||||
Purchase | 5111680 | 2585 days ago | IN | 2.45845755 ETH | 0.0009124 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.40598369 ETH | 0.00091496 | ||||
Purchase | 5111680 | 2585 days ago | IN | 1.92401026 ETH | 0.0009124 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.40598369 ETH | 0.00091496 | ||||
Purchase | 5111680 | 2585 days ago | IN | 1.50574716 ETH | 0.0009124 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.22836582 ETH | 0.00045748 | ||||
Purchase | 5111680 | 2585 days ago | IN | 1.17841082 ETH | 0.0004562 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.92223455 ETH | 0.0004562 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.17127436 ETH | 0.00045748 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.12845577 ETH | 0.00045748 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.22836582 ETH | 0.00045748 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.72174878 ETH | 0.00002281 | ||||
Purchase | 5111680 | 2585 days ago | IN | 0.17127436 ETH | 0.00002287 | ||||
Purchase | 5111674 | 2585 days ago | IN | 0.17127436 ETH | 0.00002287 | ||||
Purchase | 5111668 | 2585 days ago | IN | 0.17127436 ETH | 0.00002287 | ||||
Set COO | 5111668 | 2585 days ago | IN | 0 ETH | 0.00144025 | ||||
Purchase | 5111649 | 2585 days ago | IN | 0.17127436 ETH | 0.00002287 | ||||
Purchase | 5111631 | 2585 days ago | IN | 0.22836582 ETH | 0.00259626 | ||||
Purchase | 5111621 | 2585 days ago | IN | 0.12845577 ETH | 0.00002287 | ||||
Purchase | 5111612 | 2585 days ago | IN | 0.17127436 ETH | 0.00022874 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 5114253 | 2585 days ago | 2.03048823 ETH | ||||
Transfer | 5111680 | 2585 days ago | 0 ETH | ||||
Transfer | 5111680 | 2585 days ago | 0.49800666 ETH | ||||
Transfer | 5111680 | 2585 days ago | 0 ETH | ||||
Transfer | 5111680 | 2585 days ago | 3.69284606 ETH | ||||
Transfer | 5111631 | 2585 days ago | 0 ETH | ||||
Transfer | 5111631 | 2585 days ago | 0.21009655 ETH | ||||
Transfer | 5111611 | 2585 days ago | 0 ETH | ||||
Transfer | 5111611 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111607 | 2585 days ago | 0 ETH | ||||
Transfer | 5111607 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111604 | 2585 days ago | 0 ETH | ||||
Transfer | 5111604 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111599 | 2585 days ago | 0 ETH | ||||
Transfer | 5111599 | 2585 days ago | 0.21009655 ETH | ||||
Transfer | 5111599 | 2585 days ago | 0 ETH | ||||
Transfer | 5111599 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111595 | 2585 days ago | 0 ETH | ||||
Transfer | 5111595 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111589 | 2585 days ago | 0 ETH | ||||
Transfer | 5111589 | 2585 days ago | 0.15757241 ETH | ||||
Transfer | 5111587 | 2585 days ago | 0 ETH | ||||
Transfer | 5111587 | 2585 days ago | 0.11817931 ETH | ||||
Transfer | 5111584 | 2585 days ago | 0 ETH | ||||
Transfer | 5111584 | 2585 days ago | 0.15757241 ETH |
Loading...
Loading
Contract Name:
EtherMeals
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-04 */ pragma solidity ^0.4.18; // solhint-disable-line /// @title Interface for contracts conforming to ERC-721: Non-Fungible Tokens /// @author Dieter Shirley <[email protected]> (https://github.com/dete) contract ERC721 { // Required methods function approve(address _to, uint256 _tokenId) public; function balanceOf(address _owner) public view returns (uint256 balance); function implementsERC721() public pure returns (bool); function ownerOf(uint256 _tokenId) public view returns (address addr); function takeOwnership(uint256 _tokenId) public; function totalSupply() public view returns (uint256 total); function transferFrom(address _from, address _to, uint256 _tokenId) public; function transfer(address _to, uint256 _tokenId) public; event Transfer(address indexed from, address indexed to, uint256 tokenId); event Approval(address indexed owner, address indexed approved, uint256 tokenId); // Optional // function name() public view returns (string name); // function symbol() public view returns (string symbol); // function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256 tokenId); // function tokenMetadata(uint256 _tokenId) public view returns (string infoUrl); } contract EtherMeals is ERC721 { /*** EVENTS ***/ /// @dev The Birth event is fired whenever a new Meal comes into existence. event Birth(uint256 tokenId, string name, address owner); /// @dev The TokenSold event is fired whenever a token is sold. event TokenSold(uint256 tokenId, uint256 oldPrice, uint256 newPrice, address prevOwner, address winner, string name); /// @dev Transfer event as defined in current draft of ERC721. /// ownership is assigned, including births. event Transfer(address from, address to, uint256 tokenId); /*** CONSTANTS ***/ /// @notice Name and symbol of the non fungible token, as defined in ERC721. string public constant NAME = "EtherMeals"; // solhint-disable-line string public constant SYMBOL = "MealToken"; // solhint-disable-line uint256 private startingPrice = 0.001 ether; uint256 private firstStepLimit = 0.053613 ether; uint256 private secondStepLimit = 0.564957 ether; /*** STORAGE ***/ /// @dev A mapping from meal IDs to the address that owns them. All meals have /// some valid owner address. mapping (uint256 => address) public mealIndexToOwner; // @dev A mapping from owner address to count of tokens that address owns. // Used internally inside balanceOf() to resolve ownership count. mapping (address => uint256) private ownershipTokenCount; /// @dev A mapping from MealIDs to an address that has been approved to call /// transferFrom(). Each Meal can only have one approved address for transfer /// at any time. A zero value means no approval is outstanding. mapping (uint256 => address) public mealIndexToApproved; // @dev A mapping from MealIDs to the price of the token. mapping (uint256 => uint256) private mealIndexToPrice; // The addresses of the accounts (or contracts) that can execute actions within each roles. address public ceoAddress; address public cooAddress; /*** DATATYPES ***/ struct Meal { string name; } Meal[] private meals; /*** ACCESS MODIFIERS ***/ /// @dev Access modifier for CEO-only functionality modifier onlyCEO() { require(msg.sender == ceoAddress); _; } /// @dev Access modifier for COO-only functionality modifier onlyCOO() { require(msg.sender == cooAddress); _; } /// Access modifier for contract owner only functionality modifier onlyCLevel() { require( msg.sender == ceoAddress || msg.sender == cooAddress ); _; } /*** CONSTRUCTOR ***/ function EtherMeals() public { ceoAddress = msg.sender; cooAddress = msg.sender; } /*** PUBLIC FUNCTIONS ***/ /// @notice Grant another address the right to transfer token via takeOwnership() and transferFrom(). /// @param _to The address to be granted transfer approval. Pass address(0) to /// clear all approvals. /// @param _tokenId The ID of the Token that can be transferred if this call succeeds. /// @dev Required for ERC-721 compliance. function approve( address _to, uint256 _tokenId ) public { // Caller must own token. require(_owns(msg.sender, _tokenId)); mealIndexToApproved[_tokenId] = _to; Approval(msg.sender, _to, _tokenId); } /// For querying balance of a particular account /// @param _owner The address for balance query /// @dev Required for ERC-721 compliance. function balanceOf(address _owner) public view returns (uint256 balance) { return ownershipTokenCount[_owner]; } /// @dev Creates a new Meal with the given name. function createContractMeal(string _name) public onlyCLevel { _createMeal(_name, address(this), startingPrice); } /// @notice Returns all the relevant information about a specific meal. /// @param _tokenId The tokenId of the meal of interest. function getMeal(uint256 _tokenId) public view returns ( string mealName, uint256 sellingPrice, address owner ) { Meal storage meal = meals[_tokenId]; mealName = meal.name; sellingPrice = mealIndexToPrice[_tokenId]; owner = mealIndexToOwner[_tokenId]; } function implementsERC721() public pure returns (bool) { return true; } /// @dev Required for ERC-721 compliance. function name() public pure returns (string) { return NAME; } /// For querying owner of token /// @param _tokenId The tokenID for owner inquiry /// @dev Required for ERC-721 compliance. function ownerOf(uint256 _tokenId) public view returns (address owner) { owner = mealIndexToOwner[_tokenId]; require(owner != address(0)); } function payout(address _to) public onlyCLevel { _payout(_to); } // Allows someone to send ether and obtain the token function purchase(uint256 _tokenId) public payable { address oldOwner = mealIndexToOwner[_tokenId]; address newOwner = msg.sender; uint256 sellingPrice = mealIndexToPrice[_tokenId]; // Making sure token owner is not sending to self require(oldOwner != newOwner); // Safety check to prevent against an unexpected 0x0 default. require(_addressNotNull(newOwner)); // Making sure sent amount is greater than or equal to the sellingPrice require(msg.value >= sellingPrice); uint256 payment = uint256(SafeMath.div(SafeMath.mul(sellingPrice, 92), 100)); uint256 purchaseExcess = SafeMath.sub(msg.value, sellingPrice); // Update prices if (sellingPrice < firstStepLimit) { // first stage mealIndexToPrice[_tokenId] = SafeMath.div(SafeMath.mul(sellingPrice, 200), 90); } else if (sellingPrice < secondStepLimit) { // second stage mealIndexToPrice[_tokenId] = SafeMath.div(SafeMath.mul(sellingPrice, 120), 90); } else { // third stage mealIndexToPrice[_tokenId] = SafeMath.div(SafeMath.mul(sellingPrice, 115), 90); } _transfer(oldOwner, newOwner, _tokenId); // Pay previous tokenOwner if owner is not contract if (oldOwner != address(this)) { oldOwner.transfer(payment); //(1-0.08) } TokenSold(_tokenId, sellingPrice, mealIndexToPrice[_tokenId], oldOwner, newOwner, meals[_tokenId].name); msg.sender.transfer(purchaseExcess); } function priceOf(uint256 _tokenId) public view returns (uint256 price) { return mealIndexToPrice[_tokenId]; } /// @dev Assigns a new address to act as the CEO. Only available to the current CEO. /// @param _newCEO The address of the new CEO function setCEO(address _newCEO) public onlyCEO { require(_newCEO != address(0)); ceoAddress = _newCEO; } /// @dev Assigns a new address to act as the COO. Only available to the current COO. /// @param _newCOO The address of the new COO function setCOO(address _newCOO) public onlyCEO { require(_newCOO != address(0)); cooAddress = _newCOO; } /// @dev Required for ERC-721 compliance. function symbol() public pure returns (string) { return SYMBOL; } /// @notice Allow pre-approved user to take ownership of a token /// @param _tokenId The ID of the Token that can be transferred if this call succeeds. /// @dev Required for ERC-721 compliance. function takeOwnership(uint256 _tokenId) public { address newOwner = msg.sender; address oldOwner = mealIndexToOwner[_tokenId]; // Safety check to prevent against an unexpected 0x0 default. require(_addressNotNull(newOwner)); // Making sure transfer is approved require(_approved(newOwner, _tokenId)); _transfer(oldOwner, newOwner, _tokenId); } /// @param _owner The owner whose celebrity tokens we are interested in. /// @dev This method MUST NEVER be called by smart contract code. First, it's fairly /// expensive (it walks the entire Meals array looking for meals belonging to owner), /// but it also returns a dynamic array, which is only supported for web3 calls, and /// not contract-to-contract calls. function tokensOfOwner(address _owner) public view returns(uint256[] ownerTokens) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalMeals = totalSupply(); uint256 resultIndex = 0; uint256 mealId; for (mealId = 0; mealId <= totalMeals; mealId++) { if (mealIndexToOwner[mealId] == _owner) { result[resultIndex] = mealId; resultIndex++; } } return result; } } /// For querying totalSupply of token /// @dev Required for ERC-721 compliance. function totalSupply() public view returns (uint256 total) { return meals.length; } /// Owner initates the transfer of the token to another account /// @param _to The address for the token to be transferred to. /// @param _tokenId The ID of the Token that can be transferred if this call succeeds. /// @dev Required for ERC-721 compliance. function transfer( address _to, uint256 _tokenId ) public { require(_owns(msg.sender, _tokenId)); require(_addressNotNull(_to)); _transfer(msg.sender, _to, _tokenId); } /// Third-party initiates transfer of token from address _from to address _to /// @param _from The address for the token to be transferred from. /// @param _to The address for the token to be transferred to. /// @param _tokenId The ID of the Token that can be transferred if this call succeeds. /// @dev Required for ERC-721 compliance. function transferFrom( address _from, address _to, uint256 _tokenId ) public { require(_owns(_from, _tokenId)); require(_approved(_to, _tokenId)); require(_addressNotNull(_to)); _transfer(_from, _to, _tokenId); } /*** PRIVATE FUNCTIONS ***/ /// Safety check on _to address to prevent against an unexpected 0x0 default. function _addressNotNull(address _to) private pure returns (bool) { return _to != address(0); } /// For checking approval of transfer for address _to function _approved(address _to, uint256 _tokenId) private view returns (bool) { return mealIndexToApproved[_tokenId] == _to; } /// For creating Meals function _createMeal(string _name, address _owner, uint256 _price) private { Meal memory _meal = Meal({ name: _name }); uint256 newMealId = meals.push(_meal) - 1; // It's probably never going to happen, 4 billion tokens are A LOT, but // let's just be 100% sure we never let this happen. require(newMealId == uint256(uint32(newMealId))); Birth(newMealId, _name, _owner); mealIndexToPrice[newMealId] = _price; // This will assign ownership, and also emit the Transfer event as // per ERC721 draft _transfer(address(0), _owner, newMealId); } /// Check for token ownership function _owns(address claimant, uint256 _tokenId) private view returns (bool) { return claimant == mealIndexToOwner[_tokenId]; } /// For paying out balance on contract function _payout(address _to) private { if (_to == address(0)) { ceoAddress.transfer(this.balance); } else { _to.transfer(this.balance); } } /// @dev Assigns ownership of a specific Meal to an address. function _transfer(address _from, address _to, uint256 _tokenId) private { // Since the number of meals is capped to 2^32 we can't overflow this ownershipTokenCount[_to]++; //transfer ownership mealIndexToOwner[_tokenId] = _to; // When creating new meals _from is 0x0, but we can't account that address. if (_from != address(0)) { ownershipTokenCount[_from]--; // clear any previously approved ownership exchange delete mealIndexToApproved[_tokenId]; } // Emit the transfer event. Transfer(_from, _to, _tokenId); } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ 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; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ceoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"payout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"implementsERC721","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"total","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"mealIndexToApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCEO","type":"address"}],"name":"setCEO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCOO","type":"address"}],"name":"setCOO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"name":"ownerTokens","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"mealIndexToOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"createContractMeal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cooAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"takeOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"priceOf","outputs":[{"name":"price","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getMeal","outputs":[{"name":"mealName","type":"string"},{"name":"sellingPrice","type":"uint256"},{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"purchase","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"owner","type":"address"}],"name":"Birth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"oldPrice","type":"uint256"},{"indexed":false,"name":"newPrice","type":"uint256"},{"indexed":false,"name":"prevOwner","type":"address"},{"indexed":false,"name":"winner","type":"address"},{"indexed":false,"name":"name","type":"string"}],"name":"TokenSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"approved","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
606060405266038d7ea4c6800060005566be78bd4c57d0006001556707d72165f25ed000600255341561003157600080fd5b60078054600160a060020a033316600160a060020a031991821681179092556008805490911690911790556112db8061006b6000396000f30060606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780630a0f8168146101f05780630b7e9c441461021f5780631051db341461023e57806318160ddd146102655780631ae9655b1461028a57806323b872dd146102a057806327d7874c146102c85780632ba73c15146102e75780636352211e1461030657806370a082311461031c5780638462151c1461033b578063870c2216146103ad57806389625551146103c357806395d89b4114610414578063a3f4df7e14610427578063a9059cbb1461043a578063b047fb501461045c578063b2e6ceeb1461046f578063b9186d7d14610485578063c2f0add71461049b578063efef39a114610540578063f76f8d781461054b575b600080fd5b341561014d57600080fd5b61015561055e565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610191578082015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d757600080fd5b6101ee600160a060020a03600435166024356105a0565b005b34156101fb57600080fd5b61020361062c565b604051600160a060020a03909116815260200160405180910390f35b341561022a57600080fd5b6101ee600160a060020a036004351661063b565b341561024957600080fd5b61025161067d565b604051901515815260200160405180910390f35b341561027057600080fd5b610278610682565b60405190815260200160405180910390f35b341561029557600080fd5b610203600435610688565b34156102ab57600080fd5b6101ee600160a060020a03600435811690602435166044356106a3565b34156102d357600080fd5b6101ee600160a060020a03600435166106f1565b34156102f257600080fd5b6101ee600160a060020a0360043516610750565b341561031157600080fd5b6102036004356107af565b341561032757600080fd5b610278600160a060020a03600435166107d8565b341561034657600080fd5b61035a600160a060020a03600435166107f3565b60405160208082528190810183818151815260200191508051906020019060200280838360005b83811015610399578082015183820152602001610381565b505050509050019250505060405180910390f35b34156103b857600080fd5b6102036004356108d4565b34156103ce57600080fd5b6101ee60046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506108ef95505050505050565b341561041f57600080fd5b610155610932565b341561043257600080fd5b610155610973565b341561044557600080fd5b6101ee600160a060020a03600435166024356109aa565b341561046757600080fd5b6102036109e2565b341561047a57600080fd5b6101ee6004356109f1565b341561049057600080fd5b610278600435610a3f565b34156104a657600080fd5b6104b1600435610a51565b60405160208101839052600160a060020a038216604082015260608082528190810185818151815260200191508051906020019080838360005b838110156105035780820151838201526020016104eb565b50505050905090810190601f1680156105305780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b6101ee600435610b47565b341561055657600080fd5b610155610dc6565b610566611161565b60408051908101604052600a81527f45746865724d65616c7300000000000000000000000000000000000000000000602082015290505b90565b6105aa3382610dfd565b15156105b557600080fd5b60008181526005602052604090819020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038581169182179092559133909116907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b600754600160a060020a031681565b60075433600160a060020a0390811691161480610666575060085433600160a060020a039081169116145b151561067157600080fd5b61067a81610e1d565b50565b600190565b60095490565b600560205260009081526040902054600160a060020a031681565b6106ad8382610dfd565b15156106b857600080fd5b6106c28282610ea8565b15156106cd57600080fd5b6106d682610ec8565b15156106e157600080fd5b6106ec838383610ed6565b505050565b60075433600160a060020a0390811691161461070c57600080fd5b600160a060020a038116151561072157600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075433600160a060020a0390811691161461076b57600080fd5b600160a060020a038116151561078057600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081815260036020526040902054600160a060020a03168015156107d357600080fd5b919050565b600160a060020a031660009081526004602052604090205490565b6107fb611161565b6000610805611161565b6000806000610813876107d8565b945084151561084357600060405180591061082b5750595b908082528060200260200182016040525095506108ca565b846040518059106108515750595b9080825280602002602001820160405250935061086c610682565b925060009150600090505b8281116108c657600081815260036020526040902054600160a060020a03888116911614156108be57808483815181106108ad57fe5b602090810290910101526001909101905b600101610877565b8395505b5050505050919050565b600360205260009081526040902054600160a060020a031681565b60075433600160a060020a039081169116148061091a575060085433600160a060020a039081169116145b151561092557600080fd5b61067a8130600054610fc6565b61093a611161565b60408051908101604052600981527f4d65616c546f6b656e00000000000000000000000000000000000000000000006020820152905090565b60408051908101604052600a81527f45746865724d65616c7300000000000000000000000000000000000000000000602082015281565b6109b43382610dfd565b15156109bf57600080fd5b6109c882610ec8565b15156109d357600080fd5b6109de338383610ed6565b5050565b600854600160a060020a031681565b6000818152600360205260409020543390600160a060020a0316610a1482610ec8565b1515610a1f57600080fd5b610a298284610ea8565b1515610a3457600080fd5b6106ec818385610ed6565b60009081526006602052604090205490565b610a59611161565b6000806000600985815481101515610a6d57fe5b90600052602060002090019050806000018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b50505060009788525050600660209081526040808820546003909252909620549096600160a060020a03909116945092505050565b6000818152600360209081526040808320546006909252822054600160a060020a0391821692339281908416851415610b7f57600080fd5b610b8884610ec8565b1515610b9357600080fd5b3483901015610ba157600080fd5b610bb6610baf84605c611102565b6064611138565b9150610bc2348461114f565b9050600154831015610bf757610be3610bdc8460c8611102565b605a611138565b600087815260066020526040902055610c2d565b600254831015610c0f57610be3610bdc846078611102565b610c1d610bdc846073611102565b6000878152600660205260409020555b610c38858588610ed6565b30600160a060020a031685600160a060020a0316141515610c8457600160a060020a03851682156108fc0283604051600060405180830381858888f193505050501515610c8457600080fd5b7e8201e7bcbf010c2c07de59d6e97cb7e3cf67a46125c49cbc89b9d2cde1f48f8684600660008a815260200190815260200160002054888860098c815481101515610ccb57fe5b60009182526020909120016040518681526020810186905260408101859052600160a060020a0380851660608301528316608082015260c060a082018181528354600260001961010060018416150201909116049183018290529060e083019084908015610d7a5780601f10610d4f57610100808354040283529160200191610d7a565b820191906000526020600020905b815481529060010190602001808311610d5d57829003601f168201915b505097505050505050505060405180910390a1600160a060020a03331681156108fc0282604051600060405180830381858888f193505050501515610dbe57600080fd5b505050505050565b60408051908101604052600981527f4d65616c546f6b656e0000000000000000000000000000000000000000000000602082015281565b600090815260036020526040902054600160a060020a0390811691161490565b600160a060020a0381161515610e6b57600754600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610e6657600080fd5b61067a565b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561067a57600080fd5b600090815260056020526040902054600160a060020a0391821691161490565b600160a060020a0316151590565b600160a060020a0380831660008181526004602090815260408083208054600101905585835260039091529020805473ffffffffffffffffffffffffffffffffffffffff19169091179055831615610f7157600160a060020a0383166000908152600460209081526040808320805460001901905583835260059091529020805473ffffffffffffffffffffffffffffffffffffffff191690555b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838383604051600160a060020a039384168152919092166020820152604080820192909252606001905180910390a1505050565b610fce611173565b6000602060405190810160405285815260098054919350600191808301610ff5838261118c565b600092835260209092208591018151819080516110169291602001906111b0565b50505003905063ffffffff8116811461102e57600080fd5b7fb3b0cf861f168bcdb275c69da97b2543631552ba562628aa3c7317d4a6089ef2818686604051838152600160a060020a038216604082015260606020820181815290820184818151815260200191508051906020019080838360005b838110156110a357808201518382015260200161108b565b50505050905090810190601f1680156110d05780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160008181526006602052604081208490556110fb908583610ed6565b5050505050565b6000808315156111155760009150611131565b5082820282848281151561112557fe5b041461112d57fe5b8091505b5092915050565b600080828481151561114657fe5b04949350505050565b60008282111561115b57fe5b50900390565b60206040519081016040526000815290565b602060405190810160405280611187611161565b905290565b8154818355818115116106ec576000838152602090206106ec91810190830161122e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111f157805160ff191683800117855561121e565b8280016001018555821561121e579182015b8281111561121e578251825591602001919060010190611203565b5061122a929150611251565b5090565b61059d91905b8082111561122a576000611248828261126b565b50600101611234565b61059d91905b8082111561122a5760008155600101611257565b50805460018160011615610100020316600290046000825580601f10611291575061067a565b601f01602090049060005260206000209081019061067a91906112515600a165627a7a723058205990ba5de93851319f9a900f5dffc35039990cf108c23e0c65d44e3642f748000029
Deployed Bytecode
0x60606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780630a0f8168146101f05780630b7e9c441461021f5780631051db341461023e57806318160ddd146102655780631ae9655b1461028a57806323b872dd146102a057806327d7874c146102c85780632ba73c15146102e75780636352211e1461030657806370a082311461031c5780638462151c1461033b578063870c2216146103ad57806389625551146103c357806395d89b4114610414578063a3f4df7e14610427578063a9059cbb1461043a578063b047fb501461045c578063b2e6ceeb1461046f578063b9186d7d14610485578063c2f0add71461049b578063efef39a114610540578063f76f8d781461054b575b600080fd5b341561014d57600080fd5b61015561055e565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610191578082015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d757600080fd5b6101ee600160a060020a03600435166024356105a0565b005b34156101fb57600080fd5b61020361062c565b604051600160a060020a03909116815260200160405180910390f35b341561022a57600080fd5b6101ee600160a060020a036004351661063b565b341561024957600080fd5b61025161067d565b604051901515815260200160405180910390f35b341561027057600080fd5b610278610682565b60405190815260200160405180910390f35b341561029557600080fd5b610203600435610688565b34156102ab57600080fd5b6101ee600160a060020a03600435811690602435166044356106a3565b34156102d357600080fd5b6101ee600160a060020a03600435166106f1565b34156102f257600080fd5b6101ee600160a060020a0360043516610750565b341561031157600080fd5b6102036004356107af565b341561032757600080fd5b610278600160a060020a03600435166107d8565b341561034657600080fd5b61035a600160a060020a03600435166107f3565b60405160208082528190810183818151815260200191508051906020019060200280838360005b83811015610399578082015183820152602001610381565b505050509050019250505060405180910390f35b34156103b857600080fd5b6102036004356108d4565b34156103ce57600080fd5b6101ee60046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506108ef95505050505050565b341561041f57600080fd5b610155610932565b341561043257600080fd5b610155610973565b341561044557600080fd5b6101ee600160a060020a03600435166024356109aa565b341561046757600080fd5b6102036109e2565b341561047a57600080fd5b6101ee6004356109f1565b341561049057600080fd5b610278600435610a3f565b34156104a657600080fd5b6104b1600435610a51565b60405160208101839052600160a060020a038216604082015260608082528190810185818151815260200191508051906020019080838360005b838110156105035780820151838201526020016104eb565b50505050905090810190601f1680156105305780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b6101ee600435610b47565b341561055657600080fd5b610155610dc6565b610566611161565b60408051908101604052600a81527f45746865724d65616c7300000000000000000000000000000000000000000000602082015290505b90565b6105aa3382610dfd565b15156105b557600080fd5b60008181526005602052604090819020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038581169182179092559133909116907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b600754600160a060020a031681565b60075433600160a060020a0390811691161480610666575060085433600160a060020a039081169116145b151561067157600080fd5b61067a81610e1d565b50565b600190565b60095490565b600560205260009081526040902054600160a060020a031681565b6106ad8382610dfd565b15156106b857600080fd5b6106c28282610ea8565b15156106cd57600080fd5b6106d682610ec8565b15156106e157600080fd5b6106ec838383610ed6565b505050565b60075433600160a060020a0390811691161461070c57600080fd5b600160a060020a038116151561072157600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075433600160a060020a0390811691161461076b57600080fd5b600160a060020a038116151561078057600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081815260036020526040902054600160a060020a03168015156107d357600080fd5b919050565b600160a060020a031660009081526004602052604090205490565b6107fb611161565b6000610805611161565b6000806000610813876107d8565b945084151561084357600060405180591061082b5750595b908082528060200260200182016040525095506108ca565b846040518059106108515750595b9080825280602002602001820160405250935061086c610682565b925060009150600090505b8281116108c657600081815260036020526040902054600160a060020a03888116911614156108be57808483815181106108ad57fe5b602090810290910101526001909101905b600101610877565b8395505b5050505050919050565b600360205260009081526040902054600160a060020a031681565b60075433600160a060020a039081169116148061091a575060085433600160a060020a039081169116145b151561092557600080fd5b61067a8130600054610fc6565b61093a611161565b60408051908101604052600981527f4d65616c546f6b656e00000000000000000000000000000000000000000000006020820152905090565b60408051908101604052600a81527f45746865724d65616c7300000000000000000000000000000000000000000000602082015281565b6109b43382610dfd565b15156109bf57600080fd5b6109c882610ec8565b15156109d357600080fd5b6109de338383610ed6565b5050565b600854600160a060020a031681565b6000818152600360205260409020543390600160a060020a0316610a1482610ec8565b1515610a1f57600080fd5b610a298284610ea8565b1515610a3457600080fd5b6106ec818385610ed6565b60009081526006602052604090205490565b610a59611161565b6000806000600985815481101515610a6d57fe5b90600052602060002090019050806000018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b50505060009788525050600660209081526040808820546003909252909620549096600160a060020a03909116945092505050565b6000818152600360209081526040808320546006909252822054600160a060020a0391821692339281908416851415610b7f57600080fd5b610b8884610ec8565b1515610b9357600080fd5b3483901015610ba157600080fd5b610bb6610baf84605c611102565b6064611138565b9150610bc2348461114f565b9050600154831015610bf757610be3610bdc8460c8611102565b605a611138565b600087815260066020526040902055610c2d565b600254831015610c0f57610be3610bdc846078611102565b610c1d610bdc846073611102565b6000878152600660205260409020555b610c38858588610ed6565b30600160a060020a031685600160a060020a0316141515610c8457600160a060020a03851682156108fc0283604051600060405180830381858888f193505050501515610c8457600080fd5b7e8201e7bcbf010c2c07de59d6e97cb7e3cf67a46125c49cbc89b9d2cde1f48f8684600660008a815260200190815260200160002054888860098c815481101515610ccb57fe5b60009182526020909120016040518681526020810186905260408101859052600160a060020a0380851660608301528316608082015260c060a082018181528354600260001961010060018416150201909116049183018290529060e083019084908015610d7a5780601f10610d4f57610100808354040283529160200191610d7a565b820191906000526020600020905b815481529060010190602001808311610d5d57829003601f168201915b505097505050505050505060405180910390a1600160a060020a03331681156108fc0282604051600060405180830381858888f193505050501515610dbe57600080fd5b505050505050565b60408051908101604052600981527f4d65616c546f6b656e0000000000000000000000000000000000000000000000602082015281565b600090815260036020526040902054600160a060020a0390811691161490565b600160a060020a0381161515610e6b57600754600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610e6657600080fd5b61067a565b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561067a57600080fd5b600090815260056020526040902054600160a060020a0391821691161490565b600160a060020a0316151590565b600160a060020a0380831660008181526004602090815260408083208054600101905585835260039091529020805473ffffffffffffffffffffffffffffffffffffffff19169091179055831615610f7157600160a060020a0383166000908152600460209081526040808320805460001901905583835260059091529020805473ffffffffffffffffffffffffffffffffffffffff191690555b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838383604051600160a060020a039384168152919092166020820152604080820192909252606001905180910390a1505050565b610fce611173565b6000602060405190810160405285815260098054919350600191808301610ff5838261118c565b600092835260209092208591018151819080516110169291602001906111b0565b50505003905063ffffffff8116811461102e57600080fd5b7fb3b0cf861f168bcdb275c69da97b2543631552ba562628aa3c7317d4a6089ef2818686604051838152600160a060020a038216604082015260606020820181815290820184818151815260200191508051906020019080838360005b838110156110a357808201518382015260200161108b565b50505050905090810190601f1680156110d05780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160008181526006602052604081208490556110fb908583610ed6565b5050505050565b6000808315156111155760009150611131565b5082820282848281151561112557fe5b041461112d57fe5b8091505b5092915050565b600080828481151561114657fe5b04949350505050565b60008282111561115b57fe5b50900390565b60206040519081016040526000815290565b602060405190810160405280611187611161565b905290565b8154818355818115116106ec576000838152602090206106ec91810190830161122e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111f157805160ff191683800117855561121e565b8280016001018555821561121e579182015b8281111561121e578251825591602001919060010190611203565b5061122a929150611251565b5090565b61059d91905b8082111561122a576000611248828261126b565b50600101611234565b61059d91905b8082111561122a5760008155600101611257565b50805460018160011615610100020316600290046000825580601f10611291575061067a565b601f01602090049060005260206000209081019061067a91906112515600a165627a7a723058205990ba5de93851319f9a900f5dffc35039990cf108c23e0c65d44e3642f748000029
Swarm Source
bzzr://5990ba5de93851319f9a900f5dffc35039990cf108c23e0c65d44e3642f74800
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.