Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Finalize Ico | 12739852 | 1303 days ago | IN | 0 ETH | 0.00045683 | ||||
Transfer | 12739157 | 1303 days ago | IN | 0.1 ETH | 0.00156382 | ||||
Transfer | 12728725 | 1304 days ago | IN | 0 ETH | 0.00059795 | ||||
Transfer | 12728700 | 1304 days ago | IN | 0.5 ETH | 0.00115611 | ||||
Transfer | 12726286 | 1305 days ago | IN | 0.1 ETH | 0.00109426 | ||||
Transfer | 12718249 | 1306 days ago | IN | 0.035 ETH | 0.00116721 | ||||
Transfer | 12705741 | 1308 days ago | IN | 0.04 ETH | 0.00100531 | ||||
Transfer | 12704923 | 1308 days ago | IN | 0.02988669 ETH | 0.00131311 | ||||
Transfer | 12704659 | 1308 days ago | IN | 0 ETH | 0.00135881 | ||||
Transfer | 12704607 | 1308 days ago | IN | 0.064 ETH | 0.00145212 | ||||
Transfer | 12704536 | 1308 days ago | IN | 0.02018572 ETH | 0.00156382 | ||||
Transfer | 12704403 | 1308 days ago | IN | 0.125 ETH | 0.00301595 | ||||
Transfer | 12704283 | 1308 days ago | IN | 0.017 ETH | 0.00342869 | ||||
Transfer | 12704216 | 1308 days ago | IN | 0.25 ETH | 0.00328279 | ||||
Transfer | 12686285 | 1311 days ago | IN | 0.00238925 ETH | 0.00111702 | ||||
Transfer | 12684030 | 1311 days ago | IN | 0.00317354 ETH | 0.00737233 | ||||
Transfer | 12682640 | 1312 days ago | IN | 0 ETH | 0.00052779 | ||||
Transfer | 12682606 | 1312 days ago | IN | 1.25 ETH | 0.00096295 | ||||
Transfer | 12670695 | 1313 days ago | IN | 0.00956924 ETH | 0.00087541 | ||||
Transfer | 12669133 | 1314 days ago | IN | 1 ETH | 0.00090051 | ||||
Start Ico | 12669066 | 1314 days ago | IN | 0 ETH | 0.00026794 | ||||
Transfer | 12632147 | 1319 days ago | IN | 0 ETH | 0.00057501 | ||||
Transfer | 12598094 | 1325 days ago | IN | 0 ETH | 0.00062484 |
Latest 16 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
12739157 | 1303 days ago | 0.1 ETH | ||||
12728700 | 1304 days ago | 0.5 ETH | ||||
12726286 | 1305 days ago | 0.1 ETH | ||||
12718249 | 1306 days ago | 0.035 ETH | ||||
12705741 | 1308 days ago | 0.04 ETH | ||||
12704923 | 1308 days ago | 0.02988669 ETH | ||||
12704607 | 1308 days ago | 0.064 ETH | ||||
12704536 | 1308 days ago | 0.02018572 ETH | ||||
12704403 | 1308 days ago | 0.125 ETH | ||||
12704283 | 1308 days ago | 0.017 ETH | ||||
12704216 | 1308 days ago | 0.25 ETH | ||||
12686285 | 1311 days ago | 0.00238925 ETH | ||||
12684030 | 1311 days ago | 0.00317354 ETH | ||||
12682606 | 1312 days ago | 1.25 ETH | ||||
12670695 | 1313 days ago | 0.00956924 ETH | ||||
12669133 | 1314 days ago | 1 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PixelShiba
Compiler Version
v0.4.23+commit.124ca40d
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-09 */ pragma solidity ^0.4.23; /** * Welcome to PixelShiba Token Smart Contract URL: pixelshiba.com Total Supply: 100,000,000,000,000,000 • ICO(Crowdsale): Reserved upto 2% Unsold token will be paid for referral program and subject to burn for the rest • Team/Marketing 1% • Initial Burn to address 0x000dead 30% • 45% will be added to Liquidity and lock in 5 Years * */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. **/ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } 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 a / b; } /** * @dev Subtracts 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 c) { c = a + b; assert(c >= a); return c; } } /** * @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. **/ constructor() 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) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic interface * @dev Basic ERC20 interface **/ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view 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 view 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 Basic token * @dev Basic version of PixelShibaToken, with no allowances. **/ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence **/ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit 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 view returns (uint256) { return balances[_owner]; } } contract PixelShibaToken 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); emit 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; emit 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 view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a 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 * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. **/ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. **/ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Configurable * @dev Configurable varriables of the contract **/ contract Configurable { uint256 public constant cap = 2000000000000000*10**18; uint256 public constant basePrice = 40000000000000*10**18; // tokens per 1 ether uint256 public tokensSold = 0; uint256 public constant tokenReserve = 98000000000000000*10**18; uint256 public remainingTokens = 0; } /** * @title CrowdsaleToken * @dev Contract to preform crowd sale with token **/ contract CrowdsaleToken is PixelShibaToken, Configurable, Ownable { /** * @dev enum of current crowd sale state **/ enum Stages { none, icoStart, icoEnd } Stages currentStage; /** * @dev constructor of CrowdsaleToken **/ constructor() public { currentStage = Stages.none; balances[owner] = balances[owner].add(tokenReserve); totalSupply_ = totalSupply_.add(tokenReserve); remainingTokens = cap; emit Transfer(address(this), owner, tokenReserve); } /** * @dev fallback function to send ether to for Crowd sale **/ function () public payable { require(currentStage == Stages.icoStart); require(msg.value > 0); require(remainingTokens > 0); uint256 weiAmount = msg.value; // Calculate tokens to sell uint256 tokens = weiAmount.mul(basePrice).div(1 ether); uint256 returnWei = 0; if(tokensSold.add(tokens) > cap){ uint256 newTokens = cap.sub(tokensSold); uint256 newWei = newTokens.div(basePrice).mul(1 ether); returnWei = weiAmount.sub(newWei); weiAmount = newWei; tokens = newTokens; } tokensSold = tokensSold.add(tokens); // Increment raised amount remainingTokens = cap.sub(tokensSold); if(returnWei > 0){ msg.sender.transfer(returnWei); emit Transfer(address(this), msg.sender, returnWei); } balances[msg.sender] = balances[msg.sender].add(tokens); emit Transfer(address(this), msg.sender, tokens); totalSupply_ = totalSupply_.add(tokens); owner.transfer(weiAmount);// Send money to owner } /** * @dev startIco starts the public ICO **/ function startIco() public onlyOwner { require(currentStage != Stages.icoEnd); currentStage = Stages.icoStart; } /** * @dev endIco closes down the ICO **/ function endIco() internal { currentStage = Stages.icoEnd; // Transfer any remaining tokens if(remainingTokens > 0) balances[owner] = balances[owner].add(remainingTokens); // transfer any remaining ETH balance in the contract to the owner owner.transfer(address(this).balance); } /** * @dev finalizeIco closes down the ICO and sets needed varriables **/ function finalizeIco() public onlyOwner { require(currentStage != Stages.icoEnd); endIco(); } } /** * @title PixelShiba * @dev PixelShiba Inspiring Team **/ contract PixelShiba is CrowdsaleToken { string public constant name = "PixelShiba"; string public constant symbol = "PIBA"; uint32 public constant decimals = 18; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"startIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeIco","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"remainingTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReserve","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"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":"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
6080604090815260006003819055600481905560058054600160a060020a03191633600160a060020a039081169190911760a060020a60ff021981169092551681526020819052205461006e906e12dfc5e63e325bba04d9d4000000006401000000006106f461012182021704565b600554600160a060020a03166000908152602081905260409020556001546100b2906e12dfc5e63e325bba04d9d4000000006401000000006106f461012182021704565b6001556d629b8c891b267182b61400000000600455600554604080516e12dfc5e63e325bba04d9d40000000081529051600160a060020a03928316923016917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3610134565b8181018281101561012e57fe5b92915050565b610f0d806101436000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146103bf578063095ea7b31461044957806318160ddd1461048157806323b872dd146104a8578063313ce567146104d2578063355274ea14610500578063518ab2a814610515578063661884631461052a57806370a082311461054e57806389311e6f1461056f5780638da5cb5b14610586578063903a3ef6146105b757806395d89b41146105cc578063a9059cbb146105e1578063bf58390314610605578063c7876ea41461061a578063cbcb31711461062f578063d73dd62314610644578063dd62ed3e14610668578063f2fde38b1461068f575b600080808080600160055474010000000000000000000000000000000000000000900460ff16600281111561014257fe5b1461014c57600080fd5b6000341161015957600080fd5b60045460001061016857600080fd5b3494506101a1670de0b6b3a7640000610195876d01f8def8808b02452c9a0000000063ffffffff6106b016565b9063ffffffff6106df16565b9350600092506d629b8c891b267182b614000000006101cb856003546106f490919063ffffffff16565b1115610246576003546101f3906d629b8c891b267182b614000000009063ffffffff61070116565b915061022b670de0b6b3a764000061021f846d01f8def8808b02452c9a0000000063ffffffff6106df16565b9063ffffffff6106b016565b905061023d858263ffffffff61070116565b92508094508193505b600354610259908563ffffffff6106f416565b600381905561027d906d629b8c891b267182b614000000009063ffffffff61070116565b60045560008311156102fa57604051600160a060020a0333169084156108fc029085906000818181858888f193505050501580156102bf573d6000803e3d6000fd5b5033600160a060020a031630600160a060020a0316600080516020610ec2833981519152856040518082815260200191505060405180910390a35b600160a060020a033316600090815260208190526040902054610323908563ffffffff6106f416565b600160a060020a0333811660008181526020818152604091829020949094558051888152905191933090931692600080516020610ec283398151915292918290030190a360015461037a908563ffffffff6106f416565b600155600554604051600160a060020a039091169086156108fc029087906000818181858888f193505050501580156103b7573d6000803e3d6000fd5b505050505050005b3480156103cb57600080fd5b506103d4610713565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040e5781810151838201526020016103f6565b50505050905090810190601f16801561043b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045557600080fd5b5061046d600160a060020a036004351660243561074a565b604080519115158252519081900360200190f35b34801561048d57600080fd5b506104966107b4565b60408051918252519081900360200190f35b3480156104b457600080fd5b5061046d600160a060020a03600435811690602435166044356107ba565b3480156104de57600080fd5b506104e7610928565b6040805163ffffffff9092168252519081900360200190f35b34801561050c57600080fd5b5061049661092d565b34801561052157600080fd5b5061049661093f565b34801561053657600080fd5b5061046d600160a060020a0360043516602435610945565b34801561055a57600080fd5b50610496600160a060020a0360043516610a3e565b34801561057b57600080fd5b50610584610a59565b005b34801561059257600080fd5b5061059b610ae1565b60408051600160a060020a039092168252519081900360200190f35b3480156105c357600080fd5b50610584610af0565b3480156105d857600080fd5b506103d4610b4b565b3480156105ed57600080fd5b5061046d600160a060020a0360043516602435610b82565b34801561061157600080fd5b50610496610c69565b34801561062657600080fd5b50610496610c6f565b34801561063b57600080fd5b50610496610c81565b34801561065057600080fd5b5061046d600160a060020a0360043516602435610c94565b34801561067457600080fd5b50610496600160a060020a0360043581169060243516610d36565b34801561069b57600080fd5b50610584600160a060020a0360043516610d61565b60008215156106c1575060006106d9565b508181028183828115156106d157fe5b04146106d957fe5b92915050565b600081838115156106ec57fe5b049392505050565b818101828110156106d957fe5b60008282111561070d57fe5b50900390565b60408051808201909152600a81527f506978656c536869626100000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156107d157600080fd5b600160a060020a0384166000908152602081905260409020548211156107f657600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561082957600080fd5b600160a060020a038416600090815260208190526040902054610852908363ffffffff61070116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610887908363ffffffff6106f416565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546108cd908363ffffffff61070116565b600160a060020a03808616600081815260026020908152604080832033861684528252918290209490945580518681529051928716939192600080516020610ec2833981519152929181900390910190a35060019392505050565b601281565b6d629b8c891b267182b6140000000081565b60035481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156109a257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109d9565b6109b2818463ffffffff61070116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60055433600160a060020a03908116911614610a7457600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610a9f57fe5b1415610aaa57600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600554600160a060020a031681565b60055433600160a060020a03908116911614610b0b57600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610b3657fe5b1415610b4157600080fd5b610b49610dfa565b565b60408051808201909152600481527f5049424100000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610b9957600080fd5b600160a060020a033316600090815260208190526040902054821115610bbe57600080fd5b600160a060020a033316600090815260208190526040902054610be7908363ffffffff61070116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c1c908363ffffffff6106f416565b600160a060020a0380851660008181526020818152604091829020949094558051868152905191933390931692600080516020610ec283398151915292918290030190a350600192915050565b60045481565b6d01f8def8808b02452c9a0000000081565b6e12dfc5e63e325bba04d9d40000000081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ccc908363ffffffff6106f416565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60055433600160a060020a03908116911614610d7c57600080fd5b600160a060020a0381161515610d9157600080fd5b600554604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560045460001015610e8357600454600554600160a060020a0316600090815260208190526040902054610e679163ffffffff6106f416565b600554600160a060020a03166000908152602081905260409020555b600554604051600160a060020a039182169130163180156108fc02916000818181858888f19350505050158015610ebe573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820cbdf09e63404b70b0db1ddfeff6676f5aa69448130eef8ebcafb77a90f20c3f20029
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146103bf578063095ea7b31461044957806318160ddd1461048157806323b872dd146104a8578063313ce567146104d2578063355274ea14610500578063518ab2a814610515578063661884631461052a57806370a082311461054e57806389311e6f1461056f5780638da5cb5b14610586578063903a3ef6146105b757806395d89b41146105cc578063a9059cbb146105e1578063bf58390314610605578063c7876ea41461061a578063cbcb31711461062f578063d73dd62314610644578063dd62ed3e14610668578063f2fde38b1461068f575b600080808080600160055474010000000000000000000000000000000000000000900460ff16600281111561014257fe5b1461014c57600080fd5b6000341161015957600080fd5b60045460001061016857600080fd5b3494506101a1670de0b6b3a7640000610195876d01f8def8808b02452c9a0000000063ffffffff6106b016565b9063ffffffff6106df16565b9350600092506d629b8c891b267182b614000000006101cb856003546106f490919063ffffffff16565b1115610246576003546101f3906d629b8c891b267182b614000000009063ffffffff61070116565b915061022b670de0b6b3a764000061021f846d01f8def8808b02452c9a0000000063ffffffff6106df16565b9063ffffffff6106b016565b905061023d858263ffffffff61070116565b92508094508193505b600354610259908563ffffffff6106f416565b600381905561027d906d629b8c891b267182b614000000009063ffffffff61070116565b60045560008311156102fa57604051600160a060020a0333169084156108fc029085906000818181858888f193505050501580156102bf573d6000803e3d6000fd5b5033600160a060020a031630600160a060020a0316600080516020610ec2833981519152856040518082815260200191505060405180910390a35b600160a060020a033316600090815260208190526040902054610323908563ffffffff6106f416565b600160a060020a0333811660008181526020818152604091829020949094558051888152905191933090931692600080516020610ec283398151915292918290030190a360015461037a908563ffffffff6106f416565b600155600554604051600160a060020a039091169086156108fc029087906000818181858888f193505050501580156103b7573d6000803e3d6000fd5b505050505050005b3480156103cb57600080fd5b506103d4610713565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040e5781810151838201526020016103f6565b50505050905090810190601f16801561043b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045557600080fd5b5061046d600160a060020a036004351660243561074a565b604080519115158252519081900360200190f35b34801561048d57600080fd5b506104966107b4565b60408051918252519081900360200190f35b3480156104b457600080fd5b5061046d600160a060020a03600435811690602435166044356107ba565b3480156104de57600080fd5b506104e7610928565b6040805163ffffffff9092168252519081900360200190f35b34801561050c57600080fd5b5061049661092d565b34801561052157600080fd5b5061049661093f565b34801561053657600080fd5b5061046d600160a060020a0360043516602435610945565b34801561055a57600080fd5b50610496600160a060020a0360043516610a3e565b34801561057b57600080fd5b50610584610a59565b005b34801561059257600080fd5b5061059b610ae1565b60408051600160a060020a039092168252519081900360200190f35b3480156105c357600080fd5b50610584610af0565b3480156105d857600080fd5b506103d4610b4b565b3480156105ed57600080fd5b5061046d600160a060020a0360043516602435610b82565b34801561061157600080fd5b50610496610c69565b34801561062657600080fd5b50610496610c6f565b34801561063b57600080fd5b50610496610c81565b34801561065057600080fd5b5061046d600160a060020a0360043516602435610c94565b34801561067457600080fd5b50610496600160a060020a0360043581169060243516610d36565b34801561069b57600080fd5b50610584600160a060020a0360043516610d61565b60008215156106c1575060006106d9565b508181028183828115156106d157fe5b04146106d957fe5b92915050565b600081838115156106ec57fe5b049392505050565b818101828110156106d957fe5b60008282111561070d57fe5b50900390565b60408051808201909152600a81527f506978656c536869626100000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156107d157600080fd5b600160a060020a0384166000908152602081905260409020548211156107f657600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561082957600080fd5b600160a060020a038416600090815260208190526040902054610852908363ffffffff61070116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610887908363ffffffff6106f416565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546108cd908363ffffffff61070116565b600160a060020a03808616600081815260026020908152604080832033861684528252918290209490945580518681529051928716939192600080516020610ec2833981519152929181900390910190a35060019392505050565b601281565b6d629b8c891b267182b6140000000081565b60035481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156109a257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109d9565b6109b2818463ffffffff61070116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60055433600160a060020a03908116911614610a7457600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610a9f57fe5b1415610aaa57600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600554600160a060020a031681565b60055433600160a060020a03908116911614610b0b57600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610b3657fe5b1415610b4157600080fd5b610b49610dfa565b565b60408051808201909152600481527f5049424100000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610b9957600080fd5b600160a060020a033316600090815260208190526040902054821115610bbe57600080fd5b600160a060020a033316600090815260208190526040902054610be7908363ffffffff61070116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c1c908363ffffffff6106f416565b600160a060020a0380851660008181526020818152604091829020949094558051868152905191933390931692600080516020610ec283398151915292918290030190a350600192915050565b60045481565b6d01f8def8808b02452c9a0000000081565b6e12dfc5e63e325bba04d9d40000000081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ccc908363ffffffff6106f416565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60055433600160a060020a03908116911614610d7c57600080fd5b600160a060020a0381161515610d9157600080fd5b600554604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560045460001015610e8357600454600554600160a060020a0316600090815260208190526040902054610e679163ffffffff6106f416565b600554600160a060020a03166000908152602081905260409020555b600554604051600160a060020a039182169130163180156108fc02916000818181858888f19350505050158015610ebe573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820cbdf09e63404b70b0db1ddfeff6676f5aa69448130eef8ebcafb77a90f20c3f20029
Deployed Bytecode Sourcemap
12110:179:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10229:17;;;;;10110:15;10094:12;;;;;;;:31;;;;;;;;;10086:40;;;;;;10157:1;10145:9;:13;10137:22;;;;;;10178:15;;10196:1;-1:-1:-1;10170:28:0;;;;;;10249:9;;-1:-1:-1;10314:37:0;10343:7;10314:24;10249:9;9073:21;10314:24;:13;:24;:::i;:::-;:28;:37;:28;:37;:::i;:::-;10297:54;;10382:1;10362:21;;9007:23;10407:22;10422:6;10407:10;;:14;;:22;;;;:::i;:::-;:28;10404:281;;;10479:10;;10471:19;;9007:23;;10471:19;:7;:19;:::i;:::-;10451:39;-1:-1:-1;10522:37:0;10551:7;10522:24;10451:39;9073:21;10522:24;:13;:24;:::i;:::-;:28;:37;:28;:37;:::i;:::-;10505:54;-1:-1:-1;10586:21:0;:9;10505:54;10586:21;:13;:21;:::i;:::-;10574:33;;10634:6;10622:18;;10664:9;10655:18;;10404:281;10718:10;;:22;;10733:6;10718:22;:14;:22;:::i;:::-;10705:10;:35;;;10796:19;;9007:23;;10796:19;:7;:19;:::i;:::-;10778:15;:37;10841:1;10829:13;;10826:140;;;10858:30;;-1:-1:-1;;;;;10858:10:0;:19;;:30;;;;;10878:9;;10858:30;;;;10878:9;10858:19;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10858:30:0;10932:10;-1:-1:-1;;;;;10908:46:0;10925:4;-1:-1:-1;;;;;10908:46:0;-1:-1:-1;;;;;;;;;;;10944:9:0;10908:46;;;;;;;;;;;;;;;;;;10826:140;-1:-1:-1;;;;;11018:10:0;11009:20;:8;:20;;;;;;;;;;;:32;;11034:6;11009:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;10995:10:0;10986:20;;:8;:20;;;;;;;;;;;;:55;;;;11057:43;;;;;;;10986:20;;11074:4;11057:43;;;;-1:-1:-1;;;;;;;;;;;11057:43:0;;;;;;;;11126:12;;:24;;11143:6;11126:24;:16;:24;:::i;:::-;11111:12;:39;11161:5;;:25;;-1:-1:-1;;;;;11161:5:0;;;;:25;;;;;11176:9;;11161:5;:25;:5;:25;11176:9;11161:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11161:25:0;10048:1168;;;;;12110:179;12155:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12155:42: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;12155:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6446:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6446:206:0;-1:-1:-1;;;;;6446:206:0;;;;;;;;;;;;;;;;;;;;;;;;;3888:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3888:91:0;;;;;;;;;;;;;;;;;;;;5282:502;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5282:502:0;-1:-1:-1;;;;;5282:502:0;;;;;;;;;;;;12249:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12249:36:0;;;;;;;;;;;;;;;;;;;;;;;8977:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8977:53:0;;;;9123:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9123:29:0;;;;8409:450;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8409:450:0;-1:-1:-1;;;;;8409:450:0;;;;;;;4754:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4754:107:0;-1:-1:-1;;;;;4754:107:0;;;;;11281:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11281:135:0;;;;;;1891:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1891:20:0;;;;;;;;-1:-1:-1;;;;;1891:20:0;;;;;;;;;;;;;;11914:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11914:116:0;;;;12204:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12204:38:0;;;;4161:363;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4161:363:0;-1:-1:-1;;;;;4161:363:0;;;;;;;9235:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9235:34:0;;;;9037:57;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9037:57:0;;;;9165:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9165:63:0;;;;7628:280;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7628:280:0;-1:-1:-1;;;;;7628:280:0;;;;;;;6998:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6998:134:0;-1:-1:-1;;;;;6998:134:0;;;;;;;;;;2536:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2536:186:0;-1:-1:-1;;;;;2536:186:0;;;;;586:202;644:9;670:6;;666:47;;;-1:-1:-1;700:1:0;693:8;;666:47;-1:-1:-1;727:5:0;;;731:1;727;:5;750;;;;;;;;:10;743:18;;;;586:202;;;;:::o;890:295::-;948:7;1176:1;1172;:5;;;;;;;;;890:295;-1:-1:-1;;;890:295:0:o;1522:141::-;1606:5;;;1629:6;;;;1622:14;;;1317:123;1375:7;1402:6;;;;1395:14;;;;-1:-1:-1;1427:5:0;;;1317:123::o;12155:42::-;;;;;;;;;;;;;;;;;;;:::o;6446:206::-;-1:-1:-1;;;;;6538:10:0;6530:19;;6513:4;6530:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:38;;;6584;;;;;;;6513:4;;6530:29;:19;6584:38;;;;;;;;;;;-1:-1:-1;6640:4:0;6446:206;;;;:::o;3888:91::-;3959:12;;3888:91;:::o;5282:502::-;5364:4;-1:-1:-1;;;;;5389:17:0;;;;5381:26;;;;;;-1:-1:-1;;;;;5436:15:0;;:8;:15;;;;;;;;;;;5426:25;;;5418:34;;;;;;-1:-1:-1;;;;;5481:14:0;;;;;;;:7;:14;;;;;;;;5496:10;5481:26;;;;;;;;;;5471:36;;;5463:45;;;;;;-1:-1:-1;;;;;5543:15:0;;:8;:15;;;;;;;;;;;:27;;5563:6;5543:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5525:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5597:13;;;;;;;:25;;5615:6;5597:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5581:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5662:14;;;;;:7;:14;;;;;5677:10;5662:26;;;;;;;;;;;:38;;5693:6;5662:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5633:14:0;;;;;;;:7;:14;;;;;;;;5648:10;5633:26;;;;;;;;;;:67;;;;5726:28;;;;;;;;;;;5633:14;;-1:-1:-1;;;;;;;;;;;5726:28:0;;;;;;;;;;-1:-1:-1;5772:4:0;5282:502;;;;;:::o;12249:36::-;12283:2;12249:36;:::o;8977:53::-;9007:23;8977:53;:::o;9123:29::-;;;;:::o;8409:450::-;-1:-1:-1;;;;;8533:10:0;8525:19;;8492:4;8525:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;8569:27;;;8565:188;;;-1:-1:-1;;;;;8621:10:0;8613:19;;8645:1;8613:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;8565:188;;;8711:30;:8;8724:16;8711:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;8687:10:0;8679:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;8565:188;-1:-1:-1;;;;;8777:10:0;8768:61;;8799:19;;;;:7;:19;;;;;;;;8768:61;;;8799:29;;;;;;;;;;;8768:61;;;;;;;;;;;;;;;;;-1:-1:-1;8847:4:0;;8409:450;-1:-1:-1;;;8409:450:0:o;4754:107::-;-1:-1:-1;;;;;4837:16:0;4810:7;4837:16;;;;;;;;;;;;4754:107::o;11281:135::-;2330:5;;2316:10;-1:-1:-1;;;;;2316:19:0;;;2330:5;;2316:19;2308:28;;;;;;11353:13;11337:12;;;;;;;:29;;;;;;;;;;11329:38;;;;;;11378:12;:30;;-1:-1:-1;;11378:30:0;;;;;11281:135::o;1891:20::-;;;-1:-1:-1;;;;;1891:20:0;;:::o;11914:116::-;2330:5;;2316:10;-1:-1:-1;;;;;2316:19:0;;;2330:5;;2316:19;2308:28;;;;;;11989:13;11973:12;;;;;;;:29;;;;;;;;;;11965:38;;;;;;12014:8;:6;:8::i;:::-;11914:116::o;12204:38::-;;;;;;;;;;;;;;;;;;;:::o;4161:363::-;4224:4;-1:-1:-1;;;;;4249:17:0;;;;4241:26;;;;;;-1:-1:-1;;;;;4305:10:0;4296:20;:8;:20;;;;;;;;;;;4286:30;;;4278:39;;;;;;-1:-1:-1;;;;;4370:10:0;4361:20;:8;:20;;;;;;;;;;;:32;;4386:6;4361:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;4347:10:0;4338:20;;:8;:20;;;;;;;;;;;:55;;;;4420:13;;;;;;;:25;;4438:6;4420:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4404:13:0;;;:8;:13;;;;;;;;;;;;:41;;;;4461:33;;;;;;;4404:13;;4470:10;4461:33;;;;-1:-1:-1;;;;;;;;;;;4461:33:0;;;;;;;;-1:-1:-1;4512:4:0;4161:363;;;;:::o;9235:34::-;;;;:::o;9037:57::-;9073:21;9037:57;:::o;9165:63::-;9204:24;9165:63;:::o;7628:280::-;-1:-1:-1;;;;;7763:10:0;7755:19;;7706:4;7755:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;7789:11;7755:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;7731:10:0;7723:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:78;;;7817:61;;;;;;;7723:29;;:19;;7817:61;;;;;;;;;;-1:-1:-1;7896:4:0;7628:280;;;;:::o;6998:134::-;-1:-1:-1;;;;;7099:15:0;;;7072:7;7099:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6998:134::o;2536:186::-;2330:5;;2316:10;-1:-1:-1;;;;;2316:19:0;;;2330:5;;2316:19;2308:28;;;;;;-1:-1:-1;;;;;2615:22:0;;;;2607:31;;;;;;2673:5;;2652:37;;-1:-1:-1;;;;;2652:37:0;;;;2673:5;;2652:37;;2673:5;;2652:37;2698:5;:16;;-1:-1:-1;;2698:16:0;-1:-1:-1;;;;;2698:16:0;;;;;;;;;;2536:186::o;11478:343::-;11516:12;:28;;-1:-1:-1;;11516:28:0;;;;;11600:15;;-1:-1:-1;;11597:91:0;;;11672:15;;11661:5;;-1:-1:-1;;;;;11661:5:0;11652:8;:15;;;;;;;;;;;:36;;;:19;:36;:::i;:::-;11643:5;;-1:-1:-1;;;;;11643:5:0;11634:8;:15;;;;;;;;;;:54;11597:91;11775:5;;:37;;-1:-1:-1;;;;;11775:5:0;;;;11798:4;11790:21;;11775:37;;;;;:5;:37;:5;:37;11790:21;11775:5;:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11775:37:0;11478:343::o
Swarm Source
bzzr://cbdf09e63404b70b0db1ddfeff6676f5aa69448130eef8ebcafb77a90f20c3f2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.