Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Cross-Chain
Overview
Max Total Supply
1,000,000,000 DNS
Holders
2,481 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DNSToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-04 */ // produced by the Solididy File Flattener (c) Created By BitDNS.vip // contact : BitDNS.vip // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /* * @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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * 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(_owner == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } /** * @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 {ERC20PresetMinterPauser}. * * 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; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { require((_allowances[_msgSender()][spender] == 0) || (amount == 0), "ERC20: use increaseAllowance or decreaseAllowance instead"); _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 virtual override returns (bool) { _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); _transfer(sender, recipient, amount); 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 virtual { 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using SafeMath for uint256; using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping (address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _currentSnapshotId.current(); emit Snapshot(currentId); return currentId; } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view returns(uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // _transfer, _mint and _burn are the only functions where the balances are modified, so it is there that the // snapshots are updated. Note that the update happens _before_ the balance change, with the pre-modified value. // The same is true for the total supply and _mint and _burn. function _transfer(address from, address to, uint256 value) internal virtual override { _updateAccountSnapshot(from); _updateAccountSnapshot(to); super._transfer(from, to, value); } function _mint(address account, uint256 value) internal virtual override { _updateAccountSnapshot(account); _updateTotalSupplySnapshot(); super._mint(account, value); } function _burn(address account, uint256 value) internal virtual override { _updateAccountSnapshot(account); _updateTotalSupplySnapshot(); super._burn(account, value); } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); // solhint-disable-next-line max-line-length require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _currentSnapshotId.current(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } contract DNSToken is Context, Ownable, ERC20Snapshot, ERC20Burnable { using SafeMath for uint256; using Address for address; // Total Supply is 1 Billion uint256 constant TOTAL_SUPPLY = 1000 * 1000 * 1000 ether; uint256 constant MINE_PERCENT = 55; // Proportion of miners: 55% uint256 constant FUND_PERCENT = 15; // Proportion of foundation: 15% uint256 constant TEAM_PERCENT = 10; // Proportion of team: 10% uint256 constant RELEASE_TIMES = 20; // Release times for foundation and team's tokens uint256 constant RELEASE_CYCLE = 365.25 days / 4; // Release cycle: 1 quarter // 1% Total supply for caculating uint256 constant TOTAL_SUPPLY_PERCENT = TOTAL_SUPPLY / 100; // Amount of foundation releasing tokens Quarterly uint256 constant FUND_AMOUNT_QUARTER = FUND_PERCENT * TOTAL_SUPPLY_PERCENT / RELEASE_TIMES; // Amount of team releasing tokens Quarterly uint256 constant TEAM_AMOUNT_QUARTER = TEAM_PERCENT * TOTAL_SUPPLY_PERCENT / RELEASE_TIMES; address private _fund_account; // Account of foundation used to release token address private _team_account; // Account of team used to release token uint256 private _release_time; // Release time of next quater uint256 private _release_count; // Release count constructor() public ERC20("BitDNS", "DNS") { _release_count = 0; _release_time = block.timestamp.add(RELEASE_CYCLE); // Lock 80% in the contract, include the all tokens of miner, fundaction and team uint256 lock = MINE_PERCENT + FUND_PERCENT + TEAM_PERCENT; _mint(address(this), lock.mul(TOTAL_SUPPLY_PERCENT)); _mint(msg.sender, (100 - lock).mul(TOTAL_SUPPLY_PERCENT)); } /** * @notice Transfers tokens held by timelock to foundation and team quarterly. */ function release() public onlyOwner { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= _release_time, "DNSToken: current time is before next release time"); require(_release_count < releaseMaxCount(), "DNSToken: release times reached max count"); require(_fund_account != address(0), "DNSToken: fund account can't be a zero address"); require(_team_account != address(0), "DNSToken: team account can't be a zero address"); // transter address self = address(this); uint256 amount = balanceOf(self); require(amount > FUND_AMOUNT_QUARTER + TEAM_AMOUNT_QUARTER, "DNSToken: no enough tokens to release"); _transfer(self, _fund_account, FUND_AMOUNT_QUARTER); _transfer(self, _team_account, TEAM_AMOUNT_QUARTER); // release completed, caculate for next quarter _release_count = _release_count.add(1); _release_time = block.timestamp.add(releaseCycle()); } /** * @notice Get next release time. */ function releaseTime() public view returns (uint256) { return _release_time; } /** * @notice Get Each release cycle with ms or 0.001s. */ function releaseCycle() public pure returns (uint256) { return RELEASE_CYCLE; } /** * @notice Get maximum release count. */ function releaseMaxCount() public pure returns (uint256) { return RELEASE_TIMES; } /** * @notice Get completed release count. */ function releaseCount() public view returns (uint256) { return _release_count; } function setFundAccount(address fund_account) public onlyOwner { require(fund_account != address(0), "DNSToken: fund account can't be a zero address"); _fund_account = fund_account; } function setTeamAccount(address team_account) public onlyOwner { require(team_account != address(0), "DNSToken: team account can't be a zero address"); _team_account = team_account; } // Overrides function _transfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Snapshot) { super._transfer(from, to, amount); } function _mint(address account, uint256 amount) internal virtual override(ERC20, ERC20Snapshot) { super._mint(account, amount); } function _burn(address account, uint256 value) internal virtual override(ERC20, ERC20Snapshot) { super._burn(account, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"releaseMaxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"releaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fund_account","type":"address"}],"name":"setFundAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"team_account","type":"address"}],"name":"setTeamAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f426974444e5300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444e5300000000000000000000000000000000000000000000000000000000008152506000620000906200024360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600490805190602001906200014692919062000756565b5080600590805190602001906200015f92919062000756565b506012600660006101000a81548160ff021916908360ff16021790555050506000600e81905550620001a3627861f8426200024b60201b62001a801790919060201c565b600d819055506000600a600f603701019050620001f730620001eb60646b033b2e3c9fd0803ce800000081620001d557fe5b0484620002d460201b62001b081790919060201c565b6200035f60201b60201c565b6200023c336200023060646b033b2e3c9fd0803ce8000000816200021757fe5b0484606403620002d460201b62001b081790919060201c565b6200035f60201b60201c565b50620007fc565b600033905090565b600080828401905083811015620002ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415620002e9576000905062000359565b6000828402905082848281620002fb57fe5b041462000354576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620033ed6021913960400191505060405180910390fd5b809150505b92915050565b6200037682826200037a60201b62001b8e1760201c565b5050565b6200038b82620003b660201b60201c565b6200039b6200041960201b60201c565b620003b282826200043d60201b62001bad1760201c565b5050565b62000416600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200040a836200061d60201b60201c565b6200066660201b60201c565b50565b6200043b60086200042f620006f960201b60201c565b6200066660201b60201c565b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620004f5600083836200070360201b60201c565b62000511816003546200024b60201b62001a801790919060201c565b6003819055506200057081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200024b60201b62001a801790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006200067f600a6200070860201b62001d761760201c565b90508062000696846000016200071660201b60201c565b1015620006f45782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600354905090565b505050565b600081600001549050919050565b600080828054905014156200072f576000905062000751565b816001838054905003815481106200074357fe5b906000526020600020015490505b919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200079957805160ff1916838001178555620007ca565b82800160010185558215620007ca579182015b82811115620007c9578251825591602001919060010190620007ac565b5b509050620007d99190620007dd565b5090565b5b80821115620007f8576000816000905550600101620007de565b5090565b612be1806200080c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063981b24d011610097578063b8d08db211610071578063b8d08db214610755578063b91d400114610773578063dd62ed3e14610791578063f2fde38b1461080957610173565b8063981b24d01461064b578063a457c2d71461068d578063a9059cbb146106f157610173565b8063715018a61461051457806373a47f051461051e57806379cc67901461053c57806386d1a69f1461058a5780638da5cb5b1461059457806395d89b41146105c857610173565b80633950935111610130578063395093511461036657806342966c68146103ca5780634ee2cd7e146103f857806350aa48741461045a5780636b1bfd331461047857806370a08231146104bc57610173565b806306fdde0314610178578063095ea7b3146101fb5780630b97ce1c1461025f57806318160ddd146102a357806323b872dd146102c1578063313ce56714610345575b600080fd5b61018061084d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ef565b60405180821515815260200191505060405180910390f35b6102a16004803603602081101561027557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109f3565b005b6102ab610b85565b6040518082815260200191505060405180910390f35b61032d600480360360608110156102d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b8f565b60405180821515815260200191505060405180910390f35b61034d610c68565b604051808260ff16815260200191505060405180910390f35b6103b26004803603604081101561037c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7f565b60405180821515815260200191505060405180910390f35b6103f6600480360360208110156103e057600080fd5b8101908080359060200190929190505050610d32565b005b6104446004803603604081101561040e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d46565b6040518082815260200191505060405180910390f35b610462610db6565b6040518082815260200191505060405180910390f35b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbf565b005b6104fe600480360360208110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f51565b6040518082815260200191505060405180910390f35b61051c610f9a565b005b610526611120565b6040518082815260200191505060405180910390f35b6105886004803603604081101561055257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061112b565b005b61059261118d565b005b61059c6115f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105d061161c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106105780820151818401526020810190506105f5565b50505050905090810190601f16801561063d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106776004803603602081101561066157600080fd5b81019080803590602001909291905050506116be565b6040518082815260200191505060405180910390f35b6106d9600480360360408110156106a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ef565b60405180821515815260200191505060405180910390f35b61073d6004803603604081101561070757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117bc565b60405180821515815260200191505060405180910390f35b61075d6117da565b6040518082815260200191505060405180910390f35b61077b6117e4565b6040518082815260200191505060405180910390f35b6107f3600480360360408110156107a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ee565b6040518082815260200191505060405180910390f35b61084b6004803603602081101561081f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611875565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b600080600260006108fe611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414806109825750600082145b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806129e96039913960400191505060405180910390fd5b6109e96109e2611d84565b8484611d8c565b6001905092915050565b6109fb611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612b03602e913960400191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600354905090565b6000610c5284610b9d611d84565b610c4d85604051806060016040528060288152602001612a4360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c03611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b611d8c565b610c5d848484612043565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610d28610c8c611d84565b84610d238560026000610c9d611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b611d8c565b6001905092915050565b610d43610d3d611d84565b82612053565b50565b6000806000610d9384600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612061565b9150915081610daa57610da585610f51565b610dac565b805b9250505092915050565b60006014905090565b610dc7611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612ad5602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa2611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000627861f8905090565b600061116a82604051806060016040528060248152602001612a6b6024913961115b86611156611d84565b6117ee565b611f839092919063ffffffff16565b905061117e83611178611d84565b83611d8c565b6111888383612053565b505050565b611195611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d544210156112b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612b7a6032913960400191505060405180910390fd5b6112b8610db6565b600e5410611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806129c06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612ad5602e913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612b03602e913960400191505060405180910390fd5b6000309050600061147182610f51565b9050601460646b033b2e3c9fd0803ce80000008161148b57fe5b04600a028161149657fe5b04601460646b033b2e3c9fd0803ce8000000816114af57fe5b04600f02816114ba57fe5b04018111611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061299b6025913960400191505060405180910390fd5b61156382600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601460646b033b2e3c9fd0803ce80000008161155257fe5b04600f028161155d57fe5b04612043565b6115b382600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601460646b033b2e3c9fd0803ce8000000816115a257fe5b04600a02816115ad57fe5b04612043565b6115c96001600e54611a8090919063ffffffff16565b600e819055506115e96115da611120565b42611a8090919063ffffffff16565b600d819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60008060006116ce846008612061565b91509150816116e4576116df610b85565b6116e6565b805b92505050919050565b60006117b26116fc611d84565b846117ad85604051806060016040528060258152602001612b556025913960026000611726611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b611d8c565b6001905092915050565b60006117d06117c9611d84565b8484612043565b6001905092915050565b6000600e54905090565b6000600d54905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187d611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061292d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611b1b5760009050611b88565b6000828402905082848281611b2c57fe5b0414611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a226021913960400191505060405180910390fd5b809150505b92915050565b611b97826121b8565b611b9f61220b565b611ba98282611bad565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c5c6000838361221f565b611c7181600354611a8090919063ffffffff16565b600381905550611cc981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612b316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129536022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000838311158290612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff5578082015181840152602081019050611fda565b50505050905090810190601f1680156120225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61204e838383612224565b505050565b61205d8282612246565b5050565b600080600084116120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4552433230536e617073686f743a20696420697320300000000000000000000081525060200191505060405180910390fd5b6120e4600a611d76565b841115612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000081525060200191505060405180910390fd5b6000612171858560000161226590919063ffffffff16565b9050836000018054905081141561218f5760008092509250506121b1565b60018460010182815481106121a057fe5b906000526020600020015492509250505b9250929050565b612208600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061220383610f51565b612316565b50565b61221d6008612218610b85565b612316565b565b505050565b61222d836121b8565b612236826121b8565b612241838383612393565b505050565b61224f826121b8565b61225761220b565b6122618282612658565b5050565b6000808380549050141561227c5760009050612310565b600080848054905090505b808210156122d057600061229b838361281e565b9050848682815481106122aa57fe5b906000526020600020015411156122c3578091506122ca565b6001810192505b50612287565b6000821180156122f85750838560018403815481106122eb57fe5b9060005260206000200154145b1561230a576001820392505050612310565b81925050505b92915050565b6000612322600a611d76565b90508061233184600001612860565b101561238e5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612ab06025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128e86023913960400191505060405180910390fd5b6124aa83838361221f565b6125168160405180606001604052806026815260200161297560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ab81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a8f6021913960400191505060405180910390fd5b6126ea8260008361221f565b6127568160405180606001604052806022815260200161290b60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127ae8160035461289d90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600280838161282b57fe5b066002858161283657fe5b06018161283f57fe5b046002838161284a57fe5b046002858161285557fe5b040101905092915050565b600080828054905014156128775760009050612898565b8160018380549050038154811061288a57fe5b906000526020600020015490505b919050565b60006128df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f83565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365444e53546f6b656e3a206e6f20656e6f75676820746f6b656e7320746f2072656c65617365444e53546f6b656e3a2072656c656173652074696d65732072656163686564206d617820636f756e7445524332303a2075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e7374656164536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373444e53546f6b656e3a2066756e64206163636f756e742063616e27742062652061207a65726f2061646472657373444e53546f6b656e3a207465616d206163636f756e742063616e27742062652061207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f444e53546f6b656e3a2063757272656e742074696d65206973206265666f7265206e6578742072656c656173652074696d65a26469706673582212203c221426eb6ed5798f04003af2ca8114e1fa76c73ba5daaac5d46137be8f422164736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063981b24d011610097578063b8d08db211610071578063b8d08db214610755578063b91d400114610773578063dd62ed3e14610791578063f2fde38b1461080957610173565b8063981b24d01461064b578063a457c2d71461068d578063a9059cbb146106f157610173565b8063715018a61461051457806373a47f051461051e57806379cc67901461053c57806386d1a69f1461058a5780638da5cb5b1461059457806395d89b41146105c857610173565b80633950935111610130578063395093511461036657806342966c68146103ca5780634ee2cd7e146103f857806350aa48741461045a5780636b1bfd331461047857806370a08231146104bc57610173565b806306fdde0314610178578063095ea7b3146101fb5780630b97ce1c1461025f57806318160ddd146102a357806323b872dd146102c1578063313ce56714610345575b600080fd5b61018061084d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ef565b60405180821515815260200191505060405180910390f35b6102a16004803603602081101561027557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109f3565b005b6102ab610b85565b6040518082815260200191505060405180910390f35b61032d600480360360608110156102d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b8f565b60405180821515815260200191505060405180910390f35b61034d610c68565b604051808260ff16815260200191505060405180910390f35b6103b26004803603604081101561037c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7f565b60405180821515815260200191505060405180910390f35b6103f6600480360360208110156103e057600080fd5b8101908080359060200190929190505050610d32565b005b6104446004803603604081101561040e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d46565b6040518082815260200191505060405180910390f35b610462610db6565b6040518082815260200191505060405180910390f35b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbf565b005b6104fe600480360360208110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f51565b6040518082815260200191505060405180910390f35b61051c610f9a565b005b610526611120565b6040518082815260200191505060405180910390f35b6105886004803603604081101561055257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061112b565b005b61059261118d565b005b61059c6115f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105d061161c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106105780820151818401526020810190506105f5565b50505050905090810190601f16801561063d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106776004803603602081101561066157600080fd5b81019080803590602001909291905050506116be565b6040518082815260200191505060405180910390f35b6106d9600480360360408110156106a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ef565b60405180821515815260200191505060405180910390f35b61073d6004803603604081101561070757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117bc565b60405180821515815260200191505060405180910390f35b61075d6117da565b6040518082815260200191505060405180910390f35b61077b6117e4565b6040518082815260200191505060405180910390f35b6107f3600480360360408110156107a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ee565b6040518082815260200191505060405180910390f35b61084b6004803603602081101561081f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611875565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b600080600260006108fe611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414806109825750600082145b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806129e96039913960400191505060405180910390fd5b6109e96109e2611d84565b8484611d8c565b6001905092915050565b6109fb611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612b03602e913960400191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600354905090565b6000610c5284610b9d611d84565b610c4d85604051806060016040528060288152602001612a4360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c03611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b611d8c565b610c5d848484612043565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610d28610c8c611d84565b84610d238560026000610c9d611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b611d8c565b6001905092915050565b610d43610d3d611d84565b82612053565b50565b6000806000610d9384600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612061565b9150915081610daa57610da585610f51565b610dac565b805b9250505092915050565b60006014905090565b610dc7611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612ad5602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa2611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000627861f8905090565b600061116a82604051806060016040528060248152602001612a6b6024913961115b86611156611d84565b6117ee565b611f839092919063ffffffff16565b905061117e83611178611d84565b83611d8c565b6111888383612053565b505050565b611195611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d544210156112b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612b7a6032913960400191505060405180910390fd5b6112b8610db6565b600e5410611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806129c06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612ad5602e913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612b03602e913960400191505060405180910390fd5b6000309050600061147182610f51565b9050601460646b033b2e3c9fd0803ce80000008161148b57fe5b04600a028161149657fe5b04601460646b033b2e3c9fd0803ce8000000816114af57fe5b04600f02816114ba57fe5b04018111611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061299b6025913960400191505060405180910390fd5b61156382600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601460646b033b2e3c9fd0803ce80000008161155257fe5b04600f028161155d57fe5b04612043565b6115b382600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601460646b033b2e3c9fd0803ce8000000816115a257fe5b04600a02816115ad57fe5b04612043565b6115c96001600e54611a8090919063ffffffff16565b600e819055506115e96115da611120565b42611a8090919063ffffffff16565b600d819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60008060006116ce846008612061565b91509150816116e4576116df610b85565b6116e6565b805b92505050919050565b60006117b26116fc611d84565b846117ad85604051806060016040528060258152602001612b556025913960026000611726611d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b611d8c565b6001905092915050565b60006117d06117c9611d84565b8484612043565b6001905092915050565b6000600e54905090565b6000600d54905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187d611d84565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061292d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611b1b5760009050611b88565b6000828402905082848281611b2c57fe5b0414611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a226021913960400191505060405180910390fd5b809150505b92915050565b611b97826121b8565b611b9f61220b565b611ba98282611bad565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c5c6000838361221f565b611c7181600354611a8090919063ffffffff16565b600381905550611cc981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612b316024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129536022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000838311158290612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff5578082015181840152602081019050611fda565b50505050905090810190601f1680156120225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61204e838383612224565b505050565b61205d8282612246565b5050565b600080600084116120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4552433230536e617073686f743a20696420697320300000000000000000000081525060200191505060405180910390fd5b6120e4600a611d76565b841115612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000081525060200191505060405180910390fd5b6000612171858560000161226590919063ffffffff16565b9050836000018054905081141561218f5760008092509250506121b1565b60018460010182815481106121a057fe5b906000526020600020015492509250505b9250929050565b612208600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061220383610f51565b612316565b50565b61221d6008612218610b85565b612316565b565b505050565b61222d836121b8565b612236826121b8565b612241838383612393565b505050565b61224f826121b8565b61225761220b565b6122618282612658565b5050565b6000808380549050141561227c5760009050612310565b600080848054905090505b808210156122d057600061229b838361281e565b9050848682815481106122aa57fe5b906000526020600020015411156122c3578091506122ca565b6001810192505b50612287565b6000821180156122f85750838560018403815481106122eb57fe5b9060005260206000200154145b1561230a576001820392505050612310565b81925050505b92915050565b6000612322600a611d76565b90508061233184600001612860565b101561238e5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612ab06025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128e86023913960400191505060405180910390fd5b6124aa83838361221f565b6125168160405180606001604052806026815260200161297560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ab81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a8090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a8f6021913960400191505060405180910390fd5b6126ea8260008361221f565b6127568160405180606001604052806022815260200161290b60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f839092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127ae8160035461289d90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600280838161282b57fe5b066002858161283657fe5b06018161283f57fe5b046002838161284a57fe5b046002858161285557fe5b040101905092915050565b600080828054905014156128775760009050612898565b8160018380549050038154811061288a57fe5b906000526020600020015490505b919050565b60006128df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f83565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365444e53546f6b656e3a206e6f20656e6f75676820746f6b656e7320746f2072656c65617365444e53546f6b656e3a2072656c656173652074696d65732072656163686564206d617820636f756e7445524332303a2075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e7374656164536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373444e53546f6b656e3a2066756e64206163636f756e742063616e27742062652061207a65726f2061646472657373444e53546f6b656e3a207465616d206163636f756e742063616e27742062652061207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f444e53546f6b656e3a2063757272656e742074696d65206973206265666f7265206e6578742072656c656173652074696d65a26469706673582212203c221426eb6ed5798f04003af2ca8114e1fa76c73ba5daaac5d46137be8f422164736f6c634300060c0033
Deployed Bytecode Sourcemap
41293:4678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23004:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25110:308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45275:206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24079:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25892:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23931:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26622:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40579:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36138:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44792:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45061:206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24242:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18919:148;;;:::i;:::-;;44630:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40989:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43381:1008;;;:::i;:::-;;18277:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23206:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500:225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27343:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24574:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44959:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44454:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24812:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19222:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23004:83;23041:13;23074:5;23067:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23004:83;:::o;25110:308::-;25193:4;25257:1;25219:11;:25;25231:12;:10;:12::i;:::-;25219:25;;;;;;;;;;;;;;;:34;25245:7;25219:34;;;;;;;;;;;;;;;;:39;25218:58;;;;25274:1;25264:6;:11;25218:58;25210:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25349:39;25358:12;:10;:12::i;:::-;25372:7;25381:6;25349:8;:39::i;:::-;25406:4;25399:11;;25110:308;;;;:::o;45275:206::-;18499:12;:10;:12::i;:::-;18489:22;;:6;;;;;;;;;;:22;;;18481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45381:1:::1;45357:26;;:12;:26;;;;45349:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45461:12;45445:13;;:28;;;;;;;;;;;;;;;;;;45275:206:::0;:::o;24079:100::-;24132:7;24159:12;;24152:19;;24079:100;:::o;25892:321::-;25998:4;26015:121;26024:6;26032:12;:10;:12::i;:::-;26046:89;26084:6;26046:89;;;;;;;;;;;;;;;;;:11;:19;26058:6;26046:19;;;;;;;;;;;;;;;:33;26066:12;:10;:12::i;:::-;26046:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26015:8;:121::i;:::-;26147:36;26157:6;26165:9;26176:6;26147:9;:36::i;:::-;26201:4;26194:11;;25892:321;;;;;:::o;23931:83::-;23972:5;23997:9;;;;;;;;;;;23990:16;;23931:83;:::o;26622:218::-;26710:4;26727:83;26736:12;:10;:12::i;:::-;26750:7;26759:50;26798:10;26759:11;:25;26771:12;:10;:12::i;:::-;26759:25;;;;;;;;;;;;;;;:34;26785:7;26759:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26727:8;:83::i;:::-;26828:4;26821:11;;26622:218;;;;:::o;40579:91::-;40635:27;40641:12;:10;:12::i;:::-;40655:6;40635:5;:27::i;:::-;40579:91;:::o;36138:258::-;36217:7;36238:16;36256:13;36273:55;36282:10;36294:24;:33;36319:7;36294:33;;;;;;;;;;;;;;;36273:8;:55::i;:::-;36237:91;;;;36348:11;:40;;36370:18;36380:7;36370:9;:18::i;:::-;36348:40;;;36362:5;36348:40;36341:47;;;;36138:258;;;;:::o;44792:96::-;44840:7;41839:2;44860:20;;44792:96;:::o;45061:206::-;18499:12;:10;:12::i;:::-;18489:22;;:6;;;;;;;;;;:22;;;18481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45167:1:::1;45143:26;;:12;:26;;;;45135:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45247:12;45231:13;;:28;;;;;;;;;;;;;;;;;;45061:206:::0;:::o;24242:119::-;24308:7;24335:9;:18;24345:7;24335:18;;;;;;;;;;;;;;;;24328:25;;24242:119;;;:::o;18919:148::-;18499:12;:10;:12::i;:::-;18489:22;;:6;;;;;;;;;;:22;;;18481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19026:1:::1;18989:40;;19010:6;::::0;::::1;;;;;;;;18989:40;;;;;;;;;;;;19057:1;19040:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;18919:148::o:0;44630:93::-;44675:7;41948:15;44695:20;;44630:93;:::o;40989:295::-;41066:26;41095:84;41132:6;41095:84;;;;;;;;;;;;;;;;;:32;41105:7;41114:12;:10;:12::i;:::-;41095:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;41066:113;;41192:51;41201:7;41210:12;:10;:12::i;:::-;41224:18;41192:8;:51::i;:::-;41254:22;41260:7;41269:6;41254:5;:22::i;:::-;40989:295;;;:::o;43381:1008::-;18499:12;:10;:12::i;:::-;18489:22;;:6;;;;;;;;;;:22;;;18481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43510:13:::1;;43491:15;:32;;43483:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43614:17;:15;:17::i;:::-;43597:14;;:34;43589:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43721:1;43696:27;;:13;;;;;;;;;;;:27;;;;43688:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43818:1;43793:27;;:13;;;;;;;;;;;:27;;;;43785:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43905:12;43928:4;43905:28;;43944:14;43961:15;43971:4;43961:9;:15::i;:::-;43944:32;;41839:2;42103:3;41503:24;42088:18;;;;;;41753:2;42378:35;:51;;;;;;41839:2;42103:3;41503:24;42088:18;;;;;;41659:2;42211:35;:51;;;;;;44004:41;43995:6;:50;43987:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44098:51;44108:4;44114:13;;;;;;;;;;;41839:2;42103:3;41503:24;42088:18;;;;;;41659:2;42211:35;:51;;;;;;44098:9;:51::i;:::-;44160;44170:4;44176:13;;;;;;;;;;;41839:2;42103:3;41503:24;42088:18;;;;;;41753:2;42378:35;:51;;;;;;44160:9;:51::i;:::-;44298:21;44317:1;44298:14;;:18;;:21;;;;:::i;:::-;44281:14;:38;;;;44346:35;44366:14;:12;:14::i;:::-;44346:15;:19;;:35;;;;:::i;:::-;44330:13;:51;;;;18559:1;;43381:1008::o:0;18277:79::-;18315:7;18342:6;;;;;;;;;;;18335:13;;18277:79;:::o;23206:87::-;23245:13;23278:7;23271:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23206:87;:::o;36500:225::-;36563:7;36584:16;36602:13;36619:43;36628:10;36640:21;36619:8;:43::i;:::-;36583:79;;;;36682:11;:35;;36704:13;:11;:13::i;:::-;36682:35;;;36696:5;36682:35;36675:42;;;;36500:225;;;:::o;27343:269::-;27436:4;27453:129;27462:12;:10;:12::i;:::-;27476:7;27485:96;27524:15;27485:96;;;;;;;;;;;;;;;;;:11;:25;27497:12;:10;:12::i;:::-;27485:25;;;;;;;;;;;;;;;:34;27511:7;27485:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27453:8;:129::i;:::-;27600:4;27593:11;;27343:269;;;;:::o;24574:175::-;24660:4;24677:42;24687:12;:10;:12::i;:::-;24701:9;24712:6;24677:9;:42::i;:::-;24737:4;24730:11;;24574:175;;;;:::o;44959:94::-;45004:7;45031:14;;45024:21;;44959:94;:::o;44454:92::-;44498:7;44525:13;;44518:20;;44454:92;:::o;24812:151::-;24901:7;24928:11;:18;24940:5;24928:18;;;;;;;;;;;;;;;:27;24947:7;24928:27;;;;;;;;;;;;;;;;24921:34;;24812:151;;;;:::o;19222:244::-;18499:12;:10;:12::i;:::-;18489:22;;:6;;;;;;;;;;:22;;;18481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19331:1:::1;19311:22;;:8;:22;;;;19303:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19421:8;19392:38;;19413:6;::::0;::::1;;;;;;;;19392:38;;;;;;;;;;;;19450:8;19441:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19222:244:::0;:::o;998:181::-;1056:7;1076:9;1092:1;1088;:5;1076:17;;1117:1;1112;:6;;1104:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170:1;1163:8;;;998:181;;;;:::o;2352:471::-;2410:7;2660:1;2655;:6;2651:47;;;2685:1;2678:8;;;;2651:47;2710:9;2726:1;2722;:5;2710:17;;2755:1;2750;2746;:5;;;;;;:10;2738:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2814:1;2807:8;;;2352:471;;;;;:::o;37256:202::-;37340:31;37363:7;37340:22;:31::i;:::-;37382:28;:26;:28::i;:::-;37423:27;37435:7;37444:5;37423:11;:27::i;:::-;37256:202;;:::o;28922:378::-;29025:1;29006:21;;:7;:21;;;;28998:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29076:49;29105:1;29109:7;29118:6;29076:20;:49::i;:::-;29153:24;29170:6;29153:12;;:16;;:24;;;;:::i;:::-;29138:12;:39;;;;29209:30;29232:6;29209:9;:18;29219:7;29209:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29188:9;:18;29198:7;29188:18;;;;;;;;;;;;;;;:51;;;;29276:7;29255:37;;29272:1;29255:37;;;29285:6;29255:37;;;;;;;;;;;;;;;;;;28922:378;;:::o;16841:114::-;16906:7;16933;:14;;;16926:21;;16841:114;;;:::o;11967:106::-;12020:15;12055:10;12048:17;;11967:106;:::o;30490:346::-;30609:1;30592:19;;:5;:19;;;;30584:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30690:1;30671:21;;:7;:21;;;;30663:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30774:6;30744:11;:18;30756:5;30744:18;;;;;;;;;;;;;;;:27;30763:7;30744:27;;;;;;;;;;;;;;;:36;;;;30812:7;30796:32;;30805:5;30796:32;;;30821:6;30796:32;;;;;;;;;;;;;;;;;;30490:346;;;:::o;1901:192::-;1987:7;2020:1;2015;:6;;2023:12;2007:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2047:9;2063:1;2059;:5;2047:17;;2084:1;2077:8;;;1901:192;;;;;:::o;45507:161::-;45627:33;45643:4;45649:2;45653:6;45627:15;:33::i;:::-;45507:161;;;:::o;45827:141::-;45933:27;45945:7;45954:5;45933:11;:27::i;:::-;45827:141;;:::o;37676:1692::-;37774:4;37780:7;37826:1;37813:10;:14;37805:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37941:28;:18;:26;:28::i;:::-;37927:10;:42;;37919:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39142:13;39158:40;39187:10;39158:9;:13;;:28;;:40;;;;:::i;:::-;39142:56;;39224:9;:13;;:20;;;;39215:5;:29;39211:150;;;39269:5;39276:1;39261:17;;;;;;;39211:150;39319:4;39325:9;:16;;39342:5;39325:23;;;;;;;;;;;;;;;;39311:38;;;;;37676:1692;;;;;;:::o;39376:146::-;39444:70;39460:24;:33;39485:7;39460:33;;;;;;;;;;;;;;;39495:18;39505:7;39495:9;:18::i;:::-;39444:15;:70::i;:::-;39376:146;:::o;39530:118::-;39587:53;39603:21;39626:13;:11;:13::i;:::-;39587:15;:53::i;:::-;39530:118::o;31861:92::-;;;;:::o;37033:215::-;37130:28;37153:4;37130:22;:28::i;:::-;37169:26;37192:2;37169:22;:26::i;:::-;37208:32;37224:4;37230:2;37234:5;37208:15;:32::i;:::-;37033:215;;;:::o;37466:202::-;37550:31;37573:7;37550:22;:31::i;:::-;37592:28;:26;:28::i;:::-;37633:27;37645:7;37654:5;37633:11;:27::i;:::-;37466:202;;:::o;19984:918::-;20073:7;20113:1;20097:5;:12;;;;:17;20093:58;;;20138:1;20131:8;;;;20093:58;20163:11;20189:12;20204:5;:12;;;;20189:27;;20229:424;20242:4;20236:3;:10;20229:424;;;20263:11;20277:23;20290:3;20295:4;20277:12;:23::i;:::-;20263:37;;20534:7;20521:5;20527:3;20521:10;;;;;;;;;;;;;;;;:20;20517:125;;;20569:3;20562:10;;20517:125;;;20625:1;20619:3;:7;20613:13;;20517:125;20229:424;;;;20779:1;20773:3;:7;:36;;;;;20802:7;20784:5;20796:1;20790:3;:7;20784:14;;;;;;;;;;;;;;;;:25;20773:36;20769:126;;;20839:1;20833:3;:7;20826:14;;;;;;20769:126;20880:3;20873:10;;;;19984:918;;;;;:::o;39656:315::-;39751:17;39771:28;:18;:26;:28::i;:::-;39751:48;;39847:9;39814:30;39830:9;:13;;39814:15;:30::i;:::-;:42;39810:154;;;39873:9;:13;;39892:9;39873:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39917:9;:16;;39939:12;39917:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39810:154;39656:315;;;:::o;28102:539::-;28226:1;28208:20;;:6;:20;;;;28200:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28310:1;28289:23;;:9;:23;;;;28281:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28365:47;28386:6;28394:9;28405:6;28365:20;:47::i;:::-;28445:71;28467:6;28445:71;;;;;;;;;;;;;;;;;:9;:17;28455:6;28445:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28425:9;:17;28435:6;28425:17;;;;;;;;;;;;;;;:91;;;;28550:32;28575:6;28550:9;:20;28560:9;28550:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28527:9;:20;28537:9;28527:20;;;;;;;;;;;;;;;:55;;;;28615:9;28598:35;;28607:6;28598:35;;;28626:6;28598:35;;;;;;;;;;;;;;;;;;28102:539;;;:::o;29632:418::-;29735:1;29716:21;;:7;:21;;;;29708:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29788:49;29809:7;29826:1;29830:6;29788:20;:49::i;:::-;29871:68;29894:6;29871:68;;;;;;;;;;;;;;;;;:9;:18;29881:7;29871:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;29850:9;:18;29860:7;29850:18;;;;;;;;;;;;;;;:89;;;;29965:24;29982:6;29965:12;;:16;;:24;;;;:::i;:::-;29950:12;:39;;;;30031:1;30005:37;;30014:7;30005:37;;;30035:6;30005:37;;;;;;;;;;;;;;;;;;29632:418;;:::o;12895:193::-;12957:7;13078:1;13073;13069;:5;;;;;;13065:1;13061;:5;;;;;;:13;13060:19;;;;;;13054:1;13050;:5;;;;;;13044:1;13040;:5;;;;;;13039:17;:41;13032:48;;12895:193;;;;:::o;39979:212::-;40049:7;40087:1;40073:3;:10;;;;:15;40069:115;;;40112:1;40105:8;;;;40069:115;40153:3;40170:1;40157:3;:10;;;;:14;40153:19;;;;;;;;;;;;;;;;40146:26;;39979:212;;;;:::o;1462:136::-;1520:7;1547:43;1551:1;1554;1547:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1540:50;;1462:136;;;;:::o
Swarm Source
ipfs://3c221426eb6ed5798f04003af2ca8114e1fa76c73ba5daaac5d46137be8f4221
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.