ERC-20
Overview
Max Total Supply
647,132.367769151732952435 WAN
Holders
240
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MappingToken
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-04 */ /** *Submitted for verification at Etherscan.io on 2021-03-04 */ // File: contracts/components/WRC20Protocol.sol pragma solidity 0.4.26; pragma experimental ABIEncoderV2; contract WRC20Protocol { /* This is a slight change to the ERC20 base standard. function totalSupply() constant returns (uint supply); is replaced with: uint public totalSupply; This automatically creates a getter function for the totalSupply. This is moved to the base contract since public getter functions are not currently recognised as an implementation of the matching abstract function by the compiler. */ /************************************** ** ** VARIABLES ** **************************************/ string public name; string public symbol; uint8 public decimals; mapping (address => uint) balances; mapping (address => mapping (address => uint)) allowed; /// total amount of tokens uint public totalSupply; /// @param _owner The address from which the balance will be retrieved /// @return The balance function balanceOf(address _owner) public view returns (uint balance); /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint _value) public returns (bool success); /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` /// @param _from The address of the sender /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transferFrom(address _from, address _to, uint _value) public returns (bool success); /// @notice `msg.sender` approves `_spender` to spend `_value` tokens /// @param _spender The address of the account able to transfer the tokens /// @param _value The amount of tokens to be approved for transfer /// @return Whether the approval was successful or not function approve(address _spender, uint _value) public returns (bool success); /// @param _owner The address of the account owning tokens /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens allowed to spent function allowance(address _owner, address _spender) public view returns (uint remaining); event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); } // File: contracts/lib/SafeMath.sol pragma solidity ^0.4.24; /** * Math operations with safety checks */ library SafeMath { /** * @dev Multiplies two numbers, 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, "SafeMath mul overflow"); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath div 0"); // Solidity only automatically asserts 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 Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath sub b > a"); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath add overflow"); return c; } /** * @dev Divides two numbers 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, "SafeMath mod 0"); return a % b; } } // File: contracts/components/StandardToken.sol /* Copyright 2019 Wanchain Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // _ _ _ // __ ____ _ _ __ ___| |__ __ _(_)_ __ __| | _____ __ // \ \ /\ / / _` | '_ \ / __| '_ \ / _` | | '_ \@/ _` |/ _ \ \ / / // \ V V / (_| | | | | (__| | | | (_| | | | | | (_| | __/\ V / // \_/\_/ \__,_|_| |_|\___|_| |_|\__,_|_|_| |_|\__,_|\___| \_/ // // pragma solidity 0.4.26; contract StandardToken is WRC20Protocol { using SafeMath for uint; /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { require(msg.data.length >= size + 4, "Payload size is incorrect"); _; } function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) returns (bool success) { balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } function balanceOf(address _owner) public view returns (uint balance) { return balances[_owner]; } function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) returns (bool success) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0), "Not permitted"); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint remaining) { return allowed[_owner][_spender]; } } // File: contracts/components/Owned.sol /* Copyright 2019 Wanchain Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // _ _ _ // __ ____ _ _ __ ___| |__ __ _(_)_ __ __| | _____ __ // \ \ /\ / / _` | '_ \ / __| '_ \ / _` | | '_ \@/ _` |/ _ \ \ / / // \ V V / (_| | | | | (__| | | | (_| | | | | | (_| | __/\ V / // \_/\_/ \__,_|_| |_|\___|_| |_|\__,_|_|_| |_|\__,_|\___| \_/ // // pragma solidity ^0.4.24; /// @dev `Owned` is a base level contract that assigns an `owner` that can be /// later changed contract Owned { event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /// @dev `owner` is the only address that can call a function with this /// modifier modifier onlyOwner() { require(msg.sender == owner, "Not owner"); _; } address public owner; /// @notice The Constructor assigns the message sender to be `owner` constructor() public { owner = msg.sender; } address public newOwner; function transferOwner(address _newOwner) public onlyOwner { require(_newOwner != address(0), "New owner is the zero address"); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } /// @notice `owner` can step down and assign some other address to this role /// @param _newOwner The address of the new owner. 0x0 can be used to create /// an unowned neutral vault, however that cannot be undone function changeOwner(address _newOwner) public onlyOwner { newOwner = _newOwner; } function acceptOwnership() public { if (msg.sender == newOwner) { owner = newOwner; } } function renounceOwnership() public onlyOwner { owner = address(0); } } // File: contracts/tokenManager/MappingToken.sol /* Copyright 2019 Wanchain Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // _ _ _ // __ ____ _ _ __ ___| |__ __ _(_)_ __ __| | _____ __ // \ \ /\ / / _` | '_ \ / __| '_ \ / _` | | '_ \@/ _` |/ _ \ \ / / // \ V V / (_| | | | | (__| | | | (_| | | | | | (_| | __/\ V / // \_/\_/ \__,_|_| |_|\___|_| |_|\__,_|_|_| |_|\__,_|\___| \_/ // // pragma solidity 0.4.26; contract MappingToken is StandardToken, Owned { using SafeMath for uint; /**************************************************************************** ** ** MODIFIERS ** ****************************************************************************/ modifier onlyMeaningfulValue(uint value) { require(value > 0, "Value is null"); _; } /**************************************************************************** ** ** EVENTS ** ****************************************************************************/ ///@notice Initialize the TokenManager address ///@dev Initialize the TokenManager address ///@param tokenName The token name to be used ///@param tokenSymbol The token symbol to be used ///@param tokenDecimal The token decimals to be used constructor(string tokenName, string tokenSymbol, uint8 tokenDecimal) public { name = tokenName; symbol = tokenSymbol; decimals = tokenDecimal; } /**************************************************************************** ** ** MANIPULATIONS ** ****************************************************************************/ /// @notice Create token /// @dev Create token /// @param account Address will receive token /// @param value Amount of token to be minted function mint(address account, uint value) external onlyOwner onlyMeaningfulValue(value) { balances[account] = balances[account].add(value); totalSupply = totalSupply.add(value); emit Transfer(address(0), account, value); } /// @notice Burn token /// @dev Burn token /// @param account Address of whose token will be burnt /// @param value Amount of token to be burnt function burn(address account, uint value) external onlyOwner onlyMeaningfulValue(value) { balances[account] = balances[account].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(account, address(0), value); } /// @notice update token name, symbol /// @dev update token name, symbol /// @param _name token new name /// @param _symbol token new symbol function update(string _name, string _symbol) external onlyOwner { name = _name; symbol = _symbol; } }
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":"success","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":"success","type":"bool"}],"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":"account","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwner","outputs":[],"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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","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":"account","type":"address"},{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"update","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenDecimal","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"_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
60806040523480156200001157600080fd5b5060405162001387380380620013878339810180604052620000379190810190620001a8565b60068054600160a060020a0319163317905582516200005e90600090602086019062000092565b5081516200007490600190602085019062000092565b506002805460ff191660ff9290921691909117905550620002b39050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000d557805160ff191683800117855562000105565b8280016001018555821562000105579182015b8281111562000105578251825591602001919060010190620000e8565b506200011392915062000117565b5090565b6200013491905b808211156200011357600081556001016200011e565b90565b6000601f820183136200014957600080fd5b8151620001606200015a8262000252565b6200022b565b915080825260208301602083018583830111156200017d57600080fd5b6200018a83828462000280565b50505092915050565b6000620001a182516200027a565b9392505050565b600080600060608486031215620001be57600080fd5b83516001604060020a03811115620001d557600080fd5b620001e38682870162000137565b93505060208401516001604060020a038111156200020057600080fd5b6200020e8682870162000137565b9250506040620002218682870162000193565b9150509250925092565b6040518181016001604060020a03811182821017156200024a57600080fd5b604052919050565b60006001604060020a038211156200026957600080fd5b506020601f91909101601f19160190565b60ff1690565b60005b838110156200029d57818101518382015260200162000283565b83811115620002ad576000848401525b50505050565b6110c480620002c36000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461012b57806318160ddd1461015857806323b872dd1461017a578063313ce5671461019a57806340c10f19146101bc5780634fb2e45d146101de57806370a08231146101fe578063715018a61461021e57806379ba5097146102335780638da5cb5b1461024857806395d89b411461026a5780639dc29fac1461027f578063a6f9dae11461029f578063a9059cbb146102bf578063d4ee1d90146102df578063dd62ed3e146102f4578063f4c84d1914610314575b600080fd5b34801561010c57600080fd5b50610115610334565b6040516101229190610f78565b60405180910390f35b34801561013757600080fd5b5061014b610146366004610d0d565b6103c2565b6040516101229190610f6a565b34801561016457600080fd5b5061016d6104ae565b6040516101229190610ff9565b34801561018657600080fd5b5061014b610195366004610cc0565b6104b4565b3480156101a657600080fd5b506101af6105d6565b6040516101229190611007565b3480156101c857600080fd5b506101dc6101d7366004610d0d565b6105df565b005b3480156101ea57600080fd5b506101dc6101f9366004610c60565b6106c1565b34801561020a57600080fd5b5061016d610219366004610c60565b610782565b34801561022a57600080fd5b506101dc61079d565b34801561023f57600080fd5b506101dc6107e9565b34801561025457600080fd5b5061025d61082e565b6040516101229190610f5c565b34801561027657600080fd5b5061011561083d565b34801561028b57600080fd5b506101dc61029a366004610d0d565b610897565b3480156102ab57600080fd5b506101dc6102ba366004610c60565b61096c565b3480156102cb57600080fd5b5061014b6102da366004610d0d565b6109c8565b3480156102eb57600080fd5b5061025d610a7f565b34801561030057600080fd5b5061016d61030f366004610c86565b610a8e565b34801561032057600080fd5b506101dc61032f366004610d3d565b610abb565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103ba5780601f1061038f576101008083540402835291602001916103ba565b820191906000526020600020905b81548152906001019060200180831161039d57829003601f168201915b505050505081565b6000604060443610156103f35760405160e560020a62461bcd0281526004016103ea90610f99565b60405180910390fd5b8215806104215750336000908152600460209081526040808320600160a060020a0388168452909152902054155b15156104425760405160e560020a62461bcd0281526004016103ea90610f89565b336000818152600460209081526040808320600160a060020a03891680855292529182902086905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061049c908790610ff9565b60405180910390a35060019392505050565b60055481565b6000606060643610156104dc5760405160e560020a62461bcd0281526004016103ea90610f99565b600160a060020a038416600090815260036020526040902054610505908463ffffffff610b0816565b600160a060020a03808616600090815260036020526040808220939093559087168152205461053a908463ffffffff610b3716565b600160a060020a0386166000908152600360209081526040808320939093556004815282822033835290522054610577908463ffffffff610b3716565b600160a060020a03808716600081815260046020908152604080832033845290915290819020939093559151908616919060008051602061106b833981519152906105c3908790610ff9565b60405180910390a3506001949350505050565b60025460ff1681565b600654600160a060020a0316331461060c5760405160e560020a62461bcd0281526004016103ea90610fe9565b80600081116106305760405160e560020a62461bcd0281526004016103ea90610fc9565b600160a060020a038316600090815260036020526040902054610659908363ffffffff610b0816565b600160a060020a038416600090815260036020526040902055600554610685908363ffffffff610b0816565b600555604051600160a060020a0384169060009060008051602061106b833981519152906106b4908690610ff9565b60405180910390a3505050565b600654600160a060020a031633146106ee5760405160e560020a62461bcd0281526004016103ea90610fe9565b600160a060020a03811615156107195760405160e560020a62461bcd0281526004016103ea90610fb9565b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146107ca5760405160e560020a62461bcd0281526004016103ea90610fe9565b6006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600160a060020a031633141561082c576007546006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039092169190911790555b565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103ba5780601f1061038f576101008083540402835291602001916103ba565b600654600160a060020a031633146108c45760405160e560020a62461bcd0281526004016103ea90610fe9565b80600081116108e85760405160e560020a62461bcd0281526004016103ea90610fc9565b600160a060020a038316600090815260036020526040902054610911908363ffffffff610b3716565b600160a060020a03841660009081526003602052604090205560055461093d908363ffffffff610b3716565b600555604051600090600160a060020a0385169060008051602061106b833981519152906106b4908690610ff9565b600654600160a060020a031633146109995760405160e560020a62461bcd0281526004016103ea90610fe9565b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000604060443610156109f05760405160e560020a62461bcd0281526004016103ea90610f99565b33600090815260036020526040902054610a10908463ffffffff610b3716565b3360009081526003602052604080822092909255600160a060020a03861681522054610a42908463ffffffff610b0816565b600160a060020a03851660008181526003602052604090819020929092559051339060008051602061106b8339815191529061049c908790610ff9565b600754600160a060020a031681565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b92915050565b600654600160a060020a03163314610ae85760405160e560020a62461bcd0281526004016103ea90610fe9565b610af460008585610b64565b50610b0160018383610b64565b5050505050565b600082820183811015610b305760405160e560020a62461bcd0281526004016103ea90610fa9565b9392505050565b60008083831115610b5d5760405160e560020a62461bcd0281526004016103ea90610fd9565b5050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610ba55782800160ff19823516178555610bd2565b82800160010185558215610bd2579182015b82811115610bd2578235825591602001919060010190610bb7565b50610bde929150610be2565b5090565b610bfc91905b80821115610bde5760008155600101610be8565b90565b6000610b308235611019565b600080601f83018413610c1d57600080fd5b50813567ffffffffffffffff811115610c3557600080fd5b602083019150836001820283011115610c4d57600080fd5b9250929050565b6000610b308235610bfc565b600060208284031215610c7257600080fd5b6000610c7e8484610bff565b949350505050565b60008060408385031215610c9957600080fd5b6000610ca58585610bff565b9250506020610cb685828601610bff565b9150509250929050565b600080600060608486031215610cd557600080fd5b6000610ce18686610bff565b9350506020610cf286828701610bff565b9250506040610d0386828701610c54565b9150509250925092565b60008060408385031215610d2057600080fd5b6000610d2c8585610bff565b9250506020610cb685828601610c54565b60008060008060408587031215610d5357600080fd5b843567ffffffffffffffff811115610d6a57600080fd5b610d7687828801610c0b565b9450945050602085013567ffffffffffffffff811115610d9557600080fd5b610da187828801610c0b565b95989497509550505050565b610db681611019565b82525050565b610db681611025565b6000610dd082611015565b808452610de4816020860160208601611030565b610ded81611060565b9093016020019392505050565b600d81527f4e6f74207065726d697474656400000000000000000000000000000000000000602082015260400190565b601981527f5061796c6f61642073697a6520697320696e636f727265637400000000000000602082015260400190565b601581527f536166654d61746820616464206f766572666c6f770000000000000000000000602082015260400190565b601d81527f4e6577206f776e657220697320746865207a65726f2061646472657373000000602082015260400190565b600d81527f56616c7565206973206e756c6c00000000000000000000000000000000000000602082015260400190565b601281527f536166654d617468207375622062203e20610000000000000000000000000000602082015260400190565b600981527f4e6f74206f776e65720000000000000000000000000000000000000000000000602082015260400190565b610db681610bfc565b610db68161102a565b60208101610ab58284610dad565b60208101610ab58284610dbc565b60208082528101610b308184610dc5565b60208082528101610ab581610dfa565b60208082528101610ab581610e2a565b60208082528101610ab581610e5a565b60208082528101610ab581610e8a565b60208082528101610ab581610eba565b60208082528101610ab581610eea565b60208082528101610ab581610f1a565b60208101610ab58284610f4a565b60208101610ab58284610f53565b5190565b600160a060020a031690565b151590565b60ff1690565b60005b8381101561104b578181015183820152602001611033565b8381111561105a576000848401525b50505050565b601f01601f1916905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a723058208af6128fdabccd795f8cc867830dc6a3d63a010e24bbf3cc70e2c7b2c3fde8286c6578706572696d656e74616cf50037000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000c57414e40657468657265756d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357414e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461012b57806318160ddd1461015857806323b872dd1461017a578063313ce5671461019a57806340c10f19146101bc5780634fb2e45d146101de57806370a08231146101fe578063715018a61461021e57806379ba5097146102335780638da5cb5b1461024857806395d89b411461026a5780639dc29fac1461027f578063a6f9dae11461029f578063a9059cbb146102bf578063d4ee1d90146102df578063dd62ed3e146102f4578063f4c84d1914610314575b600080fd5b34801561010c57600080fd5b50610115610334565b6040516101229190610f78565b60405180910390f35b34801561013757600080fd5b5061014b610146366004610d0d565b6103c2565b6040516101229190610f6a565b34801561016457600080fd5b5061016d6104ae565b6040516101229190610ff9565b34801561018657600080fd5b5061014b610195366004610cc0565b6104b4565b3480156101a657600080fd5b506101af6105d6565b6040516101229190611007565b3480156101c857600080fd5b506101dc6101d7366004610d0d565b6105df565b005b3480156101ea57600080fd5b506101dc6101f9366004610c60565b6106c1565b34801561020a57600080fd5b5061016d610219366004610c60565b610782565b34801561022a57600080fd5b506101dc61079d565b34801561023f57600080fd5b506101dc6107e9565b34801561025457600080fd5b5061025d61082e565b6040516101229190610f5c565b34801561027657600080fd5b5061011561083d565b34801561028b57600080fd5b506101dc61029a366004610d0d565b610897565b3480156102ab57600080fd5b506101dc6102ba366004610c60565b61096c565b3480156102cb57600080fd5b5061014b6102da366004610d0d565b6109c8565b3480156102eb57600080fd5b5061025d610a7f565b34801561030057600080fd5b5061016d61030f366004610c86565b610a8e565b34801561032057600080fd5b506101dc61032f366004610d3d565b610abb565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103ba5780601f1061038f576101008083540402835291602001916103ba565b820191906000526020600020905b81548152906001019060200180831161039d57829003601f168201915b505050505081565b6000604060443610156103f35760405160e560020a62461bcd0281526004016103ea90610f99565b60405180910390fd5b8215806104215750336000908152600460209081526040808320600160a060020a0388168452909152902054155b15156104425760405160e560020a62461bcd0281526004016103ea90610f89565b336000818152600460209081526040808320600160a060020a03891680855292529182902086905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061049c908790610ff9565b60405180910390a35060019392505050565b60055481565b6000606060643610156104dc5760405160e560020a62461bcd0281526004016103ea90610f99565b600160a060020a038416600090815260036020526040902054610505908463ffffffff610b0816565b600160a060020a03808616600090815260036020526040808220939093559087168152205461053a908463ffffffff610b3716565b600160a060020a0386166000908152600360209081526040808320939093556004815282822033835290522054610577908463ffffffff610b3716565b600160a060020a03808716600081815260046020908152604080832033845290915290819020939093559151908616919060008051602061106b833981519152906105c3908790610ff9565b60405180910390a3506001949350505050565b60025460ff1681565b600654600160a060020a0316331461060c5760405160e560020a62461bcd0281526004016103ea90610fe9565b80600081116106305760405160e560020a62461bcd0281526004016103ea90610fc9565b600160a060020a038316600090815260036020526040902054610659908363ffffffff610b0816565b600160a060020a038416600090815260036020526040902055600554610685908363ffffffff610b0816565b600555604051600160a060020a0384169060009060008051602061106b833981519152906106b4908690610ff9565b60405180910390a3505050565b600654600160a060020a031633146106ee5760405160e560020a62461bcd0281526004016103ea90610fe9565b600160a060020a03811615156107195760405160e560020a62461bcd0281526004016103ea90610fb9565b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146107ca5760405160e560020a62461bcd0281526004016103ea90610fe9565b6006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600160a060020a031633141561082c576007546006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039092169190911790555b565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103ba5780601f1061038f576101008083540402835291602001916103ba565b600654600160a060020a031633146108c45760405160e560020a62461bcd0281526004016103ea90610fe9565b80600081116108e85760405160e560020a62461bcd0281526004016103ea90610fc9565b600160a060020a038316600090815260036020526040902054610911908363ffffffff610b3716565b600160a060020a03841660009081526003602052604090205560055461093d908363ffffffff610b3716565b600555604051600090600160a060020a0385169060008051602061106b833981519152906106b4908690610ff9565b600654600160a060020a031633146109995760405160e560020a62461bcd0281526004016103ea90610fe9565b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000604060443610156109f05760405160e560020a62461bcd0281526004016103ea90610f99565b33600090815260036020526040902054610a10908463ffffffff610b3716565b3360009081526003602052604080822092909255600160a060020a03861681522054610a42908463ffffffff610b0816565b600160a060020a03851660008181526003602052604090819020929092559051339060008051602061106b8339815191529061049c908790610ff9565b600754600160a060020a031681565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b92915050565b600654600160a060020a03163314610ae85760405160e560020a62461bcd0281526004016103ea90610fe9565b610af460008585610b64565b50610b0160018383610b64565b5050505050565b600082820183811015610b305760405160e560020a62461bcd0281526004016103ea90610fa9565b9392505050565b60008083831115610b5d5760405160e560020a62461bcd0281526004016103ea90610fd9565b5050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610ba55782800160ff19823516178555610bd2565b82800160010185558215610bd2579182015b82811115610bd2578235825591602001919060010190610bb7565b50610bde929150610be2565b5090565b610bfc91905b80821115610bde5760008155600101610be8565b90565b6000610b308235611019565b600080601f83018413610c1d57600080fd5b50813567ffffffffffffffff811115610c3557600080fd5b602083019150836001820283011115610c4d57600080fd5b9250929050565b6000610b308235610bfc565b600060208284031215610c7257600080fd5b6000610c7e8484610bff565b949350505050565b60008060408385031215610c9957600080fd5b6000610ca58585610bff565b9250506020610cb685828601610bff565b9150509250929050565b600080600060608486031215610cd557600080fd5b6000610ce18686610bff565b9350506020610cf286828701610bff565b9250506040610d0386828701610c54565b9150509250925092565b60008060408385031215610d2057600080fd5b6000610d2c8585610bff565b9250506020610cb685828601610c54565b60008060008060408587031215610d5357600080fd5b843567ffffffffffffffff811115610d6a57600080fd5b610d7687828801610c0b565b9450945050602085013567ffffffffffffffff811115610d9557600080fd5b610da187828801610c0b565b95989497509550505050565b610db681611019565b82525050565b610db681611025565b6000610dd082611015565b808452610de4816020860160208601611030565b610ded81611060565b9093016020019392505050565b600d81527f4e6f74207065726d697474656400000000000000000000000000000000000000602082015260400190565b601981527f5061796c6f61642073697a6520697320696e636f727265637400000000000000602082015260400190565b601581527f536166654d61746820616464206f766572666c6f770000000000000000000000602082015260400190565b601d81527f4e6577206f776e657220697320746865207a65726f2061646472657373000000602082015260400190565b600d81527f56616c7565206973206e756c6c00000000000000000000000000000000000000602082015260400190565b601281527f536166654d617468207375622062203e20610000000000000000000000000000602082015260400190565b600981527f4e6f74206f776e65720000000000000000000000000000000000000000000000602082015260400190565b610db681610bfc565b610db68161102a565b60208101610ab58284610dad565b60208101610ab58284610dbc565b60208082528101610b308184610dc5565b60208082528101610ab581610dfa565b60208082528101610ab581610e2a565b60208082528101610ab581610e5a565b60208082528101610ab581610e8a565b60208082528101610ab581610eba565b60208082528101610ab581610eea565b60208082528101610ab581610f1a565b60208101610ab58284610f4a565b60208101610ab58284610f53565b5190565b600160a060020a031690565b151590565b60ff1690565b60005b8381101561104b578181015183820152602001611033565b8381111561105a576000848401525b50505050565b601f01601f1916905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a723058208af6128fdabccd795f8cc867830dc6a3d63a010e24bbf3cc70e2c7b2c3fde8286c6578706572696d656e74616cf50037
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000c57414e40657468657265756d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357414e0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): WAN@ethereum
Arg [1] : tokenSymbol (string): WAN
Arg [2] : tokenDecimal (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 57414e40657468657265756d0000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 57414e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
11097:2506:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;779:18:0;;;;;;;;;;;;;;;;;;;;6865:636;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6865:636:0;;;;;;;;;;;;;;;;;995:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;995:23:0;;;;;;;;;;;;6360:377;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6360:377:0;;;;;;;;;831:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;831:21:0;;;;;;;;;;;;12535:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12535:289:0;;;;;;;;;;;9282:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9282:225:0;;;;;;;;;6745:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6745:112:0;;;;;;;;;9980:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9980:83:0;;;;9849:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9849:123:0;;;;9081:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9081:20:0;;;;;;;;;;;;804;;8:9:-1;5:2;;;30:1;27;20:12;5:2;804:20:0;;;;12996:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12996:289:0;;;;;;;;;9745:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9745:96:0;;;;;;;;;6057:295;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6057:295:0;;;;;;;;;9250:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9250:23:0;;;;7509:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7509:139:0;;;;;;;;;13454:146;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13454:146:0;;;;;;;;;779:18;;;;;;;;;;;;;;;-1:-1:-1;;779:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6865:636::-;6953:12;6936:6;5991:8;5972;:27;;5964:65;;;;-1:-1:-1;;;;;5964:65:0;;;;;;;;;;;;;;;;;7296:11;;;7295:53;;-1:-1:-1;7321:10:0;7313:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7313:29:0;;;;;;;;;;:34;7295:53;7287:79;;;;;;-1:-1:-1;;;;;7287:79:0;;;;;;;;;7387:10;7379:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7379:29:0;;;;;;;;;;;:38;;;7433;;7379:29;;7387:10;7433:38;;;;7411:6;;7433:38;;;;;;;;;;-1:-1:-1;7489:4:0;;6865:636;-1:-1:-1;;;6865:636:0:o;995:23::-;;;;:::o;6360:377::-;6463:12;6446:6;5991:8;5972;:27;;5964:65;;;;-1:-1:-1;;;;;5964:65:0;;;;;;;;;-1:-1:-1;;;;;6504:13:0;;;;;;:8;:13;;;;;;:25;;6522:6;6504:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6488:13:0;;;;;;;:8;:13;;;;;;:41;;;;6558:15;;;;;;;:27;;6578:6;6558:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6540:15:0;;;;;;:8;:15;;;;;;;;:45;;;;6625:7;:14;;;;;6640:10;6625:26;;;;;;:38;;6656:6;6625:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6596:14:0;;;;;;;:7;:14;;;;;;;;6611:10;6596:26;;;;;;;;;:67;;;;6679:28;;;;;;6596:14;-1:-1:-1;;;;;;;;;;;6679:28:0;;;6700:6;;6679:28;;;;;;;;;;-1:-1:-1;6725:4:0;;6360:377;-1:-1:-1;;;;6360:377:0:o;831:21::-;;;;;;:::o;12535:289::-;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;12644:5;11452:1;11444:9;;11436:35;;;;-1:-1:-1;;;;;11436:35:0;;;;;;;;;-1:-1:-1;;;;;12687:17:0;;;;;;:8;:17;;;;;;:28;;12709:5;12687:28;:21;:28;:::i;:::-;-1:-1:-1;;;;;12667:17:0;;;;;;:8;:17;;;;;:48;12740:11;;:22;;12756:5;12740:22;:15;:22;:::i;:::-;12726:11;:36;12780;;-1:-1:-1;;;;;12780:36:0;;;12797:1;;-1:-1:-1;;;;;;;;;;;12780:36:0;;;12810:5;;12780:36;;;;;;;;;;9064:1;12535:289;;:::o;9282:225::-;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;-1:-1:-1;;;;;9360:23:0;;;;9352:65;;;;-1:-1:-1;;;;;9352:65:0;;;;;;;;;9454:5;;9433:38;;-1:-1:-1;;;;;9433:38:0;;;;9454:5;;9433:38;;9454:5;;9433:38;9482:5;:17;;-1:-1:-1;;9482:17:0;-1:-1:-1;;;;;9482:17:0;;;;;;;;;;9282:225::o;6745:112::-;-1:-1:-1;;;;;6833:16:0;6801:12;6833:16;;;:8;:16;;;;;;;6745:112::o;9980:83::-;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;10037:5;:18;;-1:-1:-1;;10037:18:0;;;9980:83::o;9849:123::-;9912:8;;-1:-1:-1;;;;;9912:8:0;9898:10;:22;9894:71;;;9945:8;;9937:5;:16;;-1:-1:-1;;9937:16:0;-1:-1:-1;;;;;9945:8:0;;;9937:16;;;;;;9894:71;9849:123::o;9081:20::-;;;-1:-1:-1;;;;;9081:20:0;;:::o;804:::-;;;;;;;;;;;;;;;-1:-1:-1;;804:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12996:289;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;13105:5;11452:1;11444:9;;11436:35;;;;-1:-1:-1;;;;;11436:35:0;;;;;;;;;-1:-1:-1;;;;;13148:17:0;;;;;;:8;:17;;;;;;:28;;13170:5;13148:28;:21;:28;:::i;:::-;-1:-1:-1;;;;;13128:17:0;;;;;;:8;:17;;;;;:48;13201:11;;:22;;13217:5;13201:22;:15;:22;:::i;:::-;13187:11;:36;13241;;13267:1;;-1:-1:-1;;;;;13241:36:0;;;-1:-1:-1;;;;;;;;;;;13241:36:0;;;13271:5;;13241:36;;9745:96;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;9813:8;:20;;-1:-1:-1;;9813:20:0;-1:-1:-1;;;;;9813:20:0;;;;;;;;;;9745:96::o;6057:295::-;6141:12;6124:6;5991:8;5972;:27;;5964:65;;;;-1:-1:-1;;;;;5964:65:0;;;;;;;;;6198:10;6189:20;;;;:8;:20;;;;;;:32;;6214:6;6189:32;:24;:32;:::i;:::-;6175:10;6166:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;6248:13:0;;;;;;:25;;6266:6;6248:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6232:13:0;;;;;;:8;:13;;;;;;;:41;;;;6289:33;;6298:10;;-1:-1:-1;;;;;;;;;;;6289:33:0;;;6315:6;;6289:33;;9250:23;;;-1:-1:-1;;;;;9250:23:0;;:::o;7509:139::-;-1:-1:-1;;;;;7615:15:0;;;7583:14;7615:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;7509:139;;;;;:::o;13454:146::-;9034:5;;-1:-1:-1;;;;;9034:5:0;9020:10;:19;9012:41;;;;-1:-1:-1;;;;;9012:41:0;;;;;;;;;13553:12;:4;13560:5;;13553:12;:::i;:::-;-1:-1:-1;13576:16:0;:6;13585:7;;13576:16;:::i;:::-;;13454:146;;;;:::o;4269:175::-;4327:7;4359:5;;;4383:6;;;;4375:40;;;;-1:-1:-1;;;;;4375:40:0;;;;;;;;;4435:1;4269:175;-1:-1:-1;;;4269:175:0:o;4021:172::-;4079:7;;4107:6;;;;4099:37;;;;-1:-1:-1;;;;;4099:37:0;;;;;;;;;-1:-1:-1;;4159:5:0;;;4021:172::o;11097:2506::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11097:2506:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11097:2506:0;;;-1:-1:-1;11097:2506:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;5:118:-1:-;;72:46;110:6;97:20;72:46;;145:336;;;253:4;241:17;;237:27;-1:-1;227:2;;278:1;275;268:12;227:2;-1:-1;298:20;;338:18;327:30;;324:2;;;370:1;367;360:12;324:2;404:4;396:6;392:17;380:29;;454:3;447;439:6;435:16;425:8;421:31;418:40;415:2;;;471:1;468;461:12;415:2;220:261;;;;;;489:118;;556:46;594:6;581:20;556:46;;614:241;;718:2;706:9;697:7;693:23;689:32;686:2;;;734:1;731;724:12;686:2;769:1;786:53;831:7;811:9;786:53;;;776:63;680:175;-1:-1;;;;680:175;862:366;;;983:2;971:9;962:7;958:23;954:32;951:2;;;999:1;996;989:12;951:2;1034:1;1051:53;1096:7;1076:9;1051:53;;;1041:63;;1013:97;1141:2;1159:53;1204:7;1195:6;1184:9;1180:22;1159:53;;;1149:63;;1120:98;945:283;;;;;;1235:491;;;;1373:2;1361:9;1352:7;1348:23;1344:32;1341:2;;;1389:1;1386;1379:12;1341:2;1424:1;1441:53;1486:7;1466:9;1441:53;;;1431:63;;1403:97;1531:2;1549:53;1594:7;1585:6;1574:9;1570:22;1549:53;;;1539:63;;1510:98;1639:2;1657:53;1702:7;1693:6;1682:9;1678:22;1657:53;;;1647:63;;1618:98;1335:391;;;;;;1733:366;;;1854:2;1842:9;1833:7;1829:23;1825:32;1822:2;;;1870:1;1867;1860:12;1822:2;1905:1;1922:53;1967:7;1947:9;1922:53;;;1912:63;;1884:97;2012:2;2030:53;2075:7;2066:6;2055:9;2051:22;2030:53;;2106:618;;;;;2267:2;2255:9;2246:7;2242:23;2238:32;2235:2;;;2283:1;2280;2273:12;2235:2;2318:31;;2369:18;2358:30;;2355:2;;;2401:1;2398;2391:12;2355:2;2429:65;2486:7;2477:6;2466:9;2462:22;2429:65;;;2411:83;;;;2297:203;2559:2;2548:9;2544:18;2531:32;2583:18;2575:6;2572:30;2569:2;;;2615:1;2612;2605:12;2569:2;2643:65;2700:7;2691:6;2680:9;2676:22;2643:65;;;2229:495;;;;-1:-1;2625:83;-1:-1;;;;2229:495;2731:110;2804:31;2829:5;2804:31;;;2799:3;2792:44;2786:55;;;2848:101;2915:28;2937:5;2915:28;;2956:292;;3054:35;3083:5;3054:35;;;3106:6;3101:3;3094:19;3118:63;3174:6;3167:4;3162:3;3158:14;3151:4;3144:5;3140:16;3118:63;;;3213:29;3235:6;3213:29;;;3193:50;;;3206:4;3193:50;;3034:214;-1:-1;;;3034:214;3256:296;3411:2;3399:15;;3448:66;3443:2;3434:12;;3427:88;3543:2;3534:12;;3392:160;3561:296;3716:2;3704:15;;3753:66;3748:2;3739:12;;3732:88;3848:2;3839:12;;3697:160;3866:296;4021:2;4009:15;;4058:66;4053:2;4044:12;;4037:88;4153:2;4144:12;;4002:160;4171:296;4326:2;4314:15;;4363:66;4358:2;4349:12;;4342:88;4458:2;4449:12;;4307:160;4476:296;4631:2;4619:15;;4668:66;4663:2;4654:12;;4647:88;4763:2;4754:12;;4612:160;4781:296;4936:2;4924:15;;4973:66;4968:2;4959:12;;4952:88;5068:2;5059:12;;4917:160;5086:295;5241:1;5229:14;;5277:66;5272:2;5263:12;;5256:88;5372:2;5363:12;;5222:159;5389:110;5462:31;5487:5;5462:31;;5506:104;5575:29;5598:5;5575:29;;5617:193;5725:2;5710:18;;5739:61;5714:9;5773:6;5739:61;;5817:181;5919:2;5904:18;;5933:55;5908:9;5961:6;5933:55;;6005:273;6129:2;6143:47;;;6114:18;;6204:64;6114:18;6254:6;6204:64;;6285:387;6466:2;6480:47;;;6451:18;;6541:121;6451:18;6541:121;;6679:387;6860:2;6874:47;;;6845:18;;6935:121;6845:18;6935:121;;7073:387;7254:2;7268:47;;;7239:18;;7329:121;7239:18;7329:121;;7467:387;7648:2;7662:47;;;7633:18;;7723:121;7633:18;7723:121;;7861:387;8042:2;8056:47;;;8027:18;;8117:121;8027:18;8117:121;;8255:387;8436:2;8450:47;;;8421:18;;8511:121;8421:18;8511:121;;8649:387;8830:2;8844:47;;;8815:18;;8905:121;8815:18;8905:121;;9043:193;9151:2;9136:18;;9165:61;9140:9;9199:6;9165:61;;9243:185;9347:2;9332:18;;9361:57;9336:9;9391:6;9361:57;;9435:88;9506:12;;9490:33;9530:128;-1:-1;;;;;9599:54;;9582:76;9665:92;9738:13;9731:21;;9714:43;9850:88;9928:4;9917:16;;9900:38;10167:268;10232:1;10239:101;10253:6;10250:1;10247:13;10239:101;;;10320:11;;;10314:18;10301:11;;;10294:39;10275:2;10268:10;10239:101;;;10355:6;10352:1;10349:13;10346:2;;;10420:1;10411:6;10406:3;10402:16;10395:27;10346:2;10216:219;;;;;10443:97;10531:2;10511:14;-1:-1;;10507:28;;10491:49
Swarm Source
bzzr://8af6128fdabccd795f8cc867830dc6a3d63a010e24bbf3cc70e2c7b2c3fde828
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.