ETH Price: $2,681.78 (-0.74%)

Token

Goa Token (GOA)
 

Overview

Max Total Supply

2,001 GOA

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
slothlyd.eth
Balance
17 GOA

Value
$0.00
0x8949dB9fbB4716cE5A2803085c7732C14fE03a37
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GoaToken

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-08-07
*/

pragma solidity ^0.5.10;

// GOA TOKEN 

/* 

Deflationary token to be used in the Eggoa game (name TBD) to be released on Ethereum by mid-2020.

When the Eggoa game releases, token holders will be able to mint unique NFTs by destroying Goa tokens.
(1 GOA = 1 NFT)
Additionally, Goa tokens may be used as voting rights, as well as other game advantages.

Goa tokens can be bought directly from the contract, for a rising price proportional to the number of tokens sold.
Each Goa token costs +0.000001 ETH.
Token #2000 will cost 0.002 ETH, token #5000 will cost 0.005 ETH, token #18000 will cost 0.018 ETH, and so on.
Contract only sells tokens as integers, but tokens can be traded as decimals.

----------------------------------------------------------------------------
Goa Token URL = https://eggforce.github.io/goatoken (subject to change)
Discord link = https://discord.gg/JU8P4Ru (probably permanent)
Tweet @ me and take credit for being the one guy who reads smart contracts = @eskaroy
----------------------------------------------------------------------------

*/

library SafeMath {

    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }

    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }

    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }

    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}

// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
// ----------------------------------------------------------------------------

contract ERC20Interface {

    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}

// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
// ----------------------------------------------------------------------------

contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public;
}

// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------

contract Owned {

    address payable public owner;
    address payable public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner, "must be owner");
        _;
    }

    function transferOwnership(address payable _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }

    function acceptOwnership() public {
        require(msg.sender == newOwner, "must be new owner");
        
        owner = newOwner;
        newOwner = address(0);

        emit OwnershipTransferred(owner, newOwner);
    }
}

// ----------------------------------------------------------------------------
// Standard ERC20 Token contract, with extra functions for minting new tokens
// ----------------------------------------------------------------------------

contract GoaToken is ERC20Interface, Owned {

    using SafeMath for uint;

    string constant public symbol       = "GOA";
    string constant public name         = "Goa Token";
    uint constant public decimals       = 18;
    uint constant public MAX_SUPPLY     = 200000 * 10 ** decimals;
    uint constant public ETH_PER_TOKEN  = 0.000001 ether;
    
    uint public totalSupply; //initially set to 0, tokens are minted through buying from the contract
	uint public mintSupply; //tracks minted tokens, not affected by burns
	
	bool public contractActive; //tokens can only be minted when this is true

    mapping(address => uint) public balanceOf; // token balance
    mapping(address => mapping(address => uint)) public allowance;
    
    event Minted(address indexed newHolder, uint eth, uint tokens);
    event Burned(address indexed burner, uint tokens);

    //-- constructor
    constructor() public {
		contractActive = true;
    }

    //-- transfer
    // Transfer "tokens" from token owner's account to "to" account
    // Owner's account must have sufficient balance to transfer
    // 0 value transfers are allowed

    function transfer(address to, uint tokens) public returns (bool success) {
        balanceOf[msg.sender] = balanceOf[msg.sender].sub(tokens);
        balanceOf[to] = balanceOf[to].add(tokens);

        emit Transfer(msg.sender, to, tokens);

        return true;
    }

    //-- approve
    // Token owner can approve for "spender" to transferFrom(...) or burn(...) "tokens"
    // from the token owner's account
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces

    function approve(address spender, uint tokens) public returns (bool success) {
        allowance[msg.sender][spender] = tokens;

        emit Approval(msg.sender, spender, tokens);

        return true;
    }

    //-- transferFrom
    // Transfer "tokens" tokens from the "from" account to the "to" account
    // From account must have sufficient balance to transfer
    // Spender must have sufficient allowance to transfer
    // 0 value transfers are allowed

    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balanceOf[from] = balanceOf[from].sub(tokens);
        allowance[from][msg.sender] = allowance[from][msg.sender].sub(tokens);
        balanceOf[to] = balanceOf[to].add(tokens);

        emit Transfer(from, to, tokens);

        return true;
    }

    //-- approveAndCall
    // Token owner can approve for "spender" to transferFrom(...) "tokens" tokens
    // from the token owner's account. The "spender" contract function
    // "receiveApproval(...)"" is then executed

    function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) {
        allowance[msg.sender][spender] = tokens;

        emit Approval(msg.sender, spender, tokens);

        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);

        return true;
    }

    //-- mint
    // Transfer ETH to receive a given amount of tokens in exchange
    // Token amount must be integers, no decimals
    // Current token cost is determined through computeCost, frontend sets the proper ETH amount to send

    function mint(uint fullToken) public payable {
        require(contractActive == true, "token emission has been disabled");
        
        uint _token = fullToken.mul(10 ** decimals);
        uint _newSupply = mintSupply.add(_token);
        require(_newSupply <= MAX_SUPPLY, "no more than 200 000 GOA can be minted");

        uint _ethCost = computeCost(fullToken);
        require(msg.value == _ethCost, "wrong ETH amount for tokens");
        
        owner.transfer(msg.value);
        totalSupply = totalSupply.add(_token);
		mintSupply = _newSupply;
        balanceOf[msg.sender] = balanceOf[msg.sender].add(_token);
        
        emit Minted(msg.sender, msg.value, fullToken);
    }
    
	//-- burn
	// Remove fullToken from sender
	// Lower totalSupply accordingly
	
	function burn(uint fullToken) public returns (bool success) {
		uint _token = fullToken.mul(10 ** decimals);
		require(balanceOf[msg.sender] >= _token, "not enough tokens to burn");
		
	    totalSupply = totalSupply.sub(_token);	
		balanceOf[msg.sender] = balanceOf[msg.sender].sub(_token);
		
		emit Burned(msg.sender, fullToken);
		
		return true;
    }
    
    //-- burnFrom
    // Remove fullToken from account
    // Sender must have fullToken * decimals allowance from account
    // Lower totalSupply accordingly
    
    function burnFrom(address _from, uint fullToken) public returns (bool success) {
        uint _token = fullToken.mul(10 ** decimals);
        require(allowance[_from][msg.sender] >= _token, "allowance too low to burn this many tokens");
        require(balanceOf[_from] >= _token, "not enough tokens to burn");
        
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_token);
        balanceOf[_from] = balanceOf[_from].sub(_token);
        totalSupply = totalSupply.sub(_token);
        
        emit Burned(_from, fullToken);
        
        return true;
    }
	
	//-- stopEmission
	// Blocks new tokens from being minted
	
	function stopEmission() public onlyOwner returns (bool success) {
		contractActive = false;
		
		return true;
	}
	
    //-- computeSum
    // Return (n * n+1) / 2 sum starting at a and ending at b, excluding a
    
    function computeSum(uint256 a, uint256 b) public pure returns(uint256) {
        uint256 _sumA = a.mul(a.add(1)).div(2);
        uint256 _sumB = b.mul(b.add(1)).div(2);
        return _sumB.sub(_sumA);
    }
    
    //-- computeCost
    // Return ETH cost to buy given amount of full tokens (no decimals)
    
    function computeCost(uint256 fullToken) public view returns(uint256) {
        uint256 _intSupply = mintSupply.div(10 ** decimals);
        uint256 _current = fullToken.add(_intSupply);
        uint256 _sum = computeSum(_intSupply, _current);
        return ETH_PER_TOKEN.mul(_sum);
    }
        
    //-- transferAnyERC20Token
    // Owner can transfer out any accidentally sent ERC20 tokens

    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"computeSum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"mintSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"stopEmission","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":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ETH_PER_TOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"fullToken","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"fullToken","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"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":"fullToken","type":"uint256"}],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"fullToken","type":"uint256"}],"name":"computeCost","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","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":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contractActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"newHolder","type":"address"},{"indexed":false,"name":"eth","type":"uint256"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b50600080546001600160a01b031916331790556004805460ff191660011790556113728061003f6000396000f3fe6080604052600436106101655760003560e01c806379ba5097116100d1578063a9c415d21161008a578063dc39d06d11610064578063dc39d06d14610594578063dd62ed3e146105cd578063e289fcb614610608578063f2fde38b1461061d57610165565b8063a9c415d21461048d578063cae9ca51146104b7578063d4ee1d901461057f57610165565b806379ba5097146103a157806379cc6790146103b85780638da5cb5b146103f157806395d89b4114610422578063a0712d6814610437578063a9059cbb1461045457610165565b806323b872dd1161012357806323b872dd146102c2578063313ce5671461030557806332cb6b0c1461031a57806332debf941461032f57806342966c681461034457806370a082311461036e57610165565b8062456d6b1461016a578063045b7dca146101ac57806306fdde03146101c1578063095ea7b31461024b5780630e9bb0a31461029857806318160ddd146102ad575b600080fd5b34801561017657600080fd5b5061019a6004803603604081101561018d57600080fd5b5080359060200135610650565b60408051918252519081900360200190f35b3480156101b857600080fd5b5061019a6106bf565b3480156101cd57600080fd5b506101d66106c5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102105781810151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025757600080fd5b506102846004803603604081101561026e57600080fd5b506001600160a01b0381351690602001356106ea565b604080519115158252519081900360200190f35b3480156102a457600080fd5b50610284610750565b3480156102b957600080fd5b5061019a6107b0565b3480156102ce57600080fd5b50610284600480360360608110156102e557600080fd5b506001600160a01b038135811691602081013590911690604001356107b6565b34801561031157600080fd5b5061019a6108c1565b34801561032657600080fd5b5061019a6108c6565b34801561033b57600080fd5b5061019a6108d4565b34801561035057600080fd5b506102846004803603602081101561036757600080fd5b50356108dd565b34801561037a57600080fd5b5061019a6004803603602081101561039157600080fd5b50356001600160a01b03166109e3565b3480156103ad57600080fd5b506103b66109f5565b005b3480156103c457600080fd5b50610284600480360360408110156103db57600080fd5b506001600160a01b038135169060200135610aa2565b3480156103fd57600080fd5b50610406610c78565b604080516001600160a01b039092168252519081900360200190f35b34801561042e57600080fd5b506101d6610c87565b6103b66004803603602081101561044d57600080fd5b5035610ca6565b34801561046057600080fd5b506102846004803603604081101561047757600080fd5b506001600160a01b038135169060200135610eae565b34801561049957600080fd5b5061019a600480360360208110156104b057600080fd5b5035610f5e565b3480156104c357600080fd5b50610284600480360360608110156104da57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561050a57600080fd5b82018360208201111561051c57600080fd5b8035906020019184600183028401116401000000008311171561053e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610fc0945050505050565b34801561058b57600080fd5b50610406611108565b3480156105a057600080fd5b50610284600480360360408110156105b757600080fd5b506001600160a01b038135169060200135611117565b3480156105d957600080fd5b5061019a600480360360408110156105f057600080fd5b506001600160a01b03813581169160200135166111f1565b34801561061457600080fd5b5061028461120e565b34801561062957600080fd5b506103b66004803603602081101561064057600080fd5b50356001600160a01b0316611217565b600080610685600261067961066c87600163ffffffff61128816565b879063ffffffff61129816565b9063ffffffff6112b916565b905060006106a2600261067961066c87600163ffffffff61128816565b90506106b4818363ffffffff6112d816565b925050505b92915050565b60035481565b6040518060400160405280600981526020016823b7b0902a37b5b2b760b91b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080546001600160a01b031633146107a0576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b506004805460ff19169055600190565b60025481565b6001600160a01b0383166000908152600560205260408120546107df908363ffffffff6112d816565b6001600160a01b038516600090815260056020908152604080832093909355600681528282203383529052205461081c908363ffffffff6112d816565b6001600160a01b038086166000908152600660209081526040808320338452825280832094909455918616815260059091522054610860908363ffffffff61128816565b6001600160a01b0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b601281565b692a5a058fc295ed00000081565b64e8d4a5100081565b6000806108f883670de0b6b3a764000063ffffffff61129816565b3360009081526005602052604090205490915081111561095b576040805162461bcd60e51b81526020600482015260196024820152783737ba1032b737bab3b4103a37b5b2b739903a3790313ab93760391b604482015290519081900360640190fd5b60025461096e908263ffffffff6112d816565b60025533600090815260056020526040902054610991908263ffffffff6112d816565b33600081815260056020908152604091829020939093558051868152905191927f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df792918290030190a250600192915050565b60056020526000908152604090205481565b6001546001600160a01b03163314610a48576040805162461bcd60e51b815260206004820152601160248201527036bab9ba103132903732bb9037bbb732b960791b604482015290519081900360640190fd5b60018054600080546001600160a01b038084166001600160a01b031992831617808455919093169093556040519092909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600080610abd83670de0b6b3a764000063ffffffff61129816565b6001600160a01b0385166000908152600660209081526040808320338452909152902054909150811115610b225760405162461bcd60e51b815260040180806020018281038252602a815260200180611314602a913960400191505060405180910390fd5b6001600160a01b038416600090815260056020526040902054811115610b8b576040805162461bcd60e51b81526020600482015260196024820152783737ba1032b737bab3b4103a37b5b2b739903a3790313ab93760391b604482015290519081900360640190fd5b6001600160a01b0384166000908152600660209081526040808320338452909152902054610bbf908263ffffffff6112d816565b6001600160a01b038516600081815260066020908152604080832033845282528083209490945591815260059091522054610c00908263ffffffff6112d816565b6001600160a01b038516600090815260056020526040902055600254610c2c908263ffffffff6112d816565b6002556040805184815290516001600160a01b038616917f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7919081900360200190a25060019392505050565b6000546001600160a01b031681565b60405180604001604052806003815260200162474f4160e81b81525081565b60045460ff161515600114610d02576040805162461bcd60e51b815260206004820181905260248201527f746f6b656e20656d697373696f6e20686173206265656e2064697361626c6564604482015290519081900360640190fd5b6000610d1c82670de0b6b3a764000063ffffffff61129816565b90506000610d358260035461128890919063ffffffff16565b9050692a5a058fc295ed000000811115610d805760405162461bcd60e51b81526004018080602001828103825260268152602001806112ee6026913960400191505060405180910390fd5b6000610d8b84610f5e565b9050803414610de1576040805162461bcd60e51b815260206004820152601b60248201527f77726f6e672045544820616d6f756e7420666f7220746f6b656e730000000000604482015290519081900360640190fd5b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610e1b573d6000803e3d6000fd5b50600254610e2f908463ffffffff61128816565b600255600382905533600090815260056020526040902054610e57908463ffffffff61128816565b33600081815260056020908152604091829020939093558051348152928301879052805191927f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff929081900390910190a250505050565b33600090815260056020526040812054610ece908363ffffffff6112d816565b33600090815260056020526040808220929092556001600160a01b03851681522054610f00908363ffffffff61128816565b6001600160a01b0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546000908190610f7e90670de0b6b3a764000063ffffffff6112b916565b90506000610f92848363ffffffff61128816565b90506000610fa08383610650565b9050610fb764e8d4a510008263ffffffff61129816565b95945050505050565b3360008181526006602090815260408083206001600160a01b038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561109757818101518382015260200161107f565b50505050905090810190601f1680156110c45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156110e657600080fd5b505af11580156110fa573d6000803e3d6000fd5b506001979650505050505050565b6001546001600160a01b031681565b600080546001600160a01b03163314611167576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b1580156111be57600080fd5b505af11580156111d2573d6000803e3d6000fd5b505050506040513d60208110156111e857600080fd5b50519392505050565b600660209081526000928352604080842090915290825290205481565b60045460ff1681565b6000546001600160a01b03163314611266576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b818101828110156106b957600080fd5b8181028215806112b05750818382816112ad57fe5b04145b6106b957600080fd5b60008082116112c757600080fd5b8183816112d057fe5b049392505050565b6000828211156112e757600080fd5b5090039056fe6e6f206d6f7265207468616e203230302030303020474f412063616e206265206d696e746564616c6c6f77616e636520746f6f206c6f7720746f206275726e2074686973206d616e7920746f6b656e73a265627a7a723058207fccda132f5b4a6234dd1ef9cc297549b569b4ce27c210912289d457e40b2b8864736f6c634300050a0032

Deployed Bytecode

0x6080604052600436106101655760003560e01c806379ba5097116100d1578063a9c415d21161008a578063dc39d06d11610064578063dc39d06d14610594578063dd62ed3e146105cd578063e289fcb614610608578063f2fde38b1461061d57610165565b8063a9c415d21461048d578063cae9ca51146104b7578063d4ee1d901461057f57610165565b806379ba5097146103a157806379cc6790146103b85780638da5cb5b146103f157806395d89b4114610422578063a0712d6814610437578063a9059cbb1461045457610165565b806323b872dd1161012357806323b872dd146102c2578063313ce5671461030557806332cb6b0c1461031a57806332debf941461032f57806342966c681461034457806370a082311461036e57610165565b8062456d6b1461016a578063045b7dca146101ac57806306fdde03146101c1578063095ea7b31461024b5780630e9bb0a31461029857806318160ddd146102ad575b600080fd5b34801561017657600080fd5b5061019a6004803603604081101561018d57600080fd5b5080359060200135610650565b60408051918252519081900360200190f35b3480156101b857600080fd5b5061019a6106bf565b3480156101cd57600080fd5b506101d66106c5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102105781810151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025757600080fd5b506102846004803603604081101561026e57600080fd5b506001600160a01b0381351690602001356106ea565b604080519115158252519081900360200190f35b3480156102a457600080fd5b50610284610750565b3480156102b957600080fd5b5061019a6107b0565b3480156102ce57600080fd5b50610284600480360360608110156102e557600080fd5b506001600160a01b038135811691602081013590911690604001356107b6565b34801561031157600080fd5b5061019a6108c1565b34801561032657600080fd5b5061019a6108c6565b34801561033b57600080fd5b5061019a6108d4565b34801561035057600080fd5b506102846004803603602081101561036757600080fd5b50356108dd565b34801561037a57600080fd5b5061019a6004803603602081101561039157600080fd5b50356001600160a01b03166109e3565b3480156103ad57600080fd5b506103b66109f5565b005b3480156103c457600080fd5b50610284600480360360408110156103db57600080fd5b506001600160a01b038135169060200135610aa2565b3480156103fd57600080fd5b50610406610c78565b604080516001600160a01b039092168252519081900360200190f35b34801561042e57600080fd5b506101d6610c87565b6103b66004803603602081101561044d57600080fd5b5035610ca6565b34801561046057600080fd5b506102846004803603604081101561047757600080fd5b506001600160a01b038135169060200135610eae565b34801561049957600080fd5b5061019a600480360360208110156104b057600080fd5b5035610f5e565b3480156104c357600080fd5b50610284600480360360608110156104da57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561050a57600080fd5b82018360208201111561051c57600080fd5b8035906020019184600183028401116401000000008311171561053e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610fc0945050505050565b34801561058b57600080fd5b50610406611108565b3480156105a057600080fd5b50610284600480360360408110156105b757600080fd5b506001600160a01b038135169060200135611117565b3480156105d957600080fd5b5061019a600480360360408110156105f057600080fd5b506001600160a01b03813581169160200135166111f1565b34801561061457600080fd5b5061028461120e565b34801561062957600080fd5b506103b66004803603602081101561064057600080fd5b50356001600160a01b0316611217565b600080610685600261067961066c87600163ffffffff61128816565b879063ffffffff61129816565b9063ffffffff6112b916565b905060006106a2600261067961066c87600163ffffffff61128816565b90506106b4818363ffffffff6112d816565b925050505b92915050565b60035481565b6040518060400160405280600981526020016823b7b0902a37b5b2b760b91b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080546001600160a01b031633146107a0576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b506004805460ff19169055600190565b60025481565b6001600160a01b0383166000908152600560205260408120546107df908363ffffffff6112d816565b6001600160a01b038516600090815260056020908152604080832093909355600681528282203383529052205461081c908363ffffffff6112d816565b6001600160a01b038086166000908152600660209081526040808320338452825280832094909455918616815260059091522054610860908363ffffffff61128816565b6001600160a01b0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b601281565b692a5a058fc295ed00000081565b64e8d4a5100081565b6000806108f883670de0b6b3a764000063ffffffff61129816565b3360009081526005602052604090205490915081111561095b576040805162461bcd60e51b81526020600482015260196024820152783737ba1032b737bab3b4103a37b5b2b739903a3790313ab93760391b604482015290519081900360640190fd5b60025461096e908263ffffffff6112d816565b60025533600090815260056020526040902054610991908263ffffffff6112d816565b33600081815260056020908152604091829020939093558051868152905191927f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df792918290030190a250600192915050565b60056020526000908152604090205481565b6001546001600160a01b03163314610a48576040805162461bcd60e51b815260206004820152601160248201527036bab9ba103132903732bb9037bbb732b960791b604482015290519081900360640190fd5b60018054600080546001600160a01b038084166001600160a01b031992831617808455919093169093556040519092909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600080610abd83670de0b6b3a764000063ffffffff61129816565b6001600160a01b0385166000908152600660209081526040808320338452909152902054909150811115610b225760405162461bcd60e51b815260040180806020018281038252602a815260200180611314602a913960400191505060405180910390fd5b6001600160a01b038416600090815260056020526040902054811115610b8b576040805162461bcd60e51b81526020600482015260196024820152783737ba1032b737bab3b4103a37b5b2b739903a3790313ab93760391b604482015290519081900360640190fd5b6001600160a01b0384166000908152600660209081526040808320338452909152902054610bbf908263ffffffff6112d816565b6001600160a01b038516600081815260066020908152604080832033845282528083209490945591815260059091522054610c00908263ffffffff6112d816565b6001600160a01b038516600090815260056020526040902055600254610c2c908263ffffffff6112d816565b6002556040805184815290516001600160a01b038616917f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7919081900360200190a25060019392505050565b6000546001600160a01b031681565b60405180604001604052806003815260200162474f4160e81b81525081565b60045460ff161515600114610d02576040805162461bcd60e51b815260206004820181905260248201527f746f6b656e20656d697373696f6e20686173206265656e2064697361626c6564604482015290519081900360640190fd5b6000610d1c82670de0b6b3a764000063ffffffff61129816565b90506000610d358260035461128890919063ffffffff16565b9050692a5a058fc295ed000000811115610d805760405162461bcd60e51b81526004018080602001828103825260268152602001806112ee6026913960400191505060405180910390fd5b6000610d8b84610f5e565b9050803414610de1576040805162461bcd60e51b815260206004820152601b60248201527f77726f6e672045544820616d6f756e7420666f7220746f6b656e730000000000604482015290519081900360640190fd5b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610e1b573d6000803e3d6000fd5b50600254610e2f908463ffffffff61128816565b600255600382905533600090815260056020526040902054610e57908463ffffffff61128816565b33600081815260056020908152604091829020939093558051348152928301879052805191927f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff929081900390910190a250505050565b33600090815260056020526040812054610ece908363ffffffff6112d816565b33600090815260056020526040808220929092556001600160a01b03851681522054610f00908363ffffffff61128816565b6001600160a01b0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546000908190610f7e90670de0b6b3a764000063ffffffff6112b916565b90506000610f92848363ffffffff61128816565b90506000610fa08383610650565b9050610fb764e8d4a510008263ffffffff61129816565b95945050505050565b3360008181526006602090815260408083206001600160a01b038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561109757818101518382015260200161107f565b50505050905090810190601f1680156110c45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156110e657600080fd5b505af11580156110fa573d6000803e3d6000fd5b506001979650505050505050565b6001546001600160a01b031681565b600080546001600160a01b03163314611167576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b1580156111be57600080fd5b505af11580156111d2573d6000803e3d6000fd5b505050506040513d60208110156111e857600080fd5b50519392505050565b600660209081526000928352604080842090915290825290205481565b60045460ff1681565b6000546001600160a01b03163314611266576040805162461bcd60e51b815260206004820152600d60248201526c36bab9ba1031329037bbb732b960991b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b818101828110156106b957600080fd5b8181028215806112b05750818382816112ad57fe5b04145b6106b957600080fd5b60008082116112c757600080fd5b8183816112d057fe5b049392505050565b6000828211156112e757600080fd5b5090039056fe6e6f206d6f7265207468616e203230302030303020474f412063616e206265206d696e746564616c6c6f77616e636520746f6f206c6f7720746f206275726e2074686973206d616e7920746f6b656e73a265627a7a723058207fccda132f5b4a6234dd1ef9cc297549b569b4ce27c210912289d457e40b2b8864736f6c634300050a0032

Deployed Bytecode Sourcemap

3858:6660:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9598:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9598:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9598:211:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4328:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4328:22:0;;;:::i;3992:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3992:49:0;;;:::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;3992:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5680:214:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5680:214:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9370:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9370:116:0;;;:::i;4228:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4228:23:0;;;:::i;6163:355::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6163:355:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6163:355:0;;;;;;;;;;;;;;;;;:::i;4048:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4048:40:0;;;:::i;4095:61::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4095:61:0;;;:::i;4163:52::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4163:52:0;;;:::i;8153:365::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8153:365:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8153:365:0;;:::i;4484:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4484:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4484:41:0;-1:-1:-1;;;;;4484:41:0;;:::i;3379:229::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3379:229:0;;;:::i;:::-;;8700:600;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8700:600:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8700:600:0;;;;;;;;:::i;2938:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2938:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;2938:28:0;;;;;;;;;;;;;;3942:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3942:43:0;;;:::i;7349:711::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7349:711:0;;:::i;5028:275::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5028:275:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5028:275:0;;;;;;;;:::i;9922:293::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9922:293:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9922:293:0;;:::i;6757:341::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6757:341:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;6757:341:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;6757:341:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;6757:341:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;6757:341:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;6757:341:0;;-1:-1:-1;6757:341:0;;-1:-1:-1;;;;;6757:341:0:i;2973:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2973:31:0;;;:::i;10331:184::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10331:184:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10331:184:0;;;;;;;;:::i;4549:61::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4549:61:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4549:61:0;;;;;;;;;;:::i;4403:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4403:26:0;;;:::i;3261:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3261:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3261:110:0;-1:-1:-1;;;;;3261:110:0;;:::i;9598:211::-;9660:7;;9696:22;9716:1;9696:15;9702:8;:1;9708;9702:8;:5;:8;:::i;:::-;9696:1;;:15;:5;:15;:::i;:::-;:19;:22;:19;:22;:::i;:::-;9680:38;-1:-1:-1;9729:13:0;9745:22;9765:1;9745:15;9751:8;:1;9757;9751:8;:5;:8;:::i;9745:22::-;9729:38;-1:-1:-1;9785:16:0;9729:38;9795:5;9785:16;:9;:16;:::i;:::-;9778:23;;;;9598:211;;;;;:::o;4328:22::-;;;;:::o;3992:49::-;;;;;;;;;;;;;;-1:-1:-1;;;3992:49:0;;;;:::o;5680:214::-;5778:10;5743:12;5768:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;5768:30:0;;;;;;;;;;;:39;;;5825:37;;;;;;;5743:12;;5768:30;;5778:10;;5825:37;;;;;;;;-1:-1:-1;5882:4:0;5680:214;;;;:::o;9370:116::-;9420:12;3210:5;;-1:-1:-1;;;;;3210:5:0;3196:10;:19;3188:45;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;;;;-1:-1:-1;9439:14:0;:22;;-1:-1:-1;;9439:22:0;;;;9370:116;:::o;4228:23::-;;;;:::o;6163:355::-;-1:-1:-1;;;;;6283:15:0;;6240:12;6283:15;;;:9;:15;;;;;;:27;;6303:6;6283:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6265:15:0;;;;;;:9;:15;;;;;;;;:45;;;;6351:9;:15;;;;;6367:10;6351:27;;;;;;:39;;6383:6;6351:39;:31;:39;:::i;:::-;-1:-1:-1;;;;;6321:15:0;;;;;;;:9;:15;;;;;;;;6337:10;6321:27;;;;;;;:69;;;;6417:13;;;;;:9;:13;;;;;:25;;6435:6;6417:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6401:13:0;;;;;;;:9;:13;;;;;;;;;:41;;;;6460:26;;;;;;;6401:13;;6460:26;;;;;;;;;;;;;-1:-1:-1;6506:4:0;6163:355;;;;;:::o;4048:40::-;4086:2;4048:40;:::o;4095:61::-;4133:23;4095:61;:::o;4163:52::-;4201:14;4163:52;:::o;8153:365::-;8199:12;;8232:29;:9;8246:14;8232:29;:13;:29;:::i;:::-;8284:10;8274:21;;;;:9;:21;;;;;;8218:43;;-1:-1:-1;8274:31:0;-1:-1:-1;8274:31:0;8266:69;;;;;-1:-1:-1;;;8266:69:0;;;;;;;;;;;;-1:-1:-1;;;8266:69:0;;;;;;;;;;;;;;;8361:11;;:23;;8377:6;8361:23;:15;:23;:::i;:::-;8347:11;:37;8424:10;8414:21;;;;:9;:21;;;;;;:33;;8440:6;8414:33;:25;:33;:::i;:::-;8400:10;8390:21;;;;:9;:21;;;;;;;;;:57;;;;8461:29;;;;;;;8400:10;;8461:29;;;;;;;;;-1:-1:-1;8506:4:0;;8153:365;-1:-1:-1;;8153:365:0:o;4484:41::-;;;;;;;;;;;;;:::o;3379:229::-;3446:8;;-1:-1:-1;;;;;3446:8:0;3432:10;:22;3424:52;;;;;-1:-1:-1;;;3424:52:0;;;;;;;;;;;;-1:-1:-1;;;3424:52:0;;;;;;;;;;;;;;;3505:8;;;;3497:16;;-1:-1:-1;;;;;3505:8:0;;;-1:-1:-1;;;;;;3497:16:0;;;;;;;3524:21;;;;;;;3563:37;;3505:8;;3584:5;;;;3563:37;;3505:8;;3563:37;3379:229::o;8700:600::-;8765:12;;8804:29;:9;8818:14;8804:29;:13;:29;:::i;:::-;-1:-1:-1;;;;;8852:16:0;;;;;;:9;:16;;;;;;;;8869:10;8852:28;;;;;;;;8790:43;;-1:-1:-1;8852:38:0;-1:-1:-1;8852:38:0;8844:93;;;;-1:-1:-1;;;8844:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8956:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;8956:26:0;8948:64;;;;;-1:-1:-1;;;8948:64:0;;;;;;;;;;;;-1:-1:-1;;;8948:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9064:16:0;;;;;;:9;:16;;;;;;;;9081:10;9064:28;;;;;;;;:40;;9097:6;9064:40;:32;:40;:::i;:::-;-1:-1:-1;;;;;9033:16:0;;;;;;:9;:16;;;;;;;;9050:10;9033:28;;;;;;;:71;;;;9134:16;;;:9;:16;;;;;:28;;9155:6;9134:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;9115:16:0;;;;;;:9;:16;;;;;:47;9187:11;;:23;;9203:6;9187:23;:15;:23;:::i;:::-;9173:11;:37;9236:24;;;;;;;;-1:-1:-1;;;;;9236:24:0;;;;;;;;;;;;;-1:-1:-1;9288:4:0;;8700:600;-1:-1:-1;;;8700:600:0:o;2938:28::-;;;-1:-1:-1;;;;;2938:28:0;;:::o;3942:43::-;;;;;;;;;;;;;;-1:-1:-1;;;3942:43:0;;;;:::o;7349:711::-;7413:14;;;;:22;;:14;:22;7405:67;;;;;-1:-1:-1;;;7405:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7493:11;7507:29;:9;7521:14;7507:29;:13;:29;:::i;:::-;7493:43;;7547:15;7565:22;7580:6;7565:10;;:14;;:22;;;;:::i;:::-;7547:40;-1:-1:-1;4133:23:0;7606:24;;;7598:75;;;;-1:-1:-1;;;7598:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:13;7702:22;7714:9;7702:11;:22::i;:::-;7686:38;;7756:8;7743:9;:21;7735:61;;;;;-1:-1:-1;;;7735:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7817:5;;;:25;;-1:-1:-1;;;;;7817:5:0;;;;7832:9;7817:25;;;;;7832:9;;7817:25;:5;:25;7832:9;7817:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;7867:11:0;;:23;;7883:6;7867:23;:15;:23;:::i;:::-;7853:11;:37;7895:10;:23;;;7963:10;-1:-1:-1;7953:21:0;;;:9;:21;;;;;;:33;;7979:6;7953:33;:25;:33;:::i;:::-;7939:10;7929:21;;;;:9;:21;;;;;;;;;:57;;;;8012:40;;8031:9;8012:40;;;;;;;;;;7939:10;;8012:40;;;;;;;;;;;7349:711;;;;:::o;5028:275::-;5146:10;5087:12;5136:21;;;:9;:21;;;;;;:33;;5162:6;5136:33;:25;:33;:::i;:::-;5122:10;5112:21;;;;:9;:21;;;;;;:57;;;;-1:-1:-1;;;;;5196:13:0;;;;;;:25;;5214:6;5196:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5180:13:0;;;;;;:9;:13;;;;;;;;;:41;;;;5239:32;;;;;;;5180:13;;5248:10;;5239:32;;;;;;;;;;-1:-1:-1;5291:4:0;5028:275;;;;:::o;9922:293::-;10023:10;;9982:7;;;;10023:30;;10038:14;10023:30;:14;:30;:::i;:::-;10002:51;-1:-1:-1;10064:16:0;10083:25;:9;10002:51;10083:25;:13;:25;:::i;:::-;10064:44;;10119:12;10134:32;10145:10;10157:8;10134:10;:32::i;:::-;10119:47;-1:-1:-1;10184:23:0;4201:14;10119:47;10184:23;:17;:23;:::i;:::-;10177:30;9922:293;-1:-1:-1;;;;;9922:293:0:o;6757:341::-;6881:10;6846:12;6871:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;6871:30:0;;;;;;;;;;;:39;;;6928:37;;;;;;;6846:12;;6871:30;;6881:10;;6928:37;;;;;;;;6978:88;;-1:-1:-1;;;6978:88:0;;7026:10;6978:88;;;;;;;;;;;;7054:4;6978:88;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6978:47:0;;;;;7026:10;7038:6;;7054:4;7061;;6978:88;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6978:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6978:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;7086:4:0;;6757:341;-1:-1:-1;;;;;;;6757:341:0:o;2973:31::-;;;-1:-1:-1;;;;;2973:31:0;;:::o;10331:184::-;10423:12;3210:5;;-1:-1:-1;;;;;3210:5:0;3196:10;:19;3188:45;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;;;;10493:5;;;10455:52;;;-1:-1:-1;;;10455:52:0;;-1:-1:-1;;;;;10493:5:0;;;10455:52;;;;;;;;;;;;:37;;;;;;:52;;;;;;;;;;;;;;;;;:37;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;10455:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10455:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10455:52:0;;10331:184;-1:-1:-1;;;10331:184:0:o;4549:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;4403:26::-;;;;;;:::o;3261:110::-;3210:5;;-1:-1:-1;;;;;3210:5:0;3196:10;:19;3188:45;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;-1:-1:-1;;;3188:45:0;;;;;;;;;;;;;;;3343:8;:20;;-1:-1:-1;;;;;;3343:20:0;-1:-1:-1;;;;;3343:20:0;;;;;;;;;;3261:110::o;1127:114::-;1202:5;;;1226:6;;;;1218:15;;;;;1371:128;1446:5;;;1470:6;;;:20;;;1489:1;1484;1480;:5;;;;;;:10;1470:20;1462:29;;;;;1507:113;1559:6;1590:1;1586;:5;1578:14;;;;;;1611:1;1607;:5;;;;;;;1507:113;-1:-1:-1;;;1507:113:0:o;1249:114::-;1301:6;1333:1;1328;:6;;1320:15;;;;;;-1:-1:-1;1350:5:0;;;1249:114::o

Swarm Source

bzzr://7fccda132f5b4a6234dd1ef9cc297549b569b4ce27c210912289d457e40b2b88
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.