ERC-20
Overview
Max Total Supply
1,625,223.060450441 EStake
Holders
168
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ESTAKE
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-11 */ pragma solidity 0.5.0; contract Initializable { bool private initialized; bool private initializing; modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool wasInitializing = initializing; initializing = true; initialized = true; _; initializing = wasInitializing; } function isConstructor() private view returns (bool) { uint256 cs; assembly { cs := extcodesize(address) } return cs == 0; } uint256[50] private ______gap; } contract Ownable is Initializable { address private _owner; uint256 private _ownershipLocked; event OwnershipLocked(address lockedOwner); event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); function initialize(address sender) internal initializer { _owner = sender; _ownershipLocked = 0; } function owner() public view returns(address) { return _owner; } modifier onlyOwner() { require(isOwner()); _; } function isOwner() public view returns(bool) { return msg.sender == _owner; } function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal { require(_ownershipLocked == 0); require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } // Set _ownershipLocked flag to lock contract owner forever function lockOwnership() public onlyOwner { require(_ownershipLocked == 0); emit OwnershipLocked(_owner); _ownershipLocked = 1; } uint256[50] private ______gap; } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; function initialize(string memory name, string memory symbol, uint8 decimals) internal initializer { _name = name; _symbol = symbol; _decimals = decimals; } function name() public view returns(string memory) { return _name; } function symbol() public view returns(string memory) { return _symbol; } function decimals() public view returns(uint8) { return _decimals; } uint256[50] private ______gap; } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* MIT License Copyright (c) 2018 requestnetwork Copyright (c) 2018 Fragments, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } } library UInt256Lib { uint256 private constant MAX_INT256 = ~(uint256(1) << 255); /** * @dev Safely converts a uint256 to an int256. */ function toInt256Safe(uint256 a) internal pure returns (int256) { require(a <= MAX_INT256); return int256(a); } } contract ESTAKE is Ownable, ERC20Detailed { using SafeMath for uint256; using SafeMathInt for int256; using UInt256Lib for uint256; struct Transaction { bool enabled; address destination; bytes data; } event TransactionFailed(address indexed destination, uint index, bytes data); // Stable ordering is not guaranteed. Transaction[] public transactions; modifier validRecipient(address to) { require(to != address(0x0)); require(to != address(this)); _; } uint256 public constant DECIMALS = 9; uint256 public constant MAX_UINT256 = ~uint256(0); uint256 public constant INITIAL_SUPPLY = 121 * 10**4 * 10**DECIMALS; address public Distributor; uint256 public _totalSupply; uint256 public _currentPrice; uint256 public _targetPrice; uint256 public _userLength; mapping(address => uint256) public _updatedBalance; mapping(address => bool) userStatus; mapping(uint => address) public idByAddress; mapping (address => mapping (address => uint256)) public _allowance; constructor() public { Ownable.initialize(msg.sender); ERC20Detailed.initialize("Elastic Staking", "EStake", uint8(DECIMALS)); _totalSupply = INITIAL_SUPPLY; _updatedBalance[msg.sender] = _totalSupply; _userLength++; idByAddress[_userLength] = msg.sender; emit Transfer(address(0x0), msg.sender, _totalSupply); } modifier onlyDistributor() { require(msg.sender == Distributor, "Only Distributor"); _; } /** * @return The total number of fragments. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) public view returns (uint256) { return _updatedBalance[who]; } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint256 value) public validRecipient(to) returns (bool) { if(!userStatus[to]){ userStatus[to] = true; _userLength++; idByAddress[_userLength] = to; } _updatedBalance[msg.sender] = _updatedBalance[msg.sender].sub(value); _updatedBalance[to] = _updatedBalance[to].add(value); emit Transfer(msg.sender, to, value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) public view returns (uint256) { return _allowance[owner_][spender]; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint256 value) public validRecipient(to) returns (bool) { _allowance[from][msg.sender] = _allowance[from][msg.sender].sub(value); if(!userStatus[to]){ userStatus[to] = true; _userLength++; idByAddress[_userLength] = to; } _updatedBalance[from] = _updatedBalance[from].sub(value); _updatedBalance[to] = _updatedBalance[to].add(value); emit Transfer(from, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _allowance[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _allowance[msg.sender][spender] = _allowance[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowance[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { uint256 oldValue = _allowance[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowance[msg.sender][spender] = 0; } else { _allowance[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowance[msg.sender][spender]); return true; } /* only distribtor can access the following functions. These functions will be used by distribution contract to distribute the rewards to users based on the equation R = (ax + by)*userblance */ function setUserBalance(address _user, uint256 _balance) public onlyDistributor { _updatedBalance[_user] = _balance; } function setTotalSupply(uint256 _supply) public onlyDistributor { _totalSupply = _supply; } function setDistributor(address _Distributor) public onlyOwner { Distributor = _Distributor; } function getUserLength() public view returns(uint256) { return _userLength; } function getUserAddress(uint256 id) public view returns(address) { return idByAddress[id]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"_targetPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"lockOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Distributor","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT256","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_currentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_updatedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getUserLength","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_Distributor","type":"address"}],"name":"setDistributor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_userLength","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"id","type":"uint256"}],"name":"getUserAddress","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":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"enabled","type":"bool"},{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"_allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"idByAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_supply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_balance","type":"uint256"}],"name":"setUserBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"destination","type":"address"},{"indexed":false,"name":"index","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"TransactionFailed","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"},{"anonymous":false,"inputs":[{"indexed":false,"name":"lockedOwner","type":"address"}],"name":"OwnershipLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200002b33640100000000620012f76200013a82021704565b620000b76040805190810160405280600f81526020017f456c6173746963205374616b696e6700000000000000000000000000000000008152506040805190810160405280600681526020017f455374616b65000000000000000000000000000000000000000000000000000081525060096200024464010000000002620013fa176401000000009004565b66044c7d142da000609e81815533600081815260a2602090815260408083209590955560a1805460010190819055825260a481528482208054600160a060020a03191684179055925484519081529351919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a362000425565b600054610100900460ff16806200015f57506200015f6401000000006200037c810204565b806200016e575060005460ff16155b1515620001f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e602482015260008051602062001a1983398151915260448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b6000805460338054600160a060020a031916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff1680620002695750620002696401000000006200037c810204565b8062000278575060005460ff16155b1515620002fb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e602482015260008051602062001a1983398151915260448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff16906200033390606790602087019062000383565b5082516200034990606890602086019062000383565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b155b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003c657805160ff1916838001178555620003f6565b82800160010185558215620003f6579182015b82811115620003f6578251825591602001919060010190620003d9565b506200040492915062000408565b5090565b6200038091905b808211156200040457600081556001016200040f565b6115e480620004356000396000f3fe6080604052600436106101955763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630100d022811461019a5780630577c02b146101c157806306fdde03146101d8578063095ea7b31461026257806318160ddd146102af5780632039d890146102c457806323b872dd146102f55780632e0f2625146103385780632ff2e9dc1461034d578063313ce5671461036257806333a581d21461038d57806339509351146103a25780633bdd280e146103db5780633eaaf86b146103f0578063424b69051461040557806370a08231146104385780637456fed61461046b57806375619ab5146104805780637ddb7a00146104b35780638da5cb5b146104c85780638f32d59b146104dd57806390d976e2146104f257806395d89b411461051c5780639ace38c214610531578063a457c2d7146105f7578063a9059cbb14610630578063dd336c1214610669578063dd62ed3e146106a4578063e98e9df2146106df578063f2fde38b14610709578063f7ea7a3d1461073c578063fe17770014610766575b600080fd5b3480156101a657600080fd5b506101af61079f565b60408051918252519081900360200190f35b3480156101cd57600080fd5b506101d66107a5565b005b3480156101e457600080fd5b506101ed61080b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022757818101518382015260200161020f565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026e57600080fd5b5061029b6004803603604081101561028557600080fd5b50600160a060020a0381351690602001356108a2565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b506101af610908565b3480156102d057600080fd5b506102d961090e565b60408051600160a060020a039092168252519081900360200190f35b34801561030157600080fd5b5061029b6004803603606081101561031857600080fd5b50600160a060020a0381358116916020810135909116906040013561091d565b34801561034457600080fd5b506101af610ad8565b34801561035957600080fd5b506101af610add565b34801561036e57600080fd5b50610377610ae8565b6040805160ff9092168252519081900360200190f35b34801561039957600080fd5b506101af610af1565b3480156103ae57600080fd5b5061029b600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610af7565b3480156103e757600080fd5b506101af610b90565b3480156103fc57600080fd5b506101af610b96565b34801561041157600080fd5b506101af6004803603602081101561042857600080fd5b5035600160a060020a0316610b9c565b34801561044457600080fd5b506101af6004803603602081101561045b57600080fd5b5035600160a060020a0316610bae565b34801561047757600080fd5b506101af610bc9565b34801561048c57600080fd5b506101d6600480360360208110156104a357600080fd5b5035600160a060020a0316610bcf565b3480156104bf57600080fd5b506101af610c11565b3480156104d457600080fd5b506102d9610c17565b3480156104e957600080fd5b5061029b610c26565b3480156104fe57600080fd5b506102d96004803603602081101561051557600080fd5b5035610c37565b34801561052857600080fd5b506101ed610c52565b34801561053d57600080fd5b5061055b6004803603602081101561055457600080fd5b5035610cb3565b604051808415151515815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156105ba5781810151838201526020016105a2565b50505050905090810190601f1680156105e75780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561060357600080fd5b5061029b6004803603604081101561061a57600080fd5b50600160a060020a038135169060200135610d79565b34801561063c57600080fd5b5061029b6004803603604081101561065357600080fd5b50600160a060020a038135169060200135610e68565b34801561067557600080fd5b506101af6004803603604081101561068c57600080fd5b50600160a060020a0381358116916020013516610fc5565b3480156106b057600080fd5b506101af600480360360408110156106c757600080fd5b50600160a060020a0381358116916020013516610fe2565b3480156106eb57600080fd5b506102d96004803603602081101561070257600080fd5b503561100d565b34801561071557600080fd5b506101d66004803603602081101561072c57600080fd5b5035600160a060020a0316611028565b34801561074857600080fd5b506101d66004803603602081101561075f57600080fd5b5035611047565b34801561077257600080fd5b506101d66004803603604081101561078957600080fd5b50600160a060020a0381351690602001356110ae565b60a05481565b6107ad610c26565b15156107b857600080fd5b603454156107c557600080fd5b60335460408051600160a060020a039092168252517f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f49181900360200190a16001603455565b60678054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b505050505090505b90565b33600081815260a560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b609e5490565b609d54600160a060020a031681565b600082600160a060020a038116151561093557600080fd5b600160a060020a03811630141561094b57600080fd5b600160a060020a038516600090815260a56020908152604080832033845290915290205461097f908463ffffffff61112c16565b600160a060020a03808716600090815260a560209081526040808320338452825280832094909455918716815260a3909152205460ff161515610a1857600160a060020a038416600081815260a360209081526040808320805460ff1916600190811790915560a1805490910190819055835260a49091529020805473ffffffffffffffffffffffffffffffffffffffff191690911790555b600160a060020a038516600090815260a26020526040902054610a41908463ffffffff61112c16565b600160a060020a03808716600090815260a260205260408082209390935590861681522054610a76908463ffffffff61117516565b600160a060020a03808616600081815260a2602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b600981565b66044c7d142da00081565b60695460ff1690565b60001981565b33600090815260a560209081526040808320600160a060020a0386168452909152812054610b2b908363ffffffff61117516565b33600081815260a560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609f5481565b609e5481565b60a26020526000908152604090205481565b600160a060020a0316600090815260a2602052604090205490565b60a15490565b610bd7610c26565b1515610be257600080fd5b609d805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60a15481565b603354600160a060020a031690565b603354600160a060020a0316331490565b600090815260a46020526040902054600160a060020a031690565b60688054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108975780601f1061086c57610100808354040283529160200191610897565b609c805482908110610cc157fe5b6000918252602091829020600291820201805460018083018054604080516101009483161585026000190190921696909604601f810188900488028201880190965285815260ff8416975091909204600160a060020a03169492939092830182828015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905083565b33600090815260a560209081526040808320600160a060020a0386168452909152812054808310610dcd5733600090815260a560209081526040808320600160a060020a0388168452909152812055610e02565b610ddd818463ffffffff61112c16565b33600090815260a560209081526040808320600160a060020a03891684529091529020555b33600081815260a560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600082600160a060020a0381161515610e8057600080fd5b600160a060020a038116301415610e9657600080fd5b600160a060020a038416600090815260a3602052604090205460ff161515610f1457600160a060020a038416600081815260a360209081526040808320805460ff1916600190811790915560a1805490910190819055835260a49091529020805473ffffffffffffffffffffffffffffffffffffffff191690911790555b33600090815260a26020526040902054610f34908463ffffffff61112c16565b33600090815260a2602052604080822092909255600160a060020a03861681522054610f66908463ffffffff61117516565b600160a060020a038516600081815260a260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60a560209081526000928352604080842090915290825290205481565b600160a060020a03918216600090815260a56020908152604080832093909416825291909152205490565b60a460205260009081526040902054600160a060020a031681565b611030610c26565b151561103b57600080fd5b611044816111d2565b50565b609d54600160a060020a031633146110a9576040805160e560020a62461bcd02815260206004820152601060248201527f4f6e6c79204469737472696275746f7200000000000000000000000000000000604482015290519081900360640190fd5b609e55565b609d54600160a060020a03163314611110576040805160e560020a62461bcd02815260206004820152601060248201527f4f6e6c79204469737472696275746f7200000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260a26020526040902055565b600061116e83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061125d565b9392505050565b60008282018381101561116e576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b603454156111df57600080fd5b600160a060020a03811615156111f457600080fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081848411156112ef5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112b457818101518382015260200161129c565b50505050905090810190601f1680156112e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600054610100900460ff1680611310575061131061151a565b8061131e575060005460ff16155b151561139a576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b600080546033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff1680611413575061141361151a565b80611421575060005460ff16155b151561149d576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff16906114d3906067906020870190611520565b5082516114e7906068906020860190611520565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b1590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061156157805160ff191683800117855561158e565b8280016001018555821561158e579182015b8281111561158e578251825591602001919060010190611573565b5061159a92915061159e565b5090565b61089f91905b8082111561159a57600081556001016115a456fea165627a7a72305820f62222fc3108f7c6d1e6b0f2e20ff2876ec34a82b996a9f085e30736cec685f10029436f6e747261637420696e7374616e63652068617320616c7265616479206265
Deployed Bytecode
0x6080604052600436106101955763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630100d022811461019a5780630577c02b146101c157806306fdde03146101d8578063095ea7b31461026257806318160ddd146102af5780632039d890146102c457806323b872dd146102f55780632e0f2625146103385780632ff2e9dc1461034d578063313ce5671461036257806333a581d21461038d57806339509351146103a25780633bdd280e146103db5780633eaaf86b146103f0578063424b69051461040557806370a08231146104385780637456fed61461046b57806375619ab5146104805780637ddb7a00146104b35780638da5cb5b146104c85780638f32d59b146104dd57806390d976e2146104f257806395d89b411461051c5780639ace38c214610531578063a457c2d7146105f7578063a9059cbb14610630578063dd336c1214610669578063dd62ed3e146106a4578063e98e9df2146106df578063f2fde38b14610709578063f7ea7a3d1461073c578063fe17770014610766575b600080fd5b3480156101a657600080fd5b506101af61079f565b60408051918252519081900360200190f35b3480156101cd57600080fd5b506101d66107a5565b005b3480156101e457600080fd5b506101ed61080b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022757818101518382015260200161020f565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026e57600080fd5b5061029b6004803603604081101561028557600080fd5b50600160a060020a0381351690602001356108a2565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b506101af610908565b3480156102d057600080fd5b506102d961090e565b60408051600160a060020a039092168252519081900360200190f35b34801561030157600080fd5b5061029b6004803603606081101561031857600080fd5b50600160a060020a0381358116916020810135909116906040013561091d565b34801561034457600080fd5b506101af610ad8565b34801561035957600080fd5b506101af610add565b34801561036e57600080fd5b50610377610ae8565b6040805160ff9092168252519081900360200190f35b34801561039957600080fd5b506101af610af1565b3480156103ae57600080fd5b5061029b600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610af7565b3480156103e757600080fd5b506101af610b90565b3480156103fc57600080fd5b506101af610b96565b34801561041157600080fd5b506101af6004803603602081101561042857600080fd5b5035600160a060020a0316610b9c565b34801561044457600080fd5b506101af6004803603602081101561045b57600080fd5b5035600160a060020a0316610bae565b34801561047757600080fd5b506101af610bc9565b34801561048c57600080fd5b506101d6600480360360208110156104a357600080fd5b5035600160a060020a0316610bcf565b3480156104bf57600080fd5b506101af610c11565b3480156104d457600080fd5b506102d9610c17565b3480156104e957600080fd5b5061029b610c26565b3480156104fe57600080fd5b506102d96004803603602081101561051557600080fd5b5035610c37565b34801561052857600080fd5b506101ed610c52565b34801561053d57600080fd5b5061055b6004803603602081101561055457600080fd5b5035610cb3565b604051808415151515815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156105ba5781810151838201526020016105a2565b50505050905090810190601f1680156105e75780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561060357600080fd5b5061029b6004803603604081101561061a57600080fd5b50600160a060020a038135169060200135610d79565b34801561063c57600080fd5b5061029b6004803603604081101561065357600080fd5b50600160a060020a038135169060200135610e68565b34801561067557600080fd5b506101af6004803603604081101561068c57600080fd5b50600160a060020a0381358116916020013516610fc5565b3480156106b057600080fd5b506101af600480360360408110156106c757600080fd5b50600160a060020a0381358116916020013516610fe2565b3480156106eb57600080fd5b506102d96004803603602081101561070257600080fd5b503561100d565b34801561071557600080fd5b506101d66004803603602081101561072c57600080fd5b5035600160a060020a0316611028565b34801561074857600080fd5b506101d66004803603602081101561075f57600080fd5b5035611047565b34801561077257600080fd5b506101d66004803603604081101561078957600080fd5b50600160a060020a0381351690602001356110ae565b60a05481565b6107ad610c26565b15156107b857600080fd5b603454156107c557600080fd5b60335460408051600160a060020a039092168252517f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f49181900360200190a16001603455565b60678054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b505050505090505b90565b33600081815260a560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b609e5490565b609d54600160a060020a031681565b600082600160a060020a038116151561093557600080fd5b600160a060020a03811630141561094b57600080fd5b600160a060020a038516600090815260a56020908152604080832033845290915290205461097f908463ffffffff61112c16565b600160a060020a03808716600090815260a560209081526040808320338452825280832094909455918716815260a3909152205460ff161515610a1857600160a060020a038416600081815260a360209081526040808320805460ff1916600190811790915560a1805490910190819055835260a49091529020805473ffffffffffffffffffffffffffffffffffffffff191690911790555b600160a060020a038516600090815260a26020526040902054610a41908463ffffffff61112c16565b600160a060020a03808716600090815260a260205260408082209390935590861681522054610a76908463ffffffff61117516565b600160a060020a03808616600081815260a2602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b600981565b66044c7d142da00081565b60695460ff1690565b60001981565b33600090815260a560209081526040808320600160a060020a0386168452909152812054610b2b908363ffffffff61117516565b33600081815260a560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609f5481565b609e5481565b60a26020526000908152604090205481565b600160a060020a0316600090815260a2602052604090205490565b60a15490565b610bd7610c26565b1515610be257600080fd5b609d805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60a15481565b603354600160a060020a031690565b603354600160a060020a0316331490565b600090815260a46020526040902054600160a060020a031690565b60688054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108975780601f1061086c57610100808354040283529160200191610897565b609c805482908110610cc157fe5b6000918252602091829020600291820201805460018083018054604080516101009483161585026000190190921696909604601f810188900488028201880190965285815260ff8416975091909204600160a060020a03169492939092830182828015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905083565b33600090815260a560209081526040808320600160a060020a0386168452909152812054808310610dcd5733600090815260a560209081526040808320600160a060020a0388168452909152812055610e02565b610ddd818463ffffffff61112c16565b33600090815260a560209081526040808320600160a060020a03891684529091529020555b33600081815260a560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600082600160a060020a0381161515610e8057600080fd5b600160a060020a038116301415610e9657600080fd5b600160a060020a038416600090815260a3602052604090205460ff161515610f1457600160a060020a038416600081815260a360209081526040808320805460ff1916600190811790915560a1805490910190819055835260a49091529020805473ffffffffffffffffffffffffffffffffffffffff191690911790555b33600090815260a26020526040902054610f34908463ffffffff61112c16565b33600090815260a2602052604080822092909255600160a060020a03861681522054610f66908463ffffffff61117516565b600160a060020a038516600081815260a260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60a560209081526000928352604080842090915290825290205481565b600160a060020a03918216600090815260a56020908152604080832093909416825291909152205490565b60a460205260009081526040902054600160a060020a031681565b611030610c26565b151561103b57600080fd5b611044816111d2565b50565b609d54600160a060020a031633146110a9576040805160e560020a62461bcd02815260206004820152601060248201527f4f6e6c79204469737472696275746f7200000000000000000000000000000000604482015290519081900360640190fd5b609e55565b609d54600160a060020a03163314611110576040805160e560020a62461bcd02815260206004820152601060248201527f4f6e6c79204469737472696275746f7200000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260a26020526040902055565b600061116e83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061125d565b9392505050565b60008282018381101561116e576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b603454156111df57600080fd5b600160a060020a03811615156111f457600080fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081848411156112ef5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112b457818101518382015260200161129c565b50505050905090810190601f1680156112e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600054610100900460ff1680611310575061131061151a565b8061131e575060005460ff16155b151561139a576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b600080546033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255603481905561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600054610100900460ff1680611413575061141361151a565b80611421575060005460ff16155b151561149d576040805160e560020a62461bcd02815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600161010061ff00198316811760ff191691909117909255845191900460ff16906114d3906067906020870190611520565b5082516114e7906068906020860190611520565b506069805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b303b1590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061156157805160ff191683800117855561158e565b8280016001018555821561158e579182015b8281111561158e578251825591602001919060010190611573565b5061159a92915061159e565b5090565b61089f91905b8082111561159a57600081556001016115a456fea165627a7a72305820f62222fc3108f7c6d1e6b0f2e20ff2876ec34a82b996a9f085e30736cec685f10029
Deployed Bytecode Sourcemap
7480:7221:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8338:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8338:27:0;;;;;;;;;;;;;;;;;;;;1653:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1653:141:0;;;;;;2859:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2859:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2859:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12249:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12249:226:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12249:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;9196:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9196:123:0;;;;8232:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8232:26:0;;;;;;;;-1:-1:-1;;;;;8232:26:0;;;;;;;;;;;;;;11028:578;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11028:578:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11028:578:0;;;;;;;;;;;;;;;;;;8059:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8059:36:0;;;;8158:67;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8158:67:0;;;;3027:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3027:76:0;;;;;;;;;;;;;;;;;;;;;;;8102:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8102:49:0;;;;12847:309;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12847:309:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12847:309:0;;;;;;;;;8303:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8303:28:0;;;;8269:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8269:27:0;;;;8408:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8408:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8408:50:0;-1:-1:-1;;;;;8408:50:0;;;9439:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9439:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9439:140:0;-1:-1:-1;;;;;9439:140:0;;;14491:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14491:91:0;;;;14375:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14375:108:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14375:108:0;-1:-1:-1;;;;;14375:108:0;;;8372:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8372:27:0;;;;1030:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1030:72:0;;;;1174:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1174:85:0;;;;14590:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14590:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14590:106:0;;;2941:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2941:80:0;;;;7874:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7874:33:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7874:33:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7874:33:0;-1:-1:-1;;;;;7874:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23: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;7874:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13417:484;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13417:484:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13417:484:0;;;;;;;;;9804:490;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9804:490:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9804:490:0;;;;;;;;;8553:67;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8553:67:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8553:67:0;;;;;;;;;;;10600:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10600:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10600:167:0;;;;;;;;;;;8501:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8501:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8501:43:0;;;1265:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1265:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1265:103:0;-1:-1:-1;;;;;1265:103:0;;;14262:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14262:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14262:105:0;;;14122:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14122:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14122:132:0;;;;;;;;;8338:27;;;;:::o;1653:141::-;1144:9;:7;:9::i;:::-;1136:18;;;;;;;;1707:16;;:21;1699:30;;;;;;1754:6;;1738:23;;;-1:-1:-1;;;;;1754:6:0;;;1738:23;;;;;;;;;;;;1787:1;1768:16;:20;1653:141::o;2859:76::-;2924:5;2917:12;;;;;;;;-1:-1:-1;;2917:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895:13;;2917:12;;2924:5;;2917:12;;2924:5;2917:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2859:76;;:::o;12249:226::-;12365:10;12332:4;12354:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;12354:31:0;;;;;;;;;;;:39;;;12409:36;;;;;;;12332:4;;12354:31;;12365:10;;12409:36;;;;;;;;-1:-1:-1;12463:4:0;12249:226;;;;:::o;9196:123::-;9299:12;;9196:123;:::o;8232:26::-;;;-1:-1:-1;;;;;8232:26:0;;:::o;11028:578::-;11153:4;11131:2;-1:-1:-1;;;;;7973:18:0;;;;7965:27;;;;;;-1:-1:-1;;;;;8011:19:0;;8025:4;8011:19;;8003:28;;;;;;-1:-1:-1;;;;;11206:16:0;;;;;;:10;:16;;;;;;;;11223:10;11206:28;;;;;;;;:39;;11239:5;11206:39;:32;:39;:::i;:::-;-1:-1:-1;;;;;11175:16:0;;;;;;;:10;:16;;;;;;;;11192:10;11175:28;;;;;;;:70;;;;11262:14;;;;;:10;:14;;;;;;;11261:15;11258:140;;;-1:-1:-1;;;;;11292:14:0;;;;;;:10;:14;;;;;;;;:21;;-1:-1:-1;;11292:21:0;11309:4;11292:21;;;;;;11328:11;:13;;;;;;;;;11357:24;;:11;:24;;;;;:29;;-1:-1:-1;;11357:29:0;;;;;;11258:140;-1:-1:-1;;;;;11434:21:0;;;;;;:15;:21;;;;;;:32;;11460:5;11434:32;:25;:32;:::i;:::-;-1:-1:-1;;;;;11410:21:0;;;;;;;:15;:21;;;;;;:56;;;;11501:19;;;;;;;:30;;11525:5;11501:30;:23;:30;:::i;:::-;-1:-1:-1;;;;;11479:19:0;;;;;;;:15;:19;;;;;;;;;:52;;;;11549:25;;;;;;;11479:19;;11549:25;;;;;;;;;;;;;-1:-1:-1;11594:4:0;;11028:578;-1:-1:-1;;;;11028:578:0:o;8059:36::-;8094:1;8059:36;:::o;8158:67::-;8199:26;8158:67;:::o;3027:76::-;3088:9;;;;3027:76;:::o;8102:49::-;-1:-1:-1;;8102:49:0;:::o;12847:309::-;13012:10;12945:4;13001:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13001:31:0;;;;;;;;;;:47;;13037:10;13001:47;:35;:47;:::i;:::-;12978:10;12967:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;12967:31:0;;;;;;;;;;;;:81;;;13064:62;;;;;;12967:31;;13064:62;;;;;;;;;;;-1:-1:-1;13144:4:0;12847:309;;;;:::o;8303:28::-;;;;:::o;8269:27::-;;;;:::o;8408:50::-;;;;;;;;;;;;;:::o;9439:140::-;-1:-1:-1;;;;;9551:20:0;9519:7;9551:20;;;:15;:20;;;;;;;9439:140::o;14491:91::-;14563:11;;14491:91;:::o;14375:108::-;1144:9;:7;:9::i;:::-;1136:18;;;;;;;;14449:11;:26;;-1:-1:-1;;14449:26:0;-1:-1:-1;;;;;14449:26:0;;;;;;;;;;14375:108::o;8372:27::-;;;;:::o;1030:72::-;1090:6;;-1:-1:-1;;;;;1090:6:0;1030:72;:::o;1174:85::-;1247:6;;-1:-1:-1;;;;;1247:6:0;1233:10;:20;;1174:85::o;14590:106::-;14646:7;14673:15;;;:11;:15;;;;;;-1:-1:-1;;;;;14673:15:0;;14590:106::o;2941:80::-;3008:7;3001:14;;;;;;;;-1:-1:-1;;3001:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979:13;;3001:14;;3008:7;;3001:14;;3008:7;3001:14;;;;;;;;;;;;;;;;;;;;;;;;7874:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7874:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7874:33:0;;;;-1:-1:-1;;;;;7874:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13417:484::-;13572:10;13520:4;13561:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13561:31:0;;;;;;;;;;13607:27;;;13603:191;;13662:10;13685:1;13651:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13651:31:0;;;;;;;;;:35;13603:191;;;13753:29;:8;13766:15;13753:29;:12;:29;:::i;:::-;13730:10;13719:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13719:31:0;;;;;;;;;:63;13603:191;13818:10;13839:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13809:62:0;;13839:31;;;;;;;;;;;13809:62;;;;;;;;;13818:10;13809:62;;;;;;;;;;;-1:-1:-1;13889:4:0;;13417:484;-1:-1:-1;;;13417:484:0:o;9804:490::-;9911:4;9889:2;-1:-1:-1;;;;;7973:18:0;;;;7965:27;;;;;;-1:-1:-1;;;;;8011:19:0;;8025:4;8011:19;;8003:28;;;;;;-1:-1:-1;;;;;9937:14:0;;;;;;:10;:14;;;;;;;;9936:15;9933:139;;;-1:-1:-1;;;;;9967:14:0;;;;;;:10;:14;;;;;;;;:21;;-1:-1:-1;;9967:21:0;9984:4;9967:21;;;;;;10003:11;:13;;;;;;;;;10031:24;;:11;:24;;;;;:29;;-1:-1:-1;;10031:29:0;;;;;;9933:139;10130:10;10114:27;;;;:15;:27;;;;;;:38;;10146:5;10114:38;:31;:38;:::i;:::-;10100:10;10084:27;;;;:15;:27;;;;;;:68;;;;-1:-1:-1;;;;;10185:19:0;;;;;;:30;;10209:5;10185:30;:23;:30;:::i;:::-;-1:-1:-1;;;;;10163:19:0;;;;;;:15;:19;;;;;;;;;:52;;;;10233:31;;;;;;;10163:19;;10242:10;;10233:31;;;;;;;;;;-1:-1:-1;10282:4:0;;9804:490;-1:-1:-1;;;9804:490:0:o;8553:67::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10600:167::-;-1:-1:-1;;;;;10732:18:0;;;10700:7;10732:18;;;:10;:18;;;;;;;;:27;;;;;;;;;;;;;10600:167::o;8501:43::-;;;;;;;;;;;;-1:-1:-1;;;;;8501:43:0;;:::o;1265:103::-;1144:9;:7;:9::i;:::-;1136:18;;;;;;;;1334:28;1353:8;1334:18;:28::i;:::-;1265:103;:::o;14262:105::-;9072:11;;-1:-1:-1;;;;;9072:11:0;9058:10;:25;9050:54;;;;;-1:-1:-1;;;;;9050:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14337:12;:22;14262:105::o;14122:132::-;9072:11;;-1:-1:-1;;;;;9072:11:0;9058:10;:25;9050:54;;;;;-1:-1:-1;;;;;9050:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14213:22:0;;;;;;;:15;:22;;;;;:33;14122:132::o;3361:136::-;3419:7;3446:43;3450:1;3453;3446:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3439:50;3361:136;-1:-1:-1;;;3361:136:0:o;3172:181::-;3230:7;3262:5;;;3286:6;;;;3278:46;;;;;-1:-1:-1;;;;;3278:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1374:210;1444:16;;:21;1436:30;;;;;;-1:-1:-1;;;;;1481:22:0;;;;1473:31;;;;;;1537:6;;1516:38;;-1:-1:-1;;;;;1516:38:0;;;;1537:6;;1516:38;;1537:6;;1516:38;1561:6;:17;;-1:-1:-1;;1561:17:0;-1:-1:-1;;;;;1561:17:0;;;;;;;;;;1374:210::o;3505:192::-;3591:7;3627:12;3619:6;;;;3611:29;;;;-1:-1:-1;;;;;3611:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23: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;3611:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3663:5:0;;;3505:192::o;915:109::-;155:12;;;;;;;;:31;;;171:15;:13;:15::i;:::-;155:47;;;-1:-1:-1;191:11:0;;;;190:12;155:47;147:106;;;;;;;-1:-1:-1;;;;;147:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262:20;285:12;;979:6;:15;;-1:-1:-1;;979:15:0;-1:-1:-1;;;;;979:15:0;;;;;;;;;;;998:16;:20;;;-1:-1:-1;;304:19:0;;;285:12;304:19;;;-1:-1:-1;;330:18:0;-1:-1:-1;330:18:0;367:30;;;285:12;;;;;;367:30;;;;;;;;;915:109::o;2679:174::-;155:12;;;;;;;;:31;;;171:15;:13;:15::i;:::-;155:47;;;-1:-1:-1;191:11:0;;;;190:12;155:47;147:106;;;;;;;-1:-1:-1;;;;;147:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262:20;285:12;;;;-1:-1:-1;;304:19:0;;;;-1:-1:-1;;330:18:0;;;;;;;;2785:12;;285;;;;;;2785;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;2804:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;2827:9:0;:20;;;;;;-1:-1:-1;;2827:20:0;;;;;;;;;;:9;367:30;;;;;2827:20;367:30;-1:-1:-1;;367:30:0;;;;;;;;;-1:-1:-1;;2679:174:0:o;409:142::-;515:7;503:20;538:7;409:142;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://f62222fc3108f7c6d1e6b0f2e20ff2876ec34a82b996a9f085e30736cec685f1
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.