Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 11281562 | 1950 days ago | IN | 0 ETH | 0.00163548 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TPL
Compiler Version
v0.5.2+commit.1df8f40c
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-11-15
*/
/**
*Submitted for verification at Etherscan.io on 2020-06-28
*/
/**
*Submitted for verification at Etherscan.io on 2020-03-15
*/
/**
*Submitted for verification at Etherscan.io on 2019-02-27
*/
pragma solidity ^0.5.2;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure.
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
require(token.transfer(to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
require(token.transferFrom(from, to, value));
}
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require((value == 0) || (token.allowance(address(this), spender) == 0));
require(token.approve(spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
require(token.approve(spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value);
require(token.approve(spender, newAllowance));
}
}
/**
* @title ERC20 interface
* @dev see https://eips.ethereum.org/EIPS/eip-20
*/
interface IERC20 {
function transfer(address to, uint256 value) external returns (bool);
function approve(address spender, uint256 value) external returns (bool);
function transferFrom(address from, address to, uint256 value) external returns (bool);
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error
*/
library SafeMath {
/**
* @dev Multiplies two unsigned integers, reverts on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
uint256 c = a - b;
return c;
}
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
/**
* @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
* reverts when dividing by zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0);
return a % b;
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://eips.ethereum.org/EIPS/eip-20
* Originally based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*
* This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
* all accounts just by listening to said events. Note that this isn't required by the specification, and other
* compliant implementations may not do it.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowed;
uint256 private _totalSupply;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev Gets the balance of the specified address.
* @param owner The address to query 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];
}
/**
* @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 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) {
_transfer(msg.sender, 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) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev Transfer tokens from one address to another.
* Note that while this function emits an Approval event, this is not required as per the specification,
* and other compliant implementations may not emit the event.
* @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) {
_transfer(from, to, value);
_approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
return true;
}
/**
* @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
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
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
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Transfer token for a specified addresses
* @param from The address to transfer from.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function _transfer(address from, address to, uint256 value) internal {
require(to != address(0));
_balances[from] = _balances[from].sub(value);
_balances[to] = _balances[to].add(value);
emit Transfer(from, to, value);
}
/**
* @dev Internal function that mints an amount of the token and assigns it to
* an account. This encapsulates the modification of balances such that the
* proper events are emitted.
* @param account The account that will receive the created tokens.
* @param value The amount that will be created.
*/
function _mint(address account, uint256 value) internal {
require(account != address(0));
_totalSupply = _totalSupply.add(value);
_balances[account] = _balances[account].add(value);
emit Transfer(address(0), account, value);
}
/**
* @dev Internal function that burns an amount of the token of a given
* account.
* @param account The account whose tokens will be burnt.
* @param value The amount that will be burnt.
*/
function _burn(address account, uint256 value) internal {
require(account != address(0));
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Approve an address to spend another addresses' tokens.
* @param owner The address that owns the tokens.
* @param spender The address that will spend the tokens.
* @param value The number of tokens that can be spent.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(spender != address(0));
require(owner != address(0));
_allowed[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Internal function that burns an amount of the token of a given
* account, deducting from the sender's allowance for said account. Uses the
* internal burn function.
* Emits an Approval event (reflecting the reduced allowance).
* @param account The account whose tokens will be burnt.
* @param value The amount that will be burnt.
*/
function _burnFrom(address account, uint256 value) internal {
_burn(account, value);
_approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
}
}
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev give an account access to this role
*/
function add(Role storage role, address account) internal {
require(account != address(0));
require(!has(role, account));
role.bearer[account] = true;
}
/**
* @dev remove an account's access to this role
*/
function remove(Role storage role, address account) internal {
require(account != address(0));
require(has(role, account));
role.bearer[account] = false;
}
/**
* @dev check if an account has this role
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0));
return role.bearer[account];
}
}
contract PauserRole {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
constructor () internal {
_addPauser(msg.sender);
}
modifier onlyPauser() {
require(isPauser(msg.sender));
_;
}
function isPauser(address account) public view returns (bool) {
return _pausers.has(account);
}
function addPauser(address account) public onlyPauser {
_addPauser(account);
}
function renouncePauser() public {
_removePauser(msg.sender);
}
function _addPauser(address account) internal {
_pausers.add(account);
emit PauserAdded(account);
}
function _removePauser(address account) internal {
_pausers.remove(account);
emit PauserRemoved(account);
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is PauserRole {
event Paused(address account);
event Unpaused(address account);
bool private _paused;
constructor () internal {
_paused = false;
}
/**
* @return true if the contract is paused, false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @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() public onlyPauser whenNotPaused {
_paused = true;
emit Paused(msg.sender);
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(msg.sender);
}
}
/**
* @title Pausable token
* @dev ERC20 modified with pausable transfers.
*/
contract ERC20Pausable is ERC20, 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 increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseAllowance(spender, subtractedValue);
}
}
/**
* @title ERC20Detailed token
* @dev The decimals are only for visualization purposes.
* All the operations are done using the smallest and indivisible token unit,
* just as on Ethereum all the operations are done in wei.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @return the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @return the symbol of the token.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @return the number of decimals of the token.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract ERC20Burnable is ERC20 {
/**
* @dev Burns a specific amount of tokens.
* @param value The amount of token to be burned.
*/
function burn(uint256 value) public {
_burn(msg.sender, value);
}
/**
* @dev Burns a specific amount of tokens from the target address and decrements allowance
* @param from address The account whose tokens will be burned.
* @param value uint256 The amount of token to be burned.
*/
function burnFrom(address from, uint256 value) public {
_burnFrom(from, value);
}
}
contract MinterRole {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
constructor () internal {
_addMinter(msg.sender);
}
modifier onlyMinter() {
require(isMinter(msg.sender));
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(msg.sender);
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
}
/**
* @title ERC20Mintable
* @dev ERC20 minting logic
*/
contract ERC20Mintable is ERC20, MinterRole {
/**
* @dev Function to mint tokens
* @param to The address that will receive the minted tokens.
* @param value The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address to, uint256 value) public onlyMinter returns (bool) {
_mint(to, value);
return true;
}
}
/**
* @title ACI
* @dev ACI ERC20 Token, where all tokens are pre-assigned to the creator.
* Note they can later distribute these tokens as they wish using `transfer` and other
* `ERC20` functions.
*/
contract TPL is ERC20Mintable, ERC20Burnable, ERC20Pausable, ERC20Detailed {
uint8 public constant DECIMALS = 6;
uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(DECIMALS));
/**
* @dev Constructor that gives msg.sender all of existing tokens.
*/
constructor () public ERC20Detailed("TPL", "TPL", DECIMALS) {
_mint(msg.sender, INITIAL_SUPPLY);
}
}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":"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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"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":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","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"},{"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"}]Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260038082527f54504c000000000000000000000000000000000000000000000000000000000060208084018290528451808601909552918452908301529060066200006f33640100000000620000f1810204565b620000833364010000000062000143810204565b6005805460ff191690558251620000a290600690602086019062000301565b508151620000b890600790602085019062000301565b506008805460ff191660ff9290921691909117905550620000eb905033655af3107a400064010000000062000195810204565b620003a6565b6200010c60038264010000000062000e186200025482021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200015e60048264010000000062000e186200025482021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0382161515620001ab57600080fd5b600254620001c8908264010000000062000dba620002af82021704565b600255600160a060020a038216600090815260208190526040902054620001fe908264010000000062000dba620002af82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200026a57600080fd5b6200027f8282640100000000620002c9810204565b156200028a57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620002c257600080fd5b9392505050565b6000600160a060020a0382161515620002e157600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200034457805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037457825182559160200191906001019062000357565b506200038292915062000386565b5090565b620003a391905b808211156200038257600081556001016200038d565b90565b610e9280620003b66000396000f3fe608060405234801561001057600080fd5b5060043610610190576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116100fb57806395d89b41116100b4578063a457c2d71161008e578063a457c2d71461043b578063a9059cbb14610467578063aa271e1a14610493578063dd62ed3e146104b957610190565b806395d89b4114610405578063983b2d561461040d578063986502751461043357610190565b80635c975abb146103755780636ef8d66d1461037d57806370a082311461038557806379cc6790146103ab57806382dc1ec4146103d75780638456cb59146103fd57610190565b8063313ce5671161014d578063313ce567146102c857806339509351146102d05780633f4ba83a146102fc57806340c10f191461030657806342966c681461033257806346fbf68e1461034f57610190565b806306fdde0314610195578063095ea7b31461021257806318160ddd1461025257806323b872dd1461026c5780632e0f2625146102a25780632ff2e9dc146102c0575b600080fd5b61019d6104e7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d75781810151838201526020016101bf565b50505050905090810190601f1680156102045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023e6004803603604081101561022857600080fd5b50600160a060020a03813516906020013561057d565b604080519115158252519081900360200190f35b61025a6105a1565b60408051918252519081900360200190f35b61023e6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105a7565b6102aa6105cd565b6040805160ff9092168252519081900360200190f35b61025a6105d2565b6102aa6105dc565b61023e600480360360408110156102e657600080fd5b50600160a060020a0381351690602001356105e5565b610304610602565b005b61023e6004803603604081101561031c57600080fd5b50600160a060020a038135169060200135610666565b6103046004803603602081101561034857600080fd5b503561068f565b61023e6004803603602081101561036557600080fd5b5035600160a060020a031661069c565b61023e6106b5565b6103046106be565b61025a6004803603602081101561039b57600080fd5b5035600160a060020a03166106c9565b610304600480360360408110156103c157600080fd5b50600160a060020a0381351690602001356106e4565b610304600480360360208110156103ed57600080fd5b5035600160a060020a03166106f2565b61030461070f565b61019d610775565b6103046004803603602081101561042357600080fd5b5035600160a060020a03166107d6565b6103046107f3565b61023e6004803603604081101561045157600080fd5b50600160a060020a0381351690602001356107fc565b61023e6004803603604081101561047d57600080fd5b50600160a060020a038135169060200135610819565b61023e600480360360208110156104a957600080fd5b5035600160a060020a0316610836565b61025a600480360360408110156104cf57600080fd5b50600160a060020a0381358116916020013516610849565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105735780601f1061054857610100808354040283529160200191610573565b820191906000526020600020905b81548152906001019060200180831161055657829003601f168201915b5050505050905090565b60055460009060ff161561059057600080fd5b61059a8383610874565b9392505050565b60025490565b60055460009060ff16156105ba57600080fd5b6105c5848484610881565b949350505050565b600681565b655af3107a400081565b60085460ff1690565b60055460009060ff16156105f857600080fd5b61059a83836108d8565b61060b3361069c565b151561061657600080fd5b60055460ff16151561062757600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061067133610836565b151561067c57600080fd5b6106868383610914565b50600192915050565b61069933826109be565b50565b60006106af60048363ffffffff610a6716565b92915050565b60055460ff1690565b6106c733610a9e565b565b600160a060020a031660009081526020819052604090205490565b6106ee8282610ae6565b5050565b6106fb3361069c565b151561070657600080fd5b61069981610b2b565b6107183361069c565b151561072357600080fd5b60055460ff161561073357600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105735780601f1061054857610100808354040283529160200191610573565b6107df33610836565b15156107ea57600080fd5b61069981610b73565b6106c733610bbb565b60055460009060ff161561080f57600080fd5b61059a8383610c03565b60055460009060ff161561082c57600080fd5b61059a8383610c3f565b60006106af60038363ffffffff610a6716565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000610686338484610c4c565b600061088e848484610cd8565b600160a060020a0384166000908152600160209081526040808320338085529252909120546108ce9186916108c9908663ffffffff610da516565b610c4c565b5060019392505050565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106869185906108c9908663ffffffff610dba16565b600160a060020a038216151561092957600080fd5b60025461093c908263ffffffff610dba16565b600255600160a060020a038216600090815260208190526040902054610968908263ffffffff610dba16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821615156109d357600080fd5b6002546109e6908263ffffffff610da516565b600255600160a060020a038216600090815260208190526040902054610a12908263ffffffff610da516565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610a7e57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610aaf60048263ffffffff610dcc16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610af082826109be565b600160a060020a0382166000908152600160209081526040808320338085529252909120546106ee9184916108c9908563ffffffff610da516565b610b3c60048263ffffffff610e1816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b8460038263ffffffff610e1816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610bcc60038263ffffffff610dcc16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106869185906108c9908663ffffffff610da516565b6000610686338484610cd8565b600160a060020a0382161515610c6157600080fd5b600160a060020a0383161515610c7657600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515610ced57600080fd5b600160a060020a038316600090815260208190526040902054610d16908263ffffffff610da516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610d4b908263ffffffff610dba16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610db457600080fd5b50900390565b60008282018381101561059a57600080fd5b600160a060020a0381161515610de157600080fd5b610deb8282610a67565b1515610df657600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610e2d57600080fd5b610e378282610a67565b15610e4157600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fea165627a7a7230582050fa578ca01831469b96617bfa7e92bbf19270e6750653197b41b9d51c1cfba50029
Deployed Bytecode
0x608060405234801561001057600080fd5b5060043610610190576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116100fb57806395d89b41116100b4578063a457c2d71161008e578063a457c2d71461043b578063a9059cbb14610467578063aa271e1a14610493578063dd62ed3e146104b957610190565b806395d89b4114610405578063983b2d561461040d578063986502751461043357610190565b80635c975abb146103755780636ef8d66d1461037d57806370a082311461038557806379cc6790146103ab57806382dc1ec4146103d75780638456cb59146103fd57610190565b8063313ce5671161014d578063313ce567146102c857806339509351146102d05780633f4ba83a146102fc57806340c10f191461030657806342966c681461033257806346fbf68e1461034f57610190565b806306fdde0314610195578063095ea7b31461021257806318160ddd1461025257806323b872dd1461026c5780632e0f2625146102a25780632ff2e9dc146102c0575b600080fd5b61019d6104e7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d75781810151838201526020016101bf565b50505050905090810190601f1680156102045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023e6004803603604081101561022857600080fd5b50600160a060020a03813516906020013561057d565b604080519115158252519081900360200190f35b61025a6105a1565b60408051918252519081900360200190f35b61023e6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105a7565b6102aa6105cd565b6040805160ff9092168252519081900360200190f35b61025a6105d2565b6102aa6105dc565b61023e600480360360408110156102e657600080fd5b50600160a060020a0381351690602001356105e5565b610304610602565b005b61023e6004803603604081101561031c57600080fd5b50600160a060020a038135169060200135610666565b6103046004803603602081101561034857600080fd5b503561068f565b61023e6004803603602081101561036557600080fd5b5035600160a060020a031661069c565b61023e6106b5565b6103046106be565b61025a6004803603602081101561039b57600080fd5b5035600160a060020a03166106c9565b610304600480360360408110156103c157600080fd5b50600160a060020a0381351690602001356106e4565b610304600480360360208110156103ed57600080fd5b5035600160a060020a03166106f2565b61030461070f565b61019d610775565b6103046004803603602081101561042357600080fd5b5035600160a060020a03166107d6565b6103046107f3565b61023e6004803603604081101561045157600080fd5b50600160a060020a0381351690602001356107fc565b61023e6004803603604081101561047d57600080fd5b50600160a060020a038135169060200135610819565b61023e600480360360208110156104a957600080fd5b5035600160a060020a0316610836565b61025a600480360360408110156104cf57600080fd5b50600160a060020a0381358116916020013516610849565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105735780601f1061054857610100808354040283529160200191610573565b820191906000526020600020905b81548152906001019060200180831161055657829003601f168201915b5050505050905090565b60055460009060ff161561059057600080fd5b61059a8383610874565b9392505050565b60025490565b60055460009060ff16156105ba57600080fd5b6105c5848484610881565b949350505050565b600681565b655af3107a400081565b60085460ff1690565b60055460009060ff16156105f857600080fd5b61059a83836108d8565b61060b3361069c565b151561061657600080fd5b60055460ff16151561062757600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061067133610836565b151561067c57600080fd5b6106868383610914565b50600192915050565b61069933826109be565b50565b60006106af60048363ffffffff610a6716565b92915050565b60055460ff1690565b6106c733610a9e565b565b600160a060020a031660009081526020819052604090205490565b6106ee8282610ae6565b5050565b6106fb3361069c565b151561070657600080fd5b61069981610b2b565b6107183361069c565b151561072357600080fd5b60055460ff161561073357600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105735780601f1061054857610100808354040283529160200191610573565b6107df33610836565b15156107ea57600080fd5b61069981610b73565b6106c733610bbb565b60055460009060ff161561080f57600080fd5b61059a8383610c03565b60055460009060ff161561082c57600080fd5b61059a8383610c3f565b60006106af60038363ffffffff610a6716565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000610686338484610c4c565b600061088e848484610cd8565b600160a060020a0384166000908152600160209081526040808320338085529252909120546108ce9186916108c9908663ffffffff610da516565b610c4c565b5060019392505050565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106869185906108c9908663ffffffff610dba16565b600160a060020a038216151561092957600080fd5b60025461093c908263ffffffff610dba16565b600255600160a060020a038216600090815260208190526040902054610968908263ffffffff610dba16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821615156109d357600080fd5b6002546109e6908263ffffffff610da516565b600255600160a060020a038216600090815260208190526040902054610a12908263ffffffff610da516565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610a7e57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610aaf60048263ffffffff610dcc16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610af082826109be565b600160a060020a0382166000908152600160209081526040808320338085529252909120546106ee9184916108c9908563ffffffff610da516565b610b3c60048263ffffffff610e1816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b8460038263ffffffff610e1816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610bcc60038263ffffffff610dcc16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106869185906108c9908663ffffffff610da516565b6000610686338484610cd8565b600160a060020a0382161515610c6157600080fd5b600160a060020a0383161515610c7657600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515610ced57600080fd5b600160a060020a038316600090815260208190526040902054610d16908263ffffffff610da516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610d4b908263ffffffff610dba16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610db457600080fd5b50900390565b60008282018381101561059a57600080fd5b600160a060020a0381161515610de157600080fd5b610deb8282610a67565b1515610df657600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610e2d57600080fd5b610e378282610a67565b15610e4157600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fea165627a7a7230582050fa578ca01831469b96617bfa7e92bbf19270e6750653197b41b9d51c1cfba50029
Deployed Bytecode Sourcemap
19671:414:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19671:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16932:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;16932:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15812:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15812:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5313:91;;;:::i;:::-;;;;;;;;;;;;;;;;15644:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15644:160:0;;;;;;;;;;;;;;;;;:::i;19753:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19794:78;;;:::i;17248:83::-;;;:::i;15960:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15960:175:0;;;;;;;;:::i;15245:118::-;;;:::i;:::-;;19321:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19321:131:0;;;;;;;;:::i;17592:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17592:79:0;;:::i;13519:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13519:109:0;-1:-1:-1;;;;;13519:109:0;;:::i;14498:78::-;;;:::i;13736:77::-;;;:::i;5624:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5624:106:0;-1:-1:-1;;;;;5624:106:0;;:::i;17925:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17925:95:0;;;;;;;;:::i;13636:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13636:92:0;-1:-1:-1;;;;;13636:92:0;;:::i;15034:116::-;;;:::i;17082:87::-;;;:::i;18509:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18509:92:0;-1:-1:-1;;;;;18509:92:0;;:::i;18609:77::-;;;:::i;16143:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16143:185:0;;;;;;;;:::i;15504:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15504:132:0;;;;;;;;:::i;18392:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18392:109:0;-1:-1:-1;;;;;18392:109:0;;:::i;6069:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6069:131:0;;;;;;;;;;:::i;16932:83::-;17002:5;16995:12;;;;;;;;-1:-1:-1;;16995:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16969:13;;16995:12;;17002:5;;16995:12;;17002:5;16995:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16932:83;:::o;15812:140::-;14735:7;;15891:4;;14735:7;;14734:8;14726:17;;;;;;15915:29;15929:7;15938:5;15915:13;:29::i;:::-;15908:36;15812:140;-1:-1:-1;;;15812:140:0:o;5313:91::-;5384:12;;5313:91;:::o;15644:160::-;14735:7;;15737:4;;14735:7;;14734:8;14726:17;;;;;;15761:35;15780:4;15786:2;15790:5;15761:18;:35::i;:::-;15754:42;15644:160;-1:-1:-1;;;;15644:160:0:o;19753:34::-;19786:1;19753:34;:::o;19794:78::-;19835:37;19794:78;:::o;17248:83::-;17314:9;;;;17248:83;:::o;15960:175::-;14735:7;;16051:12;;14735:7;;14734:8;14726:17;;;;;;16083:44;16107:7;16116:10;16083:23;:44::i;15245:118::-;13470:20;13479:10;13470:8;:20::i;:::-;13462:29;;;;;;;;14914:7;;;;14906:16;;;;;;;;15304:7;:15;;-1:-1:-1;;15304:15:0;;;15335:20;;;15344:10;15335:20;;;;;;;;;;;;;15245:118::o;19321:131::-;19389:4;18343:20;18352:10;18343:8;:20::i;:::-;18335:29;;;;;;;;19406:16;19412:2;19416:5;19406;:16::i;:::-;-1:-1:-1;19440:4:0;19321:131;;;;:::o;17592:79::-;17639:24;17645:10;17657:5;17639;:24::i;:::-;17592:79;:::o;13519:109::-;13575:4;13599:21;:8;13612:7;13599:21;:12;:21;:::i;:::-;13592:28;13519:109;-1:-1:-1;;13519:109:0:o;14498:78::-;14561:7;;;;14498:78;:::o;13736:77::-;13780:25;13794:10;13780:13;:25::i;:::-;13736:77::o;5624:106::-;-1:-1:-1;;;;;5706:16:0;5679:7;5706:16;;;;;;;;;;;;5624:106::o;17925:95::-;17990:22;18000:4;18006:5;17990:9;:22::i;:::-;17925:95;;:::o;13636:92::-;13470:20;13479:10;13470:8;:20::i;:::-;13462:29;;;;;;;;13701:19;13712:7;13701:10;:19::i;15034:116::-;13470:20;13479:10;13470:8;:20::i;:::-;13462:29;;;;;;;;14735:7;;;;14734:8;14726:17;;;;;;15094:7;:14;;-1:-1:-1;;15094:14:0;15104:4;15094:14;;;15124:18;;;15131:10;15124:18;;;;;;;;;;;;;15034:116::o;17082:87::-;17154:7;17147:14;;;;;;;;-1:-1:-1;;17147:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17121:13;;17147:14;;17154:7;;17147:14;;17154:7;17147:14;;;;;;;;;;;;;;;;;;;;;;;;18509:92;18343:20;18352:10;18343:8;:20::i;:::-;18335:29;;;;;;;;18574:19;18585:7;18574:10;:19::i;18609:77::-;18653:25;18667:10;18653:13;:25::i;16143:185::-;14735:7;;16239:12;;14735:7;;14734:8;14726:17;;;;;;16271:49;16295:7;16304:15;16271:23;:49::i;15504:132::-;14735:7;;15579:4;;14735:7;;14734:8;14726:17;;;;;;15603:25;15618:2;15622:5;15603:14;:25::i;18392:109::-;18448:4;18472:21;:8;18485:7;18472:21;:12;:21;:::i;6069:131::-;-1:-1:-1;;;;;6168:15:0;;;6141:7;6168:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6069:131::o;7162:148::-;7227:4;7244:36;7253:10;7265:7;7274:5;7244:8;:36::i;7783:228::-;7862:4;7879:26;7889:4;7895:2;7899:5;7879:9;:26::i;:::-;-1:-1:-1;;;;;7943:14:0;;;;;;:8;:14;;;;;;;;7931:10;7943:26;;;;;;;;;7916:65;;7925:4;;7943:37;;7974:5;7943:37;:30;:37;:::i;:::-;7916:8;:65::i;:::-;-1:-1:-1;7999:4:0;7783:228;;;;;:::o;8526:203::-;8632:10;8606:4;8653:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8653:29:0;;;;;;;;;;8606:4;;8623:76;;8644:7;;8653:45;;8687:10;8653:45;:33;:45;:::i;10303:269::-;-1:-1:-1;;;;;10378:21:0;;;;10370:30;;;;;;10428:12;;:23;;10445:5;10428:23;:16;:23;:::i;:::-;10413:12;:38;-1:-1:-1;;;;;10483:18:0;;:9;:18;;;;;;;;;;;:29;;10506:5;10483:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10462:18:0;;:9;:18;;;;;;;;;;;:50;;;;10528:36;;;;;;;10462:18;;:9;;10528:36;;;;;;;;;;10303:269;;:::o;10806:::-;-1:-1:-1;;;;;10881:21:0;;;;10873:30;;;;;;10931:12;;:23;;10948:5;10931:23;:16;:23;:::i;:::-;10916:12;:38;-1:-1:-1;;;;;10986:18:0;;:9;:18;;;;;;;;;;;:29;;11009:5;10986:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10965:18:0;;:9;:18;;;;;;;;;;;:50;;;;11031:36;;;;;;;10965:9;;11031:36;;;;;;;;;;;10806:269;;:::o;12984:165::-;13056:4;-1:-1:-1;;;;;13081:21:0;;;;13073:30;;;;;;-1:-1:-1;;;;;;13121:20:0;:11;:20;;;;;;;;;;;;;;;12984:165::o;13951:130::-;14011:24;:8;14027:7;14011:24;:15;:24;:::i;:::-;14051:22;;-1:-1:-1;;;;;14051:22:0;;;;;;;;13951:130;:::o;12001:182::-;12072:21;12078:7;12087:5;12072;:21::i;:::-;-1:-1:-1;;;;;12134:17:0;;;;;;:8;:17;;;;;;;;12122:10;12134:29;;;;;;;;;12104:71;;12113:7;;12134:40;;12168:5;12134:40;:33;:40;:::i;13821:122::-;13878:21;:8;13891:7;13878:21;:12;:21;:::i;:::-;13915:20;;-1:-1:-1;;;;;13915:20:0;;;;;;;;13821:122;:::o;18694:::-;18751:21;:8;18764:7;18751:21;:12;:21;:::i;:::-;18788:20;;-1:-1:-1;;;;;18788:20:0;;;;;;;;18694:122;:::o;18824:130::-;18884:24;:8;18900:7;18884:24;:15;:24;:::i;:::-;18924:22;;-1:-1:-1;;;;;18924:22:0;;;;;;;;18824:130;:::o;9249:213::-;9360:10;9334:4;9381:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9381:29:0;;;;;;;;;;9334:4;;9351:81;;9372:7;;9381:50;;9415:15;9381:50;:33;:50;:::i;6375:140::-;6436:4;6453:32;6463:10;6475:2;6479:5;6453:9;:32::i;11348:254::-;-1:-1:-1;;;;;11441:21:0;;;;11433:30;;;;;;-1:-1:-1;;;;;11482:19:0;;;;11474:28;;;;;;-1:-1:-1;;;;;11515:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;11563:31;;;;;;;;;;;;;;;;;11348:254;;;:::o;9689:262::-;-1:-1:-1;;;;;9777:16:0;;;;9769:25;;;;;;-1:-1:-1;;;;;9825:15:0;;:9;:15;;;;;;;;;;;:26;;9845:5;9825:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;9807:15:0;;;:9;:15;;;;;;;;;;;:44;;;;9878:13;;;;;;;:24;;9896:5;9878:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;9862:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;9918:25;;;;;;;9862:13;;9918:25;;;;;;;;;;;;;9689:262;;;:::o;3776:150::-;3834:7;3862:6;;;;3854:15;;;;;;-1:-1:-1;3892:5:0;;;3776:150::o;4014:::-;4072:7;4104:5;;;4128:6;;;;4120:15;;;;;12701:189;-1:-1:-1;;;;;12781:21:0;;;;12773:30;;;;;;12822:18;12826:4;12832:7;12822:3;:18::i;:::-;12814:27;;;;;;;;-1:-1:-1;;;;;12854:20:0;12877:5;12854:20;;;;;;;;;;;:28;;-1:-1:-1;;12854:28:0;;;12701:189::o;12436:186::-;-1:-1:-1;;;;;12513:21:0;;;;12505:30;;;;;;12555:18;12559:4;12565:7;12555:3;:18::i;:::-;12554:19;12546:28;;;;;;-1:-1:-1;;;;;12587:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;12587:27:0;12610:4;12587:27;;;12436:186::o
Swarm Source
bzzr://50fa578ca01831469b96617bfa7e92bbf19270e6750653197b41b9d51c1cfba5
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.