ERC-20
Overview
Max Total Supply
99,978,307,151 QAS
Holders
3,507
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
14,124,907 QASValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MyAdvancedToken
Compiler Version
v0.4.11+commit.68ef5810
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-09-24 */ /* BQAS.IO */ pragma solidity ^0.4.11; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { // Public variables of the token string public name = 'Quantitative Analysis System Token'; string public symbol = 'QAS'; uint8 public decimals = 8; // 8 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply = 100000000000; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */ function TokenERC20( uint256 initialSupply, string tokenName, string tokenSymbol ) public { totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value > balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` in behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens in your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); // Check if the sender has enough balanceOf[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply Burn(msg.sender, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // Check allowance balanceOf[_from] -= _value; // Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance totalSupply -= _value; // Update totalSupply Burn(_from, _value); return true; } } /******************************************/ /* ADVANCED TOKEN STARTS HERE */ /******************************************/ contract MyAdvancedToken is owned, TokenERC20 { uint256 public sellPrice; uint256 public buyPrice; mapping (address => bool) public frozenAccount; /* This generates a public event on the blockchain that will notify clients */ event FrozenFunds(address target, bool frozen); /* Initializes contract with initial supply tokens to the creator of the contract */ function MyAdvancedToken( uint256 initialSupply, string tokenName, string tokenSymbol ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {} /* Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balanceOf[_from] >= _value); // Check if the sender has enough require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows require(!frozenAccount[_from]); // Check if sender is frozen require(!frozenAccount[_to]); // Check if recipient is frozen balanceOf[_from] -= _value; // Subtract from the sender balanceOf[_to] += _value; // Add the same to the recipient Transfer(_from, _to, _value); } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burnThis(uint256 _value) internal returns (bool success) { require(balanceOf[this] >= _value); // Check if the sender has enough balanceOf[this] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply Burn(this, _value); return true; } /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens /// @param target Address to be frozen /// @param freeze either to freeze it or not function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; FrozenFunds(target, freeze); } /// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth /// @param newSellPrice Price the users can sell to the contract /// @param newBuyPrice Price users can buy from the contract function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public { sellPrice = newSellPrice; buyPrice = newBuyPrice; } /// @notice Buy tokens from contract by sending ether function buy() payable public { uint amount = msg.value * (10 ** uint256(decimals)) / buyPrice; // calculates the amount require(balanceOf[this] >= amount); // checks if the contract has enough token to sell _transfer(this, msg.sender, amount); // makes the transfers } /// @notice Sell `amount` tokens to contract /// @param amount amount of tokens to be sold function sell(uint256 amount) public { require(this.balance >= amount * sellPrice/( 10 ** uint256(decimals))); // checks if the contract has enough ether to buy _transfer(msg.sender, this, amount); // makes the transfers msg.sender.transfer(amount * sellPrice/( 10 ** uint256(decimals))); // sends ether to the seller. It's important to do this last to avoid recursion attacks } /// @notice withdrawal `amount` eth from contract /// @param amount amount of eth to be withdrawal function withdrawalEth(uint256 amount) onlyOwner public { require(this.balance >= amount); // checks if the contract has enough ether to withdrawal msg.sender.transfer(amount); // sends ether for withdrawal. } /// @notice withdrawal `amount` tokens from contract /// @param amount amount of tokens to be withdrawal function withdrawalToken(uint256 amount) onlyOwner public { require(balanceOf[this] >= amount); _transfer(this, msg.sender, amount); // makes the transfers } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawalEth","outputs":[],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawalToken","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
60c0604052602260608190527f5175616e746974617469766520416e616c797369732053797374656d20546f6b60809081527f656e00000000000000000000000000000000000000000000000000000000000060a0526200006491600191906200017e565b506040805180820190915260038082527f51415300000000000000000000000000000000000000000000000000000000006020909201918252620000ab916002916200017e565b506003805460ff1916600817905564174876e8006004553415620000cb57fe5b6040516200109a3803806200109a8339810160409081528151602083015191830151909291820191015b8282825b5b60008054600160a060020a03191633600160a060020a03161790555b60035460ff16600a0a83026004819055600160a060020a03331660009081526005602090815260409091209190915582516200015991600191908501906200017e565b5080516200016f9060029060208401906200017e565b505b5050505b50505062000228565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c157805160ff1916838001178555620001f1565b82800160010185558215620001f1579182015b82811115620001f1578251825591602001919060010190620001d4565b5b506200020092915062000204565b5090565b6200022591905b808211156200020057600081556001016200020b565b5090565b90565b610e6280620002386000396000f300606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013257806306fdde031461014a578063095ea7b3146101da57806318160ddd1461020d5780631edc8f031461022f57806323b872dd14610244578063313ce5671461027d57806342966c68146102a35780634b750334146102ca57806370a08231146102ec57806379cc67901461031a5780638620410b1461034d5780638da5cb5b1461036f57806395d89b411461039b578063a6f2ae3a1461042b578063a9059cbb14610435578063b414d4b614610456578063cae9ca5114610486578063dd62ed3e146104fd578063deddab1214610531578063e4849b3214610546578063e724529c1461055b578063f2fde38b1461057e575bfe5b341561013a57fe5b61014860043560243561059c565b005b341561015257fe5b61015a6105c8565b6040805160208082528351818301528351919283929083019185019080838382156101a0575b8051825260208311156101a057601f199092019160209182019101610180565b505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257fe5b6101f9600160a060020a0360043516602435610655565b604080519115158252519081900360200190f35b341561021557fe5b61021d610686565b60408051918252519081900360200190f35b341561023757fe5b61014860043561068c565b005b341561024c57fe5b6101f9600160a060020a03600435811690602435166044356106f3565b604080519115158252519081900360200190f35b341561028557fe5b61028d61076c565b6040805160ff9092168252519081900360200190f35b34156102ab57fe5b6101f9600435610775565b604080519115158252519081900360200190f35b34156102d257fe5b61021d610802565b60408051918252519081900360200190f35b34156102f457fe5b61021d600160a060020a0360043516610808565b60408051918252519081900360200190f35b341561032257fe5b6101f9600160a060020a036004351660243561081a565b604080519115158252519081900360200190f35b341561035557fe5b61021d6108fa565b60408051918252519081900360200190f35b341561037757fe5b61037f610900565b60408051600160a060020a039092168252519081900360200190f35b34156103a357fe5b61015a61090f565b6040805160208082528351818301528351919283929083019185019080838382156101a0575b8051825260208311156101a057601f199092019160209182019101610180565b505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014861099a565b005b341561043d57fe5b610148600160a060020a03600435166024356109f0565b005b341561045e57fe5b6101f9600160a060020a0360043516610a00565b604080519115158252519081900360200190f35b341561048e57fe5b604080516020600460443581810135601f81018490048402850184019095528484526101f9948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610a1595505050505050565b604080519115158252519081900360200190f35b341561050557fe5b61021d600160a060020a0360043581169060243516610b4f565b60408051918252519081900360200190f35b341561053957fe5b610148600435610b6c565b005b341561054e57fe5b610148600435610bbf565b005b341561056357fe5b610148600160a060020a03600435166024351515610c4c565b005b341561058657fe5b610148600160a060020a0360043516610cce565b005b60005433600160a060020a039081169116146105b85760006000fd5b600782905560088190555b5b5050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b505050505081565b600160a060020a03338116600090815260066020908152604080832093861683529290522081905560015b92915050565b60045481565b60005433600160a060020a039081169116146106a85760006000fd5b600160a060020a03301631819010156106c15760006000fd5b604051600160a060020a0333169082156108fc029083906000818181858888f1935050505015156106ee57fe5b5b5b50565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156107295760006000fd5b600160a060020a0380851660009081526006602090815260408083203390941683529290522080548390039055610761848484610d17565b5060015b9392505050565b60035460ff1681565b600160a060020a0333166000908152600560205260408120548290101561079c5760006000fd5b600160a060020a03331660008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b919050565b60075481565b60056020526000908152604090205481565b600160a060020a038216600090815260056020526040812054829010156108415760006000fd5b600160a060020a03808416600090815260066020908152604080832033909416835292905220548211156108755760006000fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293815290839020805486900390556004805486900390558251858152925191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929081900390910190a25060015b92915050565b60085481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b505050505081565b6008546003546000919060ff16600a0a34028115156109b557fe5b600160a060020a0330166000908152600560205260409020549190049150819010156109e15760006000fd5b6106ee303383610d17565b5b50565b6105c3338383610d17565b5b5050565b60096020526000908152604090205460ff1681565b600083610a228185610655565b15610b465780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360008314610ae6575b805182526020831115610ae657601f199092019160209182019101610ac6565b505050905090810190601f168015610b125780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610b3057fe5b6102c65a03f11515610b3e57fe5b505050600191505b5b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610b885760006000fd5b600160a060020a033016600090815260056020526040902054819010156109e15760006000fd5b6106ee303383610d17565b5b5b50565b60035460075460ff909116600a0a908202811515610bd957fe5b04600160a060020a033016311015610bf15760006000fd5b610bfc333083610d17565b600354600754600160a060020a033316916108fc9160ff909116600a0a908402811515610c2557fe5b604051919004801590920291906000818181858888f1935050505015156106ee57fe5b5b50565b60005433600160a060020a03908116911614610c685760006000fd5b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610cea5760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a0382161515610d2d5760006000fd5b600160a060020a03831660009081526005602052604090205481901015610d545760006000fd5b600160a060020a03821660009081526005602052604090205481810111610d7b5760006000fd5b600160a060020a03831660009081526009602052604090205460ff1615610da25760006000fd5b600160a060020a03821660009081526009602052604090205460ff1615610dc95760006000fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5050505600a165627a7a72305820c35ae5fd39df06d52b953ff5a976b213b9fff83b417dee08556f28fc0fad727e0029000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000225175616e746974617469766520416e616c797369732053797374656d20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035141530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013257806306fdde031461014a578063095ea7b3146101da57806318160ddd1461020d5780631edc8f031461022f57806323b872dd14610244578063313ce5671461027d57806342966c68146102a35780634b750334146102ca57806370a08231146102ec57806379cc67901461031a5780638620410b1461034d5780638da5cb5b1461036f57806395d89b411461039b578063a6f2ae3a1461042b578063a9059cbb14610435578063b414d4b614610456578063cae9ca5114610486578063dd62ed3e146104fd578063deddab1214610531578063e4849b3214610546578063e724529c1461055b578063f2fde38b1461057e575bfe5b341561013a57fe5b61014860043560243561059c565b005b341561015257fe5b61015a6105c8565b6040805160208082528351818301528351919283929083019185019080838382156101a0575b8051825260208311156101a057601f199092019160209182019101610180565b505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257fe5b6101f9600160a060020a0360043516602435610655565b604080519115158252519081900360200190f35b341561021557fe5b61021d610686565b60408051918252519081900360200190f35b341561023757fe5b61014860043561068c565b005b341561024c57fe5b6101f9600160a060020a03600435811690602435166044356106f3565b604080519115158252519081900360200190f35b341561028557fe5b61028d61076c565b6040805160ff9092168252519081900360200190f35b34156102ab57fe5b6101f9600435610775565b604080519115158252519081900360200190f35b34156102d257fe5b61021d610802565b60408051918252519081900360200190f35b34156102f457fe5b61021d600160a060020a0360043516610808565b60408051918252519081900360200190f35b341561032257fe5b6101f9600160a060020a036004351660243561081a565b604080519115158252519081900360200190f35b341561035557fe5b61021d6108fa565b60408051918252519081900360200190f35b341561037757fe5b61037f610900565b60408051600160a060020a039092168252519081900360200190f35b34156103a357fe5b61015a61090f565b6040805160208082528351818301528351919283929083019185019080838382156101a0575b8051825260208311156101a057601f199092019160209182019101610180565b505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014861099a565b005b341561043d57fe5b610148600160a060020a03600435166024356109f0565b005b341561045e57fe5b6101f9600160a060020a0360043516610a00565b604080519115158252519081900360200190f35b341561048e57fe5b604080516020600460443581810135601f81018490048402850184019095528484526101f9948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610a1595505050505050565b604080519115158252519081900360200190f35b341561050557fe5b61021d600160a060020a0360043581169060243516610b4f565b60408051918252519081900360200190f35b341561053957fe5b610148600435610b6c565b005b341561054e57fe5b610148600435610bbf565b005b341561056357fe5b610148600160a060020a03600435166024351515610c4c565b005b341561058657fe5b610148600160a060020a0360043516610cce565b005b60005433600160a060020a039081169116146105b85760006000fd5b600782905560088190555b5b5050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b505050505081565b600160a060020a03338116600090815260066020908152604080832093861683529290522081905560015b92915050565b60045481565b60005433600160a060020a039081169116146106a85760006000fd5b600160a060020a03301631819010156106c15760006000fd5b604051600160a060020a0333169082156108fc029083906000818181858888f1935050505015156106ee57fe5b5b5b50565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156107295760006000fd5b600160a060020a0380851660009081526006602090815260408083203390941683529290522080548390039055610761848484610d17565b5060015b9392505050565b60035460ff1681565b600160a060020a0333166000908152600560205260408120548290101561079c5760006000fd5b600160a060020a03331660008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b919050565b60075481565b60056020526000908152604090205481565b600160a060020a038216600090815260056020526040812054829010156108415760006000fd5b600160a060020a03808416600090815260066020908152604080832033909416835292905220548211156108755760006000fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293815290839020805486900390556004805486900390558251858152925191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929081900390910190a25060015b92915050565b60085481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b505050505081565b6008546003546000919060ff16600a0a34028115156109b557fe5b600160a060020a0330166000908152600560205260409020549190049150819010156109e15760006000fd5b6106ee303383610d17565b5b50565b6105c3338383610d17565b5b5050565b60096020526000908152604090205460ff1681565b600083610a228185610655565b15610b465780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360008314610ae6575b805182526020831115610ae657601f199092019160209182019101610ac6565b505050905090810190601f168015610b125780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610b3057fe5b6102c65a03f11515610b3e57fe5b505050600191505b5b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610b885760006000fd5b600160a060020a033016600090815260056020526040902054819010156109e15760006000fd5b6106ee303383610d17565b5b5b50565b60035460075460ff909116600a0a908202811515610bd957fe5b04600160a060020a033016311015610bf15760006000fd5b610bfc333083610d17565b600354600754600160a060020a033316916108fc9160ff909116600a0a908402811515610c2557fe5b604051919004801590920291906000818181858888f1935050505015156106ee57fe5b5b50565b60005433600160a060020a03908116911614610c685760006000fd5b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610cea5760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a0382161515610d2d5760006000fd5b600160a060020a03831660009081526005602052604090205481901015610d545760006000fd5b600160a060020a03821660009081526005602052604090205481810111610d7b5760006000fd5b600160a060020a03831660009081526009602052604090205460ff1615610da25760006000fd5b600160a060020a03821660009081526009602052604090205460ff1615610dc95760006000fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5050505600a165627a7a72305820c35ae5fd39df06d52b953ff5a976b213b9fff83b417dee08556f28fc0fad727e0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000225175616e746974617469766520416e616c797369732053797374656d20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035141530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000
Arg [1] : tokenName (string): Quantitative Analysis System Token
Arg [2] : tokenSymbol (string): QAS
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [4] : 5175616e746974617469766520416e616c797369732053797374656d20546f6b
Arg [5] : 656e000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5141530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
6495:4320:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9051:155;;;;;;;;;;;;;;;;550:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4018:171:0;;;;;;;;-1:-1:-1;;;;;4018:171:0;;;;;;;;;;;;;;;;;;;;;;;;;753:41;;;;;;;;;;;;;;;;;;;;;;;;;;10257:247;;;;;;;;;;;;;;3453:296;;;;;;;;-1:-1:-1;;;;;3453:296:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5110:369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6550:24;;;;;;;;;;;;;;;;;;;;;;;;;;851:45;;;;;;;;-1:-1:-1;;;;;851:45:0;;;;;;;;;;;;;;;;;;;;;5742:606;;;;;;;;-1:-1:-1;;;;;5742:606:0;;;;;;;;;;;;;;;;;;;;;;;;;6581:23;;;;;;;;;;;;;;;;;;;;;;;;;;67:20;;;;;;;;;;;;;;-1:-1:-1;;;;;67:20:0;;;;;;;;;;;;;;614:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9273:326:0;;;;;;3066:107;;;;;;;;-1:-1:-1;;;;;3066:107:0;;;;;;;;;6613:46;;;;;;;;-1:-1:-1;;;;;6613:46:0;;;;;;;;;;;;;;;;;;;;;;;4588:347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4588:347:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4588:347:0;;-1:-1:-1;4588:347:0;;-1:-1:-1;;;;;;4588:347:0;;;;;;;;;;;;;;;;;;;903:66;;;;;;;;-1:-1:-1;;;;;903:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;10625:187;;;;;;;;;;;;;;9708:434;;;;;;;;;;;;;;8647:156;;;;;;;;-1:-1:-1;;;;;8647:156:0;;;;;;;;;;;251:97;;;;;;;;-1:-1:-1;;;;;251:97:0;;;;;;;9051:155;217:5;;203:10;-1:-1:-1;;;;;203:19:0;;;217:5;;203:19;195:28;;;;;;9141:9;:24;;;9176:8;:22;;;234:1;9051:155;;;:::o;550:57::-;;;;;;;;;;;;;;;-1:-1:-1;;550:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4018:171::-;-1:-1:-1;;;;;4129:10:0;4119:21;;4094:12;4119:21;;;:9;:21;;;;;;;;:31;;;;;;;;;:40;;;4177:4;4018:171;;;;;:::o;753:41::-;;;;:::o;10257:247::-;217:5;;203:10;-1:-1:-1;;;;;203:19:0;;;217:5;;203:19;195:28;;;;;;-1:-1:-1;;;;;10332:4:0;:12;;:22;;;;10324:31;;;;;;10428:27;;-1:-1:-1;;;;;10428:10:0;:19;;:27;;;;;10448:6;;10428:27;;;;10448:6;10428:19;:27;;;;;;;;;;;;;234:1;10257:247;;:::o;3453:296::-;-1:-1:-1;;;;;3578:16:0;;;3535:12;3578:16;;;:9;:16;;;;;;;;3595:10;3578:28;;;;;;;;;;;;3568:38;;;3560:47;;;;;;-1:-1:-1;;;;;3641:16:0;;;;;;;:9;:16;;;;;;;;3658:10;3641:28;;;;;;;;;:38;;;;;;;3690:29;3651:5;3707:3;3673:6;3690:9;:29::i;:::-;-1:-1:-1;3737:4:0;3453:296;;;;;;:::o;649:25::-;;;;;;:::o;5110:369::-;-1:-1:-1;;;;;5199:10:0;5189:21;5156:12;5189:21;;;:9;:21;;;;;;:31;;;;5181:40;;;;;;-1:-1:-1;;;;;5278:10:0;5268:21;;;;;:9;:21;;;;;;;;;:31;;;;;;;5349:11;:21;;;;;;;5425:24;;;;;;;;;;;;;;;;;-1:-1:-1;5467:4:0;5110:369;;;;:::o;6550:24::-;;;;:::o;851:45::-;;;;;;;;;;;;;:::o;5742:606::-;-1:-1:-1;;;;;5840:16:0;;5807:12;5840:16;;;:9;:16;;;;;;:26;;;;5832:35;;;;;;-1:-1:-1;;;;;5954:16:0;;;;;;;:9;:16;;;;;;;;5971:10;5954:28;;;;;;;;;;5944:38;;;5936:47;;;;;;-1:-1:-1;;;;;6016:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;6115:9;:16;;;;;6132:10;6115:28;;;;;;;;;;;;:38;;;;;;;6216:11;:21;;;;;;;6299:19;;;;;;;6016:16;;6299:19;;;;;;;;;;;-1:-1:-1;6336:4:0;5742:606;;;;;:::o;6581:23::-;;;;:::o;67:20::-;;;-1:-1:-1;;;;;67:20:0;;:::o;614:28::-;;;;;;;;;;;;;;-1:-1:-1;;614:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9273:326::-;9368:8;;9355;;9314:11;;9368:8;9355;;9341:2;:23;9328:9;:37;:48;;;;;;;-1:-1:-1;;;;;9438:4:0;9428:15;;;;;:9;:15;;;;;;9328:48;;;;-1:-1:-1;9428:25:0;;;;9420:34;;;;;;9520:35;9530:4;9536:10;9548:6;9520:9;:35::i;:::-;9273:326;;:::o;3066:107::-;3131:34;3141:10;3153:3;3158:6;3131:9;:34::i;:::-;3066:107;;;:::o;6613:46::-;;;;;;;;;;;;;;;:::o;4588:347::-;4698:12;4763:8;4787:25;4763:8;4805:6;4787:7;:25::i;:::-;4783:145;;;4829:7;-1:-1:-1;;;;;4829:23:0;;4853:10;4865:6;4873:4;4879:10;4829:61;;;;;;;;;;;;;-1:-1:-1;;;;;4829:61:0;-1:-1:-1;;;;;4829:61:0;;;;;;;;;;;-1:-1:-1;;;;;4829:61:0;-1:-1:-1;;;;;4829:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:1:-1;21:3;18:2;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4912:4:0;4905:11;;4783:145;4588:347;;;;;;;:::o;903:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10625:187::-;217:5;;203:10;-1:-1:-1;;;;;203:19:0;;;217:5;;203:19;195:28;;;;;;-1:-1:-1;;;;;10706:4:0;10696:15;;;;;:9;:15;;;;;;:25;;;;10688:34;;;;;;10733:35;10743:4;10749:10;10761:6;10733:9;:35::i;:::-;234:1;10625:187;;:::o;9708:434::-;9815:8;;9789:9;;9815:8;;;;9801:2;:23;;9780:18;;:45;;;;;;;;-1:-1:-1;;;;;9764:4:0;:12;;:61;;9756:70;;;;;;9892:35;9902:10;9914:4;9920:6;9892:9;:35::i;:::-;10029:8;;10003:9;;-1:-1:-1;;;;;9974:10:0;:19;;:66;;10029:8;;;;10015:2;:23;;9994:18;;:45;;;;;;;9974:66;;9994:45;;;9974:66;;;;;;9994:45;9974:66;;;;9994:45;9974:66;;;;;;;;;;;;;;9708:434;;:::o;8647:156::-;217:5;;203:10;-1:-1:-1;;;;;203:19:0;;;217:5;;203:19;195:28;;;;;;-1:-1:-1;;;;;8727:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;8727:30:0;;;;;;;;;;8768:27;;;;;;;;;;;;;;;;;;;;;234:1;8647:156;;;:::o;251:97::-;217:5;;203:10;-1:-1:-1;;;;;203:19:0;;;217:5;;203:19;195:28;;;;;;324:5;:16;;-1:-1:-1;;324:16:0;-1:-1:-1;;;;;324:16:0;;;;;234:1;251:97;;:::o;7150:777::-;-1:-1:-1;;;;;7239:10:0;;;;7230:20;;;;;;-1:-1:-1;;;;;7355:16:0;;;;;;:9;:16;;;;;;:26;;;;7346:36;;;;;;-1:-1:-1;;;;;7476:14:0;;;;;;:9;:14;;;;;;7450:23;;;:40;7441:50;;;;;;-1:-1:-1;;;;;7534:20:0;;;;;;:13;:20;;;;;;;;7533:21;7525:30;;;;;;-1:-1:-1;;;;;7624:18:0;;;;;;:13;:18;;;;;;;;7623:19;7615:28;;;;;;-1:-1:-1;;;;;7708:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;7797:14;;;;;;;;;;:24;;;;;;7891:28;;;;;;;7797:14;;7891:28;;;;;;;;;;;7150:777;;;;:::o
Swarm Source
bzzr://c35ae5fd39df06d52b953ff5a976b213b9fff83b417dee08556f28fc0fad727e
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.