Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 12,082 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22909011 | 185 days ago | IN | 0 ETH | 0.00002275 | ||||
| Approve | 22208837 | 283 days ago | IN | 0 ETH | 0.00002016 | ||||
| Transfer | 21987399 | 314 days ago | IN | 0 ETH | 0.00004182 | ||||
| Transfer | 21987345 | 314 days ago | IN | 0 ETH | 0.00003646 | ||||
| Transfer | 21470363 | 386 days ago | IN | 0 ETH | 0.00023123 | ||||
| Transfer | 21365907 | 400 days ago | IN | 0 ETH | 0.00296181 | ||||
| Transfer | 21364096 | 401 days ago | IN | 0 ETH | 0.00207326 | ||||
| Transfer | 21358732 | 401 days ago | IN | 0 ETH | 0.00063845 | ||||
| Transfer | 21356920 | 402 days ago | IN | 0 ETH | 0.00048973 | ||||
| Transfer | 21342793 | 404 days ago | IN | 0 ETH | 0.0008441 | ||||
| Approve | 20632687 | 503 days ago | IN | 0 ETH | 0.00003761 | ||||
| Approve | 20623933 | 504 days ago | IN | 0 ETH | 0.00002554 | ||||
| Transfer | 19748075 | 626 days ago | IN | 0 ETH | 0.00034712 | ||||
| Transfer | 17849998 | 892 days ago | IN | 0 ETH | 0.00068368 | ||||
| Transfer | 17849826 | 892 days ago | IN | 0 ETH | 0.00063283 | ||||
| Transfer | 17849819 | 892 days ago | IN | 0 ETH | 0.00054986 | ||||
| Transfer | 17845834 | 893 days ago | IN | 0 ETH | 0.00044829 | ||||
| Transfer | 17842613 | 893 days ago | IN | 0 ETH | 0.00074857 | ||||
| Transfer Ownersh... | 17528058 | 938 days ago | IN | 0 ETH | 0.00073562 | ||||
| Transfer Mint Ma... | 17528046 | 938 days ago | IN | 0 ETH | 0.00069761 | ||||
| Transfer | 16486391 | 1084 days ago | IN | 0 ETH | 0.00127042 | ||||
| Approve | 16219606 | 1121 days ago | IN | 0 ETH | 0.00076498 | ||||
| Transfer | 15795122 | 1181 days ago | IN | 0 ETH | 0.00339489 | ||||
| Transfer | 15691187 | 1195 days ago | IN | 0 ETH | 0.0007495 | ||||
| Transfer | 15691150 | 1195 days ago | IN | 0 ETH | 0.00086312 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 5231535 | 2866 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PreBOUToken
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-03-13
*/
pragma solidity ^0.4.18;
/**
* @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) public onlyOwner {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @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) {
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;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
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 Basic token
* @dev Basic version of StandardToken, 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]);
// 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 view returns (uint256 balance) {
return balances[_owner];
}
}
/**
* @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 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 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);
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);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @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;
modifier canMint() {
require(!mintingFinished);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount);
Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner canMint public returns (bool) {
mintingFinished = true;
MintFinished();
return true;
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public {
paused = true;
Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
Unpause();
}
}
/**
* @title Destructible
* @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
*/
contract Destructible is Ownable {
function Destructible() public payable { }
/**
* @dev Transfers the current balance to the owner and terminates the contract.
*/
function destroy() onlyOwner public {
selfdestruct(owner);
}
function destroyAndSend(address _recipient) onlyOwner public {
selfdestruct(_recipient);
}
}
/**
* @title MintableMasterToken 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 MintableMasterToken is MintableToken {
event MintMasterTransferred(address indexed previousMaster, address indexed newMaster);
address public mintMaster;
modifier onlyMintMasterOrOwner() {
require(msg.sender == mintMaster || msg.sender == owner);
_;
}
function MintableMasterToken() {
mintMaster = msg.sender;
}
function transferMintMaster(address newMaster) onlyOwner public {
require(newMaster != address(0));
MintMasterTransferred(mintMaster, newMaster);
mintMaster = newMaster;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyMintMasterOrOwner canMint public returns (bool) {
address oldOwner = owner;
owner = msg.sender;
bool result = super.mint(_to, _amount);
owner = oldOwner;
return result;
}
}
/**
* @title Pausable token
* @dev StandardToken modified with pausable transfers.
**/
contract PausableToken is StandardToken, Pausable {
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
}
/**
* @dev Pre main BoutsPro token ERC20 contract
* Based on references from OpenZeppelin: https://github.com/OpenZeppelin/zeppelin-solidity
*/
contract BTSPToken is MintableMasterToken, PausableToken {
// Metadata
string public constant symbol = "BOUTS";
string public constant name = "BoutsPro";
uint8 public constant decimals = 18;
string public constant version = "1.0";
function mintToAddresses(address[] addresses, uint256 amount) public onlyMintMasterOrOwner canMint {
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amount));
}
}
function mintToAddressesAndAmounts(address[] addresses, uint256[] amounts) public onlyMintMasterOrOwner canMint {
require(addresses.length == amounts.length);
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amounts[i]));
}
}
/**
* @dev Override MintableTokenn.finishMinting() to add canMint modifier
*/
function finishMinting() onlyOwner canMint public returns(bool) {
return super.finishMinting();
}
}
/**
* @dev Main BoutsPro PreBOU token ERC20 contract
* Based on references from OpenZeppelin: https://github.com/OpenZeppelin/zeppelin-solidity
*/
contract PreBOUToken is BTSPToken, Destructible {
// Metadata
string public constant symbol = "BOUTS";
string public constant name = "BoutsPro";
uint8 public constant decimals = 18;
string public constant version = "1.0";
// Overrided destructor
function destroy() public onlyOwner {
require(mintingFinished);
super.destroy();
}
// Overrided destructor companion
function destroyAndSend(address _recipient) public onlyOwner {
require(mintingFinished);
super.destroyAndSend(_recipient);
}
}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":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":false,"inputs":[{"name":"newMaster","type":"address"}],"name":"transferMintMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"mintToAddressesAndAmounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"mintMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"mintToAddresses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"}],"name":"destroyAndSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousMaster","type":"address"},{"indexed":true,"name":"newMaster","type":"address"}],"name":"MintMasterTransferred","type":"event"},{"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
60606040526003805460048054600160a060020a033316600160a860020a0319938416811790945591909116909117905561133d8061003f6000396000f3006060604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461015857806306fdde031461017f578063095ea7b31461020957806318160ddd1461022b57806323b872dd14610250578063249bc2911461027857806327de1a4d14610299578063313ce567146103285780633f4ba83a1461035157806340c10f191461036457806354fd4d50146103865780635c975abb1461039957806366188463146103ac57806370a08231146103ce5780637d64bcb4146103ed57806383197ef0146104005780638456cb59146104135780638da5cb5b1461042657806395d89b4114610455578063a9059cbb14610468578063d73dd6231461048a578063d991c58f146104ac578063dd62ed3e146104bf578063f190ac5f146104e4578063f2fde38b14610535578063f5074f4114610554575b600080fd5b341561016357600080fd5b61016b610573565b604051901515815260200160405180910390f35b341561018a57600080fd5b610192610583565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ce5780820151838201526020016101b6565b50505050905090810190601f1680156101fb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021457600080fd5b61016b600160a060020a03600435166024356105ba565b341561023657600080fd5b61023e6105e5565b60405190815260200160405180910390f35b341561025b57600080fd5b61016b600160a060020a03600435811690602435166044356105eb565b341561028357600080fd5b610297600160a060020a0360043516610618565b005b34156102a457600080fd5b6102976004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506106b395505050505050565b341561033357600080fd5b61033b61076a565b60405160ff909116815260200160405180910390f35b341561035c57600080fd5b61029761076f565b341561036f57600080fd5b61016b600160a060020a03600435166024356107ee565b341561039157600080fd5b6101926108b1565b34156103a457600080fd5b61016b6108e8565b34156103b757600080fd5b61016b600160a060020a03600435166024356108f8565b34156103d957600080fd5b61023e600160a060020a036004351661091c565b34156103f857600080fd5b61016b610937565b341561040b57600080fd5b610297610979565b341561041e57600080fd5b6102976109b6565b341561043157600080fd5b610439610a3a565b604051600160a060020a03909116815260200160405180910390f35b341561046057600080fd5b610192610a49565b341561047357600080fd5b61016b600160a060020a0360043516602435610a80565b341561049557600080fd5b61016b600160a060020a0360043516602435610aa4565b34156104b757600080fd5b610439610ac8565b34156104ca57600080fd5b61023e600160a060020a0360043581169060243516610ad7565b34156104ef57600080fd5b61029760046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610b0292505050565b341561054057600080fd5b610297600160a060020a0360043516610b91565b341561055f57600080fd5b610297600160a060020a0360043516610c2c565b60035460a060020a900460ff1681565b60408051908101604052600881527f426f75747350726f000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff16156105d457600080fd5b6105de8383610c6b565b9392505050565b60015490565b60045460009060a060020a900460ff161561060557600080fd5b610610848484610cd7565b949350505050565b60035433600160a060020a0390811691161461063357600080fd5b600160a060020a038116151561064857600080fd5b600454600160a060020a0380831691167fd8526677367b3ec896585b1f6119440c967be13b48865327e4e181db6a104a2a60405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045460009033600160a060020a03908116911614806106e1575060035433600160a060020a039081169116145b15156106ec57600080fd5b60035460a060020a900460ff161561070357600080fd5b815183511461071157600080fd5b5060005b82518110156107655761075283828151811061072d57fe5b9060200190602002015183838151811061074357fe5b906020019060200201516107ee565b151561075d57600080fd5b600101610715565b505050565b601281565b60035433600160a060020a0390811691161461078a57600080fd5b60045460a060020a900460ff1615156107a257600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6004546000908190819033600160a060020a0390811691161480610820575060035433600160a060020a039081169116145b151561082b57600080fd5b60035460a060020a900460ff161561084257600080fd5b6003805433600160a060020a0390811673ffffffffffffffffffffffffffffffffffffffff1983161790925516915061087b8585610e57565b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255509392505050565b60408051908101604052600381527f312e300000000000000000000000000000000000000000000000000000000000602082015281565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff161561091257600080fd5b6105de8383610f65565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461095557600080fd5b60035460a060020a900460ff161561096c57600080fd5b61097461105f565b905090565b60035433600160a060020a0390811691161461099457600080fd5b60035460a060020a900460ff1615156109ac57600080fd5b6109b46110ea565b565b60035433600160a060020a039081169116146109d157600080fd5b60045460a060020a900460ff16156109e857600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600581527f424f555453000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff1615610a9a57600080fd5b6105de8383611113565b60045460009060a060020a900460ff1615610abe57600080fd5b6105de8383611225565b600454600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045460009033600160a060020a0390811691161480610b30575060035433600160a060020a039081169116145b1515610b3b57600080fd5b60035460a060020a900460ff1615610b5257600080fd5b5060005b825181101561076557610b7e838281518110610b6e57fe5b90602001906020020151836107ee565b1515610b8957600080fd5b600101610b56565b60035433600160a060020a03908116911614610bac57600080fd5b600160a060020a0381161515610bc157600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a03908116911614610c4757600080fd5b60035460a060020a900460ff161515610c5f57600080fd5b610c68816112c9565b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610cee57600080fd5b600160a060020a038416600090815260208190526040902054821115610d1357600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610d4657600080fd5b600160a060020a038416600090815260208190526040902054610d6f908363ffffffff6112f016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610da4908363ffffffff61130216565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610dea908363ffffffff6112f016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035460009033600160a060020a03908116911614610e7557600080fd5b60035460a060020a900460ff1615610e8c57600080fd5b600154610e9f908363ffffffff61130216565b600155600160a060020a038316600090815260208190526040902054610ecb908363ffffffff61130216565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610fc257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ff9565b610fd2818463ffffffff6112f016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009033600160a060020a0390811691161461107d57600080fd5b60035460a060020a900460ff161561109457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035433600160a060020a0390811691161461110557600080fd5b600354600160a060020a0316ff5b6000600160a060020a038316151561112a57600080fd5b600160a060020a03331660009081526020819052604090205482111561114f57600080fd5b600160a060020a033316600090815260208190526040902054611178908363ffffffff6112f016565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111ad908363ffffffff61130216565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461125d908363ffffffff61130216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a039081169116146112e457600080fd5b80600160a060020a0316ff5b6000828211156112fc57fe5b50900390565b6000828201838110156105de57fe00a165627a7a723058203c604d62b2dd8cbc8de01a9876f0e3be2bf1554349921611557188d6319a88c00029
Deployed Bytecode
0x6060604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461015857806306fdde031461017f578063095ea7b31461020957806318160ddd1461022b57806323b872dd14610250578063249bc2911461027857806327de1a4d14610299578063313ce567146103285780633f4ba83a1461035157806340c10f191461036457806354fd4d50146103865780635c975abb1461039957806366188463146103ac57806370a08231146103ce5780637d64bcb4146103ed57806383197ef0146104005780638456cb59146104135780638da5cb5b1461042657806395d89b4114610455578063a9059cbb14610468578063d73dd6231461048a578063d991c58f146104ac578063dd62ed3e146104bf578063f190ac5f146104e4578063f2fde38b14610535578063f5074f4114610554575b600080fd5b341561016357600080fd5b61016b610573565b604051901515815260200160405180910390f35b341561018a57600080fd5b610192610583565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ce5780820151838201526020016101b6565b50505050905090810190601f1680156101fb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021457600080fd5b61016b600160a060020a03600435166024356105ba565b341561023657600080fd5b61023e6105e5565b60405190815260200160405180910390f35b341561025b57600080fd5b61016b600160a060020a03600435811690602435166044356105eb565b341561028357600080fd5b610297600160a060020a0360043516610618565b005b34156102a457600080fd5b6102976004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506106b395505050505050565b341561033357600080fd5b61033b61076a565b60405160ff909116815260200160405180910390f35b341561035c57600080fd5b61029761076f565b341561036f57600080fd5b61016b600160a060020a03600435166024356107ee565b341561039157600080fd5b6101926108b1565b34156103a457600080fd5b61016b6108e8565b34156103b757600080fd5b61016b600160a060020a03600435166024356108f8565b34156103d957600080fd5b61023e600160a060020a036004351661091c565b34156103f857600080fd5b61016b610937565b341561040b57600080fd5b610297610979565b341561041e57600080fd5b6102976109b6565b341561043157600080fd5b610439610a3a565b604051600160a060020a03909116815260200160405180910390f35b341561046057600080fd5b610192610a49565b341561047357600080fd5b61016b600160a060020a0360043516602435610a80565b341561049557600080fd5b61016b600160a060020a0360043516602435610aa4565b34156104b757600080fd5b610439610ac8565b34156104ca57600080fd5b61023e600160a060020a0360043581169060243516610ad7565b34156104ef57600080fd5b61029760046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610b0292505050565b341561054057600080fd5b610297600160a060020a0360043516610b91565b341561055f57600080fd5b610297600160a060020a0360043516610c2c565b60035460a060020a900460ff1681565b60408051908101604052600881527f426f75747350726f000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff16156105d457600080fd5b6105de8383610c6b565b9392505050565b60015490565b60045460009060a060020a900460ff161561060557600080fd5b610610848484610cd7565b949350505050565b60035433600160a060020a0390811691161461063357600080fd5b600160a060020a038116151561064857600080fd5b600454600160a060020a0380831691167fd8526677367b3ec896585b1f6119440c967be13b48865327e4e181db6a104a2a60405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045460009033600160a060020a03908116911614806106e1575060035433600160a060020a039081169116145b15156106ec57600080fd5b60035460a060020a900460ff161561070357600080fd5b815183511461071157600080fd5b5060005b82518110156107655761075283828151811061072d57fe5b9060200190602002015183838151811061074357fe5b906020019060200201516107ee565b151561075d57600080fd5b600101610715565b505050565b601281565b60035433600160a060020a0390811691161461078a57600080fd5b60045460a060020a900460ff1615156107a257600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6004546000908190819033600160a060020a0390811691161480610820575060035433600160a060020a039081169116145b151561082b57600080fd5b60035460a060020a900460ff161561084257600080fd5b6003805433600160a060020a0390811673ffffffffffffffffffffffffffffffffffffffff1983161790925516915061087b8585610e57565b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255509392505050565b60408051908101604052600381527f312e300000000000000000000000000000000000000000000000000000000000602082015281565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff161561091257600080fd5b6105de8383610f65565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461095557600080fd5b60035460a060020a900460ff161561096c57600080fd5b61097461105f565b905090565b60035433600160a060020a0390811691161461099457600080fd5b60035460a060020a900460ff1615156109ac57600080fd5b6109b46110ea565b565b60035433600160a060020a039081169116146109d157600080fd5b60045460a060020a900460ff16156109e857600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600581527f424f555453000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff1615610a9a57600080fd5b6105de8383611113565b60045460009060a060020a900460ff1615610abe57600080fd5b6105de8383611225565b600454600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045460009033600160a060020a0390811691161480610b30575060035433600160a060020a039081169116145b1515610b3b57600080fd5b60035460a060020a900460ff1615610b5257600080fd5b5060005b825181101561076557610b7e838281518110610b6e57fe5b90602001906020020151836107ee565b1515610b8957600080fd5b600101610b56565b60035433600160a060020a03908116911614610bac57600080fd5b600160a060020a0381161515610bc157600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a03908116911614610c4757600080fd5b60035460a060020a900460ff161515610c5f57600080fd5b610c68816112c9565b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610cee57600080fd5b600160a060020a038416600090815260208190526040902054821115610d1357600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610d4657600080fd5b600160a060020a038416600090815260208190526040902054610d6f908363ffffffff6112f016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610da4908363ffffffff61130216565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610dea908363ffffffff6112f016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035460009033600160a060020a03908116911614610e7557600080fd5b60035460a060020a900460ff1615610e8c57600080fd5b600154610e9f908363ffffffff61130216565b600155600160a060020a038316600090815260208190526040902054610ecb908363ffffffff61130216565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610fc257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ff9565b610fd2818463ffffffff6112f016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009033600160a060020a0390811691161461107d57600080fd5b60035460a060020a900460ff161561109457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035433600160a060020a0390811691161461110557600080fd5b600354600160a060020a0316ff5b6000600160a060020a038316151561112a57600080fd5b600160a060020a03331660009081526020819052604090205482111561114f57600080fd5b600160a060020a033316600090815260208190526040902054611178908363ffffffff6112f016565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111ad908363ffffffff61130216565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461125d908363ffffffff61130216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a039081169116146112e457600080fd5b80600160a060020a0316ff5b6000828211156112fc57fe5b50900390565b6000828201838110156105de57fe00a165627a7a723058203c604d62b2dd8cbc8de01a9876f0e3be2bf1554349921611557188d6319a88c00029
Swarm Source
bzzr://3c604d62b2dd8cbc8de01a9876f0e3be2bf1554349921611557188d6319a88c0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.