ERC-20
Overview
Max Total Supply
900,000,000 VIDB
Holders
60
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
VIDBToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-11 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract VIDBToken is ERC20Detailed, ERC20, Ownable { address investorWallet = 0x278406d5a5198203ECc54B6a4b3612F174A73f69; address reserveWallet = 0x72EBac03226b1937094c09ca3c181b52630695d5; address foundationWallet = 0xb6f85f280e30c4f2b2739E62Da8166471a170D23; address airdropWallet = 0x638551D8B1a5c582beC4cA978A894CA1B830157E; address advisorWallet = 0x5b4774C795A35269FBc858f84B2242d86fEF75Ed; uint256 private totalTokens; struct LockTime { uint256 releaseDate; uint256 amount; } mapping (address => LockTime[]) public lockList; mapping (uint => uint) public reserveMap; mapping (uint => uint) public foundationMap; mapping (uint => uint) public airdropMap; mapping (uint => uint) public advisorMap; address [] private lockedAddressList; constructor() public ERC20Detailed("VNDC International Digital Banking", "VIDB", 8) { reserveMap[1]=1623456000; // 2021-06-12T00:00:00Z reserveMap[2]=1639267200; // 2021-12-12T00:00:00Z foundationMap[1]=1615507200; // 2021-03-12T00:00:00Z foundationMap[2]=1623456000; // 2021-06-12T00:00:00Z foundationMap[3]=1631404800; // 2021-09-12T00:00:00Z foundationMap[4]=1639267200; // 2021-12-12T00:00:00Z foundationMap[5]=1647043200; // 2022-03-12T00:00:00Z foundationMap[6]=1654992000; // 2022-06-12T00:00:00Z foundationMap[7]=1662940800; // 2022-09-12T00:00:00Z foundationMap[8]=1670803200; // 2022-12-12T00:00:00Z foundationMap[9]=1678579200; // 2023-03-12T00:00:00Z foundationMap[10]=1686528000; // 2023-06-12T00:00:00Z foundationMap[11]=1694476800; // 2023-09-12T00:00:00Z foundationMap[12]=1702339200; // 2023-12-12T00:00:00Z foundationMap[13]=1710201600; // 2024-03-12T00:00:00Z foundationMap[14]=1718150400; // 2024-06-12T00:00:00Z foundationMap[15]=1726099200; // 2024-09-12T00:00:00Z foundationMap[16]=1733961600; // 2024-12-12T00:00:00Z airdropMap[1]=1615507200; // 2021-03-12T00:00:00Z airdropMap[2]=1623456000; // 2021-06-12T00:00:00Z airdropMap[3]=1631404800; // 2021-09-12T00:00:00Z airdropMap[4]=1639267200; // 2021-12-12T00:00:00Z airdropMap[5]=1647043200; // 2022-03-12T00:00:00Z airdropMap[6]=1654992000; // 2022-06-12T00:00:00Z advisorMap[1]=1639267200; // 2021-12-12T00:00:00Z totalTokens = 1000000000 * 10 ** uint256(decimals()); _mint(owner(), totalTokens); // total supply fixed at 1 billion token ERC20.transfer(investorWallet, 500000000 * 10 ** uint256(decimals())); ERC20.transfer(airdropWallet, 10000000 * 10 ** uint256(decimals())); ERC20.transfer(advisorWallet, 25000000 * 10 ** uint256(decimals())); for(uint i = 1; i<= 2; i++) { transferWithLock(reserveWallet, 125000000 * 10 ** uint256(decimals()), reserveMap[i]); } for(uint i = 1; i<= 16; i++) { transferWithLock(foundationWallet, 7812500 * 10 ** uint256(decimals()), foundationMap[i]); } for(uint i = 1; i<= 5; i++) { transferWithLock(airdropWallet, 8333333 * 10 ** uint256(decimals()), foundationMap[i]); } transferWithLock(airdropWallet, 8333335 * 10 ** uint256(decimals()), foundationMap[6]); transferWithLock(advisorWallet, 40000000 * 10 ** uint256(decimals()), advisorMap[1]); } function transfer(address _receiver, uint256 _amount) public returns (bool success) { require(_receiver != address(0)); require(_amount <= getAvailableBalance(msg.sender)); return ERC20.transfer(_receiver, _amount); } function transferFrom(address _from, address _receiver, uint256 _amount) public returns (bool) { require(_from != address(0)); require(_receiver != address(0)); require(_amount <= allowance(_from, msg.sender)); require(_amount <= getAvailableBalance(_from)); return ERC20.transferFrom(_from, _receiver, _amount); } function transferWithLock(address _receiver, uint256 _amount, uint256 _releaseDate) public returns (bool success) { require(msg.sender == reserveWallet || msg.sender == foundationWallet || msg.sender == airdropWallet || msg.sender == advisorWallet || msg.sender == owner()); ERC20._transfer(msg.sender,_receiver,_amount); if (lockList[_receiver].length==0) lockedAddressList.push(_receiver); LockTime memory item = LockTime({amount:_amount, releaseDate:_releaseDate}); lockList[_receiver].push(item); return true; } function getLockedAmount(address lockedAddress) public view returns (uint256 _amount) { uint256 lockedAmount =0; for(uint256 j = 0; j<lockList[lockedAddress].length; j++) { if(now < lockList[lockedAddress][j].releaseDate) { uint256 temp = lockList[lockedAddress][j].amount; lockedAmount += temp; } } return lockedAmount; } function getAvailableBalance(address lockedAddress) public view returns (uint256 _amount) { uint256 bal = balanceOf(lockedAddress); uint256 locked = getLockedAmount(lockedAddress); return bal.sub(locked); } function getLockedAddresses() public view returns (address[] memory) { return lockedAddressList; } function getNumberOfLockedAddresses() public view returns (uint256 _count) { return lockedAddressList.length; } function getNumberOfLockedAddressesCurrently() public view returns (uint256 _count) { uint256 count=0; for(uint256 i = 0; i<lockedAddressList.length; i++) { if (getLockedAmount(lockedAddressList[i])>0) count++; } return count; } function getLockedAddressesCurrently() public view returns (address[] memory) { address [] memory list = new address[](getNumberOfLockedAddressesCurrently()); uint256 j = 0; for(uint256 i = 0; i<lockedAddressList.length; i++) { if (getLockedAmount(lockedAddressList[i])>0) { list[j] = lockedAddressList[i]; j++; } } return list; } function getLockedAmountTotal() public view returns (uint256 _amount) { uint256 sum =0; for(uint256 i = 0; i<lockedAddressList.length; i++) { uint256 lockedAmount = getLockedAmount(lockedAddressList[i]); sum = sum.add(lockedAmount); } return sum; } function getCirculatingSupplyTotal() public view returns (uint256 _amount) { return totalSupply().sub(getLockedAmountTotal()); } function getBurnedAmountTotal() public view returns (uint256 _amount) { return totalTokens.sub(totalSupply()); } function burn(uint256 _amount) public { _burn(msg.sender, _amount); } function () payable external { revert(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"advisorMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdropMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"foundationMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lockedAddress","type":"address"}],"name":"getAvailableBalance","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBurnedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCirculatingSupplyTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAddressesCurrently","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lockedAddress","type":"address"}],"name":"getLockedAmount","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfLockedAddresses","outputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfLockedAddressesCurrently","outputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockList","outputs":[{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reserveMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_releaseDate","type":"uint256"}],"name":"transferWithLock","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273278406d5a5198203ecc54b6a4b3612f174a73f69600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507372ebac03226b1937094c09ca3c181b52630695d5600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b6f85f280e30c4f2b2739e62da8166471a170d23600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073638551d8b1a5c582bec4ca978a894ca1b830157e600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735b4774c795a35269fbc858f84b2242d86fef75ed600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001ba57600080fd5b5060405180606001604052806022815260200162003c11602291396040518060400160405280600481526020017f5649444200000000000000000000000000000000000000000000000000000000815250600882600090805190602001906200022592919062001301565b5081600190805190602001906200023e92919062001301565b5080600260006101000a81548160ff021916908360ff16021790555050505060006200026f6200097c60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506360c3f900600e600060018152602001908152602001600020819055506361b53b80600e6000600281526020019081526020016000208190555063604aaf00600f600060018152602001908152602001600020819055506360c3f900600f6000600281526020019081526020016000208190555063613d4300600f600060038152602001908152602001600020819055506361b53b80600f6000600481526020019081526020016000208190555063622be280600f600060058152602001908152602001600020819055506362a52c80600f6000600681526020019081526020016000208190555063631e7680600f600060078152602001908152602001600020819055506363966f00600f6000600881526020019081526020016000208190555063640d1600600f600060098152602001908152602001600020819055506364866000600f6000600a8152602001908152602001600020819055506364ffaa00600f6000600b815260200190815260200160002081905550636577a280600f6000600c8152602001908152602001600020819055506365ef9b00600f6000600d815260200190815260200160002081905550636668e500600f6000600e8152602001908152602001600020819055506366e22f00600f6000600f81526020019081526020016000208190555063675a2780600f6000601081526020019081526020016000208190555063604aaf006010600060018152602001908152602001600020819055506360c3f90060106000600281526020019081526020016000208190555063613d43006010600060038152602001908152602001600020819055506361b53b8060106000600481526020019081526020016000208190555063622be2806010600060058152602001908152602001600020819055506362a52c806010600060068152602001908152602001600020819055506361b53b80601160006001815260200190815260200160002081905550620005f36200098460201b60201c565b60ff16600a0a633b9aca0002600c8190555062000628620006196200099b60201b60201c565b600c54620009c560201b60201c565b6200067c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200065f6200098460201b60201c565b60ff16600a0a631dcd65000262000b9160201b620022171760201c565b50620006d0600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006b46200098460201b60201c565b60ff16600a0a629896800262000b9160201b620022171760201c565b5062000725600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620007086200098460201b60201c565b60ff16600a0a63017d78400262000b9160201b620022171760201c565b506000600190505b60028111620007a85762000799600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200076d6200098460201b60201c565b60ff16600a0a630773594002600e60008581526020019081526020016000205462000bbf60201b60201c565b5080806001019150506200072d565b506000600190505b601081116200082a576200081b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620007f06200098460201b60201c565b60ff16600a0a6277359402600f60008581526020019081526020016000205462000bbf60201b60201c565b508080600101915050620007b0565b506000600190505b60058111620008ac576200089d600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620008726200098460201b60201c565b60ff16600a0a627f281502600f60008581526020019081526020016000205462000bbf60201b60201c565b50808060010191505062000832565b5062000910600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620008e46200098460201b60201c565b60ff16600a0a627f281702600f6000600681526020019081526020016000205462000bbf60201b60201c565b5062000975600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620009486200098460201b60201c565b60ff16600a0a6302625a000260116000600181526020019081526020016000205462000bbf60201b60201c565b50620013ca565b600033905090565b6000600260009054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000a858160055462000ee760201b62001f151790919060201c565b60058190555062000ae481600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ee760201b62001f151790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600062000bb562000ba76200097c60201b60201c565b848462000f7060201b60201c565b6001905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148062000c6b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8062000cc45750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8062000d1d5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8062000d63575062000d346200099b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000d6d57600080fd5b62000d8533858562000f7060201b620022351760201c565b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050141562000e385760128490806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b62000e4262001388565b6040518060400160405280848152602001858152509050600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b60008082840190508381101562000f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000ff8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018062003c336025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018062003bc86023913960400191505060405180910390fd5b620010f48160405180606001604052806026815260200162003beb60269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200123d60201b62002157179092919060201c565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200119081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ee760201b62001f151790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290620012ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620012b257808201518184015260208101905062001295565b50505050905090810190601f168015620012e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200134457805160ff191683800117855562001375565b8280016001018555821562001375579182015b828111156200137457825182559160200191906001019062001357565b5b509050620013849190620013a2565b5090565b604051806040016040528060008152602001600081525090565b620013c791905b80821115620013c3576000816000905550600101620013a9565b5090565b90565b6127ee80620013da6000396000f3fe6080604052600436106101d85760003560e01c8063728e9e2411610102578063a9059cbb11610095578063c8eb119711610064578063c8eb119714610aaa578063dd62ed3e14610b20578063de6baccb14610ba5578063f2fde38b14610c22576101d8565b8063a9059cbb1461092d578063b7ca28f7146109a0578063c2091cfb146109ef578063c454ea8a14610a5b576101d8565b80638f32d59b116100d15780638f32d59b14610796578063929ec537146107c557806395d89b411461082a578063a457c2d7146108ba576101d8565b8063728e9e241461067d57806372d47d36146106a85780638da5cb5b146107145780638e94ae5f1461076b576101d8565b80632c41f2a61161017a57806342966c681161014957806342966c68146105615780636c24a76f1461059c57806370a0823114610601578063715018a614610666576101d8565b80632c41f2a6146104435780632ca9fe8a1461046e578063313ce567146104bd57806339509351146104ee576101d8565b80630d6b44eb116101b65780630d6b44eb1461032f57806318160ddd1461035a5780631ec4280a1461038557806323b872dd146103b0576101d8565b806306fdde03146101dd578063095ea7b31461026d5780630c241466146102e0575b600080fd5b3480156101e957600080fd5b506101f2610c73565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027957600080fd5b506102c66004803603604081101561029057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d15565b604051808215151515815260200191505060405180910390f35b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b8101908080359060200190929190505050610d33565b6040518082815260200191505060405180910390f35b34801561033b57600080fd5b50610344610d4b565b6040518082815260200191505060405180910390f35b34801561036657600080fd5b5061036f610dcb565b6040518082815260200191505060405180910390f35b34801561039157600080fd5b5061039a610dd5565b6040518082815260200191505060405180910390f35b3480156103bc57600080fd5b50610429600480360360608110156103d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df8565b604051808215151515815260200191505060405180910390f35b34801561044f57600080fd5b50610458610eac565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b506104a76004803603602081101561049157600080fd5b8101908080359060200190929190505050610ed4565b6040518082815260200191505060405180910390f35b3480156104c957600080fd5b506104d2610eec565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104fa57600080fd5b506105476004803603604081101561051157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f03565b604051808215151515815260200191505060405180910390f35b34801561056d57600080fd5b5061059a6004803603602081101561058457600080fd5b8101908080359060200190929190505050610fb6565b005b3480156105a857600080fd5b506105eb600480360360208110156105bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fc3565b6040518082815260200191505060405180910390f35b34801561060d57600080fd5b506106506004803603602081101561062457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ffa565b6040518082815260200191505060405180910390f35b34801561067257600080fd5b5061067b611043565b005b34801561068957600080fd5b5061069261117e565b6040518082815260200191505060405180910390f35b3480156106b457600080fd5b506106bd61118b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107005780820151818401526020810190506106e5565b505050509050019250505060405180910390f35b34801561072057600080fd5b50610729611219565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077757600080fd5b50610780611243565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b506107ab6112cc565b604051808215151515815260200191505060405180910390f35b3480156107d157600080fd5b50610814600480360360208110156107e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061132b565b6040518082815260200191505060405180910390f35b34801561083657600080fd5b5061083f611463565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561087f578082015181840152602081019050610864565b50505050905090810190601f1680156108ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c657600080fd5b50610913600480360360408110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611505565b604051808215151515815260200191505060405180910390f35b34801561093957600080fd5b506109866004803603604081101561095057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d2565b604051808215151515815260200191505060405180910390f35b3480156109ac57600080fd5b506109d9600480360360208110156109c357600080fd5b8101908080359060200190929190505050611634565b6040518082815260200191505060405180910390f35b3480156109fb57600080fd5b50610a0461164c565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a47578082015181840152602081019050610a2c565b505050509050019250505060405180910390f35b348015610a6757600080fd5b50610a9460048036036020811015610a7e57600080fd5b8101908080359060200190929190505050611785565b6040518082815260200191505060405180910390f35b348015610ab657600080fd5b50610b0360048036036040811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061179d565b604051808381526020018281526020019250505060405180910390f35b348015610b2c57600080fd5b50610b8f60048036036040811015610b4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117db565b6040518082815260200191505060405180910390f35b348015610bb157600080fd5b50610c0860048036036060811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611862565b604051808215151515815260200191505060405180910390f35b348015610c2e57600080fd5b50610c7160048036036020811015610c4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6d565b005b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d0b5780601f10610ce057610100808354040283529160200191610d0b565b820191906000526020600020905b815481529060010190602001808311610cee57829003601f168201915b5050505050905090565b6000610d29610d22611bf3565b8484611bfb565b6001905092915050565b600e6020528060005260406000206000915090505481565b6000806000905060008090505b601280549050811015610dc3576000610da760128381548110610d7757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b1115610db65781806001019250505b8080600101915050610d58565b508091505090565b6000600554905090565b6000610df3610de2610dcb565b600c54611df290919063ffffffff16565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e3357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6d57600080fd5b610e7784336117db565b821115610e8357600080fd5b610e8c84610fc3565b821115610e9857600080fd5b610ea3848484611e3c565b90509392505050565b6000610ecf610eb9611243565b610ec1610dcb565b611df290919063ffffffff16565b905090565b60116020528060005260406000206000915090505481565b6000600260009054906101000a900460ff16905090565b6000610fac610f10611bf3565b84610fa78560046000610f21611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1590919063ffffffff16565b611bfb565b6001905092915050565b610fc03382611f9d565b50565b600080610fcf83610ffa565b90506000610fdc8461132b565b9050610ff18183611df290919063ffffffff16565b92505050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b6112cc565b6110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601280549050905090565b6060601280548060200260200160405190810160405280929190818152602001828054801561120f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116111c5575b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806000905060008090505b6012805490508110156112c457600061129f6012838154811061126f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b90506112b48184611f1590919063ffffffff16565b9250508080600101915050611250565b508091505090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661130f611bf3565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000905060008090505b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561145957600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081815481106113cc57fe5b90600052602060002090600202016000015442101561144c576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061143157fe5b90600052602060002090600202016001015490508083019250505b8080600101915050611338565b5080915050919050565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b60006115c8611512611bf3565b846115c385604051806060016040528060258152602001612795602591396004600061153c611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b611bfb565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160d57600080fd5b61161633610fc3565b82111561162257600080fd5b61162c8383612217565b905092915050565b600f6020528060005260406000206000915090505481565b606080611657610d4b565b6040519080825280602002602001820160405280156116855781602001602082028038833980820191505090505b509050600080905060008090505b60128054905081101561177c5760006116e2601283815481106116b257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b111561176f57601281815481106116f557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061172c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806001019250505b8080600101915050611693565b50819250505090565b60106020528060005260406000206000915090505481565b600d60205281600052604060002081815481106117b657fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061190d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119655750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119bd5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119fa57506119cb611219565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a0357600080fd5b611a0e338585612235565b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501415611ac05760128490806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b611ac8612635565b6040518060400160405280848152602001858152509050600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b611b756112cc565b611be7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bf0816124ef565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127716024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126bb6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000611e3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612157565b905092915050565b6000611e49848484612235565b611f0a84611e55611bf3565b611f058560405180606001604052806028815260200161270360289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611ebb611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b611bfb565b600190509392505050565b600080828401905083811015611f93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061272b6021913960400191505060405180910390fd5b61208f8160405180606001604052806022815260200161267360229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120e781600554611df290919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c95780820151818401526020810190506121ae565b50505050905090810190601f1680156121f65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061222b612224611bf3565b8484612235565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061274c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126506023913960400191505060405180910390fd5b6123ad816040518060600160405280602681526020016126dd60269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061244281600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1590919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126956026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820567c6625bfb5d42ffa3ff16e78e5ee8f5d6e1837b70f333d00c15aa802aa10f564736f6c6343000511003245524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365564e444320496e7465726e6174696f6e616c204469676974616c2042616e6b696e6745524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063728e9e2411610102578063a9059cbb11610095578063c8eb119711610064578063c8eb119714610aaa578063dd62ed3e14610b20578063de6baccb14610ba5578063f2fde38b14610c22576101d8565b8063a9059cbb1461092d578063b7ca28f7146109a0578063c2091cfb146109ef578063c454ea8a14610a5b576101d8565b80638f32d59b116100d15780638f32d59b14610796578063929ec537146107c557806395d89b411461082a578063a457c2d7146108ba576101d8565b8063728e9e241461067d57806372d47d36146106a85780638da5cb5b146107145780638e94ae5f1461076b576101d8565b80632c41f2a61161017a57806342966c681161014957806342966c68146105615780636c24a76f1461059c57806370a0823114610601578063715018a614610666576101d8565b80632c41f2a6146104435780632ca9fe8a1461046e578063313ce567146104bd57806339509351146104ee576101d8565b80630d6b44eb116101b65780630d6b44eb1461032f57806318160ddd1461035a5780631ec4280a1461038557806323b872dd146103b0576101d8565b806306fdde03146101dd578063095ea7b31461026d5780630c241466146102e0575b600080fd5b3480156101e957600080fd5b506101f2610c73565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027957600080fd5b506102c66004803603604081101561029057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d15565b604051808215151515815260200191505060405180910390f35b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b8101908080359060200190929190505050610d33565b6040518082815260200191505060405180910390f35b34801561033b57600080fd5b50610344610d4b565b6040518082815260200191505060405180910390f35b34801561036657600080fd5b5061036f610dcb565b6040518082815260200191505060405180910390f35b34801561039157600080fd5b5061039a610dd5565b6040518082815260200191505060405180910390f35b3480156103bc57600080fd5b50610429600480360360608110156103d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df8565b604051808215151515815260200191505060405180910390f35b34801561044f57600080fd5b50610458610eac565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b506104a76004803603602081101561049157600080fd5b8101908080359060200190929190505050610ed4565b6040518082815260200191505060405180910390f35b3480156104c957600080fd5b506104d2610eec565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104fa57600080fd5b506105476004803603604081101561051157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f03565b604051808215151515815260200191505060405180910390f35b34801561056d57600080fd5b5061059a6004803603602081101561058457600080fd5b8101908080359060200190929190505050610fb6565b005b3480156105a857600080fd5b506105eb600480360360208110156105bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fc3565b6040518082815260200191505060405180910390f35b34801561060d57600080fd5b506106506004803603602081101561062457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ffa565b6040518082815260200191505060405180910390f35b34801561067257600080fd5b5061067b611043565b005b34801561068957600080fd5b5061069261117e565b6040518082815260200191505060405180910390f35b3480156106b457600080fd5b506106bd61118b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107005780820151818401526020810190506106e5565b505050509050019250505060405180910390f35b34801561072057600080fd5b50610729611219565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077757600080fd5b50610780611243565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b506107ab6112cc565b604051808215151515815260200191505060405180910390f35b3480156107d157600080fd5b50610814600480360360208110156107e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061132b565b6040518082815260200191505060405180910390f35b34801561083657600080fd5b5061083f611463565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561087f578082015181840152602081019050610864565b50505050905090810190601f1680156108ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c657600080fd5b50610913600480360360408110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611505565b604051808215151515815260200191505060405180910390f35b34801561093957600080fd5b506109866004803603604081101561095057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d2565b604051808215151515815260200191505060405180910390f35b3480156109ac57600080fd5b506109d9600480360360208110156109c357600080fd5b8101908080359060200190929190505050611634565b6040518082815260200191505060405180910390f35b3480156109fb57600080fd5b50610a0461164c565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a47578082015181840152602081019050610a2c565b505050509050019250505060405180910390f35b348015610a6757600080fd5b50610a9460048036036020811015610a7e57600080fd5b8101908080359060200190929190505050611785565b6040518082815260200191505060405180910390f35b348015610ab657600080fd5b50610b0360048036036040811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061179d565b604051808381526020018281526020019250505060405180910390f35b348015610b2c57600080fd5b50610b8f60048036036040811015610b4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117db565b6040518082815260200191505060405180910390f35b348015610bb157600080fd5b50610c0860048036036060811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611862565b604051808215151515815260200191505060405180910390f35b348015610c2e57600080fd5b50610c7160048036036020811015610c4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6d565b005b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d0b5780601f10610ce057610100808354040283529160200191610d0b565b820191906000526020600020905b815481529060010190602001808311610cee57829003601f168201915b5050505050905090565b6000610d29610d22611bf3565b8484611bfb565b6001905092915050565b600e6020528060005260406000206000915090505481565b6000806000905060008090505b601280549050811015610dc3576000610da760128381548110610d7757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b1115610db65781806001019250505b8080600101915050610d58565b508091505090565b6000600554905090565b6000610df3610de2610dcb565b600c54611df290919063ffffffff16565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e3357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6d57600080fd5b610e7784336117db565b821115610e8357600080fd5b610e8c84610fc3565b821115610e9857600080fd5b610ea3848484611e3c565b90509392505050565b6000610ecf610eb9611243565b610ec1610dcb565b611df290919063ffffffff16565b905090565b60116020528060005260406000206000915090505481565b6000600260009054906101000a900460ff16905090565b6000610fac610f10611bf3565b84610fa78560046000610f21611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1590919063ffffffff16565b611bfb565b6001905092915050565b610fc03382611f9d565b50565b600080610fcf83610ffa565b90506000610fdc8461132b565b9050610ff18183611df290919063ffffffff16565b92505050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b6112cc565b6110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601280549050905090565b6060601280548060200260200160405190810160405280929190818152602001828054801561120f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116111c5575b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806000905060008090505b6012805490508110156112c457600061129f6012838154811061126f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b90506112b48184611f1590919063ffffffff16565b9250508080600101915050611250565b508091505090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661130f611bf3565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000905060008090505b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561145957600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081815481106113cc57fe5b90600052602060002090600202016000015442101561144c576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061143157fe5b90600052602060002090600202016001015490508083019250505b8080600101915050611338565b5080915050919050565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b60006115c8611512611bf3565b846115c385604051806060016040528060258152602001612795602591396004600061153c611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b611bfb565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160d57600080fd5b61161633610fc3565b82111561162257600080fd5b61162c8383612217565b905092915050565b600f6020528060005260406000206000915090505481565b606080611657610d4b565b6040519080825280602002602001820160405280156116855781602001602082028038833980820191505090505b509050600080905060008090505b60128054905081101561177c5760006116e2601283815481106116b257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132b565b111561176f57601281815481106116f557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061172c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806001019250505b8080600101915050611693565b50819250505090565b60106020528060005260406000206000915090505481565b600d60205281600052604060002081815481106117b657fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061190d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119655750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119bd5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806119fa57506119cb611219565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a0357600080fd5b611a0e338585612235565b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501415611ac05760128490806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b611ac8612635565b6040518060400160405280848152602001858152509050600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b611b756112cc565b611be7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bf0816124ef565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127716024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126bb6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000611e3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612157565b905092915050565b6000611e49848484612235565b611f0a84611e55611bf3565b611f058560405180606001604052806028815260200161270360289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611ebb611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b611bfb565b600190509392505050565b600080828401905083811015611f93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061272b6021913960400191505060405180910390fd5b61208f8160405180606001604052806022815260200161267360229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120e781600554611df290919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c95780820151818401526020810190506121ae565b50505050905090810190601f1680156121f65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061222b612224611bf3565b8484612235565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061274c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126506023913960400191505060405180910390fd5b6123ad816040518060600160405280602681526020016126dd60269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121579092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061244281600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1590919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126956026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820567c6625bfb5d42ffa3ff16e78e5ee8f5d6e1837b70f333d00c15aa802aa10f564736f6c63430005110032
Deployed Bytecode Sourcemap
21557:6891:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28429:8;;;18187:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18187:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18187:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11826:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11826:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11826:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22167:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22167:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22167:40:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27030:264;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27030:264:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10847:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10847:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28170:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28170:120:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25212:364;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25212:364:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25212:364:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28029:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28029:136:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22311:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22311:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22311:40:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19039:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19039:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13163:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13163:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13163:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28295:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28295:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28295:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;26561:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26561:226:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26561:226:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11001:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11001:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11001:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20811:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20811:140:0;;;:::i;:::-;;26906:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26906:119:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26795:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26795:106:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26795:106:0;;;;;;;;;;;;;;;;;20000:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20000:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27730:294;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27730:294:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20366:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20366:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26160:396;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26160:396:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26160:396:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18389:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18389:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18389:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13876:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13876:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13876:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24966:241;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24966:241:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24966:241:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22214:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22214:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22214:43:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27299:423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27299:423:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27299:423:0;;;;;;;;;;;;;;;;;22264:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22264:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22264:40:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22113:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22113:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22113:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;11545:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11545:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11545:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25584:571;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25584:571:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25584:571:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21106:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21106:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21106:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18187:83;18224:13;18257:5;18250:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:83;:::o;11826:152::-;11892:4;11909:39;11918:12;:10;:12::i;:::-;11932:7;11941:6;11909:8;:39::i;:::-;11966:4;11959:11;;11826:152;;;;:::o;22167:40::-;;;;;;;;;;;;;;;;;:::o;27030:264::-;27098:14;27122:13;27136:1;27122:15;;27149:9;27161:1;27149:13;;27145:125;27166:17;:24;;;;27164:1;:26;27145:125;;;27251:1;27213:37;27229:17;27247:1;27229:20;;;;;;;;;;;;;;;;;;;;;;;;;27213:15;:37::i;:::-;:39;27209:52;;;27254:7;;;;;;;27209:52;27192:3;;;;;;;27145:125;;;;27284:5;27277:12;;;27030:264;:::o;10847:91::-;10891:7;10918:12;;10911:19;;10847:91;:::o;28170:120::-;28223:15;28255:30;28271:13;:11;:13::i;:::-;28255:11;;:15;;:30;;;;:::i;:::-;28248:37;;28170:120;:::o;25212:364::-;25301:4;25343:1;25326:19;;:5;:19;;;;25318:28;;;;;;25386:1;25365:23;;:9;:23;;;;25357:32;;;;;;25419:28;25429:5;25436:10;25419:9;:28::i;:::-;25408:7;:39;;25400:48;;;;;;25478:26;25498:5;25478:19;:26::i;:::-;25467:7;:37;;25459:46;;;;;;25523:45;25542:5;25549:9;25560:7;25523:18;:45::i;:::-;25516:52;;25212:364;;;;;:::o;28029:136::-;28087:15;28119:41;28137:22;:20;:22::i;:::-;28119:13;:11;:13::i;:::-;:17;;:41;;;;:::i;:::-;28112:48;;28029:136;:::o;22311:40::-;;;;;;;;;;;;;;;;;:::o;19039:83::-;19080:5;19105:9;;;;;;;;;;;19098:16;;19039:83;:::o;13163:210::-;13243:4;13260:83;13269:12;:10;:12::i;:::-;13283:7;13292:50;13331:10;13292:11;:25;13304:12;:10;:12::i;:::-;13292:25;;;;;;;;;;;;;;;:34;13318:7;13292:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13260:8;:83::i;:::-;13361:4;13354:11;;13163:210;;;;:::o;28295:83::-;28344:26;28350:10;28362:7;28344:5;:26::i;:::-;28295:83;:::o;26561:226::-;26634:15;26659:11;26673:24;26683:13;26673:9;:24::i;:::-;26659:38;;26705:14;26722:30;26738:13;26722:15;:30::i;:::-;26705:47;;26767:15;26775:6;26767:3;:7;;:15;;;;:::i;:::-;26760:22;;;;26561:226;;;:::o;11001:110::-;11058:7;11085:9;:18;11095:7;11085:18;;;;;;;;;;;;;;;;11078:25;;11001:110;;;:::o;20811:140::-;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20910:1;20873:40;;20894:6;;;;;;;;;;;20873:40;;;;;;;;;;;;20941:1;20924:6;;:19;;;;;;;;;;;;;;;;;;20811:140::o;26906:119::-;26965:14;26996:17;:24;;;;26989:31;;26906:119;:::o;26795:106::-;26846:16;26879:17;26872:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26795:106;:::o;20000:79::-;20038:7;20065:6;;;;;;;;;;;20058:13;;20000:79;:::o;27730:294::-;27783:15;27808:11;27821:1;27808:14;;27834:9;27846:1;27834:13;;27830:172;27851:17;:24;;;;27849:1;:26;27830:172;;;27894:20;27917:37;27933:17;27951:1;27933:20;;;;;;;;;;;;;;;;;;;;;;;;;27917:15;:37::i;:::-;27894:60;;27972:21;27980:12;27972:3;:7;;:21;;;;:::i;:::-;27966:27;;27830:172;27877:3;;;;;;;27830:172;;;;28016:3;28009:10;;;27730:294;:::o;20366:94::-;20406:4;20446:6;;;;;;;;;;;20430:22;;:12;:10;:12::i;:::-;:22;;;20423:29;;20366:94;:::o;26160:396::-;26229:15;26254:20;26276:1;26254:23;;26289:9;26301:1;26289:13;;26285:240;26306:8;:23;26315:13;26306:23;;;;;;;;;;;;;;;:30;;;;26304:1;:32;26285:240;;;26364:8;:23;26373:13;26364:23;;;;;;;;;;;;;;;26388:1;26364:26;;;;;;;;;;;;;;;;;;:38;;;26358:3;:44;26355:162;;;26420:12;26435:8;:23;26444:13;26435:23;;;;;;;;;;;;;;;26459:1;26435:26;;;;;;;;;;;;;;;;;;:33;;;26420:48;;26500:4;26484:20;;;;26355:162;;26338:3;;;;;;;26285:240;;;;26539:12;26532:19;;;26160:396;;;:::o;18389:87::-;18428:13;18461:7;18454:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18389:87;:::o;13876:261::-;13961:4;13978:129;13987:12;:10;:12::i;:::-;14001:7;14010:96;14049:15;14010:96;;;;;;;;;;;;;;;;;:11;:25;14022:12;:10;:12::i;:::-;14010:25;;;;;;;;;;;;;;;:34;14036:7;14010:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13978:8;:129::i;:::-;14125:4;14118:11;;13876:261;;;;:::o;24966:241::-;25036:12;25087:1;25066:23;;:9;:23;;;;25058:32;;;;;;25118:31;25138:10;25118:19;:31::i;:::-;25107:7;:42;;25099:51;;;;;;25168:34;25183:9;25194:7;25168:14;:34::i;:::-;25161:41;;24966:241;;;;:::o;22214:43::-;;;;;;;;;;;;;;;;;:::o;27299:423::-;27359:16;27385:22;27424:37;:35;:37::i;:::-;27410:52;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;27410:52:0;;;;27385:77;;27470:9;27482:1;27470:13;;27495:9;27507:1;27495:13;;27491:195;27512:17;:24;;;;27510:1;:26;27491:195;;;27597:1;27559:37;27575:17;27593:1;27575:20;;;;;;;;;;;;;;;;;;;;;;;;;27559:15;:37::i;:::-;:39;27555:123;;;27626:17;27644:1;27626:20;;;;;;;;;;;;;;;;;;;;;;;;;27616:4;27621:1;27616:7;;;;;;;;;;;;;:30;;;;;;;;;;;27662:3;;;;;;;27555:123;27538:3;;;;;;;27491:195;;;;27710:4;27703:11;;;;27299:423;:::o;22264:40::-;;;;;;;;;;;;;;;;;:::o;22113:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11545:134::-;11617:7;11644:11;:18;11656:5;11644:18;;;;;;;;;;;;;;;:27;11663:7;11644:27;;;;;;;;;;;;;;;;11637:34;;11545:134;;;;:::o;25584:571::-;25684:12;25728:13;;;;;;;;;;;25714:27;;:10;:27;;;:61;;;;25759:16;;;;;;;;;;;25745:30;;:10;:30;;;25714:61;:92;;;;25793:13;;;;;;;;;;;25779:27;;:10;:27;;;25714:92;:123;;;;25824:13;;;;;;;;;;;25810:27;;:10;:27;;;25714:123;:148;;;;25855:7;:5;:7::i;:::-;25841:21;;:10;:21;;;25714:148;25706:157;;;;;;25874:45;25890:10;25901:9;25911:7;25874:15;:45::i;:::-;25966:1;25938:8;:19;25947:9;25938:19;;;;;;;;;;;;;;;:26;;;;:29;25934:68;;;25969:17;25992:9;25969:33;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;25969:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25934:68;26014:20;;:::i;:::-;26037:52;;;;;;;;26075:12;26037:52;;;;26054:7;26037:52;;;26014:75;;26094:8;:19;26103:9;26094:19;;;;;;;;;;;;;;;26119:4;26094:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;26094:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26146:4;26139:11;;;25584:571;;;;;:::o;21106:109::-;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21179:28;21198:8;21179:18;:28::i;:::-;21106:109;:::o;9029:98::-;9074:15;9109:10;9102:17;;9029:98;:::o;16807:338::-;16918:1;16901:19;;:5;:19;;;;16893:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16999:1;16980:21;;:7;:21;;;;16972:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17083:6;17053:11;:18;17065:5;17053:18;;;;;;;;;;;;;;;:27;17072:7;17053:27;;;;;;;;;;;;;;;:36;;;;17121:7;17105:32;;17114:5;17105:32;;;17130:6;17105:32;;;;;;;;;;;;;;;;;;16807:338;;;:::o;4109:136::-;4167:7;4194:43;4198:1;4201;4194:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4187:50;;4109:136;;;;:::o;12450:304::-;12539:4;12556:36;12566:6;12574:9;12585:6;12556:9;:36::i;:::-;12603:121;12612:6;12620:12;:10;:12::i;:::-;12634:89;12672:6;12634:89;;;;;;;;;;;;;;;;;:11;:19;12646:6;12634:19;;;;;;;;;;;;;;;:33;12654:12;:10;:12::i;:::-;12634:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12603:8;:121::i;:::-;12742:4;12735:11;;12450:304;;;;;:::o;3653:181::-;3711:7;3731:9;3747:1;3743;:5;3731:17;;3772:1;3767;:6;;3759:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3825:1;3818:8;;;3653:181;;;;:::o;16019:348::-;16114:1;16095:21;;:7;:21;;;;16087:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16188:68;16211:6;16188:68;;;;;;;;;;;;;;;;;:9;:18;16198:7;16188:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16167:9;:18;16177:7;16167:18;;;;;;;;;;;;;;;:89;;;;16282:24;16299:6;16282:12;;:16;;:24;;;;:::i;:::-;16267:12;:39;;;;16348:1;16322:37;;16331:7;16322:37;;;16352:6;16322:37;;;;;;;;;;;;;;;;;;16019:348;;:::o;4582:192::-;4668:7;4701:1;4696;:6;;4704:12;4688:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4688:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4728:9;4744:1;4740;:5;4728:17;;4765:1;4758:8;;;4582:192;;;;;:::o;11324:158::-;11393:4;11410:42;11420:12;:10;:12::i;:::-;11434:9;11445:6;11410:9;:42::i;:::-;11470:4;11463:11;;11324:158;;;;:::o;14627:471::-;14743:1;14725:20;;:6;:20;;;;14717:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:1;14806:23;;:9;:23;;;;14798:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14902;14924:6;14902:71;;;;;;;;;;;;;;;;;:9;:17;14912:6;14902:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14882:9;:17;14892:6;14882:17;;;;;;;;;;;;;;;:91;;;;15007:32;15032:6;15007:9;:20;15017:9;15007:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14984:9;:20;14994:9;14984:20;;;;;;;;;;;;;;;:55;;;;15072:9;15055:35;;15064:6;15055:35;;;15083:6;15055:35;;;;;;;;;;;;;;;;;;14627:471;;;:::o;21321:229::-;21415:1;21395:22;;:8;:22;;;;21387:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21505:8;21476:38;;21497:6;;;;;;;;;;;21476:38;;;;;;;;;;;;21534:8;21525:6;;:17;;;;;;;;;;;;;;;;;;21321:229;:::o;21557:6891::-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://567c6625bfb5d42ffa3ff16e78e5ee8f5d6e1837b70f333d00c15aa802aa10f5
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.